/* HopJump brand — aligned with hopjump.cz & hopjump-booking.css */
:root {
    --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;
    --danger: #c62828;
    --warning: #e65100;
    --warning-tint: #fff3e0;
    --success: #0d6832;
    --success-tint: #e8f5e9;
    --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);
    --radius: 18px;
    --radius-sm: 13px;
    --bw-shell-max: 560px;
    --bw-shell-pad: 14px;
}

* {
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html,
body {
    margin: 0;
    padding: 0;
}

.bw-body {
    background: var(--bg);
    color: var(--ink);
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    min-height: 100vh;
    padding-bottom: 108px;
    -webkit-font-smoothing: antialiased;
}

.bw-shell {
    width: 100%;
    max-width: var(--bw-shell-max);
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--bw-shell-pad);
    padding-right: var(--bw-shell-pad);
}

.bw-shell--flash {
    padding-top: 10px;
}

.bw-body h1,
.bw-body h2,
.bw-body h3,
.bw-step__title,
.bw-brand__name,
.bw-paybar__amt {
    font-family: Fredoka, sans-serif;
    font-weight: 600;
}

.ios-group {
    display: contents;
}

/* Site nav (shared with hopjump layout) */
.hj-nav {
    position: sticky;
    top: 0;
    z-index: 50;
    background: var(--ink);
    color: #fff;
    padding: 0 clamp(20px, 4vw, 48px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.hj-nav__logo {
    font-family: Fredoka, sans-serif;
    font-weight: 700;
    font-size: 22px;
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: -0.02em;
    text-decoration: none;
    color: #fff;
}

.hj-nav__logo .dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--lime);
    display: inline-block;
    transform: translateY(-8px);
    animation: hjDotBounce 2.2s var(--spring) infinite;
}

@keyframes hjDotBounce {
    0%,
    100% {
        transform: translateY(-8px);
    }
    50% {
        transform: translateY(0);
    }
}

.hj-nav__links {
    display: flex;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 14.5px;
    font-weight: 600;
}

.hj-nav__links a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.62);
    position: relative;
    padding-bottom: 26px;
    transition: color 0.2s;
}

.hj-nav__links a:hover,
.hj-nav__links a.is-active {
    color: #fff;
}

.hj-nav__links a.is-active::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 23px;
    height: 3px;
    border-radius: 3px;
    background: var(--pink);
}

.hj-nav__user {
    text-align: right;
    font-size: 12.5px;
    line-height: 1.5;
}

.hj-nav__user .email {
    color: rgba(255, 255, 255, 0.5);
    max-width: 220px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.hj-nav__guest-label {
    color: rgba(255, 255, 255, 0.72);
    font-weight: 600;
}

.hj-nav__user .links {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    font-weight: 700;
    align-items: center;
}

.hj-nav__user .links a,
.hj-nav__user .links button {
    color: var(--lime);
    text-decoration: none;
    background: none;
    border: 0;
    padding: 0;
    font: inherit;
    font-weight: 700;
    cursor: pointer;
}

.hj-nav__user .links a.is-current {
    text-decoration: underline;
}

.hj-nav__login {
    background: var(--lime);
    color: var(--ink);
    border: none;
    border-radius: 12px;
    padding: 10px 16px;
    font-weight: 700;
    font-size: 13px;
    text-decoration: none;
    cursor: pointer;
}

@media (max-width: 860px) {
    .hj-nav__links {
        display: none;
    }
}

.bw-progress-bar {
    position: sticky;
    top: 72px;
    z-index: 40;
    background: var(--ink);
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 10px 0 12px;
}

.bw-progress-bar .bw-shell {
    padding-left: var(--bw-shell-pad);
    padding-right: var(--bw-shell-pad);
}

.bw-header {
    position: sticky;
    top: 0;
    z-index: 40;
    background: var(--ink);
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 12px 0 10px;
}

.bw-header .bw-shell {
    padding-left: var(--bw-shell-pad);
    padding-right: var(--bw-shell-pad);
}

.bw-brand {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 10px;
}

.bw-brand__link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    text-decoration: none;
    font-family: Fredoka, sans-serif;
    font-weight: 700;
    font-size: 20px;
    letter-spacing: -0.02em;
}

.bw-brand__dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--lime);
    display: inline-block;
    transform: translateY(-7px);
    flex-shrink: 0;
}

.bw-brand__sub {
    display: none;
}

.bw-header__account {
    font-size: 13px;
    font-weight: 600;
    color: var(--lime);
    text-decoration: none;
    white-space: nowrap;
}

.bw-header__account:hover {
    color: #fff;
}

.bw-progress {
    display: flex;
    gap: 6px;
}

.bw-progress i {
    flex: 1;
    height: 4px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.15);
    list-style: none;
    display: block;
}

.bw-progress i.is-done {
    background: var(--lime);
}

.bw-progress i.is-active {
    background: linear-gradient(90deg, var(--pink) 50%, rgba(255, 255, 255, 0.15) 50%);
    background-size: 200% 100%;
    animation: bwPulseFill 1.4s ease-in-out infinite alternate;
}

@keyframes bwPulseFill {
    from { background-position: 0 0; }
    to { background-position: 60% 0; }
}

.bw-main {
    padding-top: 16px;
    padding-bottom: 8px;
}

.bw-flash {
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 600;
}

.bw-flash--error {
    background: #fdecea;
    border: 1px solid #f5c6c2;
    color: var(--danger);
}

