/* Single product gallery */

.cmh-product-gallery {
  margin-top: 30px;
  max-width: 100%;
}

.cmh-product-gallery__stage {
  position: relative;
}

.cmh-product-gallery__viewport {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 16px;
  background: #f7f4fb;
}

.cmh-product-gallery__slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.28s ease, visibility 0.28s ease;
}

.cmh-product-gallery__slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 1;
}

.cmh-product-gallery__slide img {
  max-width: 100%;
  max-height: 100%;
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.cmh-gallery-arrow {
  position: absolute;
  top: 50%;
  z-index: 6;
  width: 42px;
  height: 42px;
  margin-top: -21px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: var(--primary_color);
  box-shadow: 0 6px 18px rgba(88, 22, 152, 0.16);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: background 0.2s ease, color 0.2s ease;
}

.cmh-gallery-arrow:hover {
  background: var(--primary_color);
  color: #fff;
}

.cmh-gallery-arrow--prev {
  left: 12px;
}

.cmh-gallery-arrow--next {
  right: 12px;
}

.cmh-product-gallery__thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.cmh-product-gallery__thumb {
  width: 78px;
  height: 78px;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 10px;
  overflow: hidden;
  background: #f7f4fb;
  cursor: pointer;
  flex: 0 0 78px;
}

.cmh-product-gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

.cmh-product-gallery__thumb.is-active,
.cmh-product-gallery__thumb:hover {
  border-color: var(--primary_color);
}

@media (max-width: 767px) {
  .cmh-product-gallery {
    margin-top: 10px;
    margin-bottom: 20px;
  }

  .cmh-product-gallery__thumb {
    width: 64px;
    height: 64px;
    flex-basis: 64px;
  }

  .cmh-gallery-arrow {
    width: 36px;
    height: 36px;
    margin-top: -18px;
  }
}
