@media (hover: hover) and (pointer: fine) {
  .lik-product-zoom-frame {
    cursor: zoom-in;
    overflow: hidden !important;
    position: relative;
  }

  .lik-product-zoom-frame > img {
    height: 100%;
    object-fit: contain;
    transition: transform 160ms ease-out, filter 160ms ease-out;
    width: 100%;
    will-change: transform;
  }

  .lik-product-zoom-frame.is-zooming > img {
    filter: drop-shadow(0 12px 20px rgb(15 41 74 / 18%));
    transform: scale(2.35);
  }
}

img:not([src]),
img[src=""] {
  display: none !important;
}

.lik-image-viewer {
  align-items: center;
  background: rgb(5 12 22 / 72%);
  display: none;
  inset: 0;
  justify-content: center;
  padding: 72px 24px 32px;
  position: fixed;
  touch-action: none;
  z-index: 9999;
}

.lik-image-viewer.is-open {
  display: flex;
}

.lik-image-viewer img {
  background: #ffffff;
  border: 1px solid rgb(255 255 255 / 38%);
  box-shadow: 0 28px 80px rgb(0 0 0 / 42%);
  cursor: grab;
  max-height: min(78vh, 820px);
  max-width: min(88vw, 980px);
  object-fit: contain;
  padding: 16px;
  transform: translate3d(var(--pan-x, 0px), var(--pan-y, 0px), 0) scale(var(--viewer-scale, 1));
  transform-origin: center center;
  transition: transform 120ms ease-out;
  user-select: none;
  will-change: transform;
}

.lik-image-viewer.is-dragging img {
  cursor: grabbing;
  transition: none;
}

.lik-image-viewer button {
  align-items: center;
  background: rgb(255 255 255 / 92%);
  border: 1px solid rgb(255 255 255 / 35%);
  color: #0f294a;
  cursor: pointer;
  display: inline-flex;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 13px;
  font-weight: 800;
  height: 44px;
  justify-content: center;
  line-height: 1;
  min-width: 44px;
  padding: 0 14px;
}

.lik-image-viewer button:hover {
  background: #ffffff;
}

.lik-image-viewer-toolbar {
  display: flex;
  gap: 8px;
  left: 50%;
  position: fixed;
  top: 20px;
  transform: translateX(-50%);
  z-index: 10000;
}

.lik-image-viewer-close {
  position: fixed;
  right: 20px;
  top: 20px;
  z-index: 10000;
}

.lik-image-viewer[data-has-info="false"] [data-lik-viewer="product"],
.lik-image-viewer[data-has-info="false"] [data-lik-viewer="info"] {
  display: none;
}