.bw-party-banner {
    background: var(--teal-tint);
    border: 1.5px dashed var(--teal);
    border-radius: var(--radius-sm);
    padding: 10px 14px;
    font-size: 13px;
    margin-bottom: 14px;
    line-height: 1.45;
    color: var(--ink-soft);
}

.bw-party-banner a {
    color: var(--pink-deep);
    font-weight: 700;
}

.bw-voucher-intro {
    font-size: 13px;
    line-height: 1.55;
    color: var(--ink-soft);
}

.bw-voucher-intro p {
    margin: 0 0 0.65em;
}

.bw-voucher-intro p:last-child {
    margin-bottom: 0;
}

.bw-voucher-intro a {
    color: var(--pink-deep);
    font-weight: 600;
}

.bw-vouchers {
    margin: 14px 0 16px;
}

.bw-voucher-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 10px;
}

.bw-voucher-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 10px 12px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: var(--surface-2);
}

.bw-voucher-item.is-pending {
    border-color: #f5c542;
}

.bw-voucher-item__body {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 0;
    flex: 1;
}

.bw-voucher-item__meta {
    font-size: 12px;
    color: var(--muted);
}

.bw-voucher-entries {
    width: 100%;
    max-width: 220px;
    padding: 6px 8px;
    border-radius: 8px;
    border: 1px solid var(--border);
    background: var(--surface);
    font: inherit;
}

.bw-voucher-entries.is-unset {
    border-color: #f5c542;
}

.bw-voucher-remove {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border: none;
    border-radius: 8px;
    background: transparent;
    color: var(--muted);
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
}

.bw-voucher-remove:hover {
    color: var(--ink);
    background: rgba(0, 0, 0, 0.05);
}

.bw-voucher-add {
    display: flex;
    gap: 8px;
    align-items: stretch;
}

.bw-voucher-add input {
    flex: 1;
    min-width: 0;
    padding: 10px 12px;
    border: 1px solid var(--border);
    border-radius: 10px;
    font: inherit;
}

.bw-voucher-add-btn {
    flex-shrink: 0;
    padding: 10px 16px;
    border: none;
    border-radius: 10px;
    background: var(--pink);
    color: #fff;
    font-weight: 600;
    cursor: pointer;
}

.bw-voucher-add-btn:disabled {
    opacity: 0.6;
    cursor: wait;
}

.bw-voucher-message.is-error {
    color: #c0392b;
}

.bw-voucher-footnote {
    margin-top: 8px;
    margin-bottom: 0;
}

.bw-order__line.is-discount span:last-child {
    color: var(--pink-deep);
}

.bw-step {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 18px 16px 20px;
    box-shadow: var(--shadow);
    animation: bwFloatIn 0.4s ease both;
}

.bw-step.is-locked {
    opacity: 0.45;
    pointer-events: none;
}

@keyframes bwFloatIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.bw-step__head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.bw-step__num {
    width: 28px;
    height: 28px;
    border-radius: 9px;
    background: var(--surface-2);
    border: 1.5px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Fredoka, sans-serif;
    font-weight: 600;
    font-size: 13px;
    color: var(--muted);
    flex-shrink: 0;
}

.bw-step.is-complete .bw-step__num {
    background: var(--pink);
    color: #fff;
    border-color: var(--pink);
}

.bw-step__title {
    font-size: 16px;
    font-weight: 600;
    color: var(--ink);
}

.bw-step__check {
    margin-left: auto;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--lime);
    color: var(--ink);
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 800;
}

.bw-step.is-complete .bw-step__check {
    display: flex;
}

.bw-spring {
    width: 100%;
    height: 14px;
    margin: 18px 0 16px;
    display: block;
    color: var(--border);
}

.bw-presets {
    margin-bottom: 16px;
}

.bw-presets__label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.4px;
    margin-bottom: 10px;
}

.bw-presets__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

.bw-preset {
    width: 100%;
    padding: 17px 18px;
    border: 2px solid var(--pink);
    background: var(--surface);
    color: var(--ink);
    border-radius: 18px;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.25;
    text-align: center;
    cursor: pointer;
    transition: transform 0.18s var(--spring), box-shadow 0.18s ease, background 0.15s ease;
}

.bw-preset:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.bw-preset.is-active {
    background: var(--pink-tint);
    box-shadow: 0 0 0 3px rgba(232, 41, 138, 0.12);
}

.bw-counter {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-top: 1px dashed var(--border);
}

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

.bw-counter__title {
    font-size: 14px;
    font-weight: 700;
    color: var(--ink);
}

.bw-counter__desc {
    font-size: 11.5px;
    color: var(--muted);
    line-height: 1.4;
    margin-top: 2px;
}

.bw-counter__text {
    flex: 1;
    min-width: 0;
}

.bw-counter--nested {
    padding-left: 10px;
    border-left: 2px solid var(--pink-tint);
    margin-left: 4px;
}

.bw-jumper-split {
    padding: 14px 0 16px;
    text-align: center;
    border-top: 1px dashed var(--border);
}

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

.bw-jumper-split__label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--muted, #6B7280);
    margin-bottom: 10px;
    line-height: 1.3;
}

.bw-jumper-split__stepper {
    display: grid;
    grid-template-columns: 40px minmax(52px, max-content) 40px;
    align-items: center;
    justify-content: center;
    column-gap: 20px;
    width: max-content;
    max-width: 100%;
    margin: 0 auto;
}

.bw-jumper-split__stepper button {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
}

.bw-jumper-split__stepper input {
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    font-weight: 600;
    width: 100%;
    min-width: 52px;
    max-width: 72px;
    text-align: center;
    border: none;
    background: transparent;
    color: var(--ink);
    -moz-appearance: textfield;
    flex-shrink: 0;
    padding: 0;
    margin: 0;
}

