.product-zoom-trigger {
  cursor: zoom-in !important;
}
.product-zoom-trigger:focus-visible {
  outline: 4px solid #d5962f !important;
  outline-offset: 4px;
}
.product-zoom-hint {
  margin: 0 0 14px;
  color: #76501e;
  font-size: .94rem;
  font-weight: 700;
}
body.product-zoom-open { overflow: hidden; }
.product-zoom {
  position: fixed;
  inset: 0;
  z-index: 2147483647;
  display: grid;
  place-items: center;
  padding: clamp(12px, 4vw, 48px);
  background: rgba(3, 12, 20, .94);
  backdrop-filter: blur(7px);
}
.product-zoom[hidden] { display: none !important; }
.product-zoom__panel {
  position: relative;
  width: min(100%, 1080px);
  height: min(92vh, 940px);
  display: grid;
  place-items: center;
}
.product-zoom__image {
  display: block;
  max-width: 100%;
  max-height: calc(92vh - 64px);
  object-fit: contain;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 24px 80px rgba(0,0,0,.58);
}
.product-zoom__close,
.product-zoom__nav {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.6);
  background: #092335;
  color: #fff;
  box-shadow: 0 8px 28px rgba(0,0,0,.42);
  cursor: pointer;
}
.product-zoom__close:hover,
.product-zoom__nav:hover,
.product-zoom__close:focus-visible,
.product-zoom__nav:focus-visible {
  background: #b87318;
  outline: 3px solid #fff;
  outline-offset: 2px;
}
.product-zoom__close {
  top: 0;
  right: 0;
  width: 50px;
  height: 50px;
  border-radius: 999px;
  font-size: 34px;
}
.product-zoom__nav {
  top: 50%;
  width: 50px;
  height: 68px;
  border-radius: 12px;
  transform: translateY(-50%);
  font-size: 38px;
}
.product-zoom__previous { left: 8px; }
.product-zoom__next { right: 8px; }
.product-zoom__caption {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  max-width: calc(100% - 110px);
  margin: 0;
  padding: 8px 15px;
  border-radius: 999px;
  background: #092335;
  color: #fff;
  font-weight: 700;
  text-align: center;
}
@media (max-width: 640px) {
  .product-zoom { padding: 8px; }
  .product-zoom__panel { height: 96vh; }
  .product-zoom__image { max-height: calc(96vh - 72px); }
  .product-zoom__nav { width: 44px; height: 58px; }
  .product-zoom__previous { left: 2px; }
  .product-zoom__next { right: 2px; }
}
