/**
 * HopJump brand theme — classic booking wizard + thank-you.
 * Palette aligned with hopjump.cz / hopjump-booking.css (iOS theme untouched).
 */

.bw-theme-classic,
.hj-theme-classic {
    --ink: #16121F;
    --ink-soft: #312A44;
    --pink: #E8298A;
    --pink-deep: #B81570;
    --pink-tint: #FCE6F1;
    --lime: #D7FF3E;
    --lime-deep: #A8CC1F;
    --teal: #00C2B2;
    --teal-tint: #E1FBF8;
    --bg: #FAF9FC;
    --surface: #FFFFFF;
    --surface-2: #F4F2F8;
    --border: #E9E5F1;
    --muted: #7A7389;
    --muted-2: #AFA8C0;
    --success: #0D6832;
    --success-tint: #E8F5E9;
    --danger: #C62828;
    --warning: #F0A93B;
    --warning-tint: #FFF8EB;

    /* Aliases used across this stylesheet */
    --sky-blue-dark: var(--ink);
    --sky-blue: var(--pink);
    --sky-blue-mid: #2D1A35;
    --sky-orange: var(--pink);
    --sky-orange-dark: var(--pink-deep);
    --sky-green: var(--success);
    --sky-amber: var(--warning);
    --sky-red: var(--danger);

    --radius: 20px;
    --radius-sm: 10px;
    --bw-shell-max: 400px;
    --shadow: 0 1px 2px rgba(22, 18, 31, 0.04), 0 12px 28px -12px rgba(22, 18, 31, 0.14);
    --spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Typography */
.bw-theme-classic.bw-body,
.hj-theme-classic.hj-body {
    font-family: 'Inter', system-ui, sans-serif;
}

.bw-theme-classic.bw-body h1,
.bw-theme-classic.bw-body h2,
.bw-theme-classic.bw-body h3,
.bw-theme-classic .bw-step__title,
.bw-theme-classic .bw-brand__name,
.bw-theme-classic .bw-paybar__amt,
.hj-theme-classic.hj-body h1,
.hj-theme-classic.hj-body h2,
.hj-theme-classic.hj-body h3,
.hj-theme-classic .display,
.hj-theme-classic .hj-ticket-card__code {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

/* Nav */
.bw-theme-classic .hj-nav:not(.hj-nav--site),
.hj-theme-classic .hj-nav:not(.hj-nav--site) {
    background: var(--sky-blue-dark);
    border-bottom-color: rgba(255, 255, 255, 0.08);
}

.bw-theme-classic .hj-nav:not(.hj-nav--site) .hj-nav__logo,
.hj-theme-classic .hj-nav:not(.hj-nav--site) .hj-nav__logo {
    font-family: 'Poppins', sans-serif;
}

.bw-theme-classic .hj-nav:not(.hj-nav--site) .hj-nav__logo .dot,
.hj-theme-classic .hj-nav:not(.hj-nav--site) .hj-nav__logo .dot {
    background: var(--lime);
}

.bw-theme-classic .hj-nav:not(.hj-nav--site) .hj-nav__links a.is-active,
.hj-theme-classic .hj-nav:not(.hj-nav--site) .hj-nav__links a.is-active {
    color: var(--lime);
}

/* Layout */
.bw-theme-classic .bw-progress-bar {
    display: none;
}

.bw-theme-classic.bw-body {
    padding-bottom: 92px;
    background: var(--bg) !important;
}

.bw-theme-classic .bw-main.bw-shell {
    max-width: none;
    padding: 20px 16px 12px;
}

.bw-theme-classic .bw-sky-intro {
    text-align: center;
    max-width: var(--bw-shell-max);
    margin: 0 auto 18px;
}

.bw-theme-classic .bw-sky-intro h1 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 20px;
    margin: 0 0 6px;
    color: var(--ink);
}

.bw-theme-classic .bw-sky-intro p {
    color: var(--muted);
    font-size: 13px;
    margin: 0;
    line-height: 1.45;
}

/* Phone card */
.bw-theme-classic .bw-phone {
    width: 100%;
    max-width: var(--bw-shell-max);
    margin: 0 auto;
    background: var(--surface);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.9);
}

.bw-theme-classic .bw-phone-header {
    background: linear-gradient(180deg, var(--sky-blue-mid) 0%, var(--sky-blue-dark) 100%);
    padding: 16px 18px 18px;
    color: #fff;
}