.bw-jumper-split__stepper input::-webkit-outer-spin-button,
.bw-jumper-split__stepper input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.bw-jumper-split__hint {
    font-size: 11px;
    line-height: 1.35;
    color: var(--muted, #6B7280);
    margin-top: 8px;
}

.bw-jumper-split__note {
    font-size: 10.5px;
    line-height: 1.35;
    color: var(--muted, #6B7280);
    text-align: center;
    margin: 0 0 4px;
    padding: 0 6px;
}

.bw-jumper-card {
    border: 1.5px solid var(--border);
    border-radius: 14px;
    background: #fff;
    overflow: hidden;
}

.bw-jumper-row {
    display: grid;
    grid-template-columns: 32px minmax(0, 1fr) min-content;
    align-items: center;
    gap: 10px 12px;
    padding: 14px 16px;
    border-top: 1px solid var(--border);
}

.bw-jumper-row:first-child {
    border-top: none;
}

.bw-jumper-row__info {
    min-width: 0;
}

.bw-jumper-row__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ink);
}

.bw-jumper-row__icon-img {
    display: block;
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.bw-jumper-row__title {
    font-size: 14px;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.2;
}

.bw-jumper-row__hint {
    font-size: 11px;
    color: var(--muted, #6B7280);
    line-height: 1.3;
    margin-top: 2px;
}

.bw-jumper-row__stepper {
    justify-self: end;
    margin: 0;
    flex-shrink: 0;
    display: grid;
    grid-template-columns: 34px minmax(28px, max-content) 34px;
    align-items: center;
    column-gap: 10px;
    width: max-content;
    max-width: none;
}

.bw-jumper-row__stepper button {
    width: 34px;
    height: 34px;
    flex-shrink: 0;
    padding: 0;
}

.bw-jumper-row__stepper input {
    font-family: 'Poppins', sans-serif;
    font-size: 26px;
    font-weight: 600;
    width: 100%;
    min-width: 28px;
    max-width: 48px;
    text-align: center;
    border: none;
    background: transparent;
    color: var(--ink);
    -moz-appearance: textfield;
    flex-shrink: 0;
    padding: 0;
    margin: 0;
}

.bw-jumper-row__stepper input::-webkit-outer-spin-button,
.bw-jumper-row__stepper input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.bw-group-sale-strip {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: #dff7ef;
    border-top: 1px solid #b8ead9;
}

.bw-group-sale-strip.is-hidden,
.bw-group-sale-strip[hidden] {
    display: none !important;
}

.bw-group-sale-strip__badge {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--teal);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 800;
    line-height: 1;
    box-shadow: 0 0 0 3px rgba(0, 194, 178, 0.18);
}

.bw-group-sale-strip__text {
    min-width: 0;
}

.bw-group-sale-strip__headline {
    display: block;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--ink);
    line-height: 1.35;
}

.bw-group-sale-strip__savings {
    display: block;
    margin-top: 2px;
    font-size: 12px;
    color: var(--ink-soft, #374151);
    line-height: 1.35;
}

.bw-stepper {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.bw-stepper button {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--surface);
    border: 1.5px solid var(--border);
    color: var(--ink);
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.15s var(--spring);
}

.bw-stepper button:hover:not(:disabled) {
    border-color: var(--pink);
    background: var(--pink-tint);
}

.bw-stepper button:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

.bw-stepper input {
    width: 32px;
    text-align: center;
    background: transparent;
    border: none;
    color: var(--ink);
    font-family: 'JetBrains Mono', monospace;
    font-weight: 600;
    font-size: 15px;
    -moz-appearance: textfield;
}

.bw-stepper input::-webkit-outer-spin-button,
.bw-stepper input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.bw-jumper-split__stepper.bw-stepper {
    display: grid;
    grid-template-columns: 40px minmax(52px, max-content) 40px;
    column-gap: 20px;
    width: max-content;
    max-width: 100%;
    margin: 0 auto;
}

.bw-jumper-split__stepper.bw-stepper button {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.bw-jumper-split__stepper.bw-stepper input {
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    width: 100%;
    min-width: 52px;
    max-width: 72px;
    padding: 0;
}

.bw-counter .bw-stepper.bw-stepper {
    display: grid;
    grid-template-columns: 36px minmax(48px, max-content) 36px;
    column-gap: 18px;
    align-items: center;
    flex-shrink: 0;
    min-width: 132px;
}

.bw-counter .bw-stepper.bw-stepper button {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
}

.bw-counter .bw-stepper.bw-stepper input {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 600;
    width: 100%;
    min-width: 48px;
    max-width: 64px;
    text-align: center;
    padding: 0;
}

.bw-liability-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 14px;
}

.bw-liability-opt {
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--surface);
    color: var(--ink-soft);
    font-family: inherit;
    font-size: 11.5px;
    font-weight: 600;
    line-height: 1.35;
    padding: 12px 10px;
    text-align: left;
    cursor: pointer;
    min-height: 52px;
}

.bw-liability-opt.is-selected {
    background: var(--pink);
    border-color: var(--pink-deep);
    color: #fff;
}

