/* Reset & Variables */
*{margin:0; padding:0; box-sizing:border-box; font-family:'Poppins',sans-serif;}
:root{
  --primary:#0d6efd;
  --secondary:#ffc107;
  --dark:#212529;
  --light:#fff;
  --glass-bg: rgba(255,255,255,0.1);
  --glass-shadow: rgba(0,0,0,0.25);
}

/* Container */
.container{width:90%; max-width:1200px; margin:auto;}

/* Header */
header{background:var(--primary); color:var(--light); padding:1rem 0; position:sticky; top:0; z-index:1000; box-shadow:0 5px 10px rgba(0,0,0,0.2);}
header .nav-container{display:flex; justify-content:space-between; align-items:center;}
header .logo{font-size:2rem; font-weight:700;}
nav ul{display:flex; list-style:none;}
nav ul li{margin-left:1.5rem;}
nav ul li a{color:var(--light); text-decoration:none; font-weight:500;}
nav ul li a:hover, nav ul li a.active{text-decoration:underline;}
.menu-toggle{display:none; font-size:1.5rem; cursor:pointer;}

/* Hero Section */
.products-hero{position:relative; height:40vh; display:flex; justify-content:center; align-items:center; background:linear-gradient(135deg,#6c63ff,#0d6efd);}
.hero-overlay{position:absolute; top:0; left:0; width:100%; height:100%; background:rgba(0,0,0,0.35);}
.hero-content{position:relative; color:#fff; text-align:center; max-width:700px; opacity:0; transform:translateY(30px); animation:fadeInUp 1s forwards;}
.hero-content h2{font-size:3rem; margin-bottom:1rem;}
.hero-content p{font-size:1.2rem;}

/* Products Grid */
.products-grid{display:grid; grid-template-columns:repeat(auto-fit,minmax(250px,1fr)); gap:2rem; padding:5rem 0;}
.product-card{background:var(--glass-bg); backdrop-filter:blur(15px); border-radius:20px; color:#fff; padding:1rem; box-shadow:0 8px 20px var(--glass-shadow); display:flex; flex-direction:column; align-items:center; opacity:0; transform:translateY(30px);}
.product-card img{width:100%; border-radius:15px; margin-bottom:1rem;}
.product-card h3{margin-bottom:0.5rem;}
.product-card .price{color:var(--secondary); font-weight:600; margin-bottom:1rem; font-size:1.2rem;}
.product-card .btn{padding:0.8rem 2rem; background:var(--secondary); color:var(--dark); border:none; border-radius:10px; cursor:pointer; transition:0.3s; text-decoration:none;}
.product-card .btn:hover{background:#e0a800;}

/* Footer */
footer{background:var(--dark); color:var(--light); padding:2rem 0; text-align:center;}
footer .footer-links a{color:var(--secondary); margin:0 0.5rem; text-decoration:none;}
footer .footer-links a:hover{text-decoration:underline;}
footer .socials a{margin:0 0.5rem; color:var(--secondary); text-decoration:none;}
footer .socials a:hover{color:#fff;}

/* Animations */
@keyframes fadeInUp{to{opacity:1; transform:translateY(0);}}
.slide-up{opacity:0; transform:translateY(30px); animation:fadeInUp 1s forwards;}
.delay-1{animation-delay:0.2s;}
.delay-2{animation-delay:0.4s;}
.delay-3{animation-delay:0.6s;}
.delay-4{animation-delay:0.8s;}
.delay-5{animation-delay:1s;}

@media(max-width:768px){
  nav ul{display:none; flex-direction:column; background:var(--primary); padding:1rem; position:absolute; top:60px; right:0; width:200px; border-radius:0 0 0 10px;}
  nav ul.show{display:flex;}
  .menu-toggle{display:block;}
}
