.product-view-gallery-compact__image-wrapper {
  position: relative;
  flex: 1;
  aspect-ratio: 4 / 5;
}

.product-view-gallery-compact__image {
  position: absolute;
  z-index: -1;
  opacity: 0;
  width: 100%;
  height: 100%;
  transition: opacity var(--hs-transitions-duration-long);
}

.product-view-gallery-compact__image[data-selected="true"] {
  opacity: 1;
  z-index: 0;
}

.product-view-gallery-compact__thumb-wrapper {
  cursor: pointer;
}

.product-view-gallery-compact__thumb-wrapper--hidden {
  display: none;
}

.product-view-gallery-compact__thumb-see-all {
  cursor: pointer;
  width: 100%;
  position: relative;
}

.product-view-gallery-compact__thumb-see-all-inner,
.product-view-gallery-compact__thumb-see-all-inner::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.product-view-gallery-compact__thumb-see-all-inner {
  z-index: 0;
}

.product-view-gallery-compact__thumb-see-all-inner::after {
  content: "";
  opacity: 0.6;
  background: var(--hs-color-card-bg);
  z-index: -1;
}

.product-view-gallery-compact__thumb-see-all-inner:hover::after {
  opacity: 0.8;
}

.product-view-gallery-compact__thumb {
  display: block;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
}

.product-view-gallery-compact__thumb:hover {
  opacity: 0.9;
  transform: scale(0.95);
}

.product-view-gallery-compact__thumb-wrapper[data-selected="true"] {
  border: 2px solid var(--hs-palette-button-primary-main);
  box-sizing: border-box;
}
