.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;

  display: none;
  justify-content: center;
  align-items: center;
  transform: translateY(60px); /* 🔥 niche shift */
  background: transparent; /* 🔥 no overlay */
}

.popup-content {
  position: relative;
  width: 60%;
  max-width: 900px;
}

.popup-content img {
  width: 100%;
  display: block;
  border-radius: 10px;
}

.close {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #ff7834;
  color: white;
  font-size: 18px;
  padding: 6px 10px;
  cursor: pointer;
  border-radius: 50%;
}

/* MOBILE */
@media (max-width: 768px) {
  .popup-content {
    width: 90%;
  }
}
.popup {
  pointer-events: none; /* 🔥 click allow karega background pe */
}

.popup-content {
  pointer-events: auto; /* 🔥 sirf popup clickable */
}