/* Pawon Nusantara storefront v7.0
   Product detail media fix: remove vertical letterboxing and let the
   original 4:3 artwork define its own height. */

.product-detail {
  align-items: start;
}

.product-gallery {
  display: block;
  align-self: start;
  height: fit-content;
  min-height: 0;
  padding: 0;
  background: transparent;
  line-height: 0;
}

.product-gallery img,
.product-gallery__image {
  display: block;
  width: 100%;
  height: auto !important;
  max-height: none !important;
  aspect-ratio: auto !important;
  object-fit: contain;
  object-position: center;
  margin: 0;
  border-radius: inherit;
  background: transparent;
}

@media (max-width: 760px) {
  .product-detail {
    gap: 24px;
    padding-top: 22px;
  }

  .product-gallery {
    position: static;
    width: 100%;
  }
}
