.pvh-card-gallery {
  position: relative;
  display: block;
  overflow: hidden;
  cursor: ns-resize;
}

.pvh-card-gallery img {
  transition: opacity 160ms ease, transform 160ms ease;
}

.pvh-card-gallery.is-pvh-switching img {
  opacity: 0.88;
  transform: scale(1.01);
}

.pvh-card-gallery__dots {
  position: absolute;
  left: 14px;
  top: 50%;
  z-index: 4;
  display: inline-flex;
  flex-direction: column;
  gap: 7px;
  align-items: center;
  justify-content: center;
  padding: 8px 6px;
  border-radius: 999px;
  background: rgba(18, 32, 48, 0.42);
  box-shadow: 0 10px 26px rgba(10, 18, 30, 0.24);
  transform: translateY(-50%);
  pointer-events: none;
}

.pvh-card-gallery__dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.22);
  transition: width 160ms ease, height 160ms ease, background-color 160ms ease, box-shadow 160ms ease;
}

.pvh-card-gallery__dot.is-active {
  width: 8px;
  height: 8px;
  background: #2dbe60;
  box-shadow: 0 0 0 3px rgba(45, 190, 96, 0.22), 0 0 12px rgba(45, 190, 96, 0.45);
}

@media (prefers-reduced-motion: reduce) {
  .pvh-card-gallery img {
    transition: none;
  }

  .pvh-card-gallery__dot {
    transition: none;
  }
}