.bw-theme-classic .bw-ph-row {
    margin-bottom: 12px;
}

.bw-theme-classic .bw-ph-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: -0.01em;
    line-height: 1.25;
}

.bw-theme-classic .bw-ph-progress {
    height: 5px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.25);
    overflow: hidden;
    margin-bottom: 8px;
}

.bw-theme-classic .bw-ph-progress-fill {
    height: 100%;
    background: var(--lime);
    border-radius: 4px;
    transition: width 0.28s ease;
}

.bw-theme-classic .bw-ph-sub {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.bw-theme-classic .bw-phone-body {
    padding: 14px 16px 16px;
    background: var(--surface);
}

/* Info rows */
.bw-theme-classic .bw-party-banner {
    font-size: 11.5px;
    color: var(--ink-soft);
    background: var(--pink-tint);
    border: none;
    border-radius: var(--radius-sm);
    padding: 9px 12px;
    margin-bottom: 10px;
    line-height: 1.4;
}

.bw-theme-classic .bw-party-banner a {
    color: var(--pink-deep);
    font-weight: 700;
    text-decoration: none;
}

.bw-theme-classic .bw-trust-row {
    display: flex;
    flex-wrap: nowrap;
    gap: 6px;
    margin-bottom: 14px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 2px;
}

.bw-theme-classic .bw-trust-row::-webkit-scrollbar {
    display: none;
}

.bw-theme-classic .bw-trust-pill {
    flex-shrink: 0;
    font-size: 10px;
    font-weight: 600;
    color: var(--ink-soft);
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 5px 9px;
    white-space: nowrap;
}

/* Steps list */
.bw-theme-classic .bw-step {
    margin-bottom: 8px;
}

.bw-theme-classic .bw-step.is-step-active .bw-step__head {
    display: none;
}

.bw-theme-classic .bw-step.is-step-active .bw-step-panel {
    border: 1.5px solid var(--border);
    border-radius: 12px;
    padding: 14px;
    background: #fff;
    box-shadow: 0 1px 2px rgba(20, 30, 70, 0.04);
}

.bw-theme-classic .bw-step.is-step-active .bw-step-panel .ios-group {
    display: block;
    border: none;
    padding: 0;
    margin: 0;
    background: transparent;
}

.bw-theme-classic .bw-step-panel .ios-group {
    display: block;
}

/* Prohlášení o odpovědnosti */
.bw-theme-classic .bw-liability-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 14px;
}

.bw-theme-classic .bw-liability-opt {
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    background: #fff;
    color: var(--ink-soft);
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 11px;
    font-weight: 600;
    line-height: 1.35;
    padding: 12px 10px;
    text-align: left;
    cursor: pointer;
    transition: border-color 0.15s, background 0.15s, color 0.15s;
    min-height: 52px;
}

.bw-theme-classic .bw-liability-opt:hover:not(.is-selected) {
    border-color: var(--sky-blue);
    color: var(--sky-blue);
}

.bw-theme-classic .bw-liability-opt.is-selected {
    background: var(--sky-blue);
    border-color: var(--sky-blue-dark);
    color: #fff;
}

.bw-theme-classic .bw-liability-hint {
    font-size: 11px;
    line-height: 1.4;
    color: var(--ink-soft);
    margin: 0 0 12px;
    padding: 8px 10px;
    border-radius: var(--radius-sm);
    background: var(--pink-tint);
}

@media (max-width: 380px) {
    .bw-theme-classic .bw-liability-row {
        grid-template-columns: 1fr;
    }
}


/* Counters */
.bw-theme-classic .bw-counter {
    padding: 11px 0;
    border-top: 1px dashed var(--border);
    gap: 10px;
}

.bw-theme-classic .bw-counter:first-of-type {
    border-top: none;
    padding-top: 0;
}

.bw-theme-classic .bw-counter__title {
    font-weight: 600;
    font-size: 13px;
    color: var(--ink);
}

.bw-theme-classic .bw-counter__desc {
    font-size: 10.5px;
    line-height: 1.35;
}

.bw-theme-classic .bw-counter--nested {
    border-left: 2px solid var(--border);
    margin-left: 6px;
    padding-left: 10px;
}

.bw-theme-classic .bw-jumper-card {
    border-color: var(--border);
    box-shadow: 0 1px 2px rgba(20, 30, 70, 0.04);
    margin-bottom: 10px;
}

