body {
  font-family: system-ui, sans-serif;
  background: #f3f6fa;
  padding: 2rem;
}

.order-container {
  max-width: 520px;
  margin: auto;
  background: #fff;
  padding: 2rem;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

h2 {
  text-align: center;
  margin-bottom: 1.5rem;
  font-weight: 600;
  color: #1e293b;
}

form input,
form select,
form textarea {
  width: 100%;
  padding: 0.7rem;
  margin-bottom: 1rem;
  border-radius: 10px;
  border: 1px solid #ddd;
  font-size: 0.95rem;
  direction: rtl;
}

textarea {
  resize: vertical;
  min-height: 90px;
}

#map {
  height: 200px;
  border-radius: 12px;
  margin-bottom: 1.5rem;
}

.btn {
  width: 100%;
  padding: 0.8rem;
  border-radius: 30px;
  border: none;
  background: linear-gradient(135deg, #25D366, #128C7E); /* WhatsApp gradient */
  color: white;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(18,140,126,0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 24px rgba(18,140,126,0.45);
}

/* Back button */
.back-btn {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 1rem;
  color: #0077ff;
  font-size: 0.95rem;
  font-weight: 500;
  background: transparent;
  padding: 0.3rem 0;
}

.back-btn::before {
  content: "→";
  font-size: 1rem;
}

.back-btn:hover {
  text-decoration: none;
}

/* Mobile */
@media (max-width: 768px) {
  body {
    padding: 0;
    background: #fff;
  }

  .order-container {
    max-width: 100%;
    min-height: 100vh;
    margin: 0;
    padding: 1.5rem;
    border-radius: 0;
    box-shadow: none;
  }
}
