/* SPA Reservas Lite - CSS con cabecera */
#spa-reservation-container {
  max-width: 980px;
  margin: 0 auto;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
  overflow: hidden;
}
.reservation-header { padding: 18px 24px; background:#111827; color:#fff; }
.reservation-header h2 { margin:0; font-size:22px; }

.reservation-progress {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  background: #f8f9fa;
  border-bottom: 1px solid #eee;
}
.step {
  padding: 14px 10px;
  text-align: center;
  font-weight: 700;
  font-size: 14px;
  color: #6b7280;
}
.step.active { color: #111827; background: #fff; }

.reservation-step { display: none; padding: 24px; }
.reservation-step.active { display: block; animation: fade .25s ease; }
@keyframes fade { from{opacity:0; transform: translateY(6px);} to{opacity:1; transform: translateY(0);} }

.form-row { margin: 16px 0; }
.two-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-row label { display:block; font-size:12px; color:#374151; font-weight:700; margin-bottom:6px; text-transform:uppercase; letter-spacing:.04em; }
.form-row select, .form-row input, .form-row textarea {
  width:100%; padding:12px 14px; border:1px solid #e5e7eb; border-radius:10px; font-size:15px;
}
.form-row select:focus, .form-row input:focus, .form-row textarea:focus {
  outline: none; border-color:#f59e0b; box-shadow: 0 0 0 3px rgba(245,158,11,.15);
}

.precio-display { display:none; text-align:center; background:#111827; color:#fff; border-radius:12px; padding:14px; margin:10px 0; }
.precio-display #precio-amount { font-size:26px; font-weight:900; color:#fbbf24; }

.horarios-grid { display:grid; grid-template-columns: repeat(auto-fill, minmax(110px,1fr)); gap:12px; margin: 18px 0; }
.horario-item { border:1px solid #e5e7eb; border-radius:10px; padding:12px; text-align:center; font-weight:700; cursor:pointer; }
.horario-item:hover { border-color:#f59e0b; }
.horario-item.selected { background:#f59e0b; color:#111; }

.resumen-reserva { background:#f9fafb; border:1px solid #eee; border-radius:12px; padding:16px; margin-top:10px; }
.resumen-item { display:flex; justify-content:space-between; padding:10px 0; border-bottom:1px dashed #e5e7eb; }
.resumen-item:last-child{ border-bottom:none; }
.resumen-item.total{ font-size:18px; font-weight:900; }

.politicas { background:#fff7ed; border-left:4px solid #fdba74; padding:14px; border-radius:8px; }

.btn-siguiente, .btn-anterior, .btn-confirmar {
  border:0; border-radius:999px; padding:12px 22px; font-weight:900; cursor:pointer; margin: 6px;
}
.btn-siguiente, .btn-confirmar { background:#f59e0b; color:#111; }
.btn-anterior { background:#e5e7eb; }
.btn-siguiente[disabled]{ opacity:.6; cursor:not-allowed; }

.confirmacion-exitosa { text-align:center; padding:60px 20px; }
.numero-reserva { margin-top:10px; font-size:20px; }
.error-message { color:#dc2626; font-size:13px; margin-top:6px; }
.form-error { border-color:#dc2626 !important; box-shadow:0 0 0 3px rgba(220,38,38,.12) !important; }
