/* ======================================================
   MODAL PREMIUM
====================================================== */
.order-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
}

.order-modal.active {
  display: block;
}

.order-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(2,6,23,0.8);
  backdrop-filter: blur(8px);
}

.order-modal-content {
  position: relative;
  background: #ffffff;
  width: 95%;
  max-width: 900px;
  max-height: 90vh;
  margin: 5vh auto;
  border-radius: 30px;
  padding: 40px;
  overflow-y: auto;
  box-shadow: 0 80px 160px rgba(0,0,0,0.45);
  animation: modalFadeUp .35s ease;
}

@keyframes modalFadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

.order-modal-close {
  position: absolute;
  top: 18px;
  right: 22px;
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
}

/* HEADER */
.order-modal-header {
  text-align: center;
  margin-bottom: 30px;
}

.order-modal-header h2 {
  font-size: 2rem;
  font-weight: 800;
}

.order-modal-header p {
  color: #64748b;
}

/* FORM */
.order-modal .order-form {
  padding: 0;
  box-shadow: none;
}

/* SECTIONS */
.form-section {
  margin-bottom: 36px;
}

.form-section h3 {
  font-size: 1.1rem;
  margin-bottom: 16px;
  font-weight: 700;
}

/* GRID */
.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
  gap: 20px;
}

/* INPUTS */
.order-modal input,
.order-modal select,
.order-modal textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  background: #f9fafb;
}

.order-modal input:focus,
.order-modal select:focus,
.order-modal textarea:focus {
  outline: none;
  border-color: #2563eb;
  background: #ffffff;
}

.form-hint {
  font-size: 0.9rem;
  color: #64748b;
  margin-bottom: 12px;
}

/* CTA */
.modal-submit {
  width: 100%;
  font-size: 1.15rem;
  padding: 16px;
  margin-top: 10px;
}

.modal-footer-note {
  text-align: center;
  font-size: 0.85rem;
  color: #64748b;
  margin-top: 14px;
}

/* MOBILE */
@media (max-width: 700px) {
  .order-modal-content {
    padding: 28px 22px;
    margin: 3vh auto;
  }

  .order-modal-header h2 {
    font-size: 1.7rem;
  }
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
