/* ── Booking Quick Booking Sidebar ─────────────────────────────── */
.bookingq {
    width: 100%;
    background: var(--C-CARD, #1a1a1a);
    border: 1px solid var(--C-BORD, #2a2a2a);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    font-family: inherit;
    color: var(--C-TEXT, #f0f0f0);
    font-size: 15px;
    line-height: 1.55;
    position: sticky;
    top: 24px;
}
@media (max-width: 600px) {
    .bookingq {
        position: static;
        max-height: none;
        border-radius: 8px;
    }
}
.bookingq *, .bookingq *:before, .bookingq *:after { box-sizing: border-box; }
.bookingq .material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 24;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

/* ── Progress bar ── */
.bookingq-bar {
    display: flex;
    height: 3px;
    background: var(--C-BORD, #2a2a2a);
    flex-shrink: 0;
}
.bookingq-seg { flex: 1; transition: background 0.3s; }
.bookingq-seg-act, .bookingq-seg.bookingq-seg-act { background: var(--C-MAIN, #C01111); }

/* ── Red header ── */
.bookingq-head {
    background: var(--C-MAIN, #C01111);
    padding: 14px 16px 12px;
    flex-shrink: 0;
}
.bookingq-head-top {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}
.bookingq-svc-icon {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    background: rgba(255,255,255,0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.bookingq-svc-info { flex: 1; min-width: 0; }
.bookingq-svc-name {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.bookingq-svc-meta {
    font-size: 12px;
    color: rgba(255,255,255,0.78);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.bookingq-step-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255,255,255,0.85);
}

/* ── Main scrollable content ── */
.bookingq-main {
    flex: 1;
    overflow-y: auto;
    min-height: 0;
}
.bookingq-step { padding: 18px 16px; }

/* ── Step 1 ── */
.bookingq-eyebrow {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--C-MAIN, #C01111);
    margin: 0 0 8px;
}
.bookingq-s1-headline {
    font-size: 20px;
    font-weight: 800;
    color: var(--C-TEXT, #f0f0f0);
    margin: 0 0 10px;
    line-height: 1.2;
}
.bookingq-s1-body {
    font-size: 14px;
    color: var(--C-MUTE, #909090);
    margin: 0 0 14px;
    line-height: 1.6;
}
.bookingq-divider {
    border: none;
    border-top: 1px solid var(--C-BORD, #2a2a2a);
    margin: 14px 0;
}
.bookingq-section-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--C-MUTE, #909090);
    margin: 0 0 12px;
}
.bookingq-points {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.bookingq-points li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}
.bookingq-point-num {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--C-MAIN, #C01111);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}
.bookingq-points li strong {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--C-TEXT, #f0f0f0);
    margin-bottom: 3px;
}
.bookingq-points li span {
    font-size: 13px;
    color: var(--C-MUTE, #909090);
}
.bookingq-trust-list {
    list-style: none;
    padding: 0;
    margin: 0 0 18px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.bookingq-trust-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--C-MUTE, #909090);
}
.bookingq-dot-green {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #22c55e;
    flex-shrink: 0;
}
.bookingq-btn-cta {
    width: 100%;
    background: var(--C-MAIN, #C01111);
    color: #fff;
    border: none;
    padding: 14px;
    border-radius: 8px;
    font-family: inherit;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: filter 0.2s, transform 0.1s;
}
.bookingq-btn-cta:hover { filter: brightness(1.1); }
.bookingq-btn-cta:active { transform: scale(0.98); }

/* ── Shared field styles ── */
.bookingq-field-group { margin-bottom: 16px; }
.bookingq-field-group:last-child { margin-bottom: 0; }
.bookingq-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--C-MUTE, #909090);
    margin-bottom: 7px;
}
.bookingq-req { color: var(--C-MAIN, #C01111); }
.bookingq-optional { color: var(--C-MUTE, #909090); font-weight: 400; text-transform: none; letter-spacing: 0; }
.bookingq-input {
    width: 100%;
    background: var(--C-SURF, #212121);
    border: 1px solid var(--C-BORD, #2a2a2a);
    border-radius: 8px;
    color: var(--C-TEXT, #f0f0f0);
    font-family: inherit;
    font-size: 14px;
    padding: 11px 13px;
    outline: none;
    transition: border-color 0.2s;
}
.bookingq-input:focus { border-color: var(--C-MAIN, #C01111); }
.bookingq-input::placeholder { color: var(--C-MUTE, #909090); font-size: 13px; }
.bookingq-textarea { resize: none; }
.bookingq-notes-hint { font-size: 12px; margin-top: 5px; color: var(--C-MUTE, #909090); }
.bookingq-notes-hint.bookingq-hint-err { color: #f87171; }
.bookingq-notes-hint.bookingq-hint-ok  { color: #22c55e; }
.bookingq-input-wrap { position: relative; }
.bookingq-input-icon {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    color: var(--C-MUTE, #909090);
    pointer-events: none;
}
.bookingq-input-wrap .bookingq-input { padding-left: 36px; }

/* ── Zone hint (hidden, kept for markup compatibility) ── */
.bookingq-zone-hint { display: none !important; }

/* ── Calendar ── */
.bookingq-cal {
    background: var(--C-SURF, #212121);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--C-BORD, #2a2a2a);
}
.bookingq-cal-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 12px;
    border-bottom: 1px solid var(--C-BORD, #2a2a2a);
}
.bookingq-cal-month { font-size: 14px; font-weight: 700; color: var(--C-TEXT, #f0f0f0); }
.bookingq-cal-arrow {
    background: none;
    border: none;
    color: var(--C-MUTE, #909090);
    font-size: 20px;
    cursor: pointer;
    padding: 0 6px;
    line-height: 1;
}
.bookingq-cal-arrow:hover { color: var(--C-TEXT, #f0f0f0); }
.bookingq-cal-head {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    padding: 8px 8px 3px;
}
.bookingq-cal-head span {
    text-align: center;
    font-size: 11px;
    font-weight: 700;
    color: var(--C-MUTE, #909090);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.bookingq-cal-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
    padding: 4px 8px 10px;
}

/* Calendar day buttons — user spec */
button.bookingq-day,
button.bookingq-day.bookingq-day-avail,
button.bookingq-day.bookingq-day-empty {
    padding: 0 !important;
    height: 40px;
    width: 100%;
    background: none;
    border: none;
    border-radius: 0.5rem;
    color: var(--C-TEXT, #f0f0f0);
    font-family: inherit;
    font-size: 13px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s;
}
button.bookingq-day:hover:not(:disabled) { background: var(--C-BORD, #2a2a2a); }
button.bookingq-day.bookingq-day-avail { background: rgba(255,255,255,0.06); }
button.bookingq-day.bookingq-day-sel   { background: var(--C-MAIN, #C01111) !important; color: #fff !important; font-weight: 700; }
button.bookingq-day:disabled        { opacity: 0.22; cursor: default; }
button.bookingq-day.bookingq-day-empty { pointer-events: none; }

/* ── Time slots — horizontal, user spec ── */
.bookingq-slots {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 10px;
    margin-bottom: 10px;
}
.bookingq-slot {
    flex: 1;
    border-radius: 0.5rem !important;
    color: #fff !important;
    background: none !important;
    border: solid 1px #8a8a8a !important;
    padding: 10px 8px;
    text-align: left;
    cursor: pointer;
    font-family: inherit;
    transition: border-color 0.2s, background 0.2s;
}
.bookingq-slot:hover:not(:disabled) { border-color: var(--C-MAIN, #C01111) !important; }
.bookingq-slot-sel {
    background: var(--C-MAIN, #C01111) !important;
    border-color: var(--C-MAIN, #C01111) !important;
}
.bookingq-slot-sel .bookingq-slot-name,
.bookingq-slot-sel .bookingq-slot-sub { color: #fff !important; }
.bookingq-slot:disabled { opacity: 0.3; cursor: default; }
.bookingq-slot-name { display: block; font-size: 14px; font-weight: 700; color: #fff; }
.bookingq-slot-sub  { display: block; font-size: 11px; color: rgba(255,255,255,0.65); margin-top: 2px; }
.bookingq-alert-info {
    font-size: 12px;
    color: #93c5fd;
    background: rgba(59,130,246,0.08);
    border: 1px solid rgba(59,130,246,0.2);
    border-radius: 6px;
    padding: 8px 10px;
}

/* ── Photo upload ── */
.bookingq-photo-area {
    background: var(--C-SURF, #212121);
    border: 1px dashed var(--C-BORD, #2a2a2a);
    border-radius: 8px;
    padding: 12px;
}
.bookingq-photo-trigger {
    display: flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    color: var(--C-MUTE, #909090);
    font-family: inherit;
    font-size: 13px;
    cursor: pointer;
    padding: 0;
    transition: color 0.2s;
}
.bookingq-photo-trigger:hover { color: var(--C-TEXT, #f0f0f0); }
.bookingq-photo-trigger .material-symbols-outlined { font-size: 20px; }
.bookingq-photo-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}
.bookingq-photo-thumb {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid var(--C-BORD, #2a2a2a);
}
.bookingq-photo-uploading {
    font-size: 11px;
    color: var(--C-MUTE, #909090);
    margin-top: 6px;
}

/* ── Step 3 ── */
.bookingq-name-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
.bookingq-phone-highlight { border-color: rgba(192,17,17,0.35); }
.bookingq-acct-found {
    margin-top: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--C-MUTE, #909090);
}
.bookingq-login-inline {
    margin-top: 8px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.bookingq-login-err {
    font-size: 13px;
    color: #f87171;
    padding: 6px 10px;
    background: rgba(248,113,113,0.1);
    border-radius: 6px;
}
.bookingq-btn-link {
    background: none;
    border: none;
    color: var(--C-MAIN, #C01111);
    font-family: inherit;
    font-size: 13px;
    cursor: pointer;
    padding: 0;
    text-decoration: underline;
}
.bookingq-chk {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: var(--C-MUTE, #909090);
    cursor: pointer;
    margin-bottom: 14px;
    line-height: 1.5;
}
.bookingq-chk input[type="checkbox"] { flex-shrink: 0; accent-color: var(--C-MAIN, #C01111); margin-top: 3px; }
.bookingq-terms { margin-top: 14px; }
.bookingq-link { color: var(--C-MAIN, #C01111); text-decoration: underline; }
.bookingq-link:hover { opacity: 0.85; }
.bookingq-wa-fast-text { font-size: 0.85rem; color: #909090; margin: 16px 0 10px; text-align: center; line-height: 1.5; }
.bookingq-wa-btn { display: flex; align-items: center; justify-content: center; gap: 10px; width: 100%; max-width: 400px; margin: 0 auto; padding: 14px 20px; background: #25D366; color: #fff !important; border-radius: 10px; font-weight: 700; font-size: 1rem; text-decoration: none; transition: background 0.2s; box-sizing: border-box; }
.bookingq-wa-btn:hover { background: #1ebe5b; color: #fff !important; }

/* ── Booking type cards ── */
.bookingq-booking-cards { display: flex; flex-direction: column; gap: 8px; margin-bottom: 12px; }
.bookingq-card {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: var(--C-SURF, #212121);
    border: 1px solid var(--C-BORD, #2a2a2a);
    border-radius: 8px;
    padding: 12px;
    cursor: pointer;
    transition: border-color 0.2s;
}
.bookingq-card input[type="radio"] { flex-shrink: 0; accent-color: var(--C-MAIN, #C01111); margin-top: 4px; }
.bookingq-card:has(input:checked) { border-color: var(--C-MAIN, #C01111); }
.bookingq-card-body { flex: 1; }
.bookingq-card-top { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-bottom: 4px; }
.bookingq-card-title { font-size: 14px; font-weight: 700; color: var(--C-TEXT, #f0f0f0); }
.bookingq-badge-gray {
    font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em;
    background: var(--C-BORD, #2a2a2a); color: var(--C-MUTE, #909090);
    padding: 2px 6px; border-radius: 4px;
}
.bookingq-badge-green {
    font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em;
    background: rgba(34,197,94,0.15); color: #22c55e;
    padding: 2px 6px; border-radius: 4px;
}
.bookingq-card-sub    { font-size: 13px; color: var(--C-MUTE, #909090); margin: 0 0 5px; }
.bookingq-card-detail { font-size: 12px; color: var(--C-MUTE, #909090); line-height: 1.5; }

/* ── Price breakdown ── */
.bookingq-price-box {
    background: var(--C-SURF, #212121);
    border: 1px solid var(--C-BORD, #2a2a2a);
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 12px;
}
.bookingq-price-row {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: var(--C-MUTE, #909090);
    padding: 4px 0;
}
.bookingq-price-total {
    border-top: 1px solid var(--C-BORD, #2a2a2a);
    margin-top: 6px;
    padding-top: 8px;
    font-weight: 700;
    color: var(--C-TEXT, #f0f0f0);
    font-size: 14px;
}

/* ── Summary card ── */
.bookingq-summary-card {
    background: var(--C-SURF, #212121);
    border: 1px solid var(--C-BORD, #2a2a2a);
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 14px;
}
.bookingq-sum-row {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    padding: 4px 0;
    border-bottom: 1px solid var(--C-BORD, #2a2a2a);
}
.bookingq-sum-row:last-child { border-bottom: none; }
.bookingq-sum-label { font-size: 12px; color: var(--C-MUTE, #909090); flex-shrink: 0; }
.bookingq-sum-val   { font-size: 12px; color: var(--C-TEXT, #f0f0f0); text-align: right; word-break: break-word; }
.bookingq-zone-ok   { color: #22c55e; }

/* ── Submit error ── */
.bookingq-submit-err {
    font-size: 13px;
    color: #f87171;
    background: rgba(248,113,113,0.1);
    border-radius: 6px;
    padding: 8px 10px;
    margin-top: 10px;
}

/* ── Footer nav ── */
.bookingq-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    border-top: 1px solid var(--C-BORD, #2a2a2a);
    flex-shrink: 0;
    background: var(--C-CARD, #1a1a1a);
    gap: 10px;
}

/* Prev button — user spec */
button#bookingq-prev {
    background: none;
    border-radius: 0.5rem;
    border: solid 1px #b1b1b1;
    color: #b1b1b1;
    font-family: inherit;
    font-size: 13px;
    font-weight: 600;
    padding: 9px 16px;
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s;
    white-space: nowrap;
}
button#bookingq-prev:hover { border-color: #f0f0f0; color: #f0f0f0; }

/* Next button — user spec */
button#bookingq-next {
    border-radius: 0.5rem;
    text-align: right;
    background: var(--C-MAIN, #C01111);
    border: none;
    color: #fff;
    font-family: inherit;
    font-size: 14px;
    font-weight: 700;
    padding: 9px 18px;
    cursor: pointer;
    flex: 1;
    transition: filter 0.2s, transform 0.1s;
}
button#bookingq-next:hover    { filter: brightness(1.1); }
button#bookingq-next:active   { transform: scale(0.98); }
button#bookingq-next:disabled { opacity: 0.5; cursor: default; }

/* ── Trust bar ── */
.bookingq-trust-bar {
    display: flex;
    justify-content: center;
    gap: 12px;
    padding: 8px 12px;
    background: var(--C-SURF, #212121);
    border-top: 1px solid var(--C-BORD, #2a2a2a);
    flex-shrink: 0;
    flex-wrap: wrap;
}
.bookingq-trust-bar span { font-size: 11px; color: var(--C-MUTE, #909090); white-space: nowrap; }

/* ── Success screen ── */
.bookingq-ok {
    padding: 24px 16px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}
.bookingq-ok-icon {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: rgba(34,197,94,0.15);
    color: #22c55e;
    font-size: 24px;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700;
}
.bookingq-ok-title { font-size: 18px; font-weight: 800; color: var(--C-TEXT, #f0f0f0); margin: 0; }
.bookingq-ok-msg   { font-size: 13px; color: var(--C-MUTE, #909090); margin: 0; line-height: 1.6; }
.bookingq-ok-ref   { font-size: 12px; font-weight: 700; color: var(--C-MAIN, #C01111); letter-spacing: 0.05em; }
.bookingq-ok-details {
    width: 100%;
    background: var(--C-SURF, #212121);
    border: 1px solid var(--C-BORD, #2a2a2a);
    border-radius: 8px;
    padding: 12px;
    text-align: left;
}
.bookingq-ok-details p {
    display: flex; justify-content: space-between; gap: 10px;
    margin: 0 0 8px; font-size: 12px;
    border-bottom: 1px solid var(--C-BORD, #2a2a2a);
    padding-bottom: 6px;
}
.bookingq-ok-details p:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.bookingq-ok-details strong { color: var(--C-MUTE, #909090); font-weight: 600; flex-shrink: 0; }
.bookingq-ok-details span   { color: var(--C-TEXT, #f0f0f0); text-align: right; word-break: break-word; }

/* ── Autocomplete dropdown fix ── */
.bookingq .pac-container { z-index: 9999; }