.bw-theme-classic .bw-jumper-row {
    padding: 14px 16px;
    gap: 8px 10px;
}

.bw-theme-classic .bw-jumper-row__title {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
}

.bw-theme-classic .bw-jumper-row__hint {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 10.5px;
}

.bw-theme-classic .bw-jumper-row__stepper.bw-stepper {
    column-gap: 8px;
    grid-template-columns: 32px minmax(28px, max-content) 32px;
}

.bw-theme-classic .bw-jumper-row__stepper button {
    width: 32px;
    height: 32px;
    border-radius: 50%;
}

.bw-theme-classic .bw-jumper-row__stepper input {
    font-family: 'Poppins', sans-serif;
    font-size: 26px;
    font-weight: 600;
    color: var(--pink-deep);
    min-width: 28px;
    max-width: 44px;
}

@media (max-width: 380px) {
    .bw-theme-classic .bw-jumper-row {
        padding: 12px 12px;
        gap: 6px 8px;
    }

    .bw-theme-classic .bw-jumper-row__stepper.bw-stepper {
        column-gap: 6px;
        grid-template-columns: 30px minmax(24px, max-content) 30px;
    }

    .bw-theme-classic .bw-jumper-row__stepper button {
        width: 30px;
        height: 30px;
    }

    .bw-theme-classic .bw-jumper-row__stepper input {
        font-size: 24px;
        min-width: 24px;
        max-width: 36px;
    }
}

.bw-theme-classic .bw-group-sale-strip {
    background: #dff7ef;
    border-top-color: #b8ead9;
}

.bw-theme-classic .bw-group-sale-strip__headline {
    font-family: 'Inter', system-ui, sans-serif;
}

.bw-theme-classic .bw-jumper-split {
    padding: 16px 0 18px;
    border-top: 1px dashed var(--border);
}

.bw-theme-classic .bw-jumper-split:first-of-type {
    border-top: none;
    padding-top: 6px;
}

.bw-theme-classic .bw-jumper-split__label {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--ink-soft);
}

.bw-theme-classic .bw-jumper-split__stepper.bw-stepper {
    display: grid;
    column-gap: 24px;
    grid-template-columns: 36px minmax(56px, max-content) 36px;
}

.bw-theme-classic .bw-jumper-split__stepper {
    column-gap: 24px;
    grid-template-columns: 36px minmax(56px, max-content) 36px;
}

.bw-theme-classic .bw-jumper-split__stepper button {
    width: 36px;
    height: 36px;
    border-radius: 50%;
}

.bw-theme-classic .bw-jumper-split__stepper input {
    font-family: 'Poppins', sans-serif;
    font-size: 30px;
    font-weight: 600;
    color: var(--pink-deep);
    min-width: 56px;
    max-width: 80px;
}

@media (max-width: 380px) {
    .bw-theme-classic .bw-jumper-split__stepper {
        column-gap: 28px;
        grid-template-columns: 34px minmax(60px, max-content) 34px;
    }

    .bw-theme-classic .bw-jumper-split__stepper input {
        font-size: 28px;
        min-width: 60px;
    }
}

.bw-theme-classic .bw-jumper-split__hint {
    font-size: 10.5px;
    color: var(--muted);
}

.bw-theme-classic .bw-jumper-split__note {
    font-size: 10px;
    color: var(--muted);
    padding-bottom: 6px;
    border-bottom: 1px dashed var(--border);
    margin-bottom: 2px;
}

.bw-theme-classic .bw-counter .bw-stepper.bw-stepper {
    display: grid;
    grid-template-columns: 36px minmax(52px, max-content) 36px;
    column-gap: 20px;
    flex-shrink: 0;
    min-width: 140px;
}

.bw-theme-classic .bw-counter .bw-stepper.bw-stepper button {
    width: 36px;
    height: 36px;
    border-radius: 50%;
}

.bw-theme-classic .bw-counter .bw-stepper.bw-stepper input {
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    font-weight: 600;
    color: var(--pink-deep);
    width: 100%;
    min-width: 52px;
    max-width: 72px;
    padding: 0;
}