.bw-liability-hint {
    font-size: 12px;
    line-height: 1.4;
    color: var(--muted, #6B7280);
    margin: 0 0 12px;
}

.is-guardian-mode .bw-presets {
    display: none;
}

.bw-warn {
    display: none;
    font-size: 12px;
    color: var(--danger);
    margin: 6px 0 0;
}

.bw-warn.is-visible {
    display: block;
}

.bw-date-row {
    display: flex;
    gap: 5px;
    margin-bottom: 8px;
}

.bw-date-chip {
    flex: 1;
    min-width: 0;
    padding: 7px 3px;
    border-radius: 8px;
    background: var(--surface);
    border: 1.5px solid var(--border);
    color: var(--ink-soft);
    font-weight: 700;
    font-size: 10.5px;
    line-height: 1.2;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.15s ease, color 0.15s ease;
}

.bw-date-chip.is-selected {
    border-color: var(--pink);
    background: var(--surface);
    color: var(--pink);
}

.bw-date-chip input[type='date'] {
    background: transparent;
    border: none;
    color: inherit;
    font-family: inherit;
    font-size: 11px;
    font-weight: 700;
    width: 100%;
    text-align: center;
    padding: 0;
}

.bw-cal-toggle {
    width: 100%;
    margin-bottom: 12px;
    padding: 10px;
    border-radius: 12px;
    border: 1.5px dashed var(--border);
    background: var(--surface-2);
    color: var(--muted);
    font-size: 12.5px;
    font-weight: 700;
    cursor: pointer;
}

.bw-cal-toggle:hover {
    border-color: var(--teal);
    color: var(--ink-soft);
}

.bw-cal {
    margin-bottom: 14px;
}

.bw-cal.is-hidden {
    display: none;
}

.bw-dur-row {
    display: flex;
    gap: 8px;
    margin-bottom: 10px;
}

.bw-dur-pill {
    flex: 1;
    min-width: 0;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm, 10px);
    text-align: center;
    padding: 10px 6px;
    cursor: pointer;
    background: var(--surface);
    color: var(--ink);
    transition: border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease, transform 0.15s var(--spring);
}

.bw-dur-pill__m {
    display: block;
    font-family: Fredoka, sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 1.2;
}

.bw-dur-pill__p {
    display: block;
    font-size: 10.5px;
    color: var(--muted);
    margin-top: 3px;
    line-height: 1.25;
}

.bw-dur-pill:hover:not(.is-selected) {
    border-color: var(--teal);
    transform: translateY(-1px);
}

.bw-dur-pill.is-selected {
    background: var(--pink);
    border-color: var(--pink-deep);
    color: #fff;
    box-shadow: 0 4px 14px -6px rgba(232, 41, 138, 0.45);
}

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

.bw-dur-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-bottom: 10px;
}

.bw-dur {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 14px;
}

.bw-dur__btn {
    width: 100%;
    min-width: 0;
    flex: none;
    padding: 14px 8px;
    border-radius: 16px;
    border: 2px solid var(--border);
    background: var(--surface);
    color: var(--ink);
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    text-align: center;
    transition: transform 0.18s var(--spring), box-shadow 0.18s ease, background 0.15s ease, border-color 0.15s ease;
}

.bw-dur__btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.bw-dur__btn.is-selected {
    border-color: var(--pink);
    background: var(--pink-tint);
    color: var(--pink-deep);
    box-shadow: 0 0 0 3px rgba(232, 41, 138, 0.12);
}

.bw-legend {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin: 4px 0 6px;
}

.bw-legend span {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 10px;
    color: var(--muted);
    font-weight: 600;
}

.bw-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    display: inline-block;
}

.bw-dot--g { background: var(--teal); }
.bw-dot--o { background: var(--warning); }
.bw-dot--b { background: var(--muted-2); }

.bw-slots {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 5px;
}

.bw-slot {
    min-height: 40px;
    border-radius: 8px;
    border: 1.5px solid var(--border);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 600;
    font-size: 11px;
    line-height: 1.15;
    cursor: pointer;
    color: var(--ink);
    background: var(--surface);
    transition: border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
    padding: 3px 2px;
}

.bw-slot small {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: 9px;
    margin-top: 2px;
    color: var(--muted);
    text-transform: lowercase;
}

.bw-slot:not(.is-full):not(.is-selected):hover {
    border-color: var(--teal);
    background: var(--teal-tint);
}

.bw-slot.is-last {
    border-color: #ffcc80;
    background: var(--warning-tint);
    color: var(--warning);
}

.bw-slot.is-last small {
    color: var(--warning);
}

.bw-slot.is-full {
    color: var(--muted-2);
    background: repeating-linear-gradient(
        135deg,
        #fff,
        #fff 3px,
        #ece9f0 3px,
        #ece9f0 6px
    );
    cursor: not-allowed;
}

.bw-slot.is-selected {
    background: var(--teal);
    border-color: var(--teal);
    color: #fff;
    box-shadow: 0 4px 10px -3px rgba(0, 194, 178, 0.35);
}

.bw-slot.is-selected small {
    color: rgba(255, 255, 255, 0.85);
}

.bw-slots__empty {
    grid-column: 1 / -1;
    text-align: center;
    font-size: 13px;
    color: var(--muted);
    padding: 16px 8px;
}

.bw-slots__hint {
    margin: 0 0 10px;
    padding: 10px 12px;
    font-size: 13px;
    line-height: 1.4;
    color: #92400e;
    background: #fff8e6;
    border: 1px solid #f5d78e;
    border-radius: 8px;
}

.bw-field label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: var(--muted);
    margin-bottom: 5px;
}

.bw-field {
    margin-bottom: 12px;
}

.bw-field input,
.bw-field select {
    width: 100%;
    padding: 14px 12px;
    border-radius: 13px;
    background: var(--surface);
    border: 1.5px solid var(--border);
    color: var(--ink);
    font-size: 16px;
    font-weight: 500;
    font-family: inherit;
}

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

