/* Product card hover effect */
.product-card:not(.custom-banner-block .product-card) {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:not(.custom-banner-block .product-card):hover {
  transform: scale(1.03);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  z-index: 2;
}