@media (max-width: 480px) {
    .bw-theme-classic .bw-counter {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 12px;
    }

    .bw-theme-classic .bw-counter__text {
        width: 100%;
    }

    .bw-theme-classic .bw-counter .bw-stepper.bw-stepper {
        column-gap: 28px;
        grid-template-columns: 36px minmax(56px, max-content) 36px;
    }

    .bw-theme-classic .bw-counter .bw-stepper.bw-stepper input {
        min-width: 56px;
    }
}

.bw-theme-classic .bw-stepper button {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1.5px solid var(--border);
    font-size: 16px;
    font-weight: 600;
    background: #fff;
}

.bw-theme-classic .bw-stepper button:hover:not(:disabled) {
    border-color: var(--sky-blue);
    color: var(--sky-blue);
    background: #fff;
}

.bw-theme-classic .bw-stepper input {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 600;
    width: 28px;
}

.bw-theme-classic .bw-jumper-split__stepper.bw-stepper input {
    font-size: 30px;
    width: 100%;
    min-width: 56px;
    max-width: 80px;
}

.bw-theme-classic .bw-counter .bw-stepper.bw-stepper input {
    font-size: 28px;
    min-width: 52px;
    max-width: 72px;
}

@media (max-width: 380px) {
    .bw-theme-classic .bw-jumper-split__stepper.bw-stepper input {
        font-size: 28px;
        min-width: 60px;
    }

    .bw-theme-classic .bw-counter .bw-stepper.bw-stepper input {
        min-width: 56px;
    }
}

/* Duration pills */
.bw-theme-classic .bw-dur-row {
    gap: 7px;
    margin-bottom: 10px;
}

.bw-theme-classic .bw-dur-pill {
    border-radius: var(--radius-sm);
    border: 1.5px solid var(--border);
    padding: 9px 4px;
}

.bw-theme-classic .bw-dur-pill__m {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 13px;
}

.bw-theme-classic .bw-dur-pill__p {
    font-size: 10.5px;
    color: var(--muted);
}

.bw-theme-classic .bw-dur-pill.is-selected {
    background: var(--pink);
    border-color: var(--pink-deep);
    color: #fff;
}

.bw-theme-classic .bw-dur-pill.is-selected .bw-dur-pill__p {
    color: rgba(255, 255, 255, 0.9);
}

/* Schedule step */
.bw-theme-classic .bw-schedule-layout {
    grid-template-columns: 1fr !important;
    gap: 14px;
}

.bw-theme-classic .bw-schedule-layout__cal .bw-legend {
    display: none;
}

.bw-theme-classic .hj-cal__title.bw-classic-only,
.bw-theme-classic .bw-sec-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--muted);
    margin: 0 0 10px;
}

.bw-theme-classic .hj-cal-host,
.bw-theme-classic .trampoliny__calendar,
.bw-theme-classic #booking-calendar {
    max-width: none !important;
    width: 100%;
}

.bw-theme-classic .hj-cal-host .ui-datepicker-calendar,
.bw-theme-classic .trampoliny__calendar .ui-datepicker-calendar {
    background: #fff;
    padding: 0 10px 12px;
}

.bw-theme-classic .hj-cal-host .ui-datepicker-calendar a.ui-state-default:hover,
.bw-theme-classic .hj-cal-host .ui-datepicker-calendar .ui-state-hover,
.bw-theme-classic .trampoliny__calendar .ui-datepicker-calendar a.ui-state-default:hover,
.bw-theme-classic .trampoliny__calendar .ui-datepicker-calendar .ui-state-hover {
    background: var(--pink-tint) !important;
    color: var(--sky-blue) !important;
}

.bw-theme-classic .hj-cal-host .ui-datepicker-today .ui-state-default,
.bw-theme-classic .trampoliny__calendar .ui-datepicker-today .ui-state-default {
    background: var(--pink-tint);
    color: var(--ink);
}

.bw-theme-classic .hj-cal-host .ui-datepicker-today .ui-state-active,
.bw-theme-classic .trampoliny__calendar .ui-datepicker-today .ui-state-active {
    background: var(--sky-blue) !important;
    color: #fff !important;
}

.bw-theme-classic .bw-total-card {
    background: var(--surface-2) !important;
    color: var(--ink);
    border: 1.5px dashed var(--border);
    border-radius: var(--radius-sm);
    padding: 12px 14px;
    margin-top: 14px;
    box-shadow: none;
}

.bw-theme-classic .bw-total-card__lbl {
    color: var(--muted);
}

