.product-banner img {
  width: 100%;
  max-height: auto;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.product-banner img:hover {
  transform: scale(1.01);
}

