        body { font-family: 'Inter', sans-serif; scroll-behavior: smooth; overflow-x: hidden; }
        .glass { background: rgba(255, 255, 255, 0.9); backdrop-filter: blur(20px); }
        .glow-pink:hover { box-shadow: 0 0 30px rgba(255, 92, 141, 0.5); }
        .page-transition { animation: fadeIn 1s cubic-bezier(0.16, 1, 0.3, 1); }
        @keyframes fadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
        .img-zoom { transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1); }
        .card-hover:hover .img-zoom { transform: scale(1.08); }
        .cart-drawer { transform: translateX(100%); transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1); }
        .cart-active .cart-drawer { transform: translateX(0); }
        .parallax-bg { background-attachment: fixed; background-position: center; background-size: cover; }
        .no-scrollbar::-webkit-scrollbar { display: none; }
        @media (max-width: 768px) { .parallax-bg { background-attachment: scroll; } }