.bw-theme-classic .bw-total-card__sub {
    color: var(--ink-soft);
    font-size: 11.5px;
}

.bw-theme-classic .bw-total-card__amt {
    color: var(--pink-deep);
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
}

.bw-theme-classic .bw-slots-legend {
    font-size: 10.5px;
    color: var(--muted);
    margin-bottom: 8px;
}

.bw-theme-classic .bw-slot-item {
    border-radius: var(--radius-sm);
    padding: 9px 10px;
    font-family: 'Poppins', sans-serif;
}

.bw-theme-classic .bw-slot-item__time {
    font-family: 'Poppins', sans-serif;
    font-size: 12.5px;
}

.bw-theme-classic .bw-slot-item__cap {
    font-size: 10.5px;
}

.bw-theme-classic .bw-slot-item:not(.is-disabled):not(.is-selected):hover {
    border-color: var(--sky-blue);
    background: var(--pink-tint);
}

.bw-theme-classic .bw-slot-item.is-selected {
    border-color: var(--sky-blue);
    background: #fff;
    box-shadow: none;
}

.bw-theme-classic .bw-slot-item.is-selected .bw-slot-item__radio {
    border-color: var(--sky-blue);
    background: var(--sky-blue);
}

/* Forms */
.bw-theme-classic .bw-field label {
    font-size: 10.5px;
    font-weight: 600;
    color: var(--ink-soft);
    margin-bottom: 5px;
}

.bw-theme-classic .bw-field input,
.bw-theme-classic .bw-field select,
.bw-theme-classic .bw-field textarea,
.bw-theme-classic .bw-birth select {
    border-radius: var(--radius-sm);
    border: 1.5px solid var(--border);
    font-size: 13px;
    padding: 9px 10px;
}

.bw-theme-classic .bw-field input:focus,
.bw-theme-classic .bw-field select:focus,
.bw-theme-classic .bw-field textarea:focus,
.bw-theme-classic .bw-birth select:focus {
    border-color: var(--sky-blue);
    outline: none;
    box-shadow: 0 0 0 3px rgba(232, 41, 138, 0.12);
}

.bw-theme-classic .bw-hint {
    font-size: 11px;
    color: var(--muted);
    line-height: 1.4;
}

.bw-theme-classic .bw-step-cta {
    width: 100%;
    border: none;
    border-radius: var(--radius-sm);
    background: var(--sky-blue);
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 13px;
    padding: 12px 16px;
    margin-top: 14px;
    cursor: pointer;
    transition: background 0.12s, transform 0.12s;
}

.bw-theme-classic .bw-step-cta:hover:not(:disabled) {
    background: var(--sky-blue-dark);
}

.bw-theme-classic .bw-step-cta:active:not(:disabled) {
    transform: scale(0.98);
}

.bw-theme-classic .bw-step-cta:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

/* Completed step row */
.bw-theme-classic .bw-step-done {
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 11px 12px;
    background: #fff;
    margin-bottom: 8px;
}

.bw-theme-classic .bw-step-done__check {
    background: var(--sky-green);
    border-radius: 50%;
    width: 24px;
    height: 24px;
    font-size: 11px;
}

