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

.product-media-stage {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
}

.product-media-stage img,
.product-media-stage video,
.product-media-stage iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.product-media-stage img,
.product-media-stage video {
  object-fit: contain;
}

.product-media-nav,
.product-media-zoom,
.product-media-lightbox-close {
  position: absolute;
  z-index: 3;
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  padding: 0;
  color: #102a43;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid #cbd5e1;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.14);
}

.product-media-nav {
  top: calc(50% - 20px);
}

.product-media-prev {
  left: 10px;
}

.product-media-next {
  right: 10px;
}

.product-media-zoom {
  top: 10px;
  right: 10px;
}

.product-media-thumbnails {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  padding-bottom: 4px;
  overflow-x: auto;
  scrollbar-width: thin;
}

.product-media-thumbnails button {
  flex: 0 0 72px;
  width: 72px;
  height: 72px;
  padding: 3px;
  overflow: hidden;
  color: #166534;
  background: #fff;
  border: 2px solid #d7dee7;
  border-radius: 6px;
}

.product-media-thumbnails button.active {
  border-color: #2ca5e0;
  box-shadow: 0 0 0 2px rgba(44, 165, 224, 0.16);
}

.product-media-thumbnails img,
.product-media-thumbnails span {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-media-lightbox {
  width: min(94vw, 1100px);
  max-width: none;
  height: min(92vh, 1100px);
  padding: 48px 16px 16px;
  overflow: hidden;
  background: #fff;
  border: 0;
  border-radius: 8px;
}

.product-media-lightbox::backdrop {
  background: rgba(2, 6, 23, 0.82);
}

.product-media-lightbox img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-media-lightbox-close {
  top: 8px;
  right: 8px;
}

@media (max-width: 767.98px) {
  .product-media-stage {
    max-height: 72vh;
  }

  .product-media-nav,
  .product-media-zoom {
    width: 36px;
    height: 36px;
  }

  .product-media-thumbnails button {
    flex-basis: 62px;
    width: 62px;
    height: 62px;
  }
}
