theme-intersush-product-image-zoom {
  display: none !important;
}

.intersush-detail-zoom__lens {
  position: absolute;
  z-index: 7;
  display: none;
  pointer-events: none;
  background: rgba(255, 255, 255, 0.42);
  border: 1px solid rgba(31, 41, 55, 0.42);
  border-radius: 3px;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.72) inset,
    0 4px 16px rgba(15, 23, 42, 0.12);
  backdrop-filter: saturate(0.92) brightness(1.04);
}

.intersush-detail-zoom__lens.is-active {
  display: block;
}

.intersush-detail-zoom__panel {
  position: fixed;
  z-index: 9999;
  display: none;
  overflow: hidden;
  pointer-events: none;
  background-color: rgb(var(--color-image-background, 248 248 248));
  background-repeat: no-repeat;
  border: 1px solid rgba(15, 23, 42, 0.13);
  border-radius: 12px;
  box-shadow: 0 22px 56px rgba(15, 23, 42, 0.22);
  opacity: 0;
  transform: translateY(4px);
}

.intersush-detail-zoom__panel.is-active {
  display: block;
  opacity: 1;
  transform: translateY(0);
  animation: intersush-detail-zoom-in 120ms ease-out;
}

.has-intersush-detail-zoom .media-gallery__item[data-media-type="image"] .media-gallery__media,
.has-intersush-detail-zoom .media-gallery__item:not([data-media-type]) .media-gallery__media {
  cursor: crosshair;
}

.has-intersush-detail-zoom theme-product-media-hover-preview:hover > * {
  opacity: 1 !important;
}

.has-intersush-detail-zoom theme-product-media-hover-preview:hover::before {
  opacity: 0 !important;
}

@keyframes intersush-detail-zoom-in {
  from {
    opacity: 0;
    transform: translateY(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 959px), (hover: none), (pointer: coarse) {
  .intersush-detail-zoom__lens,
  .intersush-detail-zoom__panel {
    display: none !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .intersush-detail-zoom__panel.is-active {
    animation: none;
  }
}
