/* booking.css — Styles for the grooming booking flow */

.booking-wrapper { max-width: 680px; margin: 0 auto; padding: 120px 24px 80px; }
.booking-header { text-align: center; margin-bottom: 48px; }
.eyebrow { display: inline-block; font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); margin-bottom: 12px; }
.page-title { font-family: 'Playfair Display', serif; font-size: 38px; font-weight: 600; color: var(--fg); letter-spacing: -0.02em; margin-bottom: 12px; }
.page-subtitle { font-size: 16px; color: var(--muted); font-weight: 300; }

.step-track { display: flex; align-items: center; justify-content: center; margin-bottom: 48px; gap: 0; }
.step-item { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.step-circle { width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 600; border: 2px solid var(--border); color: var(--muted); background: var(--surface); transition: all 0.3s; }
.step-circle.active { background: var(--accent); border-color: var(--accent); color: white; }
.step-circle.done { background: var(--fg); border-color: var(--fg); color: white; }
.step-label { font-size: 11px; color: var(--muted); font-weight: 500; letter-spacing: 0.05em; text-transform: uppercase; }
.step-label.active { color: var(--accent); }
.step-label.done { color: var(--fg); }
.step-line { width: 60px; height: 2px; background: var(--border); margin-bottom: 24px; }
.step-line.done { background: var(--fg); }

.card { background: var(--surface); border: 1px solid var(--border); border-radius: 20px; padding: 32px; margin-bottom: 20px; }
.card-title { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 600; color: var(--fg); margin-bottom: 20px; }

.service-list { display: flex; flex-direction: column; gap: 12px; }
.service-option { display: flex; align-items: center; gap: 16px; padding: 20px; border: 2px solid var(--border); border-radius: 14px; cursor: pointer; transition: all 0.2s; }
.service-option:hover { border-color: var(--accent-warm); }
.service-option.selected { border-color: var(--accent); background: rgba(200, 105, 74, 0.04); }
.service-option input[type="radio"] { display: none; }
.service-icon-wrap { width: 48px; height: 48px; border-radius: 12px; background: var(--bg); display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.service-info { flex: 1; }
.service-name { font-weight: 600; font-size: 15px; color: var(--fg); }
.service-desc { font-size: 13px; color: var(--muted); margin-top: 2px; font-weight: 300; }
.service-meta { text-align: right; flex-shrink: 0; }
.service-duration { font-size: 12px; color: var(--muted); }
.service-price { font-size: 18px; font-weight: 600; color: var(--accent); }

.form-row { margin-bottom: 20px; }
.form-label { display: block; font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.form-input, .form-select, .form-textarea { width: 100%; padding: 12px 16px; border: 1.5px solid var(--border); border-radius: 10px; font-size: 15px; font-family: 'DM Sans', sans-serif; color: var(--fg); background: white; transition: border-color 0.2s; box-sizing: border-box; }
.form-input:focus, .form-select:focus, .form-textarea:focus { outline: none; border-color: var(--accent); }
.form-textarea { resize: vertical; min-height: 80px; }

.date-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 8px; margin-bottom: 24px; }
.date-btn { aspect-ratio: 1; border: 1.5px solid var(--border); border-radius: 10px; background: white; font-size: 14px; font-weight: 500; color: var(--fg); cursor: pointer; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px; transition: all 0.2s; padding: 4px; }
.date-btn:hover { border-color: var(--accent-warm); }
.date-btn.selected { background: var(--accent); border-color: var(--accent); color: white; }
.date-btn.disabled { opacity: 0.3; pointer-events: none; }
.date-day { font-size: 10px; text-transform: uppercase; letter-spacing: 0.05em; color: var(--muted); }
.date-btn.selected .date-day { color: rgba(255,255,255,0.7); }

.time-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.time-btn { padding: 12px 8px; border: 1.5px solid var(--border); border-radius: 10px; background: white; font-size: 14px; font-weight: 500; color: var(--fg); cursor: pointer; transition: all 0.2s; text-align: center; }
.time-btn:hover { border-color: var(--accent-warm); }
.time-btn.selected { background: var(--accent); border-color: var(--accent); color: white; }
.time-btn:disabled { opacity: 0.4; pointer-events: none; }

.btn-primary { display: inline-flex; align-items: center; gap: 8px; background: var(--accent); color: white; border: none; padding: 14px 28px; border-radius: 10px; font-size: 15px; font-weight: 600; font-family: 'DM Sans', sans-serif; cursor: pointer; transition: background 0.2s; text-decoration: none; }
.btn-primary:hover { background: #b55a3e; }
.btn-primary:disabled { opacity: 0.5; cursor: not-allowed; }
.btn-secondary { background: white; color: var(--fg); border: 1.5px solid var(--border); padding: 14px 28px; border-radius: 10px; font-size: 15px; font-weight: 600; font-family: 'DM Sans', sans-serif; cursor: pointer; transition: all 0.2s; text-decoration: none; }
.btn-secondary:hover { border-color: var(--muted); }
.btn-group { display: flex; gap: 12px; justify-content: space-between; margin-top: 24px; }

.summary-card { background: var(--bg); border-radius: 16px; padding: 24px; margin-bottom: 24px; }
.summary-row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--border); font-size: 15px; }
.summary-row:last-child { border-bottom: none; }
.summary-label { color: var(--muted); }
.summary-value { font-weight: 500; color: var(--fg); }

.error-msg { background: #fff0f0; color: #c0392b; border: 1px solid #f5c6c6; border-radius: 8px; padding: 12px 16px; font-size: 14px; margin-bottom: 16px; }

.confirm-hero { text-align: center; padding: 48px 0 32px; }
.confirm-icon { width: 72px; height: 72px; background: var(--fg); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; font-size: 36px; }
.confirm-title { font-family: 'Playfair Display', serif; font-size: 32px; font-weight: 600; color: var(--fg); margin-bottom: 8px; }
.confirm-subtitle { color: var(--muted); font-size: 16px; }
.confirm-code-box { background: var(--surface); border: 2px dashed var(--border); border-radius: 16px; padding: 28px; text-align: center; margin: 24px 0; }
.confirm-code-label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted); margin-bottom: 10px; }
.confirm-code { font-family: monospace; font-size: 32px; font-weight: 700; color: var(--accent); letter-spacing: 0.15em; }

.notfound-wrapper { text-align: center; padding: 80px 24px; }
.notfound-title { font-family: 'Playfair Display', serif; font-size: 28px; margin-bottom: 12px; }

@media (max-width: 600px) {
  .booking-wrapper { padding: 100px 16px 60px; }
  .date-grid { grid-template-columns: repeat(4, 1fr); }
  .time-grid { grid-template-columns: repeat(3, 1fr); }
  .btn-group { flex-direction: column; }
  .btn-group button, .btn-group a { width: 100%; text-align: center; }
}