/* ====== Reset & Fonts ====== */
* { margin:0; padding:0; box-sizing:border-box; }
body { font-family:'Poppins', sans-serif; background:#f9f9f9; color:#333; }
a { text-decoration:none; color:inherit; }
ul { list-style:none; }
.container { width:90%; max-width:1200px; margin:0 auto; }

/* ====== Header ====== */
.header {
  position:fixed; top:0; width:100%; background:#0d1b2a; color:#fff; padding:15px 0; z-index:1000;
  box-shadow:0 5px 20px rgba(0,0,0,0.2);
}
.header-container { display:flex; justify-content:space-between; align-items:center; }
.logo {
  font-family:'Orbitron', sans-serif;
  font-size:36px;
  font-weight:700;
  background:linear-gradient(45deg,#ff7e5f,#feb47b);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}
.nav ul { display:flex; gap:25px; }
.nav ul li a { color:#fff; font-weight:600; }
.nav ul li a.active { color:#ff7e5f; }
.nav ul li a:hover { color:#feb47b; }
.mobile-menu { display:none; font-size:28px; cursor:pointer; color:#fff; }
@media(max-width:480px){
  .nav ul { display:none; flex-direction:column; position:absolute; top:60px; right:0; background:#0d1b2a; width:200px; padding:20px 0; gap:10px; }
  .nav ul.active { display:flex; }
  .mobile-menu { display:block; }
}

/* ====== Page Hero ====== */
.page-hero {
  padding:150px 0 80px;
  background:linear-gradient(135deg,#0d1b2a,#1b263b);
  text-align:center;
  color:#fff;
}
.page-hero h1 { font-size:48px; font-weight:700; margin-bottom:15px; }
.page-hero p { font-size:20px; color:#feb47b; }

/* ====== Products Section ====== */
.products-section { padding:80px 0; background:#fefefe; }
.product-grid {
  display:flex; flex-wrap:wrap; gap:30px; justify-content:center;
}
.product-card {
  background:#fff; padding:20px; border-radius:20px; text-align:center;
  box-shadow:0 15px 35px rgba(0,0,0,0.1); transition:transform 0.3s, box-shadow 0.3s;
  flex:1 1 250px; max-width:300px;
}
.product-card:hover { transform:translateY(-10px); box-shadow:0 25px 50px rgba(0,0,0,0.2); }
.product-card img { width:100%; border-radius:15px; margin-bottom:15px; transition:transform 0.3s; }
.product-card img:hover { transform:scale(1.05); }
.product-card h3 { margin-bottom:10px; font-size:22px; font-weight:600; }
.product-card p { font-weight:700; margin-bottom:15px; color:#ff7e5f; }
.add-cart {
  cursor:pointer; padding:12px 25px; border:none; border-radius:30px;
  background:linear-gradient(45deg,#ff7e5f,#feb47b); color:#fff; font-weight:600;
  transition:all 0.3s ease;
}
.add-cart:hover { transform:scale(1.05); box-shadow:0 8px 20px rgba(255,126,95,0.4); }

/* ====== Footer ====== */
footer { background:#0d1b2a; color:#fff; padding:50px 0 30px 0; text-align:center; }
.footer-links a { margin:0 10px; color:#fff; }
.footer-links a:hover { color:#ff7e5f; }
.social a { margin:0 10px; color:#fff; }
.social a:hover { color:#feb47b; }

/* ====== Responsive ====== */
@media(max-width:992px){
  .page-hero h1 { font-size:38px; }
  .page-hero p { font-size:18px; }
}
@media(max-width:768px){
  .product-grid { gap:20px; }
}
@media(max-width:480px){
  .product-card { max-width:100%; }
}
