.lightbox-wrap {
  position: relative;
  display: block;
}
.lightbox-wrap img {
  cursor: zoom-in;
  transition: filter 0.2s ease;
}
.lightbox-wrap:hover img {
  filter: brightness(0.85);
}
.lightbox-badge {
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
#lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 24px;
  cursor: zoom-out;
}
#lightbox-overlay.open {
  display: flex;
}
#lightbox-overlay img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  cursor: default;
}
#lightbox-close {
  position: fixed;
  top: 18px;
  right: 24px;
  color: #fff;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
  font-family: sans-serif;
}
