/* ── KNG Lightbox ────────────────────────────────────────────────────────── */

.kng-lb-wrap {
  position: relative;
  display: block;
  overflow: hidden; /* butonul rămâne înăuntrul imaginii */
}

.kng-lb-trigger {
  cursor: zoom-in;
  display: block;
  width: 100%;
}

.kng-lb-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 28px;
  height: 28px;
  border: none;
  border-radius: 4px;
  background: rgba(0,0,0,.55);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  opacity: 0;
  transition: opacity .15s;
  pointer-events: none;
  z-index: 1;
}
.kng-lb-wrap:hover .kng-lb-btn {
  opacity: 1;
  pointer-events: auto;
}
.kng-lb-btn svg { display: block; }

/* ── Overlay ─────────────────────────────────────────────────────────────── */

.kng-lb-overlay {
  position: fixed;
  inset: 0;
  z-index: 2147483647; /* max z-index — deasupra oricărui fullscreen */
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
  transition: opacity .25s ease;
}

.kng-lb-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border: none;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 4px;
}
.kng-lb-close:hover { background: rgba(0,0,0,.08); }

.kng-lb-overlay img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  display: block;
}
