        body { background-color: #070707; color: #F2F2F2; font-family: 'Montserrat', sans-serif; overflow-x: hidden; scroll-behavior: smooth; }
        .serif-italic { font-family: 'Cormorant Garamond', serif; font-style: italic; font-weight: 300; }
        .letter-spaced { letter-spacing: 0.3em; text-transform: uppercase; }
        
        /* Animations */
        @keyframes subtleZoom { from { transform: scale(1); } to { transform: scale(1.08); } }
        .hero-zoom { animation: subtleZoom 25s ease-in-out infinite alternate; }

        @keyframes sweep {
            0% { transform: translateX(-100%) skewX(-20deg); opacity: 0; }
            50% { opacity: 0.3; }
            100% { transform: translateX(250%) skewX(-20deg); opacity: 0; }
        }
        .light-sweep {
            position: absolute; inset: 0;
            background: linear-gradient(to right, transparent, rgba(255,255,255,0.05), transparent);
            animation: sweep 10s infinite ease-in-out;
        }

        .fade-up { opacity: 0; transform: translateY(40px); transition: all 1.4s cubic-bezier(0.16, 1, 0.3, 1); }
        .fade-up.active { opacity: 1; transform: translateY(0); }

        .glass { background: rgba(7, 7, 7, 0.85); backdrop-filter: blur(20px); border-bottom: 1px solid rgba(255,255,255,0.03); }
        
        .product-card img { transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1); }
        .product-card:hover img { transform: scale(1.05); }

        ::-webkit-scrollbar { width: 4px; }
        ::-webkit-scrollbar-thumb { background: #E6C88A; }
    