.bw-field input.is-invalid {
    border-color: var(--danger);
}

.bw-contact-grid {
    display: grid;
    gap: 12px;
}

.bw-birth {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: 8px;
}

.bw-hint {
    font-size: 12px;
    color: var(--muted);
    line-height: 1.45;
    margin: 8px 0 0;
}

.bw-hint a {
    color: var(--pink-deep);
    font-weight: 600;
}

.bw-consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 11px 2px;
    cursor: pointer;
}

.bw-consent[hidden] {
    display: none !important;
}

.bw-consent + .bw-consent {
    border-top: 1px solid var(--border);
}

.bw-consent input {
    position: absolute;
    opacity: 0;
    width: 1px;
    height: 1px;
}

.bw-consent__box {
    order: -1;
    width: 22px;
    height: 22px;
    border-radius: 7px;
    flex-shrink: 0;
    margin-top: 1px;
    border: 1.5px solid var(--border);
    background: var(--surface);
    display: flex;
    align-items: center;
    justify-content: center;
}

.bw-consent input:checked + .bw-consent__box,
.bw-consent input:checked ~ .bw-consent__box {
    background: var(--pink);
    border-color: var(--pink);
}

.bw-consent input:checked + .bw-consent__box::after,
.bw-consent input:checked ~ .bw-consent__box::after {
    content: '✓';
    color: #fff;
    font-weight: 900;
    font-size: 13px;
}

.bw-consent p {
    flex: 1;
    margin: 0;
    font-size: 13px;
    line-height: 1.45;
    color: var(--ink-soft);
    max-width: 42rem;
}

.bw-consent a {
    color: var(--pink-deep);
    font-weight: 600;
}

.bw-order {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px dashed var(--border);
}

.bw-order__head {
    font-size: 13px;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.45;
    margin-bottom: 12px;
    padding: 10px 12px;
    border-radius: 12px;
    background: var(--surface-2);
    border: 1px solid var(--border);
}

.bw-order__head.is-hidden {
    display: none;
}

.bw-order__line {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    font-size: 13px;
    padding: 5px 0;
    color: var(--ink-soft);
}

.bw-order__line span:last-child {
    font-weight: 700;
    color: var(--ink);
    white-space: nowrap;
}

.bw-discounts {
    display: grid;
    gap: 8px;
    margin-top: 12px;
}

.bw-discounts.is-hidden {
    display: none;
}

.bw-disc {
    padding: 10px 12px;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: var(--surface-2);
    font-size: 12px;
    color: var(--muted);
}

.bw-disc.is-active {
    border-color: var(--teal);
    background: var(--teal-tint);
    color: var(--ink-soft);
}

.bw-disc__title {
    display: block;
}

.bw-disc__savings {
    display: block;
    margin-top: 4px;
    font-weight: 700;
    color: var(--teal);
}

.bw-error {
    font-size: 12.5px;
    color: var(--danger);
    margin-top: 8px;
}

.bw-error.is-hidden {
    display: none;
}

.bw-paybar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 50;
    background: var(--ink);
    color: #fff;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 12px 0 calc(12px + env(safe-area-inset-bottom));
}

.bw-paybar__inner {
    max-width: var(--bw-shell-max);
    margin: 0 auto;
    padding-left: var(--bw-shell-pad);
    padding-right: var(--bw-shell-pad);
    display: flex;
    align-items: center;
    gap: 12px;
}

.bw-paybar__sum {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.bw-paybar__price-row {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 8px;
    max-width: 100%;
}

.bw-paybar__sale-note {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 11px;
    font-weight: 600;
    line-height: 1.2;
    color: rgba(215, 255, 62, 0.88);
    white-space: nowrap;
}

.bw-paybar__lbl {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 600;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.bw-paybar__amt {
    font-size: 20px;
    font-weight: 600;
    color: var(--lime);
}

.bw-paybar__amt small {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
}

.bw-paybar__btn {
    flex-shrink: 0;
    border: none;
    border-radius: 13px;
    padding: 14px 22px;
    font-weight: 700;
    font-size: 14px;
    font-family: inherit;
    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.35);
    cursor: not-allowed;
    transition: transform 0.18s var(--spring), box-shadow 0.18s;
}

.bw-paybar__btn.is-ready {
    background: var(--lime);
    color: var(--ink);
    cursor: pointer;
}

.bw-paybar__btn.is-ready:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 10px 22px -8px rgba(215, 255, 62, 0.55);
}

.bw-paybar__btn.is-loading {
    opacity: 0.7;
}

.bw-paybar__logos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px;
    max-width: var(--bw-shell-max);
    margin: 8px auto 0;
    padding: 0 var(--bw-shell-pad);
}

.bw-paybar__logos .bw-pay-logos__item {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.55);
}

@media (min-width: 721px) {
    .bw-paybar__logos {
        display: none;
    }
}

.bw-footer {
    margin: 20px auto 0;
    padding-bottom: 24px;
    text-align: center;
    font-size: 12px;
    color: var(--muted-2);
}

.bw-footer a {
    color: var(--muted);
    text-decoration: none;
    font-weight: 600;
}

.bw-footer a:hover {
    color: var(--pink-deep);
}

/* Mega wizard — accordion steps, trust row, total card */
.bw-progress-top {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 8px;
}

.bw-progress-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 700;
}

.bw-progress-time {
    font-size: 11.5px;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 600;
}

