/* --- Overlay --- */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

/* --- Container --- */
.popup-container {
  background: #fff;
  border-radius: 12px;
  display: flex;
  overflow: hidden;
  max-width: 800px;
  width: 90%;
  position: relative;
  flex-shrink: 0;
}

/* --- Close Button --- */
.popup-close {
  position: absolute;
  top: 0px;
  right: 0px;
  background: none;
  border: none;
  font-size: 26px;
  cursor: pointer;
  color: #333;
  line-height: 1;
}

/* --- Left (Image) --- */
.popup-left {
  flex: 1;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.popup-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --- Right (Text) --- */
.popup-right {
  flex: 1;
  padding: 40px 30px;
  text-align: center;
  font-family: Arial, sans-serif;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.popup-right h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
  color:#ff2a71;
}

.popup-right .highlight {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
}

.popup-right .highlight span {
  color: #ff2d7a;
}

.popup-right p {
  font-size: 18px;
  color: #333;
  margin-bottom: 18px;
}


.popup-form input {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
}

.popup-form button {
  background-color: #ff2d7a;
  color: white;
  border: none;
  padding: 12px;
  border-radius: 25px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.popup-form button:hover {
  background-color: #ff2a71;
}

.popup-no {
  display: inline-block;
  margin-top: 10px;
  font-size: 18px;
  color: #555;
  text-decoration: none;
}

/* --- Mobile (still side-by-side) --- */
@media (max-width: 768px) {
  .popup-container {
    flex-direction: row;
    width: 95%;
    max-width: 600px;
  }

  .popup-left,
  .popup-right {
    flex: 1;
    width: 50%;
  }

  .popup-right {
    padding: 20px;
  }

  .popup-right h2 {
    font-size: 18px;
  }

  .popup-right .highlight {
    font-size: 16px;
  }

  .popup-form button {
    font-size: 14px;
    padding: 10px;
  }

  .popup-form input {
    font-size: 13px;
    padding: 8px;
  }

/*  .popup-close {*/
/*    top: 0px;*/
/*    right: -10px;*/
/*    font-size: 20px;*/
/*  }*/
/*}*/

@media (max-width: 768px) {
    .popup-close {
        top: 0px;
        right: -10px;
        font-size: 22px;
    }
}
