/* Lightbox Overlay */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.lightbox img {
  max-width: 95%;
  max-height: 95%;
  border-radius: 8px;
  transition: transform 0.25s ease;
}

.lightbox.active {
  display: flex;
}

/* Zoom cursor */
.lightbox-img {
  cursor: zoom-in;
}
