/* Modal gallery */
.lb-modal .modal-dialog {
  max-width: 1100px;
}
.lb-stage {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0b1220;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}
.lb-stage img {
  width: 100%;
  height: 75vh;
  object-fit: contain;
  background: #0b1220;
}
@media (max-width: 768px) {
  .lb-stage img { height: 90vh; }
  .lb-modal .modal-dialog { max-width: 100%; margin: 0; }
  .lb-modal .modal-content { border-radius: 0; }
}
.lb-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 0;
  background: rgba(255,255,255,0.15);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.lb-arrow:hover { background: rgba(255,255,255,0.25); }
.lb-arrow.left { left: 12px; }
.lb-arrow.right { right: 12px; }
.lb-counter {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(0,0,0,0.45);
  color: #fff;
  font-size: 12px;
}