.bw-trust-row {
    display: flex;
    gap: 6px;
    overflow-x: auto;
    padding: 0 0 12px;
    margin: 0 calc(-1 * var(--bw-shell-pad)) 4px;
    padding-left: var(--bw-shell-pad);
    padding-right: var(--bw-shell-pad);
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

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

.bw-trust-pill {
    flex-shrink: 0;
    font-size: 11.5px;
    font-weight: 700;
    color: var(--muted);
    background: var(--surface-2);
    border-radius: 999px;
    padding: 6px 12px;
    white-space: nowrap;
}

.bw-step {
    margin-bottom: 10px;
    padding: 0;
    border: none;
    box-shadow: none;
    background: transparent;
    animation: none;
}

.bw-step__head,
.bw-step-panel {
    scroll-margin-top: 132px;
    scroll-margin-bottom: 100px;
}

.bw-step-panel {
    background: var(--surface);
    border: 1.5px solid var(--pink);
    border-radius: var(--radius);
    padding: 20px 18px;
    box-shadow: 0 4px 20px -6px rgba(232, 41, 138, 0.18);
    animation: bwSettle 0.3s var(--spring) both;
}

@keyframes bwSettle {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.bw-step.is-step-done .bw-step-panel,
.bw-step.is-step-done .bw-step-locked,
.bw-step.is-step-active .bw-step-locked,
.bw-step.is-step-active .bw-step-summary,
.bw-step.is-step-locked-preview .bw-step-panel,
.bw-step.is-step-locked-preview .bw-step-summary {
    display: none !important;
}

.bw-step.is-step-done .bw-step-summary,
.bw-step.is-step-locked-preview .bw-step-locked {
    display: flex !important;
}

.bw-step.is-step-active .bw-step-panel {
    display: block !important;
}

.bw-step-summary {
    display: none;
    margin-bottom: 10px;
}

.bw-step-done {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 12px 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    box-shadow: 0 1px 2px rgba(22, 18, 31, 0.03);
    animation: bwSettle 0.3s var(--spring) both;
}

.bw-step-done__check {
    width: 26px;
    height: 26px;
    border-radius: 8px;
    background: var(--pink);
    color: #fff;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 800;
}

.bw-step-done__body {
    flex: 1;
    min-width: 0;
}

.bw-step-done__title {
    font-size: 11.5px;
    color: var(--muted);
    font-weight: 600;
}

.bw-step-done__val {
    font-size: 14px;
    font-weight: 700;
    color: var(--ink);
    margin-top: 1px;
}

.bw-step-done__edit {
    font-size: 12.5px;
    font-weight: 700;
    color: var(--pink-deep);
    background: var(--pink-tint);
    border: none;
    border-radius: 8px;
    padding: 7px 12px;
    cursor: pointer;
    flex-shrink: 0;
    font-family: inherit;
}

.bw-step-done__edit:hover {
    background: #f8d0e6;
}

.bw-step-locked {
    background: var(--surface-2);
    border: 1px dashed var(--border);
    border-radius: var(--radius-sm);
    padding: 12px 14px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
    opacity: 0.55;
    cursor: pointer;
    width: 100%;
    transition: opacity 0.15s;
}

.bw-step-locked:active {
    opacity: 0.8;
}

.bw-step-locked.is-nudge {
    animation: bwNudge 0.35s ease;
}

@keyframes bwNudge {
    0%,
    100% {
        transform: translateX(0);
    }
    25% {
        transform: translateX(-5px);
    }
    75% {
        transform: translateX(5px);
    }
}

.bw-step-locked__num {
    width: 26px;
    height: 26px;
    border-radius: 8px;
    background: #fff;
    border: 1.5px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 800;
    color: var(--muted-2);
    flex-shrink: 0;
}

.bw-step-locked__title {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--muted);
    flex: 1;
}

.bw-step-locked__icon {
    font-size: 13px;
}

.bw-step__num {
    background: var(--pink);
    color: #fff;
    border-color: var(--pink);
}

.bw-step__title {
    font-size: 16.5px;
}

.bw-step__check {
    display: none !important;
}

.bw-presets__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

.bw-preset {
    padding: 10px 8px;
    border: 1.5px solid var(--border);
    border-radius: 12px;
    font-size: 12.5px;
    background: #fff;
}

.bw-preset.is-active {
    background: var(--pink-tint);
    border-color: var(--pink);
    color: var(--pink-deep);
    box-shadow: none;
}

.bw-spring {
    display: none;
}

.bw-slots-legend {
    display: flex;
    gap: 14px;
    font-size: 11px;
    color: var(--muted);
    margin: 2px 0 12px;
}

.bw-slots-legend span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.bw-slots-legend__dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    display: inline-block;
}

.bw-slots-legend__dot--ok {
    background: var(--success);
}

.bw-slots-legend__dot--warn {
    background: var(--warning);
}

.bw-total-card {
    background: var(--ink);
    color: #fff;
    border-radius: var(--radius);
    padding: 16px 18px;
    margin: 16px 0 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.bw-total-card__lbl {
    font-size: 10.5px;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.bw-total-card__sub {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.75);
    margin-top: 3px;
}

.bw-total-card__amt {
    font-family: Fredoka, sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--lime);
    white-space: nowrap;
    transition: transform 0.25s var(--spring);
}

.bw-total-card__amt.is-bump {
    transform: scale(1.12);
}

.bw-step-cta {
    width: 100%;
    border: none;
    border-radius: 13px;
    padding: 14px;
    font-weight: 800;
    font-size: 14.5px;
    background: var(--pink);
    color: #fff;
    cursor: pointer;
    margin-top: 16px;
    font-family: inherit;
    transition: transform 0.15s var(--spring), opacity 0.15s;
}