.bw-theme-classic .bw-step-done__title {
    font-size: 10.5px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.bw-theme-classic .bw-step-done__val {
    font-size: 13px;
}

.bw-theme-classic .bw-step-done__edit {
    color: var(--sky-blue);
    background: var(--pink-tint);
    border-radius: 6px;
    padding: 6px 10px;
    font-size: 11.5px;
}

.bw-theme-classic .bw-step-done__edit:hover {
    background: #dde8ff;
}

/* Locked steps */
.bw-theme-classic .bw-step-locked {
    background: var(--surface-2);
    border: 1.5px dashed var(--border);
    border-radius: var(--radius-sm);
    padding: 11px 12px;
    margin-bottom: 8px;
    opacity: 1;
    gap: 10px;
}

.bw-theme-classic .bw-step-locked__num {
    width: 24px;
    height: 24px;
    border-radius: 6px;
    background: #fff;
    border: 1.5px solid var(--border);
    font-size: 11px;
    font-weight: 700;
    color: var(--muted-2);
}

.bw-theme-classic .bw-step-locked__title {
    font-size: 13px;
    font-weight: 600;
    color: var(--muted);
}

.bw-theme-classic .bw-step-locked__icon {
    font-size: 12px;
    opacity: 0.7;
}

/* Calendar */
.bw-theme-classic .hj-cal__title {
    color: var(--muted);
    font-size: 11px;
    letter-spacing: 0.05em;
}

.bw-theme-classic .hj-cal-host .ui-datepicker-header,
.bw-theme-classic .trampoliny__calendar .ui-datepicker-header {
    background: var(--sky-blue-dark);
    border-radius: var(--radius-sm);
}

.bw-theme-classic .hj-cal-host .ui-datepicker-header::after,
.bw-theme-classic .trampoliny__calendar .ui-datepicker-header::after {
    background: var(--lime);
}

.bw-theme-classic .hj-cal-host .ui-state-active,
.bw-theme-classic .trampoliny__calendar .ui-state-active,
.bw-theme-classic .hj-cal-host .ui-state-highlight,
.bw-theme-classic .trampoliny__calendar .ui-state-highlight {
    background-color: var(--sky-blue) !important;
    border-color: var(--sky-blue) !important;
}

/* Checkout */
.bw-theme-classic .bw-disc.is-active {
    background: var(--success-tint);
    border-color: rgba(34, 165, 89, 0.35);
    color: var(--ink-soft);
    border-radius: var(--radius-sm);
    font-size: 12px;
}

.bw-theme-classic .bw-order__line {
    font-size: 12px;
    color: var(--ink-soft);
}

.bw-theme-classic .bw-minor-guardian-consent {
    margin-bottom: 12px;
}

.bw-theme-classic .bw-minor-guardian-consent .bw-consent p {
    font-size: 12px;
    line-height: 1.45;
}

.bw-theme-classic .bw-consent a,
.bw-theme-classic .hj-text-link {
    color: var(--sky-blue);
}

.bw-theme-classic .bw-voucher-add-btn {
    background: var(--pink-tint);
    border-color: var(--sky-blue);
    color: var(--sky-blue);
    border-radius: var(--radius-sm);
}

.bw-theme-classic .bw-checkout-shell.is-checkout-active {
    display: block;
}

.bw-theme-classic .bw-checkout-aside {
    display: none;
    position: static;
    top: auto;
    margin: 0 0 14px;
    border: none;
    background: transparent;
}

.bw-theme-classic .bw-step-legal.is-step-active .bw-step-panel {
    display: flex;
    flex-direction: column;
}

@media (min-width: 721px) {
    .bw-theme-classic #group-pricing-tiers,
    .bw-theme-classic #group-order-panel {
        display: none !important;
    }
}

@media (max-width: 720px) {
    .bw-theme-classic .bw-step-legal.is-step-active #group-order-panel,
    .bw-theme-classic .bw-step-legal.is-step-active #group-pricing-tiers {
        display: block !important;
    }
}

.bw-theme-classic .bw-aside-card {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 12px;
    padding: 14px;
    box-shadow: 0 1px 2px rgba(20, 30, 70, 0.04);
}

.bw-theme-classic .bw-aside-card__title {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--ink);
    margin: 0 0 4px;
}

.bw-theme-classic .bw-aside-card__meta {
    font-size: 12px;
    color: var(--muted);
    margin: 0 0 12px;
    line-height: 1.4;
}

.bw-theme-classic .bw-order--aside {
    margin-bottom: 4px;
}

.bw-theme-classic .bw-order--aside .bw-order__line {
    font-size: 12.5px;
    padding: 5px 0;
}

.bw-theme-classic .bw-order--aside .bw-order__line span:last-child {
    font-weight: 700;
    color: var(--ink);
}

.bw-theme-classic .bw-aside-total {
    border-top: 1.5px dashed var(--border);
    margin-top: 8px;
    padding-top: 10px;
}

.bw-theme-classic .bw-aside-total__lbl {
    font-size: 13px;
    color: var(--muted);
}

.bw-theme-classic .bw-aside-total__amt {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--ink);
}

.bw-theme-classic .bw-aside-vat {
    font-size: 11px;
    color: var(--muted-2);
    text-align: right;
    margin: 2px 0 12px;
}

.bw-theme-classic .bw-pay-logos {
    margin-top: 4px;
}

.bw-theme-classic .bw-pay-logos__item {
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 9px;
    padding: 4px 7px;
}

.bw-theme-classic .bw-vouchers {
    margin-top: 4px;
}

