@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;700&display=swap');
:root { --primary: #6366f1; --dark: #1e293b; --glass-bg: rgba(255, 255, 255, 0.45); }
* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Poppins', sans-serif; color: var(--dark); background: #f0f9ff; min-height: 100vh; }
.background-container { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: -1; background: linear-gradient(to bottom right, #e0f2fe, #fdf4ff); }
.blob { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.6; animation: move infinite alternate; }
.blob-1 { top: -10%; right: -10%; width: 50vw; height: 50vw; background: #c4b5fd; animation-duration: 30s; }
.blob-2 { bottom: -10%; left: -10%; width: 40vw; height: 40vw; background: #fdba74; animation-duration: 25s; }
@keyframes move { 100% { transform: translate(-30px, 30px) scale(1.1); } }
.hidden { opacity: 0; filter: blur(5px); transform: translateY(50px) scale(0.9); transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.show { opacity: 1; filter: blur(0); transform: translateY(0) scale(1); }
.delay-1 { transition-delay: 100ms; }
.delay-2 { transition-delay: 200ms; }
.delay-3 { transition-delay: 300ms; }
nav { background: rgba(255, 255, 255, 0.5); backdrop-filter: blur(15px); padding: 1rem 10%; display: flex; justify-content: space-between; align-items: center; }
.logo { font-weight: 700; font-size: 1.4rem; color: var(--primary); text-decoration: none; }
.nav-links a { text-decoration: none; color: #334155; margin-left: 2.5rem; font-weight: 500; }
.container { max-width: 1200px; margin: 40px auto; padding: 20px; }
.page-title { text-align: center; margin-bottom: 50px; }
.page-title h1 { font-size: 3rem; color: #1e293b; }
.product-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.product-card { background: var(--glass-bg); backdrop-filter: blur(20px); border: 1px solid rgba(255, 255, 255, 0.5); border-radius: 20px; overflow: hidden; transition: all 0.5s ease; display: flex; flex-direction: column; height: 100%; }
.product-card:hover { transform: translateY(-10px); background: rgba(255, 255, 255, 0.8); box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
.product-img-box { height: 250px; padding: 20px; display: flex; align-items: center; justify-content: center; }
.product-img-box img { max-height: 100%; max-width: 100%; object-fit: contain; }
.product-details { padding: 25px; flex-grow: 1; display: flex; flex-direction: column; }
.product-details h3 { font-size: 1.2rem; margin-bottom: 10px; color: #0f172a; }
.buy-btn { display: block; width: 100%; padding: 15px; background: #f59e0b; color: white; font-weight: bold; text-decoration: none; border-radius: 12px; margin-top: auto; transition: 0.3s; }
.buy-btn:hover { background: #d97706; transform: scale(1.02); }