/* Product grid styles to match the Stitch design (copied from plugin) */
.asaba-product-grid { display: grid; grid-template-columns: repeat(1,1fr); gap: 24px; }
.asaba-product-grid img { display:block; width:100%; height:100%; object-fit:cover; }
.asaba-product-grid article { border-radius: 12px; border: 1px solid #e3bfb2; background: #ffffff; overflow:hidden; transition: transform .25s ease, box-shadow .25s ease; }
.asaba-product-grid article:hover { transform: translateY(-6px); box-shadow: 0 12px 30px rgba(14,12,11,0.06); }
.asaba-product-grid .relative { position:relative; }
.asaba-product-grid .asaba-badge { position:absolute; top:12px; right:12px; width:36px; height:36px; border-radius:50%; background:#ffffff; display:flex; align-items:center; justify-content:center; box-shadow:0 6px 18px rgba(0,0,0,0.06); font-size:12px; color:#a43700; font-weight:700; }
.asaba-product-grid h3 { font-size:18px; margin:8px 0 6px; color:#231a0f; font-weight:700; }
.asaba-product-grid p { color:#6b5a53; margin:0 0 12px; }
.asaba-product-grid .font-price-display { color:#a43700; font-weight:800; font-size:18px; }
.asaba-product-grid .asaba-add-to-cart { background:#a43700; color:#ffffff; border:none; padding:10px 14px; border-radius:9999px; display:inline-flex; align-items:center; gap:8px; }
.asaba-product-grid .asaba-add-to-cart:hover { background:#7f2e00; }
.asaba-product-grid .line-clamp-1 { display:block; overflow:hidden; text-overflow:ellipsis; white-space:nowrap; }

@media(min-width:640px){ .asaba-product-grid { grid-template-columns: repeat(2,1fr); } }
@media(min-width:1024px){ .asaba-product-grid.lg-grid-3 { grid-template-columns: repeat(3,1fr); } .asaba-product-grid.lg-grid-4 { grid-template-columns: repeat(4,1fr); } }
