/* Slider wrapper */
.hk-v3-wrap { margin: 10px 12px; }
.hk-v3-slider { display:flex; gap:10px; overflow:auto; padding:8px 0; }
.hk-v3-cat-btn { background:#0a5f24; color:#fff; padding:10px 16px; border-radius:10px; border:none; cursor:pointer; white-space:nowrap; box-shadow:0 6px 10px rgba(0,0,0,0.08); }
.hk-v3-cat-btn.hk-v3-active { background:#0a6f2a; }

/* products grid */
.hk-v3-products { margin-top:12px; }
.hk-v3-loading { padding:30px; text-align:center; color:#666; }
.products { list-style:none; margin:0; padding:0; display:grid; grid-template-columns: repeat(2, 1fr); gap:18px; }
@media(max-width:600px){ .products { grid-template-columns: repeat(1, 1fr); } }

/* theme product list items may have their own styles; clamp a few to match Kadence style */
.products li.product { background:#fff; border-radius:12px; padding:12px; box-shadow:0 8px 24px rgba(10,10,10,0.06); overflow:hidden; }

/* make product images rounded */
.products li.product .woocommerce-LoopProduct-link img, 
.products li.product .woocommerce-product-gallery__image img,
.products li.product img {
    border-radius:14px;
    display:block;
    max-width:100%;
    height:auto;
}

/* ensure select options / add to cart button full width like shop */
.products li.product .button { width:100%; display:inline-block; text-align:center; padding:18px 14px; border-radius:8px; }

/* small adjustments for title/rating spacing */
.products li.product .woocommerce-loop-product__title { margin:12px 0 6px; font-size:20px; }
.products li.product .star-rating { margin:6px 0; }
