/* Property Visor & Lightbox CSS for Client Plugin */
.lpe-visor-wrapper {
  position: relative;
  width: 100%;
  height: 65vh;
  min-height: 420px;
  max-height: 750px;
  background-color: #111111;
  overflow: hidden;
  margin-bottom: 25px;
}

.lpe-visor-slide-container {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
}

.lpe-visor-slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  pointer-events: none;
}

.lpe-visor-slide.active {
  opacity: 1;
  pointer-events: auto;
}

.lpe-visor-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.lpe-visor-veil {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, transparent 40%, rgba(0, 0, 0, 0.5) 100%);
  pointer-events: none;
  z-index: 2;
}

.lpe-visor-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px; height: 50px;
  background: rgba(24, 24, 24, 0.6);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center; justify-content: center;
  cursor: pointer;
  z-index: 10;
}

.lpe-visor-nav-prev { left: 20px; }
.lpe-visor-nav-next { right: 20px; }

.lpe-visor-toolbar {
  position: absolute;
  bottom: 20px; left: 25px; right: 25px;
  display: flex; justify-content: space-between; align-items: center;
  z-index: 10;
}

.lpe-visor-counter {
  background: rgba(18, 18, 18, 0.7);
  backdrop-filter: blur(6px);
  color: #fff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
}

.lpe-lightbox-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: #0d0d0d;
  z-index: 99999;
  display: none;
  flex-direction: column;
}

.lpe-lightbox-overlay.active {
  display: flex;
}
