.jscs-gal-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 99999;
  align-items: center;
  justify-content: center;
}
.jscs-gal-lightbox.jscs-gal-lb-open {
  display: flex;
}
.jscs-gal-lb-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 4px;
}
.jscs-gal-lb-close,
.jscs-gal-lb-prev,
.jscs-gal-lb-next {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #ffffff;
  cursor: pointer;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}
.jscs-gal-lb-close:hover,
.jscs-gal-lb-prev:hover,
.jscs-gal-lb-next:hover {
  background: rgba(255, 255, 255, 0.25);
}
.jscs-gal-lb-close {
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  font-size: 28px;
  line-height: 1;
}
.jscs-gal-lb-prev,
.jscs-gal-lb-next {
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  font-size: 30px;
}
.jscs-gal-lb-prev {
  left: 20px;
}
.jscs-gal-lb-next {
  right: 20px;
}
@media (max-width: 600px) {
  .jscs-gal-lb-close {
    top: 10px;
    right: 10px;
    width: 38px;
    height: 38px;
    font-size: 22px;
  }
  .jscs-gal-lb-prev,
  .jscs-gal-lb-next {
    width: 40px;
    height: 40px;
    font-size: 24px;
  }
  .jscs-gal-lb-prev {
    left: 8px;
  }
  .jscs-gal-lb-next {
    right: 8px;
  }
}
