/* ================= PRO POPUP MODAL ================= */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.modal.hidden {
  display: none;
}

.modal-box {
  background: #ffffff;
  width: 100%;
  max-width: 420px;
  padding: 26px 24px;
  border-radius: 18px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  animation: popupIn 0.25s ease-out;
}

@keyframes popupIn {
  from {
    transform: scale(0.9) translateY(20px);
    opacity: 0;
  }
  to {
    transform: scale(1) translateY(0);
    opacity: 1;
  }
}

.modal-box input,
.modal-box select {
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #d1d5db;
}

#payNowBtn {
  background: #22c55e;
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
}

.close-btn {
  background: #e5e7eb;
  border: none;
  padding: 10px;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 600;
}
