/* Etsy uses a 4:3 listing frame. Keep the catalog familiar while preserving
   each listing's real proportions on its full product page. */
.product-image {
  aspect-ratio: 4 / 3;
}

.product-image img {
  object-fit: cover;
}

.product-photo img {
  aspect-ratio: auto;
  object-fit: contain;
}
