.zoomable-image {
  cursor: zoom-in;
}

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(24, 18, 13, .82);
  backdrop-filter: blur(8px);
}

.image-lightbox.hidden {
  display: none;
}

.image-lightbox img {
  display: block;
  max-width: min(96vw, 1180px);
  max-height: 88vh;
  border-radius: 8px;
  background: #f6ead3;
  box-shadow: 0 18px 48px rgba(0, 0, 0, .38);
  object-fit: contain;
}

.image-lightbox-close {
  position: fixed;
  top: max(14px, env(safe-area-inset-top));
  right: max(14px, env(safe-area-inset-right));
  z-index: 101;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 244, 220, .55);
  border-radius: 50%;
  background: rgba(61, 38, 23, .86);
  color: #fff6df;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}
