/* ============================================================
   LOTUS LIGHTBOX
   ============================================================ */
#lotus-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

#lotus-lightbox.active {
  display: flex;
}

.lb-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
}

.lb-content {
  position: relative;
  z-index: 1;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.lb-img {
  max-width: 90vw;
  max-height: 82vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.5);
  cursor: default !important;
  animation: lb-fadein 0.2s ease;
}

@keyframes lb-fadein {
  from { opacity: 0; transform: scale(0.97); }
  to   { opacity: 1; transform: scale(1); }
}

.lb-counter {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}

.lb-close,
.lb-prev,
.lb-next {
  position: fixed;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #fff;
  cursor: pointer;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 2;
}

.lb-close:hover,
.lb-prev:hover,
.lb-next:hover {
  background: rgba(255, 255, 255, 0.25);
}

.lb-close {
  top: 1.25rem;
  right: 1.25rem;
}

.lb-prev {
  left: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
}

.lb-next {
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
}

@media (max-width: 600px) {
  .lb-prev { left: 0.5rem; }
  .lb-next { right: 0.5rem; }
}
