.product-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  margin: 0;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {
  .product-image {
    aspect-ratio: 4 / 3;
  }
}
