
:root{
  --bg:#0f1113;
  --card:#121416;
  --muted:#9aa0a6;
  --accent:#bfa06a;
  --accent-2:#c55b7a;
  --radius:14px;
  --transition:.28s;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
}
body{
  margin:0;
  background:linear-gradient(180deg,#0b0b0c 0%, #0f1113 100%);
  color:#e9ecef;
  line-height:1.45;
  font-size:16px;
}
.container{
  max-width:1200px;
  margin:0 auto;
  padding:20px;
}
.header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:18px 0;
}
.logo img{height:44px;}
.nav a{
  color:var(--muted);
  text-decoration:none;
  font-weight:600;
  transition:.28s;
}
.nav a:hover{ color:var(--accent); }
.hero{
  display:grid;
  grid-template-columns:1fr 420px;
  gap:28px;
  align-items:center;
  margin:20px 0;
}
.hero .banner-card{
  background:rgba(255,255,255,0.03);
  padding:28px;
  border-radius:18px;
}
.hero h1{ font-size:34px; margin:0 0 10px; }
.hero p{ color:var(--muted); }
.grid{
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(240px,1fr));
  gap:18px;
}
.product-card{
  background:var(--card);
  border-radius:var(--radius);
  padding:14px;
  transition:.28s;
  box-shadow: 0 6px 20px rgba(2,6,10,0.4);
}
.product-card:hover{
  transform:translateY(-6px);
  box-shadow:0 14px 40px rgba(2,6,10,0.6);
}
.product-image{
  background:rgba(255,255,255,0.03);
  border-radius:12px;
  height:220px;
  display:flex;
  justify-content:center;
  align-items:center;
  margin-bottom:12px;
}
.product-image img{
  max-width:100%;
  max-height:100%;
  object-fit:contain;
}
.badge{
  position:absolute;
  top:12px;
  left:12px;
  background:linear-gradient(90deg,#bfa06a,#c55b7a);
  color:#0f0f0f;
  padding:6px 10px;
  border-radius:999px;
  font-size:12px;
  font-weight:700;
}
.product-title{
  font-weight:700;
  font-size:15px;
  color:#fff;
  margin-bottom:6px;
}
.product-desc{
  font-size:13px;
  color:var(--muted);
  margin-bottom:12px;
  min-height:36px;
}
.price{
  font-weight:800;
  font-size:18px;
  color:var(--accent);
}
.btn{
  background:linear-gradient(90deg,var(--accent), #d1a86f);
  border:none;
  padding:10px 14px;
  border-radius:10px;
  font-weight:700;
  cursor:pointer;
  color:#0b0b0b;
  transition:.28s;
}
.btn:hover{
  transform:translateY(-3px);
  box-shadow:0 10px 25px rgba(191,160,106,0.15);
}
.footer{
  margin-top:36px;
  padding:20px 0;
  color:var(--muted);
  border-top:1px solid rgba(255,255,255,0.05);
  display:flex;
  justify-content:space-between;
}