.bw-step-cta:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

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

.bw-progress i.is-active {
    background: var(--pink);
    animation: none;
}

.bw-paybar__amt.is-bump {
    transform: scale(1.12);
}

@media (min-width: 721px) {
    :root {
        --bw-shell-max: 960px;
        --bw-shell-pad: 24px;
    }

    .bw-body {
        padding-bottom: 120px;
        background:
            radial-gradient(ellipse 80% 50% at 50% -20%, rgba(232, 41, 138, 0.06), transparent 55%),
            radial-gradient(ellipse 60% 40% at 100% 50%, rgba(0, 194, 178, 0.05), transparent 50%),
            radial-gradient(ellipse 60% 40% at 0% 80%, rgba(215, 255, 62, 0.04), transparent 45%),
            var(--bg);
    }

    .bw-main {
        padding-top: 28px;
        padding-bottom: 12px;
    }

    .bw-header {
        padding-top: 16px;
        padding-bottom: 14px;
    }

    .bw-brand {
        margin-bottom: 12px;
    }

    .bw-brand__link {
        font-size: 22px;
    }

    .bw-header__account {
        font-size: 14px;
    }

    .bw-progress {
        gap: 8px;
    }

    .bw-progress i {
        height: 7px;
    }

    .bw-step {
        padding: 22px 24px 24px;
    }

    .bw-step__title {
        font-size: 22px;
    }

    .bw-presets__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .bw-contact-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }

    .bw-slot {
        font-size: 15px;
    }

    .bw-paybar {
        padding-top: 14px;
        padding-bottom: calc(14px + env(safe-area-inset-bottom));
    }

    .bw-paybar__inner {
        gap: 20px;
    }

    .bw-paybar__lbl {
        font-size: 11px;
        white-space: normal;
        overflow: visible;
        text-overflow: unset;
    }

    .bw-paybar__amt {
        font-size: 24px;
    }

    .bw-paybar__btn {
        min-width: 168px;
        padding: 15px 28px;
        font-size: 15px;
    }
}

.bw-intro {
    font-size: 14px;
    line-height: 1.55;
    color: var(--ink-soft);
    margin-bottom: 16px;
}

.bw-room-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-bottom: 10px;
}

.bw-room__btn {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    width: 100%;
    padding: 14px 12px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--surface);
    color: var(--ink);
    font: inherit;
    text-align: left;
    cursor: pointer;
    transition: border-color 0.15s, background 0.15s, box-shadow 0.15s;
}

.bw-room__btn.is-selected {
    border-color: var(--pink);
    background: var(--pink-tint);
    box-shadow: 0 0 0 3px rgba(232, 41, 138, 0.12);
}

.bw-room__name {
    font-family: Fredoka, sans-serif;
    font-weight: 600;
    font-size: 15px;
}

.bw-room__desc {
    font-size: 12px;
    line-height: 1.4;
    color: var(--muted);
}

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

.bw-theme-classic .bw-date-row,
.bw-theme-classic .bw-cal-toggle {
    display: none;
}

.bw-theme-classic .bw-cal.is-hidden {
    display: block !important;
}

.bw-theme-classic .bw-classic-only {
    display: block;
    margin: 0 0 8px;
}

.bw-theme-ios .bw-classic-only {
    display: none;
}

.bw-theme-classic .bw-schedule-picker {
    margin-bottom: 0;
}

.bw-theme-classic .bw-guest-hint {
    padding: 0 2px 8px;
    margin: 0;
}

/* ── JumpHall-inspired: 2-phase progress ── */
.bw-progress:has(.bw-phases) {
    gap: 0;
}

.bw-phases {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    width: 100%;
}

.bw-phase {
    position: relative;
    padding: 8px 4px 12px;
    font-size: 12px;
    font-weight: 700;
    text-align: center;
    color: rgba(255, 255, 255, 0.45);
    border-bottom: 3px solid rgba(255, 255, 255, 0.12);
    transition: color 0.2s, border-color 0.2s;
}

.bw-phase.is-active {
    color: #fff;
    border-bottom-color: var(--pink);
}

.bw-phase.is-done {
    color: rgba(255, 255, 255, 0.72);
    border-bottom-color: var(--teal);
}

@media (min-width: 721px) {
    .bw-phase {
        font-size: 13.5px;
        padding-bottom: 14px;
    }
}

/* ── Schedule: calendar + slot list ── */
.bw-schedule-layout {
    display: grid;
    gap: 16px;
}

.bw-schedule-layout__cal .bw-legend {
    margin-top: 8px;
}

.bw-schedule-layout__slots {
    min-width: 0;
}

.bw-schedule-layout__slots .bw-slots-legend {
    margin-bottom: 10px;
}

.bw-slots--list {
    display: block;
}

.bw-slot-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.bw-slot-item {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 10px 12px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm, 10px);
    background: var(--surface);
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    color: var(--ink);
    transition: border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}

.bw-slot-item__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.bw-slot-item__dot--ok {
    background: var(--success);
}

.bw-slot-item__dot--warn {
    background: #F0A93B;
}

.bw-slot-item__dot--full {
    background: #E5484D;
}

.bw-slot-item__body {
    flex: 1;
    min-width: 0;
}

.bw-slot-item__time {
    display: block;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 600;
    font-size: 13px;
    line-height: 1.25;
}

.bw-slot-item__cap {
    display: block;
    font-size: 11px;
    color: var(--muted);
    font-weight: 600;
    margin-top: 2px;
}

