/* POPUP ARKA PLAN */
#popup{
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,.65);
  padding: 20px; /* 🔑 Kenarlardan nefes */
}

/* POPUP KUTU */
.popup-box{
  position: relative;
  width: 90vw;
  max-width: 900px;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* RESİM */
.popup-img{
  width: 100%;
  height: auto;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 6px;
}

/* KAPATMA (X) */
.popup-close{
  position: absolute;
  top: 10px;          /* ❌ ekranın tepesinde değil */
  right: 10px;
  width: 42px;
  height: 42px;
  background: rgba(0,0,0,.75);
  color: #fff;
  font-size: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
}

/* MOBİL */
@media (max-width: 768px){

  .popup-box{
    width: 95vw;
    max-height: 85vh;
  }

  .popup-img{
    max-height: 80vh; /* 🔑 küçük kalmaz */
  }

  .popup-close{
    width: 46px;
    height: 46px;
    font-size: 24px;
  }
}
