/* ── Service detail page ──────────────────────────────────────────────────── */

/* Gallery thumbnails */
.svc-gallery-thumb {
  background: #141414;
}

/* Full-page lightbox overlay */
.svc-lb-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.97);
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.svc-lb-overlay.active {
  display: flex;
}

/* Inner container */
.svc-lb-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1100px;
  padding: 0 80px;
  gap: 20px;
}

/* Image */
.svc-lb-img {
  max-height: 70vh;
  max-width: 100%;
  width: auto;
  object-fit: contain;
  border-radius: 12px;
  opacity: 1;
  transition: opacity 0.2s ease;
}

/* Info text below image */
.svc-lb-info {
  text-align: center;
  max-width: 700px;
}

/* Close button */
.svc-lb-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  z-index: 10;
}
.svc-lb-close:hover { background: #C9A84C; }

/* Counter */
.svc-lb-counter {
  position: absolute;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  letter-spacing: 0.05em;
}

/* Nav buttons */
.svc-lb-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}
.svc-lb-nav:hover { background: #C9A84C; color: #0a0a0a; }
.svc-lb-prev { left: 20px; }
.svc-lb-next { right: 20px; }

@media (max-width: 640px) {
  .svc-lb-inner { padding: 0 56px; }
  .svc-lb-img { max-height: 55vh; }
  .svc-lb-prev { left: 8px; }
  .svc-lb-next { right: 8px; }
}
