/* WF Product Zoom v1 — Drift.js */

/* Trigger cursor */
.drift-zoom-trigger { cursor: crosshair; }

/* Bounding box overlay on the source image */
.drift-bounding-box {
  background: rgba(0,0,0,.08);
  border: 1px solid rgba(0,0,0,.12);
  z-index: 50;
}

/* Zoom result pane — positioned to the right of images, overlaying product info */
.wf-zoom-pane {
  position: absolute;
  top: 0;
  left: calc(100% + 15px);
  width: 100%;
  height: 100%;
  z-index: 200;
  background: #fff;
  border: 1px solid #eee;
  box-shadow: 0 4px 20px rgba(0,0,0,.1);
  overflow: hidden;
  display: none;
  pointer-events: none;
}
.drift-zoom-pane {
  width: 100% !important;
  height: 100% !important;
}
.drift-zoom-pane img {
  max-width: none !important;
}

/* Search icon hint */
.wf-zoom-hint {
  position: absolute;
  bottom: 16px;
  right: 16px;
  z-index: 10;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(4px);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,.1);
  pointer-events: none;
  transition: opacity .3s ease;
}
.wf-zoom-hint i { font-size: 22px; color: #333; }

/* Hide hint when zoom is active */
.position-relative:hover .wf-zoom-hint { opacity: 0; }

/* Mobile: disable zoom entirely */
@media (max-width: 991px) {
  .wf-zoom-pane,
  .wf-zoom-hint,
  .drift-bounding-box { display: none !important; }
  .drift-zoom-trigger { cursor: default; }
}
