/* ===== BOOKING PAGE (horizontal compact) ===== */

.page-title {
    text-align: center;
    padding: 20px 0 10px;
  }
  .page-title h1 {
    font-size: 1.8rem;
    color: #034ca7;
  }
  .page-title .subtitle {
    font-size: 0.9rem;
    color: #555;
  }
  
  /* Form */
  .booking-section {
    padding: 30px 20px;
  }
  .booking-form {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
  }
  .booking-form h2 {
    font-size: 1.2rem;
    color: #034ca7;
    margin: 20px 0 15px;
    border-bottom: 2px solid #eee;
    padding-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  
  /* Grid layout */
  .form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 16px;
  }
  .form-row > div {
    flex: 1;
    display: flex;
    flex-direction: column;
  }
  .form-row label {
    margin-bottom: 5px;
    font-weight: 600;
    color: #034ca7;
    font-size: 0.95rem;
  }
  .form-row input,
  .form-row select,
  .form-row textarea {
    padding: 8px 10px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 0.95rem;
  }
  .form-row textarea {
    resize: vertical;
    min-height: 70px;
  }
  
  /* Payment options */
  .payment-options {
    display: flex;
    gap: 20px;
    padding-top: 6px;
  }
  .payment-options label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
    cursor: pointer;
  }
  
  /* Total price */
  .total-price input {
    background: #f4f7fb;
    font-weight: 600;
    color: #444;
    text-align: center;
    padding: 10px;
  }
  
  /* Button */
  .btn-group {
    text-align: center;
    margin-top: 16px;
  }
  .btn-primary {
    background: #ff6a00;
    border: none;
    color: #fff;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
  }
  .btn-primary:hover {
    background: #e65c00;
  }
  
  /* Responsive: single column on mobile */
  @media (max-width: 768px) {
    .form-row {
      flex-direction: column;
    }
  }

  /* Make a row span full width */
.form-row.full-row { 
    flex-direction: column;        /* stack label + field */
    gap: 6px;
  }
  
  /* Full-width textarea, fixed size, non-resizable */
  .form-row.full-row textarea,
  #requests {
    width: 100%;
    min-height: 120px;             /* default height */
    resize: none;                  /* user can't drag to resize */
    overflow: auto;                /* scroll if content exceeds */
  }

  .return-fields.hidden { display: none; }
.return-fields {
  margin-top: 12px;
  padding: 16px;
  border: 1px dashed #cbd5e1;
  border-radius: 12px;
  background: #f8fafc;
}
.return-fields h2 { margin-top: 0; }

/* Return section styling */
.return-fields {
    margin-top: 12px;
    padding: 16px;
    border: 1px dashed #cbd5e1;
    border-radius: 12px;
    background: #f8fafc;
  }
  .return-fields h2 { margin-top: 0; }
  
  /* Cache-robust: si "hidden" est présent, on force display:none */
  .return-fields[hidden] { display: none !important; }
  