        :root { scroll-behavior: smooth; }
        .mag-shadow { box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.08); }
        .reveal { opacity: 0; transform: translateY(40px); transition: all 1s cubic-bezier(0.22, 1, 0.36, 1); }
        .reveal.active { opacity: 1; transform: translateY(0); }
        .cart-open { transform: translateX(0) !important; }
        .nav-glass { backdrop-filter: blur(20px); background: rgba(255, 255, 255, 0.85); border-bottom: 1px solid rgba(0,0,0,0.05); }
        
        /* Custom scrollbar for editorial feel */
        ::-webkit-scrollbar { width: 5px; }
        ::-webkit-scrollbar-track { background: #F9F7F2; }
        ::-webkit-scrollbar-thumb { background: #0F0F0F; }

        @keyframes marquee {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }
        .marquee-inner { display: flex; animation: marquee 30s linear infinite; }
