:root {
            --cream: #FAF7F2;
            --earth: #8B7355;
            --forest: #4A5D4F;
            --terracotta: #C4856C;
            --sand: #D4B5A0;
            --charcoal: #2C2C2C;
            --white: #FFFFFF;
        }

        html {
            scroll-padding-top: 80px;
        }

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

        body {
            font-family: 'Lato', sans-serif;
            background: #FAF7F2;
            background: var(--cream);
            color: #2C2C2C;
            color: var(--charcoal);
            line-height: 1.7;
            overflow-x: hidden;
        }

        /* Fallback font sized to closely match Cormorant Garamond — reduces layout shift */
        @font-face {
            font-family: 'Cormorant Garamond Fallback';
            src: local('Georgia'), local('Times New Roman');
            size-adjust: 92%;
            ascent-override: 90%;
            descent-override: 22%;
            line-gap-override: 0%;
        }

        h1, h2, h3 {
            font-family: 'Cormorant Garamond', 'Cormorant Garamond Fallback', serif;
            font-weight: 400;
            letter-spacing: 0.5px;
        }

        /* ── Section reveal ────────────────────────────────────────────────
           Sections start invisible but hold their layout space (no jumps).
           JS adds .revealed once all images inside are loaded.
           Header is revealed immediately by JS so nav is always accessible. */
        header,
        .hero,
        .about,
        .products,
        .markets,
        .contact,
        footer {
            visibility: hidden;
            opacity: 0;
            transition: opacity 0.45s ease;
        }

        header.revealed,
        .hero.revealed,
        .about.revealed,
        .products.revealed,
        .markets.revealed,
        .contact.revealed,
        footer.revealed {
            visibility: visible;
            opacity: 1;
        }

        /* Images show normally — sections fade as a whole unit */
        img { opacity: 1; }

        /* ── Maintenance mode: hide cart instantly before JS runs ──────── */
        html.maintenance .cart-btn {
            display: none !important;
        }

        /* Header & Navigation */
        header {
            background: #FFFFFF;
            background: var(--white);
            padding: 1.5rem 5%;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 20px rgba(0,0,0,0.05);
            border-bottom: 1px solid rgba(139, 115, 85, 0.1);
            min-height: 80px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        nav {
            max-width: 1400px;
            width: 100%;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            font-size: 1.8rem;
            font-family: 'Cormorant Garamond', 'Cormorant Garamond Fallback', serif;
            font-weight: 600;
            color: #4A5D4F;
            color: var(--forest);
            text-decoration: none;
        }

        .logo img {
            height: 100px;
            margin-bottom: -10px;
        }

        .logo-text {
            white-space: nowrap;
        }

        .nav-links {
            display: flex;
            gap: 2.5rem;
            align-items: center;
        }

        .nav-links a {
            color: #2C2C2C;
            color: var(--charcoal);
            text-decoration: none;
            font-size: 0.85rem;
            transition: color 0.3s;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .nav-links a:hover {
            color: #C4856C;
            color: var(--terracotta);
        }

        .cart-btn {
            background: #C4856C;
            background: var(--terracotta);
            color: #FFFFFF;
            color: var(--white);
            padding: 0.6rem 1.5rem;
            border-radius: 30px;
            cursor: pointer;
            border: none;
            font-family: 'Lato', sans-serif;
            font-size: 0.9rem;
            position: relative;
            transition: all 0.3s;
        }

        .cart-btn:hover {
            background: #4A5D4F;
            background: var(--forest);
            transform: translateY(-2px);
        }

        /* Cart count badge — desktop */
        .cart-count {
            position: absolute;
            top: -8px;
            right: -8px;
            background: #ffffff;
            color: #4A5D4F;
            border-radius: 50%;
            width: 22px;
            height: 22px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.75rem;
            font-weight: bold;
            box-shadow: 0 1px 4px rgba(0,0,0,0.15);
            border: 2px solid #4A5D4F;
        }

        /* Mobile menu button — hidden on desktop */
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: #4A5D4F;
            color: var(--forest);
        }

        /* ── Mobile nav dropdown ─────────────────────────────────────────
           Sits BELOW the sticky header, not inside it, so it doesn't
           push nav items sideways. Uses position:absolute anchored to
           the header so it slides out underneath cleanly. */
        .mobile-nav {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            z-index: 999;
            flex-direction: column;
            background: #FFFFFF;
            background: var(--white);
            border-top: 1px solid rgba(139,115,85,0.15);
            border-bottom: 2px solid rgba(139,115,85,0.15);
            box-shadow: 0 6px 20px rgba(0,0,0,0.08);
        }

        .mobile-nav.open {
            display: flex;
        }

        .mobile-nav a {
            padding: 0.9rem 1.5rem;
            color: #2C2C2C;
            color: var(--charcoal);
            text-decoration: none;
            font-size: 0.95rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            border-bottom: 1px solid rgba(139,115,85,0.08);
            transition: background 0.2s, color 0.2s;
        }

        .mobile-nav a:last-child {
            border-bottom: none;
        }

        .mobile-nav a:hover {
            background: #FAF7F2;
            background: var(--cream);
            color: #C4856C;
            color: var(--terracotta);
        }

        /* ── Mobile overrides ──────────────────────────────────────────── */
        @media (max-width: 768px) {
            header {
                padding: 0 !important;
                position: sticky;
            }

            nav {
                padding: 0.5rem 1rem !important;
                display: grid !important;
                grid-template-columns: auto 1fr auto auto !important;
                gap: 1rem !important;
                align-items: center !important;
            }

            .logo {
                grid-column: 1;
            }

            .nav-links {
                display: none !important;
            }

            .cart-btn {
                grid-column: 3;
                padding: 0.7rem !important;
                position: relative !important;
                border-radius: 50% !important;
                width: 50px !important;
                height: 50px !important;
                display: flex !important;
                align-items: center !important;
                justify-content: center !important;
            }

            .mobile-menu-btn {
                grid-column: 4;
                display: block !important;
                font-size: 1.8rem;
                padding: 0.5rem;
            }

            .logo-text {
                display: none !important;
            }

            .logo img {
                height: 100px !important;
                margin-bottom: 0 !important;
            }

            .cart-text {
                display: none !important;
            }

            .cart-icon {
                font-size: 1.4rem !important;
                line-height: 1;
                display: block !important;
            }

            /* Cart count badge — mobile: hard-coded colours for Samsung Browser */
            .cart-count {
                position: absolute !important;
                top: -7px !important;
                right: -7px !important;
                background: #ffffff !important;
                color: #4A5D4F !important;
                border-radius: 50% !important;
                width: 24px !important;
                height: 24px !important;
                display: flex !important;
                align-items: center !important;
                justify-content: center !important;
                font-size: 0.75rem !important;
                font-weight: 700 !important;
                border: 2px solid #4A5D4F !important;
            }

            .about-content {
                grid-template-columns: 1fr !important;
                gap: 2rem !important;
            }

            .about-image img {
                width: 280px !important;
                height: 280px !important;
            }
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, #D4B5A0 0%, #FAF7F2 100%);
            padding: 8rem 5% 6rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="1" fill="%238B7355" opacity="0.1"/></svg>');
            opacity: 0.4;
        }

        .hero-content {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .hero h1 {
            font-size: 4rem;
            margin-bottom: 1.5rem;
            color: #4A5D4F;
            color: var(--forest);
            animation: fadeInUp 1s ease-out;
        }

        .hero p {
            font-size: 1.3rem;
            color: #8B7355;
            color: var(--earth);
            margin-bottom: 2.5rem;
            animation: fadeInUp 1s ease-out 0.2s both;
        }

        .cta-btn {
            background: #C4856C;
            background: var(--terracotta);
            color: #FFFFFF;
            color: var(--white);
            padding: 1rem 3rem;
            border: none;
            border-radius: 30px;
            font-size: 1rem;
            cursor: pointer;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s;
            animation: fadeInUp 1s ease-out 0.4s both;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            font-weight: 700;
        }

        .cta-btn:hover {
            background: #4A5D4F;
            background: var(--forest);
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }

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

        /* Products Section */
        .products {
            padding: 6rem 5%;
            max-width: 1400px;
            margin: 0 auto;
        }

        .section-title {
            text-align: center;
            font-size: 3rem;
            margin-bottom: 3rem;
            color: #4A5D4F;
            color: var(--forest);
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2.5rem;
            margin-bottom: 4rem;
        }

        .product-card {
            background: #FFFFFF;
            background: var(--white);
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
            transition: all 0.3s;
            display: flex;
            flex-direction: column;
        }

        .product-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 40px rgba(0,0,0,0.12);
        }

        .product-image-container {
            width: 100%;
            height: 320px;
            background: linear-gradient(135deg, #D4B5A0, #FAF7F2);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .product-image {
            font-size: 6rem;
            transition: opacity 0.3s ease, transform 0.3s ease;
        }

        .product-image.changing {
            opacity: 0.3;
            transform: scale(0.95);
        }

        .product-image-container img.product-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            position: absolute;
            top: 0;
            left: 0;
            transition: opacity 0.3s ease, transform 0.3s ease;
        }

        .product-image-container img.changing {
            opacity: 0.3;
            transform: scale(0.95);
        }

        .product-image-container::after {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.05) 100%);
        }

        .product-info {
            padding: 1.5rem;
            display: flex;
            flex-direction: column;
            flex: 1;
        }

        .product-bottom {
            margin-top: auto;
            padding-top: 1rem;
            border-top: 1px solid #D4B5A0;
            border-top: 1px solid var(--sand);
        }

        .product-name {
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
            color: #4A5D4F;
            color: var(--forest);
        }

        .product-description {
            color: #8B7355;
            color: var(--earth);
            font-size: 0.95rem;
            margin-bottom: 1rem;
            line-height: 1.6;
        }

        /* Color Selector Styles */
        .color-selector {
            margin: 0 0 0.8rem 0;
            padding: 0.8rem 0;
            border-bottom: 1px solid #D4B5A0;
            border-bottom: 1px solid var(--sand);
        }

        .color-selector-label {
            display: block;
            font-size: 0.85rem;
            font-weight: 600;
            color: #4A5D4F;
            color: var(--forest);
            margin-bottom: 0.7rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .color-options {
            display: flex;
            gap: 0.6rem;
            margin-bottom: 0.7rem;
            flex-wrap: wrap;
        }

        .color-swatch {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            border: 3px solid transparent;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            background-clip: padding-box;
        }

        .color-swatch:hover {
            transform: scale(1.15);
            border-color: #8B7355;
            border-color: var(--earth);
        }

        .color-swatch.active {
            border-color: #C4856C;
            border-color: var(--terracotta);
            box-shadow: 0 0 0 2px white, 0 0 0 5px #C4856C;
            box-shadow: 0 0 0 2px white, 0 0 0 5px var(--terracotta);
            transform: scale(1.1);
        }

        .color-swatch::after {
            content: '';
            position: absolute;
            top: 50%; left: 50%;
            transform: translate(-50%, -50%);
            width: 0; height: 0;
            background: white;
            border-radius: 50%;
            transition: all 0.3s;
        }

        .color-swatch.active::after {
            width: 8px;
            height: 8px;
        }

        .selected-color-name {
            font-size: 0.9rem;
            color: #8B7355;
            color: var(--earth);
            font-style: italic;
            display: block;
        }

        .variant-stock {
            font-size: 0.8rem;
            color: #C4856C;
            color: var(--terracotta);
            margin-top: 0.3rem;
        }

        .variant-stock.low-stock {
            color: #d32f2f;
            font-weight: 600;
        }

        .sr-only {
            position: absolute;
            width: 1px; height: 1px;
            padding: 0; margin: -1px;
            overflow: hidden;
            clip: rect(0,0,0,0);
            border: 0;
        }

        .product-price {
            font-size: 1.5rem;
            font-weight: 700;
            color: #C4856C;
            color: var(--terracotta);
            margin-bottom: 1rem;
            margin-top: 0;
        }

        .add-to-cart {
            width: 100%;
            background: #C4856C;
            background: var(--terracotta);
            color: #FFFFFF;
            color: var(--white);
            border: none;
            padding: 0.9rem;
            border-radius: 6px;
            cursor: pointer;
            font-size: 1rem;
            transition: all 0.3s;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 600;
        }

        @media (hover: hover) {
            .add-to-cart:hover {
                background: #4A5D4F;
                background: var(--forest);
                transform: translateY(-2px);
            }
        }

        .add-to-cart:active {
            background: #4A5D4F;
            background: var(--forest);
            transform: none;
        }

        .add-to-cart:disabled {
            background: #D4B5A0;
            background: var(--sand);
            cursor: not-allowed;
            transform: none;
        }

        /* About Section */
        .about {
            background: #FFFFFF;
            background: var(--white);
            padding: 6rem 5%;
        }

        .about-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .about-text h2 {
            font-size: 3rem;
            margin-bottom: 1.5rem;
            color: #4A5D4F;
            color: var(--forest);
        }

        .about-text p {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #8B7355;
            color: var(--earth);
            margin-bottom: 1rem;
        }

        .about-image {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .about-image img {
            width: 420px;
            height: 420px;
            object-fit: cover;
            border-radius: 50%;
            box-shadow: 0 8px 40px rgba(0,0,0,0.15);
        }

        .market-image-wrap {
            margin-bottom: 2.5rem;
        }

        .market-image-wrap img {
            width: 100%;
            max-height: 420px;
            object-fit: cover;
            border-radius: 12px;
            box-shadow: 0 8px 40px rgba(0,0,0,0.12);
        }

        /* Markets Section */
        .markets {
            padding: 6rem 5%;
            max-width: 1200px;
            margin: 0 auto;
        }

        .markets h2 {
            text-align: center;
            font-size: 3rem;
            margin-bottom: 3rem;
            color: #4A5D4F;
            color: var(--forest);
        }

        .market-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .market-item {
            background: #FFFFFF;
            background: var(--white);
            padding: 2rem;
            border-radius: 8px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
            border-left: 4px solid #C4856C;
            border-left: 4px solid var(--terracotta);
        }

        .market-item h3 {
            font-size: 1.8rem;
            margin-bottom: 0.5rem;
            color: #4A5D4F;
            color: var(--forest);
        }

        .market-date {
            color: #C4856C;
            color: var(--terracotta);
            font-weight: 700;
            margin-bottom: 0.5rem;
        }

        .market-note {
            color: #8B7355;
            color: var(--earth);
            margin-top: 0.5rem;
            font-size: 0.95rem;
        }

        .market-note a {
            color: #C4856C;
            color: var(--terracotta);
            text-decoration: none;
            font-weight: 600;
        }

        .market-note a:hover {
            text-decoration: underline;
        }

        .market-location {
            color: #8B7355;
            color: var(--earth);
        }

        /* Contact Section */
        .contact {
            background: #FFFFFF;
            background: var(--white);
            padding: 6rem 5%;
        }

        .contact-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .contact h2 {
            text-align: center;
            font-size: 3rem;
            margin-bottom: 3rem;
            color: #4A5D4F;
            color: var(--forest);
        }

        .contact-form {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .form-group {
            display: flex;
            flex-direction: column;
        }

        .form-group label {
            margin-bottom: 0.5rem;
            color: #4A5D4F;
            color: var(--forest);
            font-weight: 600;
            text-transform: uppercase;
            font-size: 0.85rem;
            letter-spacing: 1px;
        }

        .form-group input,
        .form-group textarea {
            padding: 1rem;
            border: 2px solid #D4B5A0;
            border: 2px solid var(--sand);
            border-radius: 6px;
            font-family: 'Lato', sans-serif;
            font-size: 1rem;
            transition: border-color 0.3s;
            background: #FAF7F2;
            background: var(--cream);
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #C4856C;
            border-color: var(--terracotta);
        }

        .form-group textarea {
            min-height: 150px;
            resize: vertical;
        }

        .submit-btn {
            background: #C4856C;
            background: var(--terracotta);
            color: #FFFFFF;
            color: var(--white);
            padding: 1.2rem;
            border: none;
            border-radius: 6px;
            cursor: pointer;
            font-size: 1rem;
            transition: all 0.3s;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            font-weight: 700;
        }

        @media (hover: hover) {
            .submit-btn:hover {
                background: #4A5D4F;
                background: var(--forest);
                transform: translateY(-2px);
            }
        }

        /* Footer */
        footer {
            background: #2C2C2C;
            background: var(--charcoal);
            color: #FAF7F2;
            color: var(--cream);
            padding: 3rem 5%;
            text-align: center;
        }

        footer p {
            margin-bottom: 1rem;
        }

        .social-links {
            display: flex;
            gap: 2rem;
            justify-content: center;
            margin-top: 1.5rem;
        }

        .social-links a {
            color: #FAF7F2;
            color: var(--cream);
            text-decoration: none;
            transition: color 0.3s;
            font-size: 1.1rem;
        }

        .social-links a:hover {
            color: #C4856C;
            color: var(--terracotta);
        }

        /* ── Cart Modal ─────────────────────────────────────────────────── */
        .cart-modal {
            display: none;
            position: fixed;
            top: 0; left: 0; right: 0; bottom: 0;
            background: rgba(0,0,0,0.6);
            z-index: 2000;
            align-items: center;
            justify-content: center;
            animation: fadeIn 0.3s;
        }

        .cart-modal.active {
            display: flex;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        .cart-content {
            background: #FFFFFF;
            background: var(--white);
            width: 90%;
            max-width: 560px;
            max-height: 85vh;
            border-radius: 12px;
            padding: 0;
            position: relative;
            animation: slideUp 0.3s;
            display: flex;
            flex-direction: column;
            overflow: hidden;
        }

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

        .cart-header {
            background: linear-gradient(135deg, #D4B5A0 0%, #FAF7F2 100%);
            padding: 1.6rem 2rem 1.4rem;
            border-radius: 12px 12px 0 0;
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            flex-shrink: 0;
            border-bottom: 1px solid rgba(139,115,85,0.2);
        }

        .cart-header-label {
            font-size: 0.7rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: #5C3D1E;
            font-weight: 700;
            margin-bottom: 0.3rem;
        }

        .cart-content h2 {
            font-size: 1.8rem;
            color: #2C2C2C;
            font-family: 'Cormorant Garamond', serif;
            font-weight: 600;
            margin: 0;
        }

        .close-cart {
            background: none;
            border: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #8B7355;
            line-height: 1;
            padding: 0;
            width: 30px;
            height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            margin-top: 0.2rem;
        }

        .close-cart:hover {
            color: #C4856C;
            color: var(--terracotta);
        }

        .cart-items {
            padding: 0 2rem;
            flex: 1;
            overflow-y: auto;
        }

        .cart-item {
            display: flex;
            gap: 1rem;
            padding: 1.5rem 0;
            border-bottom: 1px solid #D4B5A0;
            border-bottom: 1px solid var(--sand);
            align-items: center;
        }

        .cart-item:last-child {
            border-bottom: none;
        }

        .cart-item-image {
            width: 80px;
            height: 80px;
            background: #FAF7F2;
            background: var(--cream);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            flex-shrink: 0;
        }

        .cart-item-image-photo {
            width: 80px;
            height: 80px;
            object-fit: cover;
            border-radius: 8px;
            flex-shrink: 0;
        }

        .cart-item-body {
            flex: 1;
            min-width: 0;
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .cart-item-info {
            flex: 1;
            min-width: 0;
        }

        .cart-item-name {
            font-weight: 700;
            color: #4A5D4F;
            color: var(--forest);
            margin-bottom: 0.3rem;
            font-size: 1.1rem;
        }

        .cart-item-variant {
            color: #8B7355;
            color: var(--earth);
            font-size: 0.9rem;
            font-style: italic;
            margin-bottom: 0.3rem;
        }

        .cart-item-price {
            color: #C4856C;
            color: var(--terracotta);
            font-weight: 600;
        }

        .cart-item-controls {
            display: flex;
            align-items: center;
            gap: 0.6rem;
            flex-shrink: 0;
        }

        @media (max-width: 480px) {
            .cart-item-body {
                flex-direction: column;
                align-items: flex-start;
                gap: 0.5rem;
            }
        }

        .qty-btn {
            background: #D4B5A0;
            background: var(--sand);
            border: none;
            width: 32px;
            height: 32px;
            border-radius: 4px;
            cursor: pointer;
            font-size: 1.2rem;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.3s;
            font-weight: bold;
        }

        .qty-btn:hover {
            background: #8B7355;
            background: var(--earth);
            color: #FFFFFF;
            color: var(--white);
        }

        .cart-item-qty {
            font-weight: 700;
            min-width: 30px;
            text-align: center;
        }

        .cart-item-backorder {
            font-size: 0.75rem;
            color: #8B7355;
            color: var(--earth);
            font-style: italic;
            margin-top: 0.2rem;
        }

        .remove-item {
            background: none;
            border: none;
            color: #C4856C;
            color: var(--terracotta);
            cursor: pointer;
            font-size: 0.85rem;
            text-decoration: underline;
            padding: 0.3rem 0.5rem;
        }

        .remove-item:hover {
            color: #2C2C2C;
            color: var(--charcoal);
        }

        .cart-footer {
            padding: 0 2rem 2rem;
            flex-shrink: 0;
        }

        .cart-total {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.2rem 0;
            font-size: 1.4rem;
            font-weight: 700;
            border-top: 2px solid #D4B5A0;
            border-top: 2px solid var(--sand);
            margin-bottom: 1rem;
            margin-top: 0.5rem;
            color: #2C2C2C;
            color: var(--charcoal);
        }

        .checkout-error {
            background: #fff5f5;
            border: 1px solid #f5c0c0;
            border-radius: 6px;
            padding: 0.8rem 1rem;
            margin-bottom: 0.8rem;
            font-size: 0.85rem;
            color: #8B3A3A;
            line-height: 1.5;
        }

        .checkout-error a {
            color: #C4856C;
            color: var(--terracotta);
            font-weight: 600;
        }

        .checkout-error p {
            margin: 0 0 0.3rem;
        }

        .checkout-error p:last-child {
            margin-bottom: 0;
        }

        #toastNotification {
            position: fixed;
            top: 1.5rem;
            left: 50%;
            transform: translateX(-50%) translateY(-80px);
            background: #B85C4A;
            color: white;
            padding: 1rem 1.25rem;
            border-radius: 8px;
            font-size: 0.88rem;
            max-width: 380px;
            width: calc(100% - 2rem);
            text-align: center;
            box-shadow: 0 4px 20px rgba(0,0,0,0.25);
            z-index: 99999;
            opacity: 0;
            transition: transform 0.3s ease, opacity 0.3s ease;
            line-height: 1.5;
        }

        #toastNotification.toast-visible {
            opacity: 1;
            transform: translateX(-50%) translateY(0);
        }

        .cart-shipping-note {
            font-size: 0.8rem;
            padding: 0.6rem 0;
            text-align: center;
            color: #8B7355;
            color: var(--earth);
        }

        .checkout-btn {
            width: 100%;
            background: #C4856C;
            background: var(--terracotta);
            color: #FFFFFF;
            color: var(--white);
            border: none;
            padding: 1.2rem;
            border-radius: 6px;
            cursor: pointer;
            font-size: 1.1rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            transition: all 0.3s;
        }

        @media (hover: hover) {
            .checkout-btn:hover {
                background: #4A5D4F;
                background: var(--forest);
                transform: translateY(-2px);
            }
        }

        .checkout-btn:active {
            background: #4A5D4F;
            background: var(--forest);
            transform: none;
        }

        .checkout-btn:disabled {
            background: #D4B5A0;
            background: var(--sand);
            cursor: not-allowed;
            transform: none;
        }

        .continue-shopping-btn {
            width: 100%;
            background: none;
            border: 1px solid #D4B5A0;
            border: 1px solid var(--sand);
            color: #8B7355;
            color: var(--earth);
            padding: 0.8rem;
            border-radius: 6px;
            cursor: pointer;
            font-size: 0.9rem;
            font-family: 'Lato', sans-serif;
            margin-top: 0.8rem;
            transition: all 0.2s;
        }

        .continue-shopping-btn:hover {
            border-color: #8B7355;
            border-color: var(--earth);
            color: #2C2C2C;
            color: var(--charcoal);
            background: #FAF7F2;
            background: var(--cream);
        }

        .empty-cart {
            text-align: center;
            padding: 3rem 0;
            color: #8B7355;
            color: var(--earth);
        }

        /* ── Add to Cart Flyout ─────────────────────────────────────────── */
        .cart-flyout {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            background: #FFFFFF;
            background: var(--white);
            border-radius: 12px;
            box-shadow: 0 8px 40px rgba(0,0,0,0.18);
            padding: 0;
            z-index: 3000;
            width: 320px;
            overflow: hidden;
            transform: translateY(120%);
            opacity: 0;
            transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.25s ease;
            border: 1px solid rgba(139,115,85,0.15);
        }

        .cart-flyout.visible {
            transform: translateY(0);
            opacity: 1;
        }

        .cart-flyout-header {
            background: linear-gradient(135deg, #D4B5A0 0%, #FAF7F2 100%);
            padding: 0.9rem 1.2rem;
            display: flex;
            align-items: center;
            gap: 0.6rem;
            border-bottom: 1px solid rgba(139,115,85,0.2);
        }

        .cart-flyout-header span {
            font-size: 0.72rem;
            font-weight: 700;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: #5C3D1E;
        }

        .cart-flyout-item {
            display: flex;
            align-items: center;
            gap: 0.9rem;
            padding: 1rem 1.2rem;
        }

        .cart-flyout-thumb {
            width: 48px;
            height: 48px;
            border-radius: 8px;
            background: #FAF7F2;
            background: var(--cream);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            flex-shrink: 0;
            overflow: hidden;
        }

        .cart-flyout-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .cart-flyout-info {
            flex: 1;
            min-width: 0;
        }

        .cart-flyout-name {
            font-size: 0.92rem;
            font-weight: 700;
            color: #2C2C2C;
            color: var(--charcoal);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .cart-flyout-variant {
            font-size: 0.78rem;
            color: #8B7355;
            color: var(--earth);
            font-style: italic;
            margin-top: 0.1rem;
        }

        .cart-flyout-price {
            font-size: 0.92rem;
            font-weight: 700;
            color: #C4856C;
            color: var(--terracotta);
            white-space: nowrap;
        }

        .cart-flyout-actions {
            display: flex;
            gap: 0.6rem;
            padding: 0 1.2rem 1.2rem;
        }

        .flyout-continue-btn {
            flex: 1;
            background: none;
            border: 1px solid #D4B5A0;
            border: 1px solid var(--sand);
            color: #8B7355;
            color: var(--earth);
            padding: 0.65rem 0.5rem;
            border-radius: 6px;
            cursor: pointer;
            font-size: 0.82rem;
            font-family: 'Lato', sans-serif;
            transition: all 0.2s;
            white-space: nowrap;
        }

        .flyout-continue-btn:hover {
            border-color: #8B7355;
            border-color: var(--earth);
            background: #FAF7F2;
            background: var(--cream);
        }

        .flyout-cart-btn {
            flex: 1;
            background: #C4856C;
            background: var(--terracotta);
            border: none;
            color: #FFFFFF;
            color: var(--white);
            padding: 0.65rem 0.5rem;
            border-radius: 6px;
            cursor: pointer;
            font-size: 0.82rem;
            font-family: 'Lato', sans-serif;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            transition: all 0.2s;
            white-space: nowrap;
        }

        .flyout-cart-btn:hover {
            background: #4A5D4F;
            background: var(--forest);
        }

        /* Success message */
        .success-message {
            background: #4A5D4F;
            background: var(--forest);
            color: white;
            padding: 1rem;
            border-radius: 6px;
            margin-bottom: 1rem;
            display: none;
            text-align: center;
        }

        .success-message.show {
            display: block;
            animation: fadeInUp 0.5s;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero h1 { font-size: 2.5rem; }
            .hero p { font-size: 1.1rem; }
            .section-title { font-size: 2rem; }
            .about-content { grid-template-columns: 1fr; }
            .about-image { order: -1; font-size: 6rem; }
            .products-grid { grid-template-columns: 1fr; }
            .cart-content { padding: 0; }
            .cart-item { flex-wrap: wrap; }
            .cart-item-controls { width: 100%; justify-content: space-between; margin-top: 0.5rem; }

            .cart-flyout {
                bottom: 0;
                right: 0;
                left: 0;
                width: 100%;
                border-radius: 12px 12px 0 0;
            }
        }

        /* ============================================================ */
        /* MAINTENANCE MODE STYLES */
        /* ============================================================ */
        .maintenance-container {
            grid-column: 1 / -1;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            padding: 3rem 1.5rem 4rem;
            gap: 2rem;
        }

        .maintenance-yogi-bubble {
            width: 140px;
            height: 140px;
            border-radius: 50%;
            overflow: hidden;
            border: 4px solid #D4B5A0;
            border: 4px solid var(--sand);
            box-shadow: 0 6px 24px rgba(139,115,85,0.18);
            background: #FAF7F2;
            background: var(--cream);
            flex-shrink: 0;
        }

        .maintenance-yogi-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .maintenance-heading {
            font-family: 'Cormorant Garamond', serif;
            font-size: 2.2rem;
            color: #8B7355;
            color: var(--earth);
            margin-bottom: 0.75rem;
        }

        .maintenance-msg {
            font-size: 1.1rem;
            color: #2C2C2C;
            color: var(--charcoal);
            max-width: 520px;
            margin: 0 auto 0.75rem;
        }

        .maintenance-sub {
            font-size: 0.95rem;
            color: #777;
            max-width: 460px;
            margin: 0 auto 1.5rem;
        }

        .maintenance-sub a {
            color: #8B7355;
            color: var(--earth);
            text-decoration: underline;
        }

        .maintenance-cta {
            display: inline-block;
            background: #8B7355;
            background: var(--earth);
            color: #fff;
            padding: 0.75rem 2rem;
            border-radius: 4px;
            text-decoration: none;
            font-family: 'Lato', sans-serif;
            font-size: 0.95rem;
            letter-spacing: 0.05em;
            transition: background 0.2s;
        }

        .maintenance-cta:hover {
            background: #4A5D4F;
            background: var(--forest);
        }