/* =====================================================
   SHOP GRID TYPE 5 – SAFE OVERRIDES ONLY
   DOES NOT TOUCH HEADER / HOME / OTHER PAGES
===================================================== */

.shop-grid-type-5 .product-img-wrapper {
  position: relative;
  overflow: hidden;
  background: #fff;
}

/* FIX EXTRA SPACE ISSUE */
.shop-grid-type-5 .product-img-wrapper img {
  width: 100%;
  height: auto;
  display: block;       /* 🔥 removes bottom gap */
  object-fit: contain;
}

/* IMAGE ZOOM */
@media (min-width: 1024px) {
  .shop-grid-type-5 .card:hover img {
    transform: scale(1.08);
    transition: transform 0.4s ease;
  }
}

/* ===============================
   WISHLIST ICON (ON IMAGE)
================================ */

.shop-grid-type-5 .product-hover-actions {
  position: absolute;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%) translateY(15px);
  display: flex;
  gap: 6px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 10;
}

.shop-grid-type-5 .card:hover .product-hover-actions {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.shop-grid-type-5 .product-hover-actions button {
  width: 38px;
  height: 38px;
  background: #212529;
  color: #fff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.shop-grid-type-5 .product-hover-actions button:hover {
  background: #000;
}

/* ===============================
   OUT OF STOCK
================================ */

.shop-grid-type-5 .product-stock-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 12px;
  padding: 6px 10px;
  z-index: 12;
}

.shop-grid-type-5 .out-of-stock .product-hover-actions {
  display: none;
}
