* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --deep-black: #0d0208;
    --rich-burgundy: #3d0814;
    --dark-plum: #1e0a1f;
    --rose-gold: #e6b89c;
    --soft-pink: #ffcad4;
    --deep-purple: #6a0572;
    --accent-gold: #d4af37;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: #0d0208;
    color: #e8d5d5;
    line-height: 1.7;
    overflow-x: hidden;
    animation: fadeIn 1s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

html {
    scroll-behavior: smooth;
}

/* Navigation - Elegant Minimal */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: linear-gradient(to bottom, rgba(13, 2, 8, 0.95), transparent);
    padding: 1.5rem 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: all 0.3s ease;
}

nav.scrolled {
    background: rgba(13, 2, 8, 0.98);
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    padding: 1rem 8%;
}

.logo {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--rose-gold);
    letter-spacing: 3px;
    text-transform: uppercase;
    position: relative;
}

.logo::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40%;
    height: 2px;
    background: linear-gradient(to right, var(--accent-gold), transparent);
}

.nav-links {
    display: flex;
    gap: 3rem;
    align-items: center;
    list-style: none;
}

.nav-links a {
    font-family: 'Montserrat', sans-serif;
    color: #d4c5c5;
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 300;
    position: relative;
    transition: all 0.3s ease;
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background: var(--accent-gold);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--rose-gold);
}

.nav-links a:hover::before {
    width: 100%;
}

.cart-icon {
    position: relative;
    cursor: pointer;
    font-size: 1.3rem;
    color: var(--rose-gold);
    transition: transform 0.3s ease;
}

.cart-icon:hover {
    transform: scale(1.1);
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--deep-purple);
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    font-weight: 600;
    border: 1px solid var(--accent-gold);
}

/* Hero - Artistic Layout */
.hero {
    height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 0 8%;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(106, 5, 114, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-50px, 50px) scale(1.1); }
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-label {
    font-size: 0.85rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 1rem;
    font-weight: 300;
}

.hero-content h1 {
    font-family: 'Cinzel', serif;
    font-size: 5rem;
    line-height: 1.1;
    color: var(--rose-gold);
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: -2px;
}

.hero-tagline {
    font-size: 1.3rem;
    color: #b8a5a5;
    font-weight: 300;
    font-style: italic;
    border-left: 3px solid var(--accent-gold);
    padding-left: 1.5rem;
    margin-bottom: 2rem;
}

.hero-visual {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-wrapper {
    position: relative;
    width: 400px;
    height: 400px;
}

.hero-circle {
    position: absolute;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    animation: rotate 30s linear infinite;
}

.hero-circle:nth-child(1) {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.hero-circle:nth-child(2) {
    width: 80%;
    height: 80%;
    top: 10%;
    left: 10%;
    animation-direction: reverse;
    animation-duration: 25s;
}

.hero-circle:nth-child(3) {
    width: 60%;
    height: 60%;
    top: 20%;
    left: 20%;
    animation-duration: 20s;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
}

/* Zen Flower Icon Styles */
.flower-icon {
    position: relative;
    width: 100%;
    height: 100%;
    animation: gentleFloat 6s ease-in-out infinite;
}

@keyframes gentleFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(5deg); }
}

.flower-icon .petal {
    position: absolute;
    width: 40%;
    height: 40%;
    background: linear-gradient(135deg, var(--rose-gold), var(--soft-pink));
    border-radius: 50% 50% 0 50%;
    top: 50%;
    left: 50%;
    transform-origin: 0 0;
    opacity: 0.9;
    animation: petalPulse 4s ease-in-out infinite;
}

@keyframes petalPulse {
    0%, 100% { opacity: 0.8; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.05); }
}

.flower-icon .petal:nth-child(1) {
    transform: translate(-50%, -50%) rotate(0deg);
    animation-delay: 0s;
}

.flower-icon .petal:nth-child(2) {
    transform: translate(-50%, -50%) rotate(72deg);
    animation-delay: 0.2s;
}

.flower-icon .petal:nth-child(3) {
    transform: translate(-50%, -50%) rotate(144deg);
    animation-delay: 0.4s;
}

.flower-icon .petal:nth-child(4) {
    transform: translate(-50%, -50%) rotate(216deg);
    animation-delay: 0.6s;
}

.flower-icon .petal:nth-child(5) {
    transform: translate(-50%, -50%) rotate(288deg);
    animation-delay: 0.8s;
}

.flower-icon .center {
    position: absolute;
    width: 30%;
    height: 30%;
    background: radial-gradient(circle, var(--accent-gold), var(--deep-purple));
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
    animation: centerGlow 3s ease-in-out infinite;
}

@keyframes centerGlow {
    0%, 100% { box-shadow: 0 0 20px rgba(212, 175, 55, 0.5); }
    50% { box-shadow: 0 0 40px rgba(212, 175, 55, 0.8); }
}

