/* Keep the main product image and thumbnail rail in separate gallery areas. */
.product-dialog {
  max-height: min(92dvh, 900px);
  overflow-x: hidden;
  overflow-y: auto;
}

.detail-gallery {
  min-width: 0;
}

.detail-image-wrap {
  position: relative;
  height: auto;
  min-height: 0;
  padding: 16px;
  overflow: hidden;
  isolation: isolate;
}

.detail-image-wrap img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 560px;
  margin: auto;
  object-fit: contain;
}

.detail-thumbs {
  position: relative;
  z-index: 2;
  min-height: 80px;
  padding-top: 12px;
  margin-top: 0;
  overflow-x: auto;
  overflow-y: hidden;
  background: #fff;
}

.thumb {
  flex: 0 0 68px;
}

@media (max-width: 700px) {
  .product-dialog {
    max-height: calc(100dvh - 20px);
  }

  .detail-thumbs {
    min-height: 74px;
  }

  .detail-image-wrap {
    height: auto;
    padding: 10px;
  }

  .detail-image-wrap img {
    width: 100%;
    height: auto;
    max-height: none;
  }
}
