        * { scroll-behavior: smooth; }
        body { background-color: #FDFDFD; overflow-x: hidden; }
        .hero-zoom { animation: zoom-out 20s infinite alternate; }
        @keyframes zoom-out { from { transform: scale(1.1); } to { transform: scale(1); } }
        .product-card { transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1); }
        .product-card:hover { transform: translateY(-12px); }
        .stagger-in > * { opacity: 0; transform: translateY(30px); animation: fadeInUp 0.8s forwards; }
        @keyframes fadeInUp { to { opacity: 1; transform: translateY(0); } }
        .custom-scrollbar::-webkit-scrollbar { width: 5px; }
        .custom-scrollbar::-webkit-scrollbar-thumb { background: #D4AF37; border-radius: 10px; }
        .mask-gold { mask-image: linear-gradient(to bottom, black 50%, transparent 100%); }
