/* Ürün detay — hover zoom (orijinal boyut) */

.ws-product-zoom-host {
  position: relative;
  overflow: hidden;
  cursor: crosshair;
}

.ws-product-zoom-host.is-zooming {
  cursor: crosshair;
}

.ws-product-zoom-host .ws-product-zoom-img,
.ws-product-zoom-host img.ws-product-gallery__main-image,
.ws-product-zoom-host img.ws-product-gallery-main-img {
  transform-origin: center center;
  transition: transform 0.05s linear;
  will-change: transform;
  user-select: none;
  -webkit-user-drag: none;
}

.ws-product-zoom-host.is-zooming .ws-product-zoom-img,
.ws-product-zoom-host.is-zooming img.ws-product-gallery__main-image,
.ws-product-zoom-host.is-zooming img.ws-product-gallery-main-img {
  /* Ölçek JS ile verilir */
}

/* Zoom açıkken hover crosshair; tıklama lightbox (tema JS) */
.ws-product-zoom-enabled .ws-product-gallery__main-image,
.ws-product-zoom-enabled .ws-product-gallery-main-img,
.ws-product-zoom-enabled #sf-gallery-main .popup-link {
  cursor: crosshair;
}

.ws-product-zoom-enabled #sf-gallery-main .popup-link.ws-product-zoom-host {
  overflow: hidden;
}

@media (hover: none), (pointer: coarse) {
  /* Dokunmatikte hover zoom yok — popup davranışı temada ayrıca açılır */
  .ws-product-zoom-host {
    cursor: zoom-in;
  }
}
