        :root {
            --bg-primary: #F5E4E0;
            --bg-secondary: #ECE3D5;
            --bg-dark: #1A120B;
            --accent: #6B2D1B;
            --accent-hover: #815D5A;
            --text-primary: #1A120B;
            --text-secondary: #5C4636;
            --text-tertiary: #8B6F5E;
            --text-light: #F5EFE6;
            --rule: rgba(26, 18, 11, 0.12);
            --surface: #EAD4CF;
            --shadow-soft: 0 4px 24px rgba(26, 18, 11, 0.08);
            --shadow-medium: 0 8px 32px rgba(26, 18, 11, 0.12);
            --shadow-deep: 0 16px 48px rgba(26, 18, 11, 0.16);
            --radius-sm: 12px;
            --radius-md: 20px;
            --radius-lg: 28px;
            --radius-full: 999px;
        }

        /* ── Dark theme — Wine Plum / Rose-Wine on warm plum-black ──
           See tokens.locked.css for the design rationale. */
        :root[data-theme="dark"] {
            --bg-primary:    #1B0E14;
            --bg-secondary:  #261420;
            --bg-dark:       #0D070B;
            --accent:        #B5495F;
            --accent-hover:  #C76E83;
            --text-primary:   #F5E6E0;
            --text-secondary: #B89A9A;
            --text-tertiary:  #7A5E62;
            --text-light:     #F5E6E0;
            --rule:    rgba(245, 230, 224, 0.10);
            --surface: #2A1A22;
            --shadow-soft:   0 4px 24px rgba(0, 0, 0, 0.32);
            --shadow-medium: 0 8px 32px rgba(0, 0, 0, 0.42);
            --shadow-deep:   0 16px 48px rgba(0, 0, 0, 0.56);
        }
        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        html.lenis, html.lenis body { height: auto; }
        .lenis.lenis-smooth { scroll-behavior: auto !important; }
        .lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
        .lenis.lenis-stopped { overflow: hidden; }
        h1, h2, h3, h4, h5, h6 { color: var(--text-primary); }
        body {
            font-family: 'Cormorant Garamond', Georgia, serif;
            font-size: 1.25rem;
            background: var(--bg-primary);
            color: var(--text-primary);
            overflow-x: hidden;
            transition: background-color 0.35s ease, color 0.35s ease;
        }
        .noise-overlay {
            position: fixed; top: 0; left: 0; width: 100%; height: 100%;
            pointer-events: none; z-index: 9998; opacity: 0.03;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
        }
        nav {
            position: fixed; top: 0; left: 0; width: 100%;
            padding: 1.25rem 2.5rem;
            display: flex; justify-content: space-between; align-items: center;
            z-index: 100;
            transition: background 0.3s ease;
            background: var(--surface);
            border-bottom: 5px solid #6B1D1A;
        }

        /* ── Bow decoration on the nav border ── */
        nav::before {
            content: '';
            position: absolute;
            bottom: -40px;
            left: 50%;
            transform: translateX(-50%);
            width: 72px;
            height: 72px;
            background: url('images/bow-light.png') no-repeat center / contain;
            pointer-events: none;
            z-index: 1;
        }
        :root[data-theme="dark"] nav::before {
            background: url('images/bow-dark.png') no-repeat center / contain;
            bottom: -36px;
        }

        /* ── Dark-mode golden border ── */
        :root[data-theme="dark"] nav {
            background: var(--bg-secondary);
            border-bottom: none;
        }
        :root[data-theme="dark"] nav::after {
            content: '';
            position: absolute;
            bottom: 0; left: 0; right: 0;
            height: 5px;
            background: linear-gradient(to right, rgba(212, 168, 67, 0.35) 0%, rgba(212, 168, 67, 0.1) 50%, rgba(212, 168, 67, 0.35) 100%);
        }
        nav.scrolled {
            background: var(--surface);
        }
        :root[data-theme="dark"] nav.scrolled {
            background: var(--bg-secondary);
        }
        .nav-logo {
            font-family: 'Tangerine', cursive;
            font-size: clamp(2.8rem, 5vw, 4.5rem); font-weight: 700;
            color: var(--text-primary); text-decoration: none;
            display: flex; align-items: center; gap: 0.5rem;
        }
        .nav-logo svg { width: 28px; height: 28px; }

        /* Theme toggle (sun/moon) */
        .theme-toggle {
            background: none; border: 1px solid var(--rule);
            width: 38px; height: 38px;
            border-radius: var(--radius-full);
            display: inline-flex; align-items: center; justify-content: center;
            cursor: pointer; color: var(--text-primary);
            transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
        }
        .theme-toggle:hover { background: var(--surface); transform: rotate(15deg); }
        .theme-toggle:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
        .theme-icon { width: 18px; height: 18px; }
        .theme-icon-moon { display: none; }
        :root[data-theme="dark"] .theme-icon-sun  { display: none; }
        :root[data-theme="dark"] .theme-icon-moon { display: block; }
        .nav-toggle {
            display: none;
            background: none; border: none; padding: 0.5rem;
            cursor: pointer; flex-direction: column; gap: 5px;
        }
        .nav-backdrop { display: none; }
        .mobile-menu { display: none; }
        .nav-toggle span {
            display: block; width: 24px; height: 1.5px;
            background: var(--text-primary);
            transition: transform 0.3s ease, opacity 0.3s ease;
        }
        .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
        .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
        .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
        .nav-actions { display: none; }
        .nav-cart-btn {
            display: none;
            background: none; border: none; padding: 0.5rem;
            cursor: pointer; position: relative;
            color: var(--text-primary);
            transition: color 0.2s;
        }
        .nav-cart-btn:hover { color: var(--accent); }
        .nav-cart-badge {
            position: absolute;
            top: 2px; right: 2px;
            background: var(--accent);
            color: #F5EFE6;
            font-size: 0.55rem;
            font-weight: 700;
            min-width: 16px; height: 16px;
            border-radius: 999px;
            display: flex; align-items: center; justify-content: center;
            font-family: 'Cormorant Garamond', serif;
            pointer-events: none;
        }
        .nav-links-desktop { display: flex; gap: 2.5rem; align-items: center; }
        .nav-links-desktop a {
            font-family: 'Cormorant Garamond', Georgia, serif;
            font-size: 1.25rem !important; font-weight: 500;
            color: var(--text-secondary); text-decoration: none;
            transition: color 0.3s ease; position: relative;
            display: inline-flex; align-items: center; gap: 0.4rem;
        }
        .nav-links-desktop a::after {
            content: ''; position: absolute; bottom: -4px; left: 0;
            width: 0; height: 1px; background: var(--text-primary);
            transition: width 0.3s ease;
        }
        .nav-links-desktop a:hover { color: var(--text-primary); }
        .nav-links-desktop a:hover::after { width: 100%; }

        /* ── Nav submenus (Cakes, Puddings) ── */
        .nav-has-sub { position: relative; }
        .nav-icon {
            display: inline-flex; align-items: center; flex-shrink: 0;
        }
        .nav-icon svg { width: 1em; height: 1em; }
        .nav-sub-toggle {
            font-family: 'Cormorant Garamond', Georgia, serif;
            font-size: 1.25rem; font-weight: 500;
            color: var(--text-secondary); background: none; border: none;
            cursor: pointer; transition: color 0.3s ease;
            display: inline-flex; align-items: center; gap: 0.3rem;
        }
        .nav-sub-toggle:hover { color: var(--text-primary); }
        .nav-sub-toggle svg { transition: transform 0.3s ease; }
        .nav-sub-toggle[aria-expanded="true"] svg { transform: rotate(180deg); }
        .nav-submenu { display: none; flex-direction: column; gap: 0.5rem; }
        .nav-submenu a::after { display: none; }
        .nav-sub-img {
            width: 50px; height: 50px;
            object-fit: cover; border-radius: 8px;
            flex-shrink: 0;
        }

        /* Desktop: hover dropdown */
        @media (min-width: 769px) {
            .nav-has-sub:hover .nav-submenu { display: flex; }
            .nav-has-sub:hover .nav-sub-toggle svg { transform: rotate(180deg); }
            .nav-submenu {
                position: absolute; top: 100%; left: 50%;
                transform: translateX(-50%);
                background: var(--bg-primary);
                border: 1px solid var(--rule);
                border-radius: 10px;
                padding: 0.75rem 1.25rem;
                box-shadow: 0 8px 24px rgba(26,18,11,0.12);
                white-space: nowrap; z-index: 300;
                margin-top: 0.5rem;
            }
            /* Transparent bridge keeps :hover alive when moving mouse
               from toggle to submenu across the gap */
            .nav-has-sub::after {
                content: '';
                position: absolute;
                top: 100%; left: 0; right: 0;
                height: 0.75rem;
            }
            :root[data-theme="dark"] .nav-submenu {
                background: var(--bg-secondary);
                box-shadow: 0 8px 24px rgba(0,0,0,0.35);
            }
        }
        /* Mobile: click expand inside drawer */
        @media (max-width: 768px) {
            .nav-has-sub.is-open .nav-submenu { display: flex; }
            .nav-submenu { padding-left: 1.25rem; gap: 0.75rem; margin-top: 0.5rem; }
        }
        .nav-cta {
            display: inline-flex; align-items: center; gap: 0.5rem;
            background: var(--text-primary); color: var(--bg-primary);
            padding: 1rem 2rem; border-radius: var(--radius-full);
            font-size: 1.65rem; font-weight: 600; text-decoration: none;
            transition: background 0.7s ease, color 0.3s ease;
            border: none; cursor: pointer;
        }
        .nav-cta:hover {
            background: var(--accent); color: var(--text-light);
        }
        .nav-cta::after,
        .nav-links-desktop .nav-cta::after { display: none; }
        section { position: relative; width: 100%; }
        .hero {
            min-height: 100vh; display: flex; align-items: stretch;
            padding: 7rem 0 0; background: var(--bg-primary);
            position: relative; overflow: hidden;
        }
        .hero-bg-pattern {
            position: absolute; top: 0; left: 0; width: 100%; height: 100%;
            opacity: 0.04;
            background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%231A120B' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        }
        .hero-blob {
            position: absolute; width: 750px; height: 750px;
            top: 50%; left: 50%;
            transform: translate(-50%, -50%);
            background: linear-gradient(135deg, var(--bg-secondary) 0%, rgba(107, 45, 27, 0.4) 40%, transparent 80%);
            border-radius: 60% 40% 50% 50% / 50% 50% 60% 40%;
            opacity: 0.5;
            z-index: 1;
        }
        .hero-content {
            display: grid; grid-template-columns: 1.1fr 1fr;
            max-width: 1400px; margin: 0 auto; width: 100%;
            align-items: center; gap: 2.5rem;
        }
        .hero-text {
            position: relative; z-index: 2;
            padding: 4rem 2.5rem;
            max-width: 920px;
        }
        .hero-visual {
            position: relative; width: 100%;
            display: flex; align-items: center; justify-content: center;
            align-self: stretch;
            min-height: 500px;
        }
        .hero-product {
            position: relative; z-index: 2;
            width: 100%; max-width: 500px;
            display: flex; align-items: center; justify-content: center;
        }
        .hero-product-model {
            width: 100%;
            height: 560px;
            display: block;
            opacity: 0;
        }
        .hero-product-model.loaded {
            opacity: 1;
        }
        .model-loader {
            position: absolute; inset: 0;
            display: flex; flex-direction: column; align-items: center; justify-content: center;
            gap: 1.5rem;
            pointer-events: none;
            z-index: 3;
        }
        .model-loader-spinner {
            width: 40px; height: 40px;
            border: 2px solid rgba(107, 45, 27, 0.2);
            border-top-color: var(--accent);
            border-radius: 50%;
        }
        .model-loader-text {
            font-family: 'Tangerine', cursive;
            font-style: italic;
            font-size: 1.05rem;
            color: var(--text-secondary);
            text-align: center;
            line-height: 1.5;
        }
        .model-toast {
            position: absolute; bottom: 2rem; left: 50%;
            transform: translateX(-50%) translateY(20px);
            display: flex; align-items: center; gap: 0.75rem;
            background: var(--text-primary); color: var(--bg-primary);
            padding: 0.75rem 1.5rem; border-radius: var(--radius-full);
            font-family: 'Cormorant Garamond', Georgia, serif; font-size: 0.85rem; font-weight: 500;
            white-space: nowrap;
            opacity: 0; pointer-events: none;
            z-index: 4;
        }
        .model-toast.visible {
            opacity: 1;
            transform: translateX(-50%) translateY(0);
            transition: opacity 0.4s ease, transform 0.4s ease;
        }
        .model-spinner-overlay {
            position: absolute;
            top: 50%; left: 50%;
            width: 40px; height: 40px;
            transform: translate(-50%, -50%);
            z-index: 5;
            pointer-events: none;
            transition: opacity 0.4s ease;
        }
        .model-spinner-overlay.loaded {
            opacity: 0;
        }
        .hero-text { position: relative; z-index: 2; }
        
        .hero-headline {
            font-family: 'Tangerine', cursive;
            font-size: clamp(3.5rem, 7vw, 6.3rem); font-weight: 700;
            line-height: 1.1; color: var(--text-primary); margin-bottom: 1.5rem;
        }
        .hero-headline .line { display: block; overflow: hidden; }
        .hero-headline .line-inner { display: block; transform: translateY(100%); }
        .hero-subhead {
            font-size: 1.25rem; color: var(--text-secondary);
            line-height: 1.6; margin-bottom: 2.5rem; max-width: 36ch;
            font-weight: 400;
        }
        .hero-cta-group { display: flex; flex-direction: column; gap: 1rem; align-items: flex-start; }
        .hero-cta-sub {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.55rem 1.1rem;
            margin-top: 0.5rem;
            font-family: 'Caveat', cursive;
            font-size: 1.25rem;
            font-weight: 600;
            color: var(--accent);
            background: rgba(245, 197, 66, 0.12);
            border: 1px solid rgba(245, 197, 66, 0.35);
            border-radius: 999px;
            line-height: 1;
            letter-spacing: 0.01em;
            max-width: max-content;
            box-shadow: 0 2px 10px rgba(245, 197, 66, 0.08);
        }

        /* ── Hero CTA Cluster (Bento Cake / Cheesecake / Pudding) ── */
        .hero-cta-prompt {
            font-family: 'Caveat', cursive; font-size: 1.05rem;
            color: var(--text-secondary);
            letter-spacing: 0.02em;
            margin-bottom: 0.85rem;
        }
        .hero-cta-cluster {
            display: flex; flex-wrap: wrap; gap: 1rem;
            align-items: stretch;
        }
        .hero-cta-card {
            position: relative;
            display: inline-flex; flex-direction: column; align-items: center;
            justify-content: center; gap: 0.6rem;
            min-width: 120px;
            padding: 1.25rem 1rem;
            background: var(--surface);
            color: var(--text-primary);
            border: 1.5px solid var(--rule);
            border-radius: var(--radius-md);
            font-family: 'Cormorant Garamond', Georgia, serif; font-size: 1rem; font-weight: 600;
            text-decoration: none;
            cursor: pointer;
            box-shadow: var(--shadow-soft);
            transition: background 0.7s ease, color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
            will-change: transform;
        }
        .hero-cta-card-icon {
            width: 48px; height: 48px;
            flex-shrink: 0;
        }
        .hero-cta-card-label {
            font-family: 'Cormorant Garamond', Georgia, serif; font-size: 1rem; font-weight: 600;
        }
        .hero-cta-card:hover {
            background: var(--accent-hover);
            color: var(--text-light);
            border-color: var(--accent-hover);
            transform: translateY(-3px);
            box-shadow: var(--shadow-medium);
        }
        .hero-cta-card.is-focused {
            background: var(--text-primary);
            color: var(--bg-primary);
            border-color: var(--text-primary);
        }
        .hero-cta-card.is-focused::before {
            content: '';
            position: absolute;
            inset: -4px;
            border-radius: var(--radius-md);
            pointer-events: none;
            box-shadow: 0 0 0 2px var(--accent-hover), 0 0 18px 4px rgba(107, 45, 27, 0.35);
        }
        @media (prefers-reduced-motion: reduce) {
            .hero-cta-card.is-focused::before { animation: none; }
        }
        .hero-cta-primary {
            position: relative; display: inline-flex; align-items: center; gap: 0.75rem;
            background: var(--text-primary); color: var(--bg-primary);
            padding: 1.125rem 2.5rem; border-radius: var(--radius-full);
            font-family: 'Cormorant Garamond', Georgia, serif; font-size: 1rem; font-weight: 600;
            text-decoration: none; transition: background 0.7s ease, color 0.3s ease;
            border: none; cursor: pointer; overflow: hidden;
        }
        .hero-cta-primary::before {
            content: ''; position: absolute; top: 0; left: -100%;
            width: 100%; height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            transition: left 0.6s ease;
        }
        .hero-cta-primary:hover::before { left: 100%; }
        .hero-cta-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 40px rgba(107, 45, 27, 0.35);
        }
        .hero-cta-primary svg { width: 20px; height: 20px; transition: transform 0.3s ease; }
        .hero-cta-primary:hover svg { transform: translateX(3px); }

        .products {
            padding: 6rem 0; position: relative;
            background: var(--bg-primary);
        }
        .products-header {
            text-align: left; margin: 0 auto 3rem;
            max-width: 1400px; padding: 0 2.5rem;
        }
        .products-eyebrow {
            font-family: 'Caveat', cursive; font-size: 0.72rem;
            text-transform: uppercase; letter-spacing: 0.18em;
            color: var(--accent); margin: 0 0 0.75rem;
        }
        .products-header h2 {
            font-family: 'Tangerine', cursive;
            font-size: clamp(2.8rem, 5.6vw, 4.2rem); font-weight: 700;
            color: var(--text-primary); margin-bottom: 0.75rem;
            letter-spacing: -0.01em;
        }
        .products-header p {
            font-size: 1.25rem; color: var(--text-secondary);
            margin: 0;
        }
        .products-grid {
            max-width: 1400px; margin: 0 auto;
            padding: 0 2.5rem;
            display: grid; gap: 1.25rem;
        }
        .product-featured {
            display: grid; grid-template-columns: 1.2fr 1fr; gap: 3rem;
            background: radial-gradient(ellipse at 50% 50%, var(--surface) 40%, transparent 75%),
                        var(--bg-primary);
            border-radius: var(--radius-lg);
            padding: 3rem; box-shadow: var(--shadow-soft);
            position: relative; overflow: hidden; align-items: center;
            transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease;
        }
        .product-featured::before {
            content: ''; position: absolute; top: -50%; right: -20%;
            width: 400px; height: 400px;
            background: radial-gradient(circle, var(--bg-secondary) 0%, transparent 70%);
            opacity: 0.5;
        }
        .product-featured:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-deep);
        }
        .product-featured-img {
            position: relative; z-index: 1; overflow: hidden;
        }
        .product-featured-img img {
            width: 100%; aspect-ratio: 1/1; object-fit: cover;
            display: block;
            border-radius: var(--radius-md); box-shadow: var(--shadow-medium);
        }
        .product-featured-badge {
            position: absolute; top: -12px; right: 20px;
            background: var(--accent); color: var(--text-light);
            padding: 0.5rem 1.25rem; border-radius: var(--radius-full);
            font-family: 'Caveat', cursive; font-size: 0.75rem; font-weight: 700;
            letter-spacing: 0.05em; z-index: 2; box-shadow: var(--shadow-soft);
        }
        .product-featured-info {
            position: relative; z-index: 1;
            padding: 0;
            display: flex; flex-direction: column; justify-content: center;
            background: none;
        }
        .product-featured-info h3 {
            font-family: 'Tangerine', cursive; font-size: clamp(2.45rem, 4.2vw, 3.5rem); font-weight: 600;
            color: var(--text-primary); margin-bottom: 0.5rem;
            letter-spacing: -0.01em;
        }
        .product-featured-info .subtitle {
            font-family: 'Caveat', cursive; font-size: 0.75rem; font-weight: 700;
            color: var(--accent); text-transform: uppercase; letter-spacing: 0.15em;
            margin-bottom: 2rem;
        }
        .product-flavor-prompt {
            font-family: 'Caveat', cursive; font-size: 0.7rem;
            color: var(--text-secondary); text-transform: uppercase;
            letter-spacing: 0.12em; margin-bottom: 1.25rem;
        }
        .product-flavors {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1rem;
            margin-bottom: 2rem;
        }
        .product-flavor {
            display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
            background: none; border: none; cursor: pointer;
            padding: 0.75rem 0.25rem;
            transition: opacity 0.2s ease;
        }
        .product-flavor:hover { opacity: 0.8; }
        .flavor-circle {
            width: 56px; height: 56px; border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            flex-shrink: 0;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
            border: 3px solid transparent;
        }
        .flavor-circle svg {
            width: 32px; height: 32px;
            display: block;
        }
        .product-flavor.active .flavor-circle {
            border-color: var(--text-primary);
            box-shadow: 0 0 0 3px var(--text-primary);
        }
        .product-flavor:hover .flavor-circle { transform: scale(1.1); }
        .cream-circle {
            width: 44px; height: 44px; border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            flex-shrink: 0;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
            border: 2px solid #ccc;
        }
        .cream-circle svg { width: 26px; height: 26px; display: block; }
        .cream-item:hover .cream-circle { transform: scale(1.15); }
        .cream-item.selected .cream-circle {
            border-color: var(--text-primary);
            box-shadow: 0 0 0 3px var(--text-primary);
        }
        .product-flavor-label {
            font-family: 'Cormorant Garamond', Georgia, serif; font-size: 0.95rem;
            color: var(--text-secondary); text-align: center;
            line-height: 1.3;
        }
        .product-flavor.active .product-flavor-label {
            color: var(--text-primary); font-weight: 700;
        }

        .cream-prompt {
            font-family: 'Caveat', cursive; font-size: 0.7rem;
            color: var(--text-secondary); text-transform: uppercase;
            letter-spacing: 0.12em; margin-bottom: 0.75rem;
        }
        .cream-prompt span {
            color: var(--text-tertiary); font-weight: 400;
        }
        .cream-picker {
            display: flex; gap: 0.75rem; margin-bottom: 1.5rem;
            justify-content: space-between;
        }
        .cream-item {
            display: flex; flex-direction: column; align-items: center; gap: 0.4rem;
            cursor: pointer; flex: 1; max-width: 90px;
            background: none; border: none; padding: 0;
        }
        .cream-label {
            font-family: 'Cormorant Garamond', Georgia, serif; font-size: 0.95rem;
            color: var(--text-secondary); text-align: center;
            line-height: 1.3;
        }
        .cream-item.selected .cream-label {
            color: var(--text-primary); font-weight: 700;
        }
        /* ── Order Quantity Selector ── */
        .quantity-selector { margin-bottom: 1.5rem; }
        .quantity-prompt {
            font-family: 'Caveat', cursive; font-size: 0.7rem;
            color: var(--text-secondary); text-transform: uppercase;
            letter-spacing: 0.12em; margin-bottom: 0.75rem;
        }
        .quantity-controls {
            display: flex; align-items: center; gap: 0.75rem;
        }
        .quantity-btn {
            width: 40px; height: 40px; border-radius: 50%;
            border: 2px solid var(--rule);
            background: var(--surface);
            color: var(--text-primary);
            display: flex; align-items: center; justify-content: center;
            cursor: pointer; padding: 0;
            transition: background 0.7s ease, border-color 0.2s ease;
        }
        .quantity-btn:hover {
            background: var(--bg-secondary);
            border-color: var(--text-primary);
        }
        .quantity-value {
            font-family: 'Caveat', cursive;
            font-size: 1.25rem; font-weight: 700;
            color: var(--text-primary);
            min-width: 2.5ch; text-align: center;
            line-height: 1;
            user-select: none;
        }

        /* ── Bento Size Selector ── */
        .size-and-quantity {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.25rem;
            align-items: start;
            margin-bottom: 1.5rem;
        }
        .size-selector { min-width: 0; }
        .size-prompt {
            font-family: 'Caveat', cursive; font-size: 0.7rem;
            color: var(--text-secondary); text-transform: uppercase;
            letter-spacing: 0.12em; margin-bottom: 0.75rem;
        }
        .size-options {
            display: flex; gap: 0.5rem;
        }
        .size-option {
            flex: 1;
            display: flex; align-items: center; gap: 0.5rem;
            padding: 0.65rem 1rem;
            background: var(--surface);
            border: 2px solid var(--rule);
            border-radius: 999px;
            cursor: pointer;
            transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
        }
        .size-option:hover {
            border-color: var(--text-secondary);
            background: var(--bg-secondary);
        }
        .size-option.selected {
            border-color: var(--accent-hover);
            background: var(--accent-hover);
        }
        .size-icon {
            width: 22px; height: 22px;
            flex-shrink: 0;
            color: var(--text-secondary);
        }
        .size-option.selected .size-icon {
            color: var(--text-light);
        }
        .size-option-label-group {
            display: flex; flex-direction: column; gap: 0;
            flex: 1;
        }
        .size-option-name {
            font-family: 'Cormorant Garamond', Georgia, serif;
            font-size: 1.05rem; font-weight: 700;
            color: var(--text-primary);
            letter-spacing: 0.02em;
            line-height: 1.2;
        }
        .size-option.selected .size-option-name {
            color: var(--text-light);
        }
        .size-option-price {
            font-family: 'Cormorant Garamond', Georgia, serif;
            font-size: 1.1rem; font-weight: 700;
            color: var(--text-secondary);
            line-height: 1.2;
        }
        .size-option.selected .size-option-price {
            color: var(--text-light);
        }
        @media (max-width: 768px) {
            .size-and-quantity {
                grid-template-columns: 1fr;
                gap: 1rem;
            }
        }

        .product-featured-price {
            font-family: 'Cormorant Garamond', Georgia, serif; font-size: 1.5rem; font-weight: 700;
            color: var(--text-primary); margin-bottom: 1.25rem;
        }
        .product-featured-price-block { margin-bottom: 1.25rem; }
        .product-featured-price-block .product-featured-price { margin-bottom: 0.1rem; }
        .product-featured-price-sub {
            font-family: 'Cormorant Garamond', Georgia, serif;
            font-size: 0.7rem; letter-spacing: 0.05em;
            color: var(--text-tertiary);
        }
        .product-featured-desc {
            font-size: 1.25rem; line-height: 1.7; color: var(--text-secondary); margin-bottom: 2rem;
        }
        .product-cta {
            display: inline-flex; align-items: center; gap: 0.5rem;
            background: var(--text-primary); color: var(--bg-primary);
            padding: 1rem 2rem; border-radius: var(--radius-full);
            font-size: 1.15rem; font-weight: 600; text-decoration: none;
            transition: background 0.7s ease, color 0.3s ease;
            border: none; cursor: pointer;
            align-self: flex-start;
        }
        .product-cta:hover {
            background: var(--accent); color: var(--text-light);
        }

        .cakes {
            padding: 6rem 0; position: relative;
            background: var(--bg-primary);
        }
        .cakes-header {
            text-align: left; margin: 0 auto 3rem;
            max-width: 1400px; padding: 0 2.5rem;
        }
        .cakes-eyebrow {
            font-family: 'Caveat', cursive; font-size: 0.72rem;
            text-transform: uppercase; letter-spacing: 0.18em;
            color: var(--accent); margin: 0 0 0.75rem;
        }
        .cakes-header h2 {
            font-family: 'Tangerine', cursive;
            font-size: clamp(2.8rem, 5.6vw, 4.2rem); font-weight: 700;
            color: var(--text-primary); margin-bottom: 0.75rem;
            letter-spacing: -0.01em;
        }
        .cakes-header p {
            font-size: 1.25rem; color: var(--text-secondary); margin: 0;
        }
        .cakes-grid {
            max-width: 1400px; margin: 0 auto;
            padding: 0 2.5rem;
            display: grid; grid-template-columns: repeat(3, 1fr);
            gap: 1.25rem;
        }
        .cake-card {
            background: radial-gradient(ellipse at 50% 50%, var(--surface) 40%, transparent 75%),
                        var(--bg-primary);
            border-radius: var(--radius-lg);
            padding: 2rem; box-shadow: var(--shadow-soft);
            overflow: hidden; position: relative;
            display: flex; flex-direction: column;
            transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease;
        }
        .cake-card::before {
            content: ''; position: absolute; top: 0; left: 0;
            width: 100%; height: 4px; background: var(--accent);
            transform: scaleX(0); transform-origin: left;
            transition: transform 0.4s ease;
        }
        .cake-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-deep);
        }
        .cake-card:hover::before { transform: scaleX(1); }
        .cake-card-img {
            position: relative; overflow: hidden;
            aspect-ratio: 4/3; border-radius: var(--radius-md);
            margin-bottom: 1rem;
        }
        .cake-card-img img {
            width: 100%; height: 100%; object-fit: cover;
            display: block; border-radius: var(--radius-md);
            transition: transform 0.4s ease;
        }
        .cake-card:hover .cake-card-img img {
            transform: scale(1.03);
        }
        .cake-card-info {
            padding: 0;
            display: flex; flex-direction: column;
            flex: 1;
        }
        .cake-card-info h3 {
            font-family: 'Tangerine', cursive; font-size: 3.5rem; font-weight: 700;
            color: var(--text-primary); margin-bottom: 0.5rem;
            letter-spacing: -0.01em;
        }
        .cake-card-info .subtitle {
            font-family: 'Caveat', cursive; font-size: 0.75rem; font-weight: 700;
            color: var(--accent); text-transform: uppercase; letter-spacing: 0.15em;
            margin-bottom: 0.75rem;
        }
        .cake-card-info .product-featured-price {
            font-family: 'Caveat', cursive; font-size: 1.25rem; font-weight: 700;
            color: var(--text-primary); margin-bottom: 1rem;
        }
        .cake-card-info .product-featured-price-block { margin-bottom: 0.85rem; }
        .cake-card-info .product-featured-price-block .product-featured-price { margin-bottom: 0.05rem; }
        .cake-card-info .product-featured-desc {
            font-size: 1rem; line-height: 1.6; color: var(--text-secondary);
            margin-bottom: 1.5rem;
            flex: 1;
        }
        .cake-card-info .product-cta {
            display: inline-flex; align-items: center; gap: 0.5rem;
            background: var(--text-primary); color: var(--bg-primary);
            padding: 0.75rem 1.5rem; border-radius: var(--radius-full);
            font-size: 1.05rem; font-weight: 600; text-decoration: none;
            transition: background 0.7s ease;
            align-self: flex-start;
            border: none; cursor: pointer;
        }
        .cake-card-info .product-cta:hover { background: var(--accent); color: var(--text-light); }

        .puddings { padding: 6rem 0; background: var(--bg-primary); position: relative; }
        .puddings-header {
            text-align: left; margin: 0 auto 3rem;
            max-width: 1400px; padding: 0 2.5rem;
        }
        .puddings-eyebrow {
            font-family: 'Caveat', cursive; font-size: 0.72rem;
            text-transform: uppercase; letter-spacing: 0.18em;
            color: var(--accent); margin: 0 0 0.75rem;
        }
        .puddings-header h2 {
            font-family: 'Tangerine', cursive;
            font-size: clamp(2.8rem, 5.6vw, 4.2rem); font-weight: 700;
            color: var(--text-primary); margin-bottom: 0.75rem;
            letter-spacing: -0.01em;
        }
        .puddings-header p {
            font-size: 1.25rem; color: var(--text-secondary); margin: 0;
        }
        .puddings-grid {
            max-width: 1400px; margin: 0 auto;
            padding: 0 2.5rem;
            display: grid; grid-template-columns: repeat(3, 1fr);
            gap: 1.25rem;
        }
        .pudding-card {
            background: radial-gradient(ellipse at 50% 50%, var(--surface) 40%, transparent 75%),
                        var(--bg-primary);
            border-radius: var(--radius-lg);
            padding: 2rem; box-shadow: var(--shadow-soft);
            overflow: hidden; position: relative;
            display: flex; flex-direction: column;
            transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease;
        }
        .pudding-card::before {
            content: ''; position: absolute; top: 0; left: 0;
            width: 100%; height: 4px; background: var(--accent);
            transform: scaleX(0); transform-origin: left;
            transition: transform 0.4s ease;
        }
        .pudding-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-deep);
        }
        .pudding-card:hover::before { transform: scaleX(1); }
        .pudding-card-img {
            position: relative; overflow: hidden;
            aspect-ratio: 4/3; border-radius: var(--radius-md);
            margin-bottom: 1.5rem;
        }
        .pudding-card-img img {
            width: 100%; height: 100%; object-fit: cover;
            display: block; border-radius: var(--radius-md);
            transition: transform 0.4s ease;
        }
        .pudding-card:hover .pudding-card-img img {
            transform: scale(1.03);
        }
        .pudding-card-info {
            padding: 0;
            display: flex; flex-direction: column;
            flex: 1;
        }
        .pudding-card-info h3 {
            font-family: 'Tangerine', cursive; font-size: 3.5rem; font-weight: 700;
            color: var(--text-primary); margin-bottom: 0.5rem;
            letter-spacing: -0.01em;
        }
        .pudding-card-info .subtitle {
            font-family: 'Caveat', cursive; font-size: 0.75rem; font-weight: 700;
            color: var(--accent); text-transform: uppercase; letter-spacing: 0.15em;
            margin-bottom: 0.75rem;
        }
        .pudding-card-info .product-featured-price {
            font-family: 'Caveat', cursive; font-size: 1.25rem; font-weight: 700;
            color: var(--text-primary); margin-bottom: 1rem;
        }
        .pudding-card-info .product-featured-price-block { margin-bottom: 0.85rem; }
        .pudding-card-info .product-featured-price-block .product-featured-price { margin-bottom: 0.05rem; }
        .pudding-card-info .product-featured-desc {
            font-size: 1rem; line-height: 1.6; color: var(--text-secondary);
            margin-bottom: 1.5rem;
            flex: 1;
        }
        .pudding-card-info .product-cta {
            display: inline-flex; align-items: center; gap: 0.5rem;
            background: var(--text-primary); color: var(--bg-primary);
            padding: 0.75rem 1.5rem; border-radius: var(--radius-full);
            font-size: 1.05rem; font-weight: 600; text-decoration: none;
            transition: background 0.7s ease;
            align-self: flex-start;
            border: none; cursor: pointer;
        }
        .pudding-card-info .product-cta:hover { background: var(--accent); color: var(--text-light); }

        /* process section removed */

        .testimonials { padding: 6rem 0; background: var(--bg-primary); overflow: hidden; }
        .testimonials-header { text-align: center; margin-bottom: 3rem; padding: 0 2.5rem; }
        .testimonials-eyebrow {
            font-family: 'Caveat', cursive; font-size: 0.72rem;
            text-transform: uppercase; letter-spacing: 0.18em;
            color: var(--accent); margin: 0 0 0.75rem;
        }
        .testimonials-header h2 {
            font-family: 'Tangerine', cursive;
            font-size: clamp(2.8rem, 5.6vw, 4.2rem); font-weight: 700;
            color: var(--text-primary); margin-bottom: 0.75rem;
            letter-spacing: -0.01em;
        }
        .testimonials-header p {
            font-size: 1.25rem; color: var(--text-secondary);
            margin: 0;
        }
        .testimonials-grid {
            max-width: 1400px; margin: 0 auto;
            padding: 0 2.5rem;
            display: grid;
            grid-template-columns: 1.05fr 1fr;
            gap: 2.5rem;
            align-items: stretch;
        }
        .testimonials-col { min-width: 0; }

        /* ── Review carousel (left column) ── */
        .review-carousel {
            position: relative;
            background: var(--surface);
            border-radius: var(--radius-lg);
            padding: 2.5rem 2.5rem 1.75rem;
            box-shadow: var(--shadow-medium);
            display: flex; flex-direction: column;
            height: 100%;
            overflow: hidden;
        }
        .review-stage {
            position: relative;
            flex: 1;
            min-height: 220px;
        }
        .review-card {
            position: absolute; inset: 0;
            display: flex; flex-direction: column; align-items: center; justify-content: center;
            text-align: center;
            gap: 0.85rem;
            opacity: 0;
            transform: translateY(8px);
            transition: opacity 0.45s ease, transform 0.45s ease;
            pointer-events: none;
            padding: 0.5rem 0.25rem;
            font-family: 'Caveat', cursive;
        }
        .review-card.is-active {
            opacity: 1;
            transform: translateY(0);
            pointer-events: auto;
        }
        .review-card-stars {
            color: var(--accent); font-size: 1.05rem; letter-spacing: 0.05em;
        }
        .review-card-text {
            font-family: 'Caveat', cursive;
            font-size: 1.6rem; line-height: 1.55;
            color: var(--text-primary);
            margin: 0;
            max-width: 36ch;
        }
        .review-card-author {
            font-family: 'Caveat', cursive;
            font-size: 1.15rem; font-weight: 700;
            color: var(--text-secondary);
        }
        .review-card-mark {
            position: absolute; top: -6px; left: 18px;
            font-family: 'Caveat', cursive;
            font-size: 4.5rem; line-height: 1;
            color: var(--accent); opacity: 0.18;
            pointer-events: none;
        }
        .review-dots {
            display: flex; gap: 0.5rem; align-items: center;
            margin-top: 1rem;
        }
        .review-dot {
            width: 8px; height: 8px; border-radius: 50%;
            background: var(--rule);
            border: none; padding: 0; cursor: pointer;
            transition: background 0.3s ease, transform 0.3s ease, width 0.3s ease;
        }
        .review-dot:hover { background: var(--text-secondary); }
        .review-dot.is-active {
            background: var(--accent);
            transform: scale(1.4);
        }
        /* Progress bar — fills left-to-right over 3s, resets on every advance */
        .review-progress {
            position: relative;
            height: 3px;
            background: var(--rule);
            border-radius: 2px;
            margin-top: 0.85rem;
            overflow: hidden;
        }
        .review-progress-bar {
            position: absolute; inset: 0 100% 0 0;
            background: var(--accent);
            border-radius: 2px;
            transition: none; /* JS sets width directly to keep it linear */
        }
        .review-carousel.is-paused .review-progress-bar {
            /* Pause indicator (subtle stripe) — only when paused */
            opacity: 0.4;
        }

        /* ── Review carousel hint toast (one-shot, like the hero model's) ── */
        .review-toast {
            position: absolute;
            bottom: 4.5rem; left: 50%;
            transform: translateX(-50%) translateY(20px);
            display: inline-flex; align-items: center; gap: 0.6rem;
            background: var(--text-primary); color: var(--bg-primary);
            padding: 0.55rem 1.1rem; border-radius: var(--radius-full);
            font-family: 'Cormorant Garamond', Georgia, serif; font-size: 0.78rem; font-weight: 500;
            letter-spacing: 0.01em;
            white-space: nowrap;
            box-shadow: var(--shadow-medium);
            opacity: 0; pointer-events: none;
            z-index: 4;
            transition: opacity 0.4s ease, transform 0.4s ease;
        }
        .review-toast.visible {
            opacity: 1;
            transform: translateX(-50%) translateY(0);
        }
        .review-toast::before {
            content: '';
            width: 14px; height: 14px;
            background: currentColor;
            -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M9 11V6a3 3 0 0 1 6 0v5'/><path d='M9 11h6v8a2 2 0 0 1-2 2h-2a2 2 0 0 1-2-2z'/></svg>") center/contain no-repeat;
                    mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M9 11V6a3 3 0 0 1 6 0v5'/><path d='M9 11h6v8a2 2 0 0 1-2 2h-2a2 2 0 0 1-2-2z'/></svg>") center/contain no-repeat;
        }
        @media (prefers-reduced-motion: reduce) {
            .review-toast { transition: none; }
        }

        .testimonials-col { min-width: 0; display: flex; }
        .testimonials-col > * { flex: 1; }

        @media (max-width: 900px) {
            .testimonials-grid { grid-template-columns: 1fr; gap: 1.5rem; padding: 0 1.5rem; }
            .review-carousel { padding: 2rem 1.5rem 1.5rem; }
            .review-stage { min-height: 180px; }
        }

        .featured-review-card {
            background: var(--surface); border-radius: var(--radius-lg);
            padding: 2.5rem; box-shadow: var(--shadow-medium);
            text-align: center; position: relative;
            height: 100%;
            display: flex; flex-direction: column; justify-content: center;
            align-items: center;
        }
        .featured-review-card::before {
            content: '"'; font-family: 'Tangerine', cursive; font-size: 6rem;
            color: var(--accent); opacity: 0.2;
            position: absolute; top: -10px; left: 30px; line-height: 1;
        }
        .review-form-title {
            font-family: 'Caveat', cursive; font-size: 1.5rem;
            color: var(--text-primary); margin-bottom: 1.25rem; line-height: 1.4;
        }
        .review-textarea {
            width: 100%; min-height: 120px;
            padding: 1rem 1.25rem; border-radius: var(--radius-md);
            border: 2px solid var(--rule); background: var(--bg-primary);
            font-family: 'Caveat', cursive; font-size: 1.15rem;
            color: var(--text-primary); resize: vertical; outline: none;
            transition: border-color 0.3s ease;
        }
        .review-textarea:focus { border-color: var(--accent); }
        .review-textarea::placeholder {
            font-family: 'Caveat', cursive; color: var(--text-tertiary);
        }
        .sparkle-btn {
            display: inline-flex; align-items: center; gap: 0.5rem;
            position: relative;
            margin: 1.5rem auto 0;
            padding: 0.5rem 1.25rem; border-radius: var(--radius-full);
            background: var(--accent); color: var(--text-light);
            font-family: 'Caveat', cursive; font-size: 1.2rem; font-weight: 600;
            border: none; cursor: pointer;
            transition: background 0.7s ease, transform 0.3s ease;
            width: auto;
        }
        .sparkle-btn:hover { background: var(--accent-hover); transform: translateY(-2px); }
        .sparkle {
            position: absolute;
            font-size: 1.125rem; color: #F5C542; pointer-events: none;
            display: inline-block;
        }
        .sparkle-a { top: -14px; right: -6px; }
        .sparkle-b { bottom: -14px; left: -6px; }
        .review-thanks {
            display: flex; flex-direction: column; align-items: center;
            justify-content: center; text-align: center;
            gap: 0.75rem; padding: 2rem 0;
            height: 100%;
        }
        .review-thanks-icon {
            font-size: 2.5rem; color: var(--accent);
            line-height: 1;
        }
        .review-thanks-text {
            font-family: 'Caveat', cursive;
            font-size: 1.75rem; font-weight: 700;
            color: var(--text-primary);
        }
        .review-thanks-note {
            font-family: 'Caveat', cursive;
            font-size: 1.1rem; color: var(--text-secondary);
            max-width: 32ch; line-height: 1.5;
            font-style: italic;
        }
        .review-write-another {
            margin-top: 0.75rem;
            background: none; border: 1.5px solid var(--rule);
            color: var(--text-secondary);
            font-family: 'Cormorant Garamond', Georgia, serif; font-size: 1rem;
            padding: 0.6rem 1.5rem; border-radius: var(--radius-full);
            cursor: pointer; transition: border-color 0.25s ease, color 0.25s ease;
        }
        .review-write-another:hover {
            border-color: var(--accent);
            color: var(--accent);
        }
        .review-write-another:focus-visible {
            outline: 2px solid var(--accent);
            outline-offset: 2px;
        }
        .footer {
            background: var(--bg-dark); color: var(--text-light);
            padding: 6rem 4rem 3rem; position: relative; overflow: hidden;
        }
        .footer-watermark {
            position: absolute; top: 50%; left: 50%;
            transform: translate(-50%, -50%);
            font-family: 'Tangerine', cursive;
            font-size: clamp(8rem, 15vw, 15rem); font-weight: 700;
            color: rgba(245, 239, 230, 0.03); white-space: nowrap;
            pointer-events: none; user-select: none;
        }
        .footer-cta { text-align: center; margin-bottom: 4rem; position: relative; z-index: 1; }
        .footer-cta h2 {
            font-family: 'Tangerine', cursive;
            font-size: clamp(2.8rem, 5.6vw, 4.9rem); font-weight: 700;
            margin-bottom: 1rem; color: var(--text-light);
        }
        .footer-cta p {
            font-size: 1.25rem; color: rgba(253, 246, 240, 0.7);
            margin-bottom: 2.5rem; max-width: 500px;
            margin-left: auto; margin-right: auto;
        }
        .footer-whatsapp-btn {
            display: inline-flex; align-items: center; gap: 0.75rem;
            background: #25D366; color: #fff;
            padding: 1rem 2.25rem; border-radius: var(--radius-full);
            font-size: 1.1rem; font-weight: 600; text-decoration: none;
            transition: opacity 0.3s ease, transform 0.3s ease;
            border: none; cursor: pointer;
        }
        .footer-whatsapp-btn:hover {
            opacity: 0.9; transform: translateY(-2px);
        }
        .footer-whatsapp-btn svg { width: 22px; height: 22px; }
        .footer-info {
            display: grid; grid-template-columns: repeat(3, 1fr); gap: 3rem;
            max-width: 1000px; margin: 0 auto 4rem; position: relative; z-index: 1;
        }
        .footer-info-block { text-align: center; }
        .footer-info-block h4 {
            font-family: 'Caveat', cursive; font-size: 0.8rem; font-weight: 700;
            letter-spacing: 0.1em; text-transform: uppercase;
            color: var(--accent); margin-bottom: 1rem;
        }
        .footer-info-block p {
            font-size: 1.25rem; color: rgba(245, 239, 230, 0.78); line-height: 1.6;
        }
        .footer-bottom {
            border-top: 1px solid rgba(245, 239, 230, 0.1);
            padding-top: 2rem;
            display: flex; justify-content: space-between; align-items: center;
            position: relative; z-index: 1;
        }
        .footer-bottom-left { font-size: 0.875rem; color: rgba(245, 239, 230, 0.5); }
        .footer-bottom-right { display: flex; gap: 2rem; }
        .footer-bottom-right a {
            font-size: 0.875rem; color: rgba(245, 239, 230, 0.5);
            text-decoration: none; transition: color 0.3s ease;
        }
        .footer-bottom-right a:hover { color: var(--text-light); }
        @media (max-width: 1024px) {
            .hero-content { grid-template-columns: 1fr; gap: 1.5rem; align-items: start; }
            .hero-text { text-align: left; padding: 5rem 2.5rem 1rem; }
            .hero-visual { max-width: 600px; margin: 0 auto; min-height: 400px; }
            .hero-product-model { height: 420px; }
            .hero-blob { width: 400px; height: 400px; }

            .product-featured { grid-template-columns: 1fr; min-height: 0; padding: 2rem; }
            .product-featured-img { aspect-ratio: 16/9; }
            .puddings-grid { grid-template-columns: 1fr; }
            .cakes-grid { grid-template-columns: 1fr; }

            .featured-review-card { padding: 2rem; }
            .footer-info { grid-template-columns: 1fr; }
        }
        @media (max-width: 768px) {
            nav { padding: 1rem 1.5rem; }
            .nav-actions { display: flex; align-items: center; gap: 0.25rem; }
            .nav-toggle { display: flex; }
            .nav-cart-btn { display: flex; }
            .nav-links-desktop { display: none; }

            .nav-backdrop {
                display: block;
                position: fixed; top: 0; left: 0; width: 100%; height: 100%;
                background: rgba(0,0,0,0.35);
                z-index: 199;
                opacity: 0; pointer-events: none;
                transition: opacity 0.3s ease;
            }
            .nav-backdrop.is-visible {
                opacity: 1; pointer-events: auto;
            }

            /* ── Mobile menu drawer ── */
            .mobile-menu {
                position: fixed; top: 0; right: 0;
                width: min(380px, 100vw); height: 100vh;
                background: var(--bg-primary);
                display: flex; flex-direction: column;
                transform: translateX(100%);
                transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
                z-index: 200;
                border-left: 1px solid var(--rule);
                visibility: hidden;
            }
            .mobile-menu.is-open {
                transform: translateX(0);
                visibility: visible;
            }
            :root[data-theme="dark"] .mobile-menu {
                background: var(--bg-secondary);
            }

            .mobile-menu-header {
                display: flex; align-items: center; justify-content: space-between;
                padding: 1.25rem 1.5rem;
                border-bottom: 1px solid var(--rule);
                flex-shrink: 0;
            }
            .mobile-menu-header-left {
                display: flex; align-items: center; gap: 0.75rem;
            }
            .mm-theme-toggle {
                width: 32px; height: 32px;
            }
            .mm-theme-toggle .theme-icon { width: 16px; height: 16px; }
            .mobile-menu-title {
                font-family: 'Tangerine', cursive;
                font-size: 2rem; font-weight: 700;
                color: var(--text-primary);
            }
            .mobile-menu-close {
                background: none; border: none; cursor: pointer;
                font-size: 1.75rem; line-height: 1;
                color: var(--text-tertiary);
                transition: color 0.2s;
            }
            .mobile-menu-close:hover { color: var(--text-primary); }

            .mobile-menu-body {
                flex: 1; overflow-y: auto;
                padding: 1rem 1.25rem;
                -webkit-overflow-scrolling: touch;
            }

            /* ── Sections ── */
            .mm-section { margin-bottom: 1.5rem; }
            .mm-section-heading {
                font-family: 'Caveat', cursive;
                font-size: 0.85rem; font-weight: 700;
                text-transform: uppercase; letter-spacing: 0.12em;
                color: var(--accent);
                margin-bottom: 0.75rem;
            }

            /* ── Product grid ── */
            .mm-product-grid {
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 0.375rem;
            }
            .mm-product-card {
                display: flex; flex-direction: column;
                background: var(--surface);
                border-radius: 8px;
                overflow: hidden;
                text-decoration: none; color: inherit;
                transition: transform 0.2s ease;
            }
            .mm-product-card:active { transform: scale(0.97); }
            .mm-product-card .nav-sub-img {
                width: 100%; aspect-ratio: 1; height: auto;
                object-fit: cover; border-radius: 0;
            }
            .mm-product-info {
                display: flex; flex-direction: column;
                padding: 0.375rem 0.5rem;
            }
            .mm-product-name {
                font-family: 'Cormorant Garamond', serif;
                font-size: 0.7rem; font-weight: 600;
                color: var(--text-primary);
                line-height: 1.2;
            }
            .mm-product-price {
                font-family: 'Cormorant Garamond', Georgia, serif;
                font-size: 0.75rem; font-weight: 700;
                color: var(--accent);
            }

            /* ── Filter chips ── */
            .mm-filter-chips {
                display: flex; flex-wrap: wrap; gap: 0.4rem;
            }
            .mm-filter-chip {
                padding: 0.4rem 0.85rem;
                border: 1.5px solid var(--rule);
                border-radius: 999px;
                background: transparent;
                font-family: 'Cormorant Garamond', serif;
                font-size: 0.85rem;
                color: var(--text-secondary);
                cursor: pointer;
                transition: all 0.2s ease;
            }
            .mm-filter-chip:hover {
                border-color: var(--accent);
                color: var(--text-primary);
            }
            .mm-filter-chip.active {
                background: var(--accent);
                border-color: var(--accent);
                color: #F5EFE6;
            }

            /* ── Cart items ── */
            .mm-cart-items { display: flex; flex-direction: column; gap: 0.5rem; }
            .mm-cart-empty {
                font-family: 'Caveat', cursive;
                font-size: 1.1rem; color: var(--text-tertiary);
                text-align: center; padding: 1rem 0;
            }
            .mm-cart-item {
                display: flex; align-items: center; gap: 0.6rem;
                padding: 0.5rem;
                background: var(--surface);
                border-radius: 8px;
            }
            .mm-cart-item-img {
                width: 40px; height: 40px;
                border-radius: 6px; object-fit: cover;
                flex-shrink: 0;
            }
            .mm-cart-item-info { flex: 1; min-width: 0; }
            .mm-cart-item-name {
                font-family: 'Cormorant Garamond', serif;
                font-size: 0.85rem; font-weight: 600;
                color: var(--text-primary);
                white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
            }
            .mm-cart-item-meta {
                font-size: 0.75rem; color: var(--text-tertiary);
            }
            .mm-cart-item-qty-row {
                display: flex; align-items: center; gap: 0.25rem;
                margin-top: 0.2rem;
            }
            .mm-cart-qty-btn {
                width: 22px; height: 22px; border-radius: 50%;
                border: 1.5px solid var(--rule);
                background: var(--surface);
                color: var(--text-primary);
                font-size: 0.8rem; font-weight: 700;
                display: flex; align-items: center; justify-content: center;
                cursor: pointer; padding: 0; line-height: 1;
                transition: background 0.2s ease;
            }
            .mm-cart-qty-btn:hover { background: var(--bg-secondary); }
            .mm-cart-item-qty {
                min-width: 1.5ch; text-align: center;
                font-size: 0.85rem; font-weight: 600;
                color: var(--text-primary); user-select: none;
            }
            .mm-cart-item-price {
                font-family: 'Cormorant Garamond', Georgia, serif;
                font-size: 0.95rem; font-weight: 700;
                color: var(--text-primary); white-space: nowrap;
                margin-left: auto;
            }
            .mm-cart-item-remove {
                background: none; border: none; cursor: pointer;
                color: var(--text-tertiary); font-size: 0.8rem;
                padding: 0.2rem; transition: color 0.2s;
            }
            .mm-cart-item-remove:hover { color: var(--accent); }

            /* ── Sticky checkout bar ── */
            .mm-checkout-bar {
                flex-shrink: 0;
                display: flex; align-items: center; gap: 1rem;
                padding: 1rem 1.5rem;
                border-top: 1px solid var(--rule);
                background: var(--bg-primary);
            }
            :root[data-theme="dark"] .mm-checkout-bar {
                background: var(--bg-secondary);
            }
            .mm-checkout-total {
                font-family: 'Cormorant Garamond', Georgia, serif;
                font-size: 1.5rem; font-weight: 700;
                color: var(--text-primary);
            }
            .mm-checkout-btn {
                flex: 1;
                padding: 0.75rem 1.5rem;
                background: var(--text-primary);
                color: var(--bg-primary);
                border: none; border-radius: 999px;
                font-family: 'Cormorant Garamond', serif;
                font-size: 1rem; font-weight: 600;
                cursor: pointer;
                transition: background 0.3s ease;
            }
            .mm-checkout-btn:hover {
                background: var(--accent); color: #F5EFE6;
            }
            .mm-checkout-btn:disabled {
                opacity: 0.4; cursor: not-allowed;
            }

            .hero-text { padding: 4.5rem 1.5rem 2rem; }
            .hero-visual { min-height: 350px; }
            .hero-product-model { height: 380px; }
            .model-toast { font-size: 0.75rem; padding: 0.6rem 1.2rem; bottom: 1.25rem; }
            .model-toast svg { width: 18px; height: 18px; }
            .products-grid { padding: 0 1.5rem; }
            .products-header { padding: 0 1.5rem; }
            .product-featured-info { padding: 2rem 1.5rem; }
            .puddings { padding: 4rem 0; }
            .puddings-header { padding: 0 1.5rem; }
            .puddings-grid { padding: 0 1.5rem; }
            .cakes { padding: 4rem 0; }
            .cakes-header { padding: 0 1.5rem; }
            .cakes-grid { padding: 0 1.5rem; }
            .testimonials { padding: 4rem 1.5rem; }
            .footer { padding: 4rem 1.5rem 2rem; }
        }
        ::-webkit-scrollbar { width: 8px; }
        ::-webkit-scrollbar-track { background: var(--bg-primary); }
        ::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 4px; }
        ::-webkit-scrollbar-thumb:hover { background: var(--accent-hover); }

        /* ── WhatsApp FAB ── */
        .wa-fab {
            position: fixed;
            bottom: 1.5rem;
            right: 1.5rem;
            z-index: 90;
            width: 56px;
            height: 56px;
            border-radius: 50%;
            background: #25D366;
            color: #fff;
            border: none;
            padding: 14px;
            cursor: pointer;
            box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
            transition: transform 0.2s, box-shadow 0.2s;
            animation: wa-glow 2s ease-in-out infinite;
        }
        .wa-fab:hover { transform: scale(1.08); }
        @keyframes wa-glow {
            0%, 100% { box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35); }
            50% { box-shadow: 0 4px 28px rgba(37, 211, 102, 0.65); }
        }

        /* ── WhatsApp toast ── */
        .wa-toast {
            position: fixed;
            bottom: 5rem;
            right: 1.5rem;
            z-index: 89;
            background: var(--surface, #EAD4CF);
            color: var(--text-primary);
            padding: 0.75rem 1.25rem;
            border-radius: 12px;
            font-size: 0.9rem;
            box-shadow: var(--shadow-medium, 0 8px 32px rgba(26,18,11,0.12));
            opacity: 0;
            transform: translateY(10px);
            pointer-events: none;
            transition: opacity 0.3s, transform 0.3s;
            max-width: 260px;
        }
        .wa-toast.is-visible { opacity: 1; transform: translateY(0); }
        .wa-toast span { display: block; }

        /* ── WhatsApp inbox modal ── */
        .wa-modal {
            position: fixed;
            inset: 0;
            z-index: 200;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s;
        }
        .wa-modal.is-open { opacity: 1; pointer-events: auto; }

        .wa-modal-backdrop {
            position: absolute;
            inset: 0;
            background: rgba(0,0,0,0.35);
        }

        .wa-inbox {
            position: relative;
            width: min(380px, calc(100vw - 2rem));
            max-height: min(600px, calc(100vh - 4rem));
            background: #e5ddd5;
            border-radius: 16px;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            box-shadow: 0 16px 48px rgba(0,0,0,0.25);
            transform: scale(0.92) translateY(20px);
            transition: transform 0.3s cubic-bezier(0.22,1,0.36,1);
        }
        .wa-modal.is-open .wa-inbox { transform: scale(1) translateY(0); }

        .wa-inbox-header {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.75rem 1rem;
            background: #075e54;
            color: #fff;
            flex-shrink: 0;
        }
        .wa-inbox-back {
            background: none; border: none; color: #fff;
            font-size: 1.4rem; cursor: pointer; padding: 0; line-height: 1;
        }
        .wa-inbox-avatar {
            width: 36px; height: 36px;
            border-radius: 50%;
            background: rgba(255,255,255,0.15);
            display: flex; align-items: center; justify-content: center;
            flex-shrink: 0;
        }
        .wa-inbox-avatar svg { width: 20px; height: 20px; }
        .wa-inbox-contact {
            flex: 1;
            display: flex; flex-direction: column;
        }
        .wa-inbox-name { font-size: 0.95rem; font-weight: 600; }
        .wa-inbox-status { font-size: 0.7rem; opacity: 0.8; }
        .wa-inbox-close {
            background: none; border: none; color: #fff;
            font-size: 1.3rem; cursor: pointer; padding: 0 0.25rem;
            font-weight: 700; letter-spacing: 2px;
        }

        .wa-inbox-chat {
            flex: 1;
            padding: 1rem;
            overflow-y: auto;
        }
        .wa-inbox-bubble {
            max-width: 85%;
            padding: 0.6rem 0.85rem;
            border-radius: 8px;
            font-size: 0.85rem;
            line-height: 1.45;
            position: relative;
            word-wrap: break-word;
        }
        .wa-inbox-bubble p { margin: 0 0 0.4rem; }
        .wa-inbox-bubble p:last-child { margin-bottom: 0; }
        .wa-inbox-bubble-received {
            background: #fff;
            color: #1a1a1a;
            border-top-left-radius: 2px;
            margin-right: auto;
        }
        .wa-inbox-time {
            display: block;
            font-size: 0.6rem;
            color: #999;
            text-align: right;
            margin-top: 0.15rem;
        }

        .wa-inbox-input-row {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.6rem 1rem;
            background: #f0f0f0;
            flex-shrink: 0;
        }
        .wa-inbox-input {
            flex: 1;
            border: none;
            border-radius: 20px;
            padding: 0.55rem 1rem;
            font-size: 0.85rem;
            font-family: 'Cormorant Garamond', serif;
            background: #fff;
            outline: none;
            color: #1a1a1a;
        }
        .wa-inbox-send {
            width: 40px; height: 40px;
            border-radius: 50%;
            border: none;
            background: #075e54;
            color: #fff;
            cursor: pointer;
            display: flex; align-items: center; justify-content: center;
            flex-shrink: 0;
            transition: background 0.2s;
        }
        .wa-inbox-send:hover { background: #054d44; }

        @media (max-width: 768px) {
            .wa-fab { bottom: 1rem; right: 1rem; width: 50px; height: 50px; padding: 12px; }
            .wa-toast { bottom: 4.25rem; right: 1rem; max-width: 220px; font-size: 0.8rem; }
        }

        /* ── Dark theme prompt modal ── */
        .theme-modal {
            position: fixed; inset: 0; z-index: 9999;
            display: flex; align-items: center; justify-content: center;
            pointer-events: none; visibility: hidden;
        }
        .theme-modal.is-open { pointer-events: auto; visibility: visible; }
        .theme-modal-backdrop {
            position: absolute; inset: 0;
            background: rgba(0,0,0,0.45);
            opacity: 0; transition: opacity 0.3s ease;
        }
        .theme-modal.is-open .theme-modal-backdrop { opacity: 1; }
        .theme-modal-card {
            position: relative;
            background: var(--bg-primary);
            border: 1px solid var(--rule);
            border-radius: 16px;
            padding: 2.5rem 2.25rem 2rem;
            max-width: 400px; width: calc(100% - 3rem);
            text-align: center;
            box-shadow: 0 20px 60px rgba(26,18,11,0.18);
            transform: translateY(20px) scale(0.96);
            opacity: 0;
            transition: transform 0.4s cubic-bezier(0.22,1,0.36,1), opacity 0.3s ease;
        }
        .theme-modal.is-open .theme-modal-card {
            transform: translateY(0) scale(1); opacity: 1;
        }
        :root[data-theme="dark"] .theme-modal-card {
            box-shadow: 0 20px 60px rgba(0,0,0,0.4);
        }
        .theme-modal-close {
            position: absolute; top: 0.75rem; right: 1rem;
            background: none; border: none; cursor: pointer;
            font-size: 1.75rem; line-height: 1;
            color: var(--text-tertiary);
            transition: color 0.2s;
        }
        .theme-modal-close:hover { color: var(--text-primary); }
        .theme-modal-icon {
            color: var(--accent);
            margin-bottom: 1rem;
        }
        .theme-modal-title {
            font-family: 'Tangerine', cursive;
            font-size: 2.4rem; font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 0.5rem; line-height: 1.1;
        }
        .theme-modal-text {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.1rem; line-height: 1.5;
            color: var(--text-secondary);
            margin-bottom: 1.75rem;
        }
        .theme-modal-actions {
            display: flex; flex-direction: column; gap: 0.6rem;
        }
        .theme-modal-btn {
            padding: 0.8rem 1.5rem;
            border-radius: 999px;
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.05rem; font-weight: 600;
            cursor: pointer; border: none;
            transition: background 0.3s ease, color 0.3s ease;
        }
        .theme-modal-btn-primary {
            background: var(--text-primary);
            color: var(--bg-primary);
        }
        .theme-modal-btn-primary:hover {
            background: var(--accent); color: var(--text-light);
        }
        .theme-modal-btn-secondary {
            background: transparent;
            color: var(--text-tertiary);
            border: 1px solid var(--rule);
        }
        .theme-modal-btn-secondary:hover {
            color: var(--text-primary); border-color: var(--text-secondary);
        }

        /* ── Review dummy toast ── */
        .review-toast-dummy {
            position: fixed;
            bottom: 5rem;
            left: 50%;
            transform: translateX(-50%) translateY(20px);
            background: var(--text-primary);
            color: var(--bg-primary);
            padding: 0.85rem 1.75rem;
            border-radius: 999px;
            font-family: 'Cormorant Garamond', serif;
            font-size: 1rem;
            font-weight: 600;
            box-shadow: 0 8px 32px rgba(0,0,0,0.2);
            z-index: 9999;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.35s ease, transform 0.35s ease;
            white-space: nowrap;
        }
        .review-toast-dummy.visible {
            opacity: 1;
            transform: translateX(-50%) translateY(0);
        }

        @media (prefers-reduced-motion: reduce) {
            *, *::before, *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
                scroll-behavior: auto !important;
            }
            .hero-headline .line-inner { transform: translateY(0) !important; }
        }

