.detail-gallery {
  position: relative;
}

.detail-zoom-shell {
  position: relative;
  width: min(600px, 100%);
}

.detail-zoom-lens {
  position: absolute;
  z-index: 4;
  width: 40%;
  height: 40%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  background: rgb(255 255 255 / 34%);
  border: 1px solid rgb(42 38 32 / 42%);
  box-shadow: 0 0 0 1px rgb(255 255 255 / 38%) inset;
}

.detail-zoom-result {
  position: absolute;
  z-index: 30;
  top: 0;
  left: calc(100% + clamp(35px, 4vw, 70px));
  width: min(600px, calc(100vw - 600px - clamp(35px, 4vw, 70px) - 2 * clamp(20px, 3vw, 45px)));
  aspect-ratio: 1;
  pointer-events: none;
  background-color: #fff;
  background-repeat: no-repeat;
  background-size: 250% 250%;
  border: 1px solid #8d887f;
  box-shadow: 0 12px 38px rgb(40 34 26 / 16%);
}

@media (max-width: 1080px), (hover: none) {
  .detail-zoom-lens,
  .detail-zoom-result {
    display: none;
  }
}
