        :root {
            --navy: #213448;
            --cream: #FFF6F6;
            --accent: #C08552;
            --navy-blur: rgba(33, 52, 72, 0.7);
        }

        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--cream);
            color: var(--navy);
            overflow-x: hidden;
            scroll-behavior: smooth;
        }

        .serif { font-family: 'Playfair Display', serif; }

        /* --- Hero Section Logic --- */
        .hero-viewport {
            height: 200vh;
            position: relative;
            overflow: hidden;
        }
        .hero-fixed-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 200vh;
            z-index: -1;
            background: url('https://i.pinimg.com/1200x/c6/9d/6b/c69d6bee94bd9c4707d2c335ef1d183d.jpg') center/cover no-repeat;
            transform: scale(1.1);
        }
        @keyframes slowZoom { from { transform: scale(1); } to { transform: scale(1.15); } }

.hero-scroll-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; /* changed from min-height: 80vh */
    max-height: 100vh; /* optional: ensures it doesn't exceed viewport */
    background: var(--navy-blur);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

        /* --- Scroll Reveal Animations --- */
        .reveal { opacity: 0; transform: translateY(40px); transition: all 1s cubic-bezier(0.2, 1, 0.3, 1); }
        .reveal.active { opacity: 1; transform: translateY(0); }
        
        .line-draw { width: 0; height: 1px; background: var(--navy); transition: width 1.5s ease; }
        .line-draw.active { width: 100%; }
        
        .v-line-draw { height: 0; width: 1px; background: var(--navy); transition: height 1.5s ease; }
        .v-line-draw.active { height: 100%; }

        .slide-right { transform: translateX(80px); opacity: 0; transition: all 1.2s ease; }
        .slide-right.active { transform: translateX(0); opacity: 1; }

        /* --- UI Components --- */
        .btn-accent { background: var(--accent); color: var(--cream); }
        .btn-accent:hover { filter: brightness(1.1); transform: translateY(-2px); transition: all 0.3s; }

        .product-card-price {
            background: white;
            padding: 0.75rem 1.5rem;
            position: absolute;
            bottom: -20px;
            left: 20px;
            box-shadow: 0 10px 20px rgba(0,0,0,0.05);
            font-weight: 700;
        }

        .hide-scrollbar::-webkit-scrollbar { display: none; }
        .hide-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }

        .modal-overlay {
            position: fixed;
            inset: 0;
            background: rgba(33, 52, 72, 0.95);
            z-index: 1000;
            display: none;
            align-items: center;
            justify-content: center;
            backdrop-filter: blur(10px);
        }

        .cart-sidebar {
            position: fixed;
            top: 0;
            right: 0;
            height: 100%;
            width: 450px;
            background: white;
            z-index: 500;
            transform: translateX(100%);
            transition: transform 0.6s cubic-bezier(0.7, 0, 0.3, 1);
            box-shadow: -20px 0 50px rgba(0,0,0,0.1);
        }
        .cart-sidebar.open { transform: translateX(0); }
