/* =========================
   REALIZACJE – POPUP GALERII
========================= */

.realizacje-popup{
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
}

.realizacje-popup.open{
  display: flex;
  align-items: center;
  justify-content: center;
}

.popup-backdrop{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.75);
}

/* OKNO */
.popup-content{
  position: relative;
  width: 92vw;
  max-width: 1000px;
  max-height: 90vh;
  background: #000;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  z-index: 2;
}

/* DUŻE ZDJĘCIE */
#popupImage{
  width: 100%;
  max-height: 65vh;
  object-fit: contain;
  background: #000;
}

/* OPIS */
.popup-caption{
  padding: 10px 14px;
  font-size: 14px;
  text-align: center;
  color: #e8edf4;
  background: #0b0f18;
  border-top: 1px solid rgba(255,255,255,.1);
}

/* MINIATURY */
.popup-thumbs{
  display: flex;
  gap: 10px;
  padding: 10px;
  overflow-x: auto;
  background: #0b0f18;
  border-top: 1px solid rgba(255,255,255,.08);
}

.popup-thumb{
  height: 64px;
  width: auto;
  cursor: pointer;
  opacity: .55;
  border-radius: 6px;
  flex-shrink: 0;
  transition: opacity .2s ease, outline .2s ease;
}

.popup-thumb:hover,
.popup-thumb.active{
  opacity: 1;
  outline: 2px solid var(--green);
}

/* ZAMKNIĘCIE */
.popup-close{
  position: absolute;
  top: 8px;
  right: 12px;
  font-size: 28px;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  z-index: 5;
}
.realizacje-popup.open{
  display:flex;
  align-items:center;
  justify-content:center;
}
