/* Sötétített overlay háttér */ 
#popupOverlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* Popup konténer */
.popup {
  position: relative;
  max-width: 95%;
  width: 450px;
}

/* Reszponzív kép */
.popup img {
  width: 100%;
  height: auto;
  display: block;
}

/* Bezáró X gomb */
.popup .close {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 50%;
  background: #fff;
  font-size: 22px;
  cursor: pointer;
  line-height: 0;
  box-shadow: 0 4px 10px rgba(0,0,0,.25);
}


/* MOBIL NÉZET – kicsit más elrendezés */
@media (max-width: 600px) {
  #popupOverlay {
    align-items: center;
    padding-top: 0;
  }

  .popup {
    width: 85%;
    max-width: 360px;   /* felső határ mobilon */
  }
}

  .popup .close {
    top: -8px;
    right: -8px;
    width: 28px;
    height: 28px;
    font-size: 20px;
  }
}
