.lightbox-enabled {
  cursor: zoom-in;
}

.mobile-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
  z-index: 9999;
}

.mobile-lightbox.is-open {
  display: flex;
}

.mobile-lightbox img {
  max-width: 96vw;
  max-height: 88vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border: 3px solid #fff;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.mobile-lightbox-close {
  position: absolute;
  top: 12px;
  right: 12px;
  border: 2px solid #fff;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  font-size: 1.4rem;
  line-height: 1;
  border-radius: 8px;
  padding: 8px 10px;
}

@media (min-width: 641px) {
  .lightbox-enabled {
    cursor: default;
  }
}
