/*
 * Image lightbox — jewellery / archive figures
 */

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

.lb {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  padding: 3.75rem 1.25rem 2.25rem;
  background: rgba(10, 6, 14, 0.94);
  cursor: zoom-out;
}

.lb.is-open {
  display: flex;
}

.lb__frame {
  margin: 0;
  max-width: min(92vw, 1100px);
  max-height: calc(100vh - 7rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 0;
}

.lb img {
  max-width: min(92vw, 1100px);
  max-height: calc(100vh - 12.5rem);
  width: auto;
  height: auto;
  object-fit: contain;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.45);
  cursor: zoom-out;
}

.lb__cap {
  margin-top: 0.75rem;
  text-align: center;
  max-width: 36rem;
  cursor: default;
}

.lb__cap p {
  font-size: 0.62rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  line-height: 1.65;
  color: rgba(226, 221, 234, 0.7);
  margin: 0;
}

.lb__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  border: 1px solid rgba(195, 170, 245, 0.45);
  background: transparent;
  color: #f2edf8;
  font-family: inherit;
  font-size: 0.58rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 0.45rem 0.8rem;
  cursor: pointer;
}

.lb__close:hover,
.lb__close:focus-visible {
  border-color: #c3aaf5;
  outline: none;
}

.lb__hint {
  position: absolute;
  top: 1.15rem;
  left: 1.15rem;
  margin: 0;
  font-size: 0.56rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(226, 221, 234, 0.5);
  cursor: default;
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  .lb {
    transition: none;
  }
}
