/* Amazon-like zoom ONLY for product page */
.product-zoom-card{
  background:#fff;
}
.product-zoom-stage{
  position: relative;
  width: 100%;
  height: 420px;
  border-radius: 18px;
  overflow: hidden;
  background: #0f0f10;
  display:flex;
  align-items:center;
  justify-content:center;
}
@media (max-width: 992px){
  .product-zoom-stage{ height: 320px; }
}
.product-zoom-stage img#mainImg{
  width: 100%;
  height: 100%;
  object-fit: contain;
  max-width:none;
  user-select:none;
  -webkit-user-drag:none;
}
.product-zoom-lens{
  position:absolute;
  display:none;
  width: 150px;
  height: 150px;
  border-radius: 14px;
  border: 2px solid rgba(255, 215, 0, .45);
  box-shadow: 0 10px 26px rgba(0,0,0,.18), 0 0 0 1px rgba(255, 215, 0, 0.25) inset;
  background: rgba(255,255,255,.12);
  pointer-events:none;
  z-index: 3;
}
.product-zoom-result{
  position:absolute;
  top: 0;
  right: -440px;
  width: 420px;
  height: 420px;
  border-radius: 18px;
  overflow:hidden;
  border: 2px solid rgba(255, 215, 0, .35);
  box-shadow: 0 14px 34px rgba(0,0,0,.18);
  background-repeat:no-repeat;
  background-color:#111;
  display:none;
  z-index: 2;
}
@media (max-width: 1200px){
  .product-zoom-lens, .product-zoom-result{ display:none !important; }
}

/* thumbs keep their look */
.product-zoom-thumbs img{
  width:72px;
  height:56px;
  object-fit:cover;
  border-radius:12px;
  box-shadow:0 8px 18px rgba(0,0,0,.08);
}
