/* Add custom CSS styles below *//* Product image fully visible inside card */
.product-card img,
.product-item img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  display: block;
}

/* Make product card act like a full frame */
.product-card,
.product-item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  box-sizing: border-box;
}

/* Ensure image area is fully used */
.product-card .image,
.product-item .image {
  display: flex;
  align-items: center;
  justify-content: center;
}