/* Product-specific flower variations */
.flower-icon.rose .petal {
    background: linear-gradient(135deg, #ff6b9d, #c471ed);
}

.flower-icon.orchid .petal {
    background: linear-gradient(135deg, #c471ed, #6a0572);
}

.flower-icon.lily .petal {
    background: linear-gradient(135deg, #ffcad4, #e6b89c);
}

.flower-icon.tulip .petal {
    background: linear-gradient(135deg, #d4af37, #ffd700);
    border-radius: 50% 50% 50% 0;
}

.flower-icon.mixed .petal {
    background: linear-gradient(135deg, #ff6b9d, #d4af37);
}

.flower-icon.empty .petal {
    background: linear-gradient(135deg, rgba(230, 184, 156, 0.3), rgba(212, 175, 55, 0.3));
}

/* Section Styling - Clean & Sophisticated */
section {
    padding: 6rem 8%;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-label {
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
}

.section-title {
    font-family: 'Cinzel', serif;
    font-size: 3rem;
    color: var(--rose-gold);
    font-weight: 600;
    letter-spacing: 1px;
}

.section-divider {
    width: 80px;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--accent-gold), transparent);
    margin: 1.5rem auto;
}

/* About Section */
.about-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.15rem;
    line-height: 2;
    color: #c5b5b5;
    font-weight: 300;
    position: relative;
    padding: 2rem;
}

.about-content::before,
.about-content::after {
    content: '"';
    font-size: 6rem;
    color: var(--accent-gold);
    opacity: 0.2;
    position: absolute;
    font-family: 'Cinzel', serif;
}

.about-content::before {
    top: -20px;
    left: -20px;
}

.about-content::after {
    bottom: -60px;
    right: -20px;
    transform: rotate(180deg);
}

/* Features - Asymmetric Grid */
.features-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.feature-box {
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 3rem 2.5rem;
    position: relative;
    transition: all 0.4s ease;
    background: linear-gradient(135deg, rgba(61, 8, 20, 0.2) 0%, rgba(30, 10, 31, 0.2) 100%);
}

.feature-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, rgba(106, 5, 114, 0.1) 0%, transparent 100%);
    transition: width 0.4s ease;
}

.feature-box:hover::before {
    width: 100%;
}

.feature-box:hover {
    border-color: var(--accent-gold);
    transform: translateX(10px);
}

.feature-number {
    font-family: 'Cinzel', serif;
    font-size: 3rem;
    color: rgba(212, 175, 55, 0.3);
    font-weight: 700;
    margin-bottom: 1rem;
}

.feature-box h3 {
    font-family: 'Cinzel', serif;
    color: var(--rose-gold);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    letter-spacing: 1px;
}

.feature-box p {
    color: #b8a5a5;
    font-weight: 300;
    line-height: 1.8;
}

/* Deals Section - Magazine Style */
.deals-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.deal-box {
    background: linear-gradient(135deg, rgba(61, 8, 20, 0.3) 0%, rgba(13, 2, 8, 0.9) 100%);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.deal-box::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.deal-box:hover::after {
    opacity: 1;
}

.deal-box:hover {
    transform: translateY(-10px);
    border-color: var(--rose-gold);
}

.deal-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.3));
}

