:root{
  --spsb-accent:#E98C00;
  --spsb-text:#111;
  --spsb-muted:#666;
  --spsb-radius:14px;
  --spsb-shadow:0 8px 22px rgba(0,0,0,.08);
  --spsb-shadow-hover:0 12px 30px rgba(0,0,0,.14);
}

.spsb-table{
  display:grid;
  gap:1.25rem;
  margin:1.5rem 0;
}

.spsb-card{
  display:flex; flex-direction:column;
  background:#fff;
  border:1px solid rgba(0,0,0,.06);
  border-radius:var(--spsb-radius);
  padding:1.25rem 1rem;
  text-align:center;
  box-shadow:var(--spsb-shadow);
  transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  min-height:100%;
}
.spsb-card:hover{ transform:translateY(-5px); box-shadow:var(--spsb-shadow-hover); border-color:rgba(233,140,0,.35); }

.spsb-card figure{ margin:0 0 .75rem; }
.spsb-card img{ max-width:100%; height:auto; display:block; border-radius:10px; }

.spsb-card .spsb-title{ margin:.25rem 0 .5rem; font-size:1.2rem; font-weight:800; color:var(--spsb-text); }

.spsb-card .spsb-body{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:.75rem;
  text-align:center;
  margin-bottom:1rem;
}
.spsb-card .spsb-body p{
  margin:0;
  padding:.25rem .6rem;
  background:#f8f8f8;
  border-radius:8px;
  font-size:.9rem;
}

.spsb-card .card-footer{ margin-top:auto; display:flex; justify-content:center; }
.spsb-card .btn-buy{
  display:inline-block; background:var(--spsb-accent); color:#fff; text-decoration:none;
  padding:.7rem 1.1rem; border-radius:999px; font-weight:800;
  transition:transform .15s ease, box-shadow .2s ease, background .2s ease;
  box-shadow:0 10px 20px rgba(233,140,0,.25);
}
.spsb-card .btn-buy:hover{ transform:translateY(-2px); box-shadow:0 14px 28px rgba(233,140,0,.32); background:#d57f00; }

@media (prefers-reduced-motion: reduce){ .spsb-card, .spsb-card .btn-buy{ transition:none; } }