.bw-theme-classic .bw-pay-opt.is-selected,
.bw-theme-classic .bw-radio-card.is-selected {
    border-color: var(--sky-blue);
    background: var(--pink-tint);
}

/* Pay bar */
.bw-theme-classic .bw-paybar {
    background: var(--sky-blue-dark);
    border-top: none;
    padding: 10px 0 calc(10px + env(safe-area-inset-bottom));
}

.bw-theme-classic .bw-paybar__inner {
    max-width: var(--bw-shell-max);
}

.bw-theme-classic .bw-paybar__lbl {
    color: rgba(255, 255, 255, 0.72);
    font-size: 10px;
    letter-spacing: 0.05em;
}

.bw-theme-classic .bw-paybar__amt {
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 17px;
}

.bw-theme-classic .bw-paybar__amt small {
    color: rgba(255, 255, 255, 0.65);
}

.bw-theme-classic .bw-paybar__sale-note {
    color: rgba(255, 255, 255, 0.85);
}

.bw-theme-classic .bw-paybar__btn {
    border-radius: var(--radius-sm);
    padding: 9px 14px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 11.5px;
    background: rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.45);
}

.bw-theme-classic .bw-paybar__btn.is-ready {
    background: var(--pink);
    color: #fff;
}

.bw-theme-classic .bw-paybar__btn.is-ready:hover {
    background: var(--pink-deep);
    transform: none;
    box-shadow: none;
}

.bw-theme-classic .bw-footer {
    display: none;
}

/* Thank-you */
.hj-theme-classic.hj-body {
    background: var(--bg);
}

.hj-theme-classic .hj-hero {
    background: linear-gradient(180deg, var(--sky-blue-mid), var(--sky-blue-dark));
    color: #fff;
}

.hj-theme-classic .hj-hero .hj-eyebrow {
    color: rgba(255, 255, 255, 0.75);
}

.hj-theme-classic .hj-hero .sub {
    color: rgba(255, 255, 255, 0.82);
}

.hj-theme-classic .hj-ticket-badge {
    background: var(--sky-green);
}

.hj-theme-classic .hj-ticket-card {
    border-radius: 12px;
    border: 1.5px dashed var(--border);
    background: var(--surface-2);
    box-shadow: var(--shadow);
}

.hj-theme-classic .hj-ticket-card__code {
    color: var(--pink-deep);
}

.hj-theme-classic .hj-ticket-card__val--price {
    color: var(--pink-deep);
    font-family: 'Poppins', sans-serif;
}

.hj-theme-classic .hj-btn-primary {
    background: var(--pink);
    color: #fff;
    font-family: 'Poppins', sans-serif;
    border-radius: var(--radius-sm);
}

.hj-theme-classic .hj-btn-primary:hover {
    background: var(--pink-deep);
}

.hj-theme-classic .hj-btn-secondary {
    border-color: var(--border);
    color: var(--pink);
    border-radius: var(--radius-sm);
}

/* Desktop — keep narrow phone, not 960px shell */
@media (min-width: 721px) {
    .bw-theme-classic {
        --bw-shell-max: 400px;
    }

    .bw-theme-classic.bw-body {
        background: var(--bg) !important;
    }

    .bw-theme-classic .bw-main.bw-shell {
        padding-top: 28px;
    }

    /* Base booking-wizard.css adds 22px/24px padding per step on desktop — too airy in phone card */
    .bw-theme-classic .bw-step {
        padding: 0;
        margin-bottom: 6px;
    }

    .bw-theme-classic .bw-step-summary {
        margin-bottom: 0;
    }

    .bw-theme-classic .bw-step.is-step-active {
        margin-bottom: 10px;
    }
}

@media (max-width: 480px) {
    .bw-theme-classic .bw-main.bw-shell {
        padding: 12px 0 8px;
    }

    .bw-theme-classic .bw-sky-intro {
        padding: 0 16px;
        margin-bottom: 14px;
    }

    .bw-theme-classic .bw-phone {
        border-radius: 0;
        box-shadow: none;
        border: none;
        max-width: none;
    }

    .bw-theme-classic .bw-phone-header {
        border-radius: 0;
    }

    .bw-theme-classic .bw-phone-body {
        padding-left: 14px;
        padding-right: 14px;
    }

    .bw-theme-classic .bw-paybar__inner {
        max-width: none;
        padding-left: 14px;
        padding-right: 14px;
    }
}
