:root{
  --bg:#0b0c10;
  --panel:#11131a;
  --panel2:#0f1216;
  --text:#eaeaea;
  --muted:#9ca3af;
  --border:#2a2f37;
  --accent:#60a5fa;
  --gold:#f5c84c;
  --danger:#ef4444;
  --radius:16px;
}

*{ box-sizing:border-box; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  background: radial-gradient(1200px 700px at 15% 0%, #111827 0%, var(--bg) 55%) fixed;
  color:var(--text);
}
a{ color:inherit; }
.wrap{ max-width:1100px; margin:0 auto; padding:18px; }

.topbar{
  position:sticky; top:0; z-index:20;
  background: rgba(11,12,16,.7);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--border);
}
.nav{
  display:flex; align-items:center; justify-content:space-between; gap:14px;
  padding:14px 18px;
}
.brand{
  display:flex; align-items:center; gap:10px; text-decoration:none;
}
.logo{
  width:36px; height:36px; border-radius:12px;
  background: linear-gradient(135deg, var(--accent), #a78bfa);
  display:inline-block;
}
.brand strong{ letter-spacing:.2px; }
.brand small{ color:var(--muted); display:block; margin-top:2px; font-size:12px; }

.pill{
  display:inline-flex; align-items:center; gap:8px;
  padding:9px 12px; border-radius:999px;
  border:1px solid var(--border);
  background: rgba(17,19,26,.55);
  color:var(--muted);
  text-decoration:none;
}
.pill:hover{ filter:brightness(1.06); }

.grid{
  display:grid;
  grid-template-columns: repeat(12, minmax(0,1fr));
  gap:14px;
}
.card{
  border:1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(17,19,26,.72);
  box-shadow: 0 10px 30px rgba(0,0,0,.22);
}
.card .inner{ padding:16px; }
.h1{
  margin:14px 0 6px;
  font-size: 34px;
  letter-spacing:-.4px;
}
.note{ color:var(--muted); font-size:13px; line-height:1.45; }

.kpis{
  display:flex; gap:10px; flex-wrap:wrap; margin-top:10px;
}
.kpi{
  border:1px solid var(--border);
  background: rgba(15,18,22,.7);
  border-radius: 14px;
  padding:10px 12px;
  min-width:140px;
}
.kpi .n{ font-weight:800; font-size:18px; }
.kpi .l{ color:var(--muted); font-size:12px; margin-top:2px; }

.cat{
  display:flex; align-items:center; justify-content:space-between; gap:12px;
  padding:14px 14px;
  text-decoration:none;
}
.cat:hover{ background: rgba(255,255,255,.03); }
.badge{
  display:inline-flex; align-items:center;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid var(--border);
  background: rgba(15,18,22,.7);
  color:var(--muted);
  font-size:12px;
  white-space:nowrap;
}

.products{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:14px;
}
@media (max-width: 980px){
  .products{ grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 560px){
  .products{ grid-template-columns: 1fr; }
}

.pcard{
  border:1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(15,18,22,.8);
  overflow:hidden;
  text-decoration:none;
}
.thumb{
  height:150px;
  background: linear-gradient(135deg, rgba(96,165,250,.25), rgba(167,139,250,.20));
  border-bottom:1px solid var(--border);
}
.thumb img{ width:100%; height:100%; object-fit:cover; display:block; }

.pbody{ padding:14px; }
.ptitle{ font-weight:850; margin:0 0 6px; }
.pmeta{ color:var(--muted); font-size:12px; display:flex; gap:10px; flex-wrap:wrap; }

.stars{
  display:inline-flex; align-items:center; gap:6px;
  color: var(--gold);
  font-weight:800;
}
.small{ font-size:12px; color:var(--muted); }

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:10px 12px;
  border-radius: 12px;
  border:1px solid var(--border);
  background: rgba(17,19,26,.85);
  color: var(--text);
  text-decoration:none;
}
.btn:hover{ filter:brightness(1.06); }