.product-detail-view .main-image img {
  cursor: zoom-in;
}

.product-image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(3px);
}

.product-image-lightbox__image {
  display: block;
  width: auto;
  height: auto;
  max-width: min(94vw, 1600px);
  max-height: 92vh;
  object-fit: contain;
  background: #fff;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.4);
}

.product-image-lightbox__close {
  position: fixed;
  top: 18px;
  right: 24px;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  color: #fff;
  background: rgba(0, 0, 0, 0.45);
  font: 38px/40px Arial, sans-serif;
  cursor: pointer;
}

.product-image-lightbox__close:hover,
.product-image-lightbox__close:focus-visible {
  background: #009bb1;
  outline: 2px solid #fff;
  outline-offset: 2px;
}

@media (max-width: 640px) {
  .product-image-lightbox {
    padding: 12px;
  }

  .product-image-lightbox__image {
    max-width: 96vw;
    max-height: 88vh;
  }

  .product-image-lightbox__close {
    top: 10px;
    right: 10px;
  }
}
