:root{
  --bg:#0b0f19;
  --card:#111827;
  --muted:#94a3b8;
  --text:#e5e7eb;
  --brand:#22c55e;
  --brand2:#38bdf8;
  --border: rgba(148,163,184,.18);
}
*{box-sizing:border-box}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  background: radial-gradient(1200px 700px at 20% 0%, rgba(56,189,248,.16), transparent 60%),
              radial-gradient(1000px 650px at 90% 0%, rgba(34,197,94,.14), transparent 55%),
              var(--bg);
  color:var(--text);
}
a{color:inherit;text-decoration:none}
.container{max-width:1100px;margin:0 auto;padding:22px}
.nav{
  position:sticky;top:0;z-index:10;
  background: rgba(11,15,25,.78);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--border);
}
.nav-inner{display:flex;align-items:center;gap:14px;justify-content:space-between}
.brand{display:flex;align-items:center;gap:10px;font-weight:800;letter-spacing:.4px}
.logo{
  width:36px;height:36px;border-radius:12px;
  background: linear-gradient(135deg, var(--brand2), var(--brand));
  box-shadow: 0 10px 25px rgba(34,197,94,.18);
}
.nav-links{display:flex;align-items:center;gap:10px}
.pill{
  padding:9px 12px;border:1px solid var(--border);
  border-radius:999px;color:var(--muted);
}
.pill:hover{border-color:rgba(148,163,184,.35);color:var(--text)}
.badge{
  display:inline-flex;align-items:center;justify-content:center;
  min-width:20px;height:20px;padding:0 6px;
  border-radius:999px;background:rgba(34,197,94,.18);
  color:#bbf7d0;font-weight:700;font-size:12px;margin-left:6px;
  border:1px solid rgba(34,197,94,.35);
}
.hero{
  margin-top:22px;
  border:1px solid var(--border);
  background: linear-gradient(135deg, rgba(56,189,248,.12), rgba(34,197,94,.10));
  border-radius:22px;
  padding:28px;
  overflow:hidden;
}
.hero h1{margin:0 0 10px;font-size:34px}
.hero p{margin:0 0 18px;color:var(--muted);max-width:62ch;line-height:1.6}
.hero-actions{display:flex;gap:10px;flex-wrap:wrap}
.btn{
  border:1px solid var(--border);
  background: rgba(17,24,39,.65);
  color:var(--text);
  padding:10px 14px;border-radius:14px;
  display:inline-flex;align-items:center;gap:8px;
}
.btn.primary{
  background: linear-gradient(135deg, rgba(56,189,248,.18), rgba(34,197,94,.18));
  border-color: rgba(34,197,94,.35);
}
.btn:hover{filter:brightness(1.05)}
.grid{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap:14px;
  margin-top:18px;
}
.card{
  border:1px solid var(--border);
  background: rgba(17,24,39,.72);
  border-radius:18px;
  overflow:hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,.22);
}
.card-pad{padding:14px}
.kicker{color:var(--muted);font-size:13px}
.section-title{margin:24px 0 10px;font-size:18px;color:#e2e8f0}
.cat-chip{
  display:flex;gap:10px;align-items:center;
  padding:10px 12px;border-radius:16px;
  border:1px solid var(--border);
  background: rgba(17,24,39,.6);
}
.cat-chip:hover{border-color:rgba(148,163,184,.35)}
.cat-dot{width:10px;height:10px;border-radius:999px;background:var(--brand2)}
.products{
  grid-column: span 12;
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap:14px;
}
.product{
  grid-column: span 3;
}
@media (max-width: 980px){
  .product{grid-column: span 4;}
}
@media (max-width: 720px){
  .product{grid-column: span 6;}
}
@media (max-width: 520px){
  .product{grid-column: span 12;}
}
.thumb{
  width:100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, rgba(56,189,248,.18), rgba(34,197,94,.10));
  display:flex;align-items:center;justify-content:center;
  border-bottom:1px solid var(--border);
  position:relative;
}
.thumb img{width:100%;height:100%;object-fit:cover;display:block}
.price{font-weight:800}
.muted{color:var(--muted)}
.row{display:flex;gap:12px;align-items:center;justify-content:space-between}
.form{
  display:flex;gap:10px;flex-wrap:wrap;align-items:center;
}
.input, select, textarea{
  background: rgba(11,15,25,.55);
  border:1px solid var(--border);
  border-radius:14px;
  color:var(--text);
  padding:10px 12px;
  outline:none;
}
textarea{min-height:90px;resize:vertical;width:100%}
.table{width:100%;border-collapse:collapse}
.table th,.table td{padding:10px;border-bottom:1px solid var(--border);text-align:left}
.notice{
  border:1px solid rgba(56,189,248,.30);
  background: rgba(56,189,248,.12);
  padding:12px 14px;border-radius:16px;color:#dbeafe;
}
.danger{
  border:1px solid rgba(244,63,94,.35);
  background: rgba(244,63,94,.12);
  padding:12px 14px;border-radius:16px;color:#ffe4e6;
}
.footer{margin:40px 0 18px;color:var(--muted);font-size:13px}
.small{font-size:12px;color:var(--muted)}
.pager{display:flex;gap:8px;flex-wrap:wrap}
.pager a{padding:8px 10px;border:1px solid var(--border);border-radius:12px;color:var(--muted)}
.pager a.active{color:var(--text);border-color:rgba(34,197,94,.35);background:rgba(34,197,94,.10)}
