/* Lightbox Styles */
.laseme-lightbox {
  position: fixed !important;
  z-index: 99999 !important;
  left: 0 !important;
  top: 0 !important;
  width: 100% !important;
  height: 100% !important;
  overflow: hidden !important;
  background-color: rgba(0, 0, 0, 0.9) !important;
  display: none !important;
  justify-content: center !important;
  align-items: center !important;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.laseme-lightbox.active {
  display: flex !important;
  opacity: 1 !important;
}

.laseme-lightbox__content {
  max-width: 90% !important;
  max-height: 90% !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  z-index: 100000 !important;
}

.laseme-lightbox__content img {
  max-width: 100% !important;
  max-height: 90vh !important;
  object-fit: contain !important;
  border-radius: 8px !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.8) !important;
  transform: scale(0.95);
  transition: transform 0.3s ease;
}

.laseme-lightbox.active .laseme-lightbox__content img {
  transform: scale(1) !important;
}

.laseme-lightbox__close {
  position: absolute !important;
  top: 20px !important;
  right: 30px !important;
  color: #ffffff !important;
  font-size: 50px !important;
  font-weight: bold !important;
  transition: 0.3s;
  cursor: pointer !important;
  z-index: 100001 !important;
  user-select: none !important;
  line-height: 1 !important;
}

.laseme-lightbox__close:hover,
.laseme-lightbox__close:focus {
  color: #ff9900 !important;
  text-decoration: none !important;
}
