/* Bekasipanel Produk WA - Front styles */
.bksp-grid {
  display: grid;
  grid-gap: 18px;
}
/* default: cols-3 on desktop */
.bksp-grid.bksp-cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
/* responsive: 2 cols on <= 900px, 1 col on <= 560px */
@media (max-width: 900px) {
  .bksp-grid.bksp-cols-3, .bksp-grid.bksp-cols-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px) {
  .bksp-grid { grid-template-columns: 1fr; }
}

.bksp-card {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .15s ease, box-shadow .15s ease;
}
.bksp-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.10);
}

.bksp-img {
  padding: 20px;
  display: grid;
  place-items: center;
  min-height: 220px;
  background: linear-gradient(98deg, #ae64f657 74%, #f7f7f7 100%);
}
.bksp-img img {
  max-width: 220px;
  height: auto;
  display: block;
}

.bksp-body { padding: 16px 18px 20px; text-align: center; }
.bksp-title { font-size: 18px; margin: 6px 0 8px; color: #17364b; font-weight: 700; }
.bksp-sub { font-size: 12px; color: #5d7281; min-height: 28px; }
.bksp-price { font-size: 13px; font-weight: 600; color: #0f172a; margin: 10px 0 14px; }

.bksp-wa {
  display: inline-block;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  background: #25D366; /* Hijau WA */
  color: #0b2913;
  border: 1px solid rgba(0,0,0,0.08);
}
.bksp-wa:hover { filter: brightness(0.95); }