.deal-box h3 {
    font-family: 'Cinzel', serif;
    color: var(--accent-gold);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.deal-box p {
    color: #c5b5b5;
    font-size: 0.95rem;
    font-weight: 300;
}

/* Products - Elegant Cards */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.product-card {
    background: rgba(13, 2, 8, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.2);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.product-card::before {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(106, 5, 114, 0.2));
    transition: top 0.4s ease;
}

.product-card:hover::before {
    top: 0;
}

.product-card:hover {
    border-color: var(--accent-gold);
    transform: scale(1.02);
}

.product-image {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, var(--rich-burgundy), var(--dark-plum));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.product-image .flower-icon {
    width: 150px;
    height: 150px;
}

.product-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(212, 175, 55, 0.1) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.product-card:hover .product-image::after {
    transform: translateX(100%);
}

.product-info {
    padding: 2rem;
    position: relative;
    z-index: 2;
}

.product-name {
    font-family: 'Cinzel', serif;
    font-size: 1.4rem;
    color: var(--rose-gold);
    margin-bottom: 0.8rem;
    letter-spacing: 1px;
}

.product-price {
    font-size: 1.8rem;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.add-to-cart-btn {
    width: 100%;
    padding: 1rem;
    background: transparent;
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.add-to-cart-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--accent-gold);
    transition: left 0.3s ease;
    z-index: -1;
}

.add-to-cart-btn:hover::before {
    left: 0;
}

.add-to-cart-btn:hover {
    color: #0d0208;
}

/* Cart Panel - Refined */
.cart-panel {
    position: fixed;
    right: -450px;
    top: 0;
    width: 450px;
    height: 100vh;
    background: rgba(13, 2, 8, 0.98);
    border-left: 1px solid var(--accent-gold);
    padding: 2rem;
    z-index: 2000;
    transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    overflow-y: auto;
}

.cart-panel.active {
    right: 0;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

.cart-header h2 {
    font-family: 'Cinzel', serif;
    color: var(--rose-gold);
    font-size: 1.8rem;
    letter-spacing: 2px;
}

.close-cart {
    background: none;
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--accent-gold);
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.close-cart:hover {
    background: var(--accent-gold);
    color: #0d0208;
    transform: rotate(90deg);
}

.cart-items {
    margin-bottom: 2rem;
}

.cart-item {
    background: rgba(61, 8, 20, 0.2);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 1.5rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.cart-item:hover {
    border-color: var(--accent-gold);
}

.cart-item-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.cart-item-name {
    font-family: 'Cinzel', serif;
    color: var(--rose-gold);
    font-size: 1rem;
}

.cart-item-price {
    color: var(--accent-gold);
    font-weight: 600;
}

.cart-item-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.quantity-controls {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.quantity-display {
    font-weight: 600;
    color: var(--rose-gold);
    min-width: 30px;
    text-align: center;
}

.qty-btn {
    background: transparent;
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold);
    width: 30px;
    height: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.qty-btn:hover {
    background: var(--accent-gold);
    color: #0d0208;
}

.remove-btn {
    background: none;
    border: 1px solid rgba(255, 100, 100, 0.5);
    color: rgba(255, 100, 100, 0.8);
    padding: 0.4rem 1rem;
    font-size: 0.75rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.remove-btn:hover {
    background: rgba(255, 100, 100, 0.2);
    border-color: rgba(255, 100, 100, 0.8);
}

.cart-total {
    border-top: 1px solid var(--accent-gold);
    padding-top: 1.5rem;
    margin-top: 2rem;
    display: flex;
    justify-content: space-between;
    font-size: 1.8rem;
}

.cart-total-label {
    font-family: 'Cinzel', serif;
    color: var(--rose-gold);
}

.cart-total-amount {
    color: var(--accent-gold);
    font-weight: 600;
}

.empty-cart {
    text-align: center;
    padding: 4rem 2rem;
    color: #6a5a5a;
}

.empty-cart-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
}

.empty-cart p {
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    margin: 0.5rem 0;
}

/* Toast */
.toast {
    position: fixed;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--deep-purple), var(--rich-burgundy));
    color: white;
    padding: 1rem 2.5rem;
    border: 1px solid var(--accent-gold);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 1px;
    z-index: 3000;
    transition: bottom 0.4s ease;
}

.toast.show {
    bottom: 40px;
}

/* Footer - Minimalist */
footer {
    background: rgba(13, 2, 8, 0.95);
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    padding: 4rem 8%;
    text-align: center;
}

.footer-content {
    max-width: 1000px;
    margin: 0 auto;
}

.footer-info {
    margin-bottom: 2rem;
    font-weight: 300;
}

.footer-info p {
    margin: 0.8rem 0;
    color: #b8a5a5;
    font-size: 0.95rem;
}

.footer-info strong {
    font-family: 'Cinzel', serif;
    color: var(--rose-gold);
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 2.5rem 0;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: transparent;
    border: 1px solid rgba(212, 175, 55, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--accent-gold);
    color: #0d0208;
    transform: translateY(-5px);
}

.copyright {
    color: #6a5a5a;
    font-size: 0.85rem;
    margin-top: 2rem;
    letter-spacing: 1px;
    font-weight: 300;
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold);
    padding: 0.5rem;
    cursor: pointer;
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 2rem 5%;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .hero-visual {
        display: none;
    }

    section {
        padding: 4rem 5%;
    }

    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .cart-panel {
        width: 100%;
        right: -100%;
    }

    .features-container {
        grid-template-columns: 1fr;
    }

    .deals-container {
        grid-template-columns: 1fr;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2rem;
    }
}
@media (max-width: 480px) {
    body {
        font-size: 14px;
    }

    nav {
        padding: 1rem 5%;
    }

    .logo {
        font-size: 1.4rem;
        letter-spacing: 2px;
    }

    .hero-content h1 {
        font-size: 2.4rem;
        line-height: 1.2;
    }

    .hero-tagline {
        font-size: 1rem;
        padding-left: 1rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .about-content {
        font-size: 1rem;
        line-height: 1.8;
        padding: 1rem;
    }

    .feature-box {
        padding: 2rem 1.5rem;
    }

    .deal-box {
        padding: 2rem 1.5rem;
    }

    .product-image {
        height: 220px;
    }

    .product-name {
        font-size: 1.2rem;
    }

    .product-price {
        font-size: 1.4rem;
    }

    .add-to-cart-btn {
        padding: 0.8rem;
        font-size: 0.75rem;
    }

    .cart-header h2 {
        font-size: 1.4rem;
    }

    .cart-total {
        font-size: 1.4rem;
    }

    footer {
        padding: 3rem 5%;
    }

    .footer-info p {
        font-size: 0.85rem;
    }
}
