:root{ /* naudoja header.css kintamuosius */ }

.wrap{
  max-width:980px;
  margin:0 auto;
}

.shop-hero{
  background: rgba(10,14,20,0.7);
  border:1px solid var(--border);
  border-radius:14px;
  padding:20px;
  box-shadow: 0 12px 35px rgba(0,0,0,.5);
}
.shop-hero h1{ margin:0 0 8px; font-size:24px; }
.shop-hero p{ margin:0 0 14px; color: rgba(232,240,255,.85); line-height:1.45; }

.shop-actions{ display:flex; gap:10px; flex-wrap:wrap; }

.btn{
  display:inline-block;
  text-decoration:none;
  color:#fff;
  font-weight:800;
  padding:10px 14px;
  border-radius:12px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  box-shadow: 0 12px 26px rgba(47,134,255,.22);
  border:0;
}
.btn.ghost{
  background: rgba(10,14,20,.35);
  border:1px solid rgba(255,255,255,.10);
  box-shadow:none;
  font-weight:700;
}
.btn.small{ padding:8px 12px; font-weight:800; }

.shop-grid{
  margin-top:14px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
@media (max-width:980px){
  .shop-grid{ grid-template-columns: 1fr; }
}

.card{
  border:1px solid rgba(255,255,255,.10);
  background: rgba(18,26,36,.45);
  border-radius:14px;
  overflow:hidden;
}
.thumb{
  height:180px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: rgba(0,0,0,.25);
  border-bottom:1px solid rgba(255,255,255,.08);
}
.thumb img{ width:100%; height:100%; object-fit:contain; padding:12px; }
.thumb.placeholder{ font-size:48px; opacity:.8; }

.card-body{ padding:14px; }
.card-body h3{ margin:0 0 6px; font-size:18px; }
.card-body p{ margin:0 0 12px; color: rgba(232,240,255,.80); line-height:1.45; min-height:44px; }
.price{ font-weight:900; font-size:16px; margin-bottom:10px; }

.empty{
  grid-column:1 / -1;
  padding:18px;
  border:1px dashed rgba(255,255,255,.18);
  border-radius:14px;
  color: rgba(232,240,255,.85);
}
