/* ==========
   LIGHTBOX
   ==========*/

.monka-gallery img {
  cursor: zoom-in;
}

/* Overlay full screen */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

/* Cuando está abierto */
.lightbox-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

/* Imagen dentro del lightbox */
.lightbox-overlay__img {
  max-width: 90vw;
  max-height: 90vh;
  width: auto;
  height: auto;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* Botones */
.lightbox-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  font-size: 24px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease;
}

.lightbox-btn:hover {
  background: rgba(0, 0, 0, 0.7);
}

.lightbox-btn--prev {
  left: 30px;
}

.lightbox-btn--next {
  right: 30px;
}

/* Botón cerrar */
.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  border: none;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-size: 22px;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.lightbox-close:hover {
  background: rgba(0, 0, 0, 0.8);
}

