.lblv-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999999;
  padding: 2vw;
}
.lblv-modal {
  position: relative;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,.2);
  max-width: 1080px;
  width: min(92vw, 1080px);
  overflow: hidden;
}
.lblv-carousel {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}
.lblv-slide {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0;
  transition: opacity .4s ease;
  user-select: none;
  -webkit-user-drag: none;
}
.lblv-slide.show { opacity: 1; }
.lblv-close {
  position: absolute;
  top: 8px;
  right: 10px;
  background: transparent;
  border: 0;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  color: #111;
  opacity: .8;
  z-index: 2;
}
.lblv-close:hover { opacity: 1;}
@media (max-width: 480px) {
  .lblv-close { font-size: 28px; top: 4px; right: 6px; }
  .lblv-modal { border-radius: 12px; }
  .lblv-carousel { border-radius: 12px; }
}
