/* BHS-CMS ürün görseli 5x zoom hotfix v1.0.1 */
.bhs-product-summary {
  isolation: isolate;
  min-height: 620px;
}

.bhs-product-main-image-wrap {
  cursor: crosshair;
}

.bhs-product-zoom-pane {
  position: absolute;
  z-index: 30;
  inset: 0;
  min-height: 620px;
  overflow: hidden;
  border-radius: 9px;
  border: 1px solid #d0d5dd;
  background-color: #fff;
  background-repeat: no-repeat;
  box-shadow: 0 14px 36px rgba(16, 24, 40, .18);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .12s ease, visibility .12s ease;
}

.bhs-product-zoom-pane::after {
  content: "5× detay görünümü";
  position: absolute;
  right: 12px;
  bottom: 12px;
  padding: 6px 9px;
  border-radius: 999px;
  color: #fff;
  background: rgba(17, 24, 39, .78);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .01em;
}

.bhs-product-zoom-pane.is-visible {
  opacity: 1;
  visibility: visible;
}

@media (hover: none), (pointer: coarse), (max-width: 900px) {
  .bhs-product-summary {
    min-height: auto;
  }

  .bhs-product-main-image-wrap {
    cursor: default;
  }

  .bhs-product-zoom-pane {
    display: none !important;
  }
}