.bw-slot-item__radio {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 1.5px solid var(--border);
    flex-shrink: 0;
    position: relative;
}

.bw-slot-item:not(.is-disabled):not(.is-selected):hover {
    border-color: var(--teal);
    background: var(--teal-tint);
}

.bw-slot-item.is-selected {
    border-color: var(--teal);
    background: var(--teal-tint);
    box-shadow: 0 4px 14px -6px rgba(0, 194, 178, 0.35);
}

.bw-slot-item.is-selected .bw-slot-item__radio {
    border-color: var(--teal);
    background: var(--teal);
}

.bw-slot-item.is-selected .bw-slot-item__radio::after {
    content: "✓";
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    line-height: 1;
}

.bw-slot-item.is-disabled {
    opacity: 0.55;
    cursor: not-allowed;
    background: var(--surface-2);
}

.bw-slot-list__head {
    display: none;
}

.bw-slot-row {
    display: grid;
    grid-template-columns: 64px 1fr auto;
    align-items: center;
    gap: 10px;
    width: 100%;
    min-height: 48px;
    padding: 10px 12px;
    margin-bottom: 6px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--surface);
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    color: var(--ink);
    transition: border-color 0.15s, background 0.15s, box-shadow 0.15s;
}

.bw-slot-row__time {
    font-family: 'JetBrains Mono', monospace;
    font-weight: 700;
    font-size: 14px;
}

.bw-slot-row__cap-text {
    display: block;
    font-size: 11.5px;
    font-weight: 600;
    color: var(--muted);
    margin-bottom: 4px;
}

.bw-slot-row__bar {
    display: block;
    height: 6px;
    border-radius: 6px;
    background: var(--surface-2);
    overflow: hidden;
}

.bw-slot-row__bar i {
    display: block;
    height: 100%;
    border-radius: 6px;
    background: var(--teal);
    transition: width 0.25s ease;
}

.bw-slot-row__action {
    font-size: 12px;
    font-weight: 700;
    color: var(--pink-deep);
    white-space: nowrap;
}

.bw-slot-row:not(.is-full):not(.is-selected):hover {
    border-color: var(--teal);
    background: var(--teal-tint);
}

.bw-slot-row.is-last .bw-slot-row__cap-text {
    color: var(--warning);
}

.bw-slot-row.is-last .bw-slot-row__bar i {
    background: var(--warning);
}

.bw-slot-row.is-full {
    opacity: 0.55;
    cursor: not-allowed;
    background: var(--surface-2);
}

.bw-slot-row.is-full .bw-slot-row__action {
    color: var(--muted-2);
}

.bw-slot-row.is-selected {
    border-color: var(--teal);
    background: var(--teal-tint);
    box-shadow: 0 4px 14px -6px rgba(0, 194, 178, 0.45);
}

.bw-slot-row.is-selected .bw-slot-row__action {
    color: var(--teal);
}

.bw-slots-legend__dot--full {
    background: #E5484D;
}

/* ── Checkout: 2-column (contact + sticky summary) ── */
.bw-checkout-shell {
    display: block;
}

.bw-checkout-aside {
    display: none;
}

.bw-aside-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 18px 16px;
    box-shadow: var(--shadow);
}

.bw-aside-card__title {
    font-family: Fredoka, sans-serif;
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 6px;
}

.bw-aside-card__meta {
    font-size: 12.5px;
    color: var(--muted);
    line-height: 1.45;
    margin: 0 0 14px;
}

.bw-aside-total {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid var(--border);
}

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

.bw-aside-total__amt {
    font-family: Fredoka, sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--ink);
    transition: transform 0.25s var(--spring);
}

.bw-aside-total__amt.is-bump {
    transform: scale(1.08);
}

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

.bw-pay-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: center;
}

.bw-pay-logos__item {
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.04em;
    padding: 4px 7px;
    border-radius: 4px;
    border: 1px solid var(--border);
    background: var(--surface-2);
    color: var(--muted);
}

.bw-pay-logos__item--visa {
    color: #1a1f71;
}

.bw-pay-logos__item--mc {
    color: #eb001b;
}

.bw-pay-logos__item--gp {
    color: var(--ink-soft);
}

@media (min-width: 721px) {
    .bw-schedule-layout {
        grid-template-columns: minmax(240px, 300px) 1fr;
        align-items: start;
        gap: 20px;
    }

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

    .bw-schedule-layout__slots {
        max-height: min(520px, calc(100vh - 280px));
        overflow-y: auto;
        padding-right: 4px;
        scrollbar-gutter: stable;
    }

    .bw-schedule-layout__slots::-webkit-scrollbar {
        width: 6px;
    }

    .bw-schedule-layout__slots::-webkit-scrollbar-thumb {
        background: var(--border);
        border-radius: 6px;
    }

    .bw-slot-list__head {
        display: grid;
        grid-template-columns: 64px 1fr auto;
        gap: 10px;
        padding: 0 12px 8px;
        font-size: 11px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.06em;
        color: var(--muted);
    }

    .bw-slot-row {
        min-height: 52px;
    }

    .bw-checkout-shell.is-checkout-active {
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(260px, 320px);
        gap: 20px;
        align-items: start;
    }

    .bw-checkout-shell.is-checkout-active .bw-checkout-aside {
        display: block;
        position: sticky;
        top: 148px;
    }

    .bw-checkout-shell.is-checkout-active #group-order-panel,
    .bw-checkout-shell.is-checkout-active #group-pricing-tiers {
        display: none;
    }
}
