/* popup ps */
.order-popup__overlay {
  position: fixed; left: 0; top: 0; width: 100vw; height: 100vh; z-index: 1000;
  background: rgba(0,0,0,0.65); display: flex; justify-content: center; align-items: center;
}
.order-popup {
  background: #181c30; border-radius: 16px; box-shadow: 0 8px 40px rgba(0,0,0,0.4);
  padding: 2rem 2.5rem; min-width: 320px; max-width: 95vw; position: relative;
}
.order-popup__close {
  position: absolute; right: 1rem; top: 1rem; font-size: 2rem; color: #fff; cursor: pointer;
}
.order-popup__form { display: flex; flex-direction: column; gap: 1rem; }
.order-popup__field { display: flex; flex-direction: column; gap: 0.3rem; }
.order-popup__field input[type="text"],
.order-popup__field input[type="tel"],
.order-popup__field input[type="email"],
.order-popup__field input[type="password"] {
  border-radius: 8px; padding: 0.5rem; background: #222845; color: #fff; border: 1px solid #444;
}
.order-popup__paybtn {
  background: var(--green); color: #080B1D; font-size: 1.1rem; padding: 0.7rem 0; border-radius: 8px; font-weight: bold; margin-top: 0.5rem;
  transition: background 0.2s;
}
.order-popup__paybtn:hover { background: #eaff63; }
@media (max-width: 500px) {
  .order-popup { padding: 1rem; min-width: 0; }
}
/* */