/* Quick view - START */
.quick-view-wrapper {
  position: fixed;
  top: 0;
  left: max(calc((100vw - (var(--page-width) * 1px)) / 2), 0px);
  z-index: 100;
  width: 100%;
  height: 100svh;
  padding-block: calc(2rem * var(--body-scale));
  align-items: center;
  display: none;
}
.quick-view-wrapper.is-active {
  display: flex;
}
.quick-view-wrapper .quick-view-container {
  width: 100%;
  max-height: 100%;
  overflow-y: auto;
  border: 1px solid rgb(var(--border-color));
  border-radius: calc(0.2px * var(--layout-radius));
  box-shadow: 0 1px 6px 1px rgb(var(--text-color) / 0.2);
}
.quick-view-wrapper .close-wrapper {
  display: flex;
  justify-content: flex-end;
  background-color: rgb(var(--primary-background));
  position: sticky;
  top: 0;
  padding: 1rem;
  z-index: 1;
}
.quick-view-wrapper .placeholder-media {
  border-radius: calc(var(--_card-radius) * var(--layout-radius));
  overflow: hidden;
}
.quick-view-wrapper .placeholder-media svg {
  width: 100%;
  max-height: 60svh;
}
.quick-view-wrapper .product-media-wrapper,
.quick-view-wrapper .product-detail-wrapper {
  top: 80px;
}

/* Match the theme quick view spacing with a 50px bottom padding. */
.quick-view-wrapper .product-info-wrapper {
  padding-bottom: 50px;
}

@media (max-width: 767px) {
  .quick-view-wrapper .product-info-wrapper {
    padding-bottom: 38px;
  }
}

/* Prevent media gallery from resizing when navigating between images of different heights.
   Lock the media list to a stable height using the tallest possible image ratio. */
@media (min-width: 768px) {
  .quick-view-wrapper .product-detail__media-gallery .media-gallery__list {
    /* Override the per-slide dynamic aspect-ratio — use a stable tall ratio instead */
    aspect-ratio: unset !important;
    /* Lock to a consistent maximum height so different image proportions don't shift the layout */
    height: clamp(350px, 55svh, 620px);
  }

  .quick-view-wrapper .product-detail__media-gallery .media-gallery__item {
    height: 100%;
    overflow: hidden;
  }

  .quick-view-wrapper .product-detail__media-gallery .media-gallery__media {
    height: 100%;
  }

  .quick-view-wrapper .product-detail__media-gallery .media-gallery__image,
  .quick-view-wrapper .product-detail__media-gallery .image-container > img {
    /* Fill the fixed height with object-fit: contain so full image is always visible */
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
}

@media (max-width: 767px) {
  .quick-view-wrapper .product-detail__media-gallery .media-gallery__list {
    aspect-ratio: unset !important;
    height: clamp(260px, 50svh, 420px);
  }

  .quick-view-wrapper .product-detail__media-gallery .media-gallery__item {
    height: 100%;
    overflow: hidden;
  }

  .quick-view-wrapper .product-detail__media-gallery .media-gallery__media {
    height: 100%;
  }

  .quick-view-wrapper .product-detail__media-gallery .media-gallery__image,
  .quick-view-wrapper .product-detail__media-gallery .image-container > img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
}
/* Quick view - END */
