.hero-image-wrap {
  cursor: zoom-in;
}

.hero-image-button {
  display: block;
  width: 100%;
  border: 0;
  border-radius: inherit;
  padding: 0;
  background: transparent;
  cursor: zoom-in;
}

.hero-image-button:focus-visible {
  outline: 2px solid rgba(58, 124, 165, 0.7);
  outline-offset: 4px;
}

.hero-image-button img {
  display: block;
}

.product-image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(15, 23, 42, 0.78);
}

.product-image-lightbox.is-open {
  display: flex;
}

.product-image-lightbox__image {
  max-width: min(96vw, 1280px);
  max-height: 88vh;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
  object-fit: contain;
}

.product-image-lightbox__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: #1b3a4b;
  cursor: pointer;
  font-size: 30px;
  line-height: 1;
}

.product-image-lightbox__close:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 4px;
}

body.product-image-lightbox-open {
  overflow: hidden;
}

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

  .product-image-lightbox__image {
    max-height: 84vh;
    border-radius: 14px;
  }
}
