/**
 * Ticketa Theme — wizard.css  v2.1
 * Hotel selection phase + 3-step wizard. Sidebar on LEFT (RTL second column).
 */

/* ─────────────────────────────────────────────────────────────
   PAGE ROOT
   ───────────────────────────────────────────────────────────── */
.wizard-page   { min-height: 100vh; background: var(--ticketa-bg); }
.wizard-root   { min-height: calc(100vh - var(--header-height)); }

/* Phase transitions */
.wiz-phase-enter-active, .wiz-phase-leave-active { transition: opacity .35s ease, transform .35s ease; }
.wiz-phase-enter-from  { opacity: 0; transform: translateY(18px); }
.wiz-phase-leave-to    { opacity: 0; transform: translateY(-12px); }

/* ═════════════════════════════════════════════════════════════
   PHASE 0 — HOTEL SELECTION SCREEN (.whs)
   ═════════════════════════════════════════════════════════════ */

.wizard-hotel-phase { min-height: calc(100vh - var(--header-height)); }

.whs { padding-bottom: var(--space-20); direction: rtl; }

/* Header ──────────────────────────────────────────────────── */
.whs__header {
    text-align: center;
    padding: var(--space-16) var(--space-8) var(--space-10);
    background: linear-gradient(to bottom, rgba(232,119,34,.06) 0%, transparent 100%);
    border-bottom: 1px solid var(--ticketa-border);
    margin-bottom: var(--space-12);
}

.whs__event-name {
    font-size: var(--text-sm);
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--ticketa-orange);
    margin-bottom: var(--space-3);
}

.whs__title {
    font-family: var(--font-display);
    font-size: clamp(var(--text-3xl), 5vw, var(--text-5xl));
    font-weight: 700;
    color: var(--ticketa-white);
    margin: 0 0 var(--space-3);
    line-height: 1.1;
}

.whs__sub {
    font-size: var(--text-base);
    color: var(--ticketa-grey-muted);
    margin: 0 0 var(--space-7);
}

.whs__meta-chips {
    display: inline-flex;
    align-items: center;
    gap: 0;
    background: rgba(255,255,255,.04);
    border: 1px solid var(--ticketa-border-strong);
    border-radius: var(--radius-pill);
    padding: var(--space-2) var(--space-2);
    flex-wrap: wrap;
    justify-content: center;
}

.whs__chip {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--text-sm);
    color: rgba(255,255,255,.75);
    padding: var(--space-2) var(--space-5);
    white-space: nowrap;
}

.whs__chip-sep {
    width: 1px;
    height: 16px;
    background: var(--ticketa-border-strong);
    flex-shrink: 0;
}

/* Loading ──────────────────────────────────────────────────── */
.whs__loading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-4);
    min-height: 40vh;
    color: var(--ticketa-grey-muted);
    font-size: var(--text-lg);
}

.whs__spinner {
    width: 32px; height: 32px;
    border: 3px solid rgba(255,255,255,.1);
    border-top-color: var(--ticketa-orange);
    border-radius: 50%;
    animation: ticketa-spin .7s linear infinite;
    flex-shrink: 0;
    display: none; /* replaced by FA spinner-icon */
}

/* Hotel cards grid ─────────────────────────────────────────── */
.whs__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-pad);
}

/* Hotel card ───────────────────────────────────────────────── */
.whs__card {
    display: flex;
    flex-direction: column;
    background: var(--ticketa-bg-card);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,.5);
    cursor: pointer;
    transition: transform .35s cubic-bezier(.25,.46,.45,.94),
                box-shadow  .35s ease,
                border-color .2s ease;
    border: 1px solid var(--ticketa-border);
    outline: none;
    position: relative;
}

.whs__card:hover, .whs__card:focus-visible {
    transform: translateY(-8px);
    box-shadow: 0 24px 64px rgba(0,0,0,.7), 0 0 0 2px var(--ticketa-orange);
    border-color: var(--ticketa-orange);
}

/* Photo ───────────────────────────────────────────────────── */
.whs__card-photo {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    flex-shrink: 0;
}

.whs__card-photo img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s ease;
}
.whs__card:hover .whs__card-photo img { transform: scale(1.06); }

.whs__card-photo-empty {
    width: 100%; height: 100%;
    background: var(--ticketa-bg-surface);
    display: flex; align-items: center; justify-content: center;
    font-size: 3rem;
}

/* Night badge */
.whs__card-nights {
    position: absolute;
    top: var(--space-4); right: var(--space-4);
    background: var(--ticketa-orange);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    padding: 5px 12px;
    border-radius: var(--radius-pill);
    letter-spacing: .04em;
    z-index: 2;
}

/* Photo overlay: name + price */
.whs__card-overlay {
    position: absolute;
    bottom: 0; inset-inline: 0;
    background: linear-gradient(to top, rgba(0,0,0,.95) 0%, rgba(0,0,0,.5) 55%, transparent 100%);
    padding: var(--space-6) var(--space-5) var(--space-4);
    z-index: 1;
    direction: rtl;
}

.whs__card-name {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 4px;
}

.whs__card-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    direction: rtl;
}

.whs__card-price-from { font-size: 11px; color: rgba(255,255,255,.65); }
.whs__card-price-num  { font-size: var(--text-xl); font-weight: 900; color: #fff; }
.whs__card-price-cur  { font-size: var(--text-sm); color: rgba(255,255,255,.8); font-weight: 700; }

/* Body ────────────────────────────────────────────────────── */
.whs__card-body {
    padding: var(--space-4) var(--space-5) var(--space-3);
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.whs__card-desc {
    font-size: var(--text-sm);
    color: rgba(255,255,255,.5);
    line-height: 1.5;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.whs__card-amenities {
    list-style: none;
    padding: 0; margin: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px 14px;
}

.whs__card-amenities li {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--text-xs);
    color: rgba(255,255,255,.6);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 0;
}
/* Hidden state — applied on BOTH viewports when collapsed */
.whs__card-amenities li.is-hidden-mobile { display: none; }

/* "Show more" / "Show less" toggle — ALWAYS visible (mobile + desktop) */
.whs__card-amenities-toggle {
    display: inline-flex;
    appearance: none;
    background: rgba(232,119,34,.10);
    border: 1px solid rgba(232,119,34,.35);
    color: #ffb27a;
    font-family: inherit;
    font-size: var(--text-xs);
    font-weight: 600;
    padding: 5px 12px;
    margin-top: 10px;
    border-radius: 999px;
    cursor: pointer;
    align-items: center;
    gap: 6px;
    transition: background .15s, border-color .15s, color .15s;
}
.whs__card-amenities-toggle:hover {
    background: rgba(232,119,34,.18);
    border-color: rgba(232,119,34,.55);
    color: #fff;
}
.whs__card-amenities-toggle i { font-size: .85em; }

/* Footer ──────────────────────────────────────────────────── */
.whs__card-footer {
    display: flex;
    align-items: center;
    gap: 0;
    border-top: 1px solid rgba(255,255,255,.07);
    flex-shrink: 0;
    min-height: 50px;
}

.whs__card-footer-chips {
    flex: 1;
    padding: 0 var(--space-4);
}

.whs__footer-chip {
    font-size: 11px;
    color: rgba(255,255,255,.45);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.whs__card-cta {
    padding: 0 var(--space-6);
    height: 50px;
    background: var(--ticketa-white);
    color: #111;
    font-weight: 800;
    font-size: var(--text-sm);
    border: none;
    cursor: pointer;
    transition: background .15s ease, color .15s ease;
    font-family: var(--font-body);
    white-space: nowrap;
    flex-shrink: 0;
}
.whs__card:hover .whs__card-cta, .whs__card-cta:hover {
    background: var(--ticketa-orange);
    color: #fff;
}

/* Click flash */
.whs__card-select-flash {
    position: absolute;
    inset: 0;
    background: rgba(232,119,34,.18);
    opacity: 0;
    transition: opacity .12s ease;
    pointer-events: none;
    z-index: 10;
}
.whs__card:active .whs__card-select-flash { opacity: 1; }

/* Empty ────────────────────────────────────────────────────── */
.whs__empty {
    text-align: center;
    padding: 6rem var(--space-8);
    color: var(--ticketa-grey-muted);
    font-size: var(--text-lg);
}

/* ═════════════════════════════════════════════════════════════
   PHASE 1 — STEPS (2-col: main RIGHT | sidebar LEFT in RTL)
   ═════════════════════════════════════════════════════════════ */

.wizard-steps-phase { min-height: calc(100vh - var(--header-height)); padding-top: var(--header-height); }

.wizard-shell {
    display: grid;
    /*
     * RTL grid: first col = RIGHT side (main content)
     *           second col = LEFT side (summary sidebar)
     */
    grid-template-columns: 1fr var(--ticketa-sidebar-width);
    min-height: calc(100vh - var(--header-height));
    align-items: start;
    /* Sidebar sticks relative to the shell top, not the viewport */
}

/* ── MAIN CONTENT (right side) ─────────────────────────────── */
.wizard-main {
    background: var(--ticketa-bg-wizard-main);
    min-height: calc(100vh - var(--header-height));
    display: flex;
    flex-direction: column;
}

/* Stepper ──────────────────────────────────────────────────── */
.wizard-stepper {
    padding: var(--space-8) var(--space-10) var(--space-6);
    border-bottom: 1px solid var(--ticketa-border);
}

.wizard-stepper__list {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    list-style: none;
    padding: 0; margin: 0;
    direction: rtl;
    gap: 0;
}

.wizard-stepper__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-3);
}

.wizard-stepper__diamond {
    width: 32px; height: 32px;
    border: 2px solid rgba(255,255,255,.2);
    transform: rotate(45deg);
    transition: all .25s ease;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.wizard-stepper__diamond::after {
    content: attr(data-step);
    position: absolute;
    transform: rotate(-45deg);
    font-size: 12px;
    font-weight: 700;
    color: rgba(255,255,255,.3);
}

.wizard-stepper__item.is-active .wizard-stepper__diamond {
    background: var(--ticketa-white);
    border-color: var(--ticketa-white);
    box-shadow: 0 0 20px rgba(255,255,255,.25);
}
.wizard-stepper__item.is-active .wizard-stepper__diamond::after { color: var(--ticketa-bg); }

.wizard-stepper__item.is-completed .wizard-stepper__diamond {
    background: var(--ticketa-orange);
    border-color: var(--ticketa-orange);
    box-shadow: 0 0 16px rgba(232,119,34,.4);
}
.wizard-stepper__item.is-completed .wizard-stepper__diamond::after { color: #fff; }

.wizard-stepper__label-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    max-width: 120px;
    text-align: center;
}

.wizard-stepper__label {
    font-size: 12px;
    font-weight: 700;
    color: rgba(255,255,255,.35);
    transition: color .25s ease;
}

.wizard-stepper__sub {
    font-size: 10px;
    color: rgba(255,255,255,.2);
    line-height: 1.3;
    transition: color .25s ease;
}

.wizard-stepper__item.is-active .wizard-stepper__label,
.wizard-stepper__item.is-completed .wizard-stepper__label { color: var(--ticketa-white); }

.wizard-stepper__item.is-active .wizard-stepper__sub,
.wizard-stepper__item.is-completed .wizard-stepper__sub { color: rgba(255,255,255,.5); }

.wizard-stepper__connector {
    flex: 1;
    height: 1px;
    background: rgba(255,255,255,.12);
    margin-bottom: calc(var(--space-3) + 32px);
    min-width: 50px;
    max-width: 130px;
}

/* Info bar ────────────────────────────────────────────────── */
.wizard-info-bar {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    padding: var(--space-4) 0;
    border-bottom: 1px solid var(--ticketa-border);
    direction: rtl;
    gap: 0;
}

.wizard-info-chip {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--text-sm);
    color: rgba(255,255,255,.7);
    padding: 0 var(--space-5);
    white-space: nowrap;
}
.wizard-info-chip:last-child { padding-inline-end: 0; }

.wizard-info-sep {
    width: 1px; height: 14px;
    background: rgba(255,255,255,.15);
    flex-shrink: 0;
}

.wizard-info-spacer { flex: 1; }

.wizard-info-action {
    appearance: none;
    background: var(--ticketa-orange, #e87722);
    color: #fff;
    border: 1.5px solid #fff;
    font-size: var(--text-sm);
    font-weight: 700;
    padding: .5rem 1rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,.25);
    transition: background .15s, transform .15s, box-shadow .15s;
    white-space: nowrap;
}
.wizard-info-action:hover {
    background: #ff8c33;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,0,0,.35);
}
.wizard-info-action:active { transform: translateY(1px); }
.wizard-info-action:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 2px;
}
@media (max-width: 720px) {
    .wizard-info-spacer { flex-basis: 100%; height: 0; }
    .wizard-info-action { width: 100%; justify-content: center; margin: 0 0 var(--space-3); }
}

/* Step content ────────────────────────────────────────────── */
.wizard-step-content {
    padding: 0 var(--space-10) var(--space-10);
    flex: 1;
}

/* Step transitions */
.step-fade-enter-active, .step-fade-leave-active { transition: opacity .22s ease, transform .22s ease; }
.step-fade-enter-from { opacity: 0; transform: translateX(-10px); }
.step-fade-leave-to   { opacity: 0; transform: translateX(10px); }

/* Back button */
.wizard-back-row {
    margin-top: var(--space-8);
    padding-top: var(--space-6);
    border-top: 1px solid var(--ticketa-border);
}
.wizard-back-btn {
    appearance: none;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.22);
    color: rgba(255,255,255,.92);
    font-size: var(--text-base);
    font-weight: 600;
    cursor: pointer;
    font-family: var(--font-body);
    padding: .65rem 1.25rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    transition: background .15s ease, border-color .15s ease, color .15s ease, transform .15s ease;
}
.wizard-back-btn:hover {
    color: #fff;
    background: rgba(232,119,34,.18);
    border-color: rgba(232,119,34,.55);
}
.wizard-back-btn:active { transform: translateY(1px); }
.wizard-back-btn:focus-visible {
    outline: 2px solid var(--ticketa-orange, #e87722);
    outline-offset: 2px;
}

.wizard-error {
    color: #e74c3c;
    font-size: var(--text-sm);
    margin-top: var(--space-4);
}

/* ═════════════════════════════════════════════════════════════
   STEP 1 — ROOM SELECTION
   ═════════════════════════════════════════════════════════════ */
.wizard-step--1 { padding-top: var(--space-8); direction: rtl; }

/* Room block ──────────────────────────────────────────────── */
.room-block {
    background: rgba(255,255,255,.02);
    border: 1px solid var(--ticketa-border);
    border-radius: var(--radius-xl);
    padding: var(--space-7) var(--space-8);
    margin-bottom: var(--space-5);
    direction: rtl;
    transition: border-color .2s ease;
}

.room-block:focus-within {
    border-color: rgba(232,119,34,.35);
    background: rgba(232,119,34,.02);
}

.room-block--loading { opacity: .7; pointer-events: none; }

.room-block__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--space-5);
}

.room-block__title {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--ticketa-white);
    margin: 0;
}

.room-block__title-guests {
    font-size: var(--text-lg);
    color: rgba(255,255,255,.5);
    font-weight: 400;
}

.room-block__remove {
    background: none;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: var(--radius-sm);
    color: rgba(255,255,255,.35);
    font-size: 11px;
    padding: var(--space-1) var(--space-3);
    cursor: pointer;
    transition: all .15s ease;
    font-family: var(--font-body);
}
.room-block__remove:hover { border-color: #dc3232; color: #dc3232; }

/* Hotel chip (pre-selected display) */
.room-block__hotel-chip {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    background: rgba(232,119,34,.07);
    border: 1px solid rgba(232,119,34,.18);
    border-radius: var(--radius-md);
    padding: var(--space-3) var(--space-5);
    margin-bottom: var(--space-6);
}

.room-block__hotel-icon { font-size: 18px; }

.room-block__hotel-name {
    font-weight: 700;
    color: var(--ticketa-white);
    font-size: var(--text-base);
    flex: 1;
}

.room-block__hotel-badge {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--ticketa-orange);
    background: rgba(232,119,34,.12);
    border-radius: var(--radius-pill);
    padding: 3px 10px;
}

/* Three selects */
.room-block__selects {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: var(--space-4);
    margin-bottom: var(--space-5);
}

.room-block__select-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.room-block__select-label {
    font-size: 11px;
    font-weight: 700;
    color: rgba(255,255,255,.35);
    text-transform: uppercase;
    letter-spacing: .07em;
}

.room-block__select-wrap { position: relative; }

.room-block__select {
    width: 100%;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.14);
    border-radius: var(--radius-md);
    color: rgba(255,255,255,.5);
    font-size: var(--text-sm);
    font-weight: 500;
    padding: 13px var(--space-8) 13px var(--space-4);
    appearance: none;
    cursor: pointer;
    font-family: var(--font-body);
    transition: all .2s ease;
    direction: rtl;
}

.room-block__select.has-value { color: var(--ticketa-white); border-color: rgba(255,255,255,.25); }

.room-block__select:focus {
    outline: none;
    border-color: var(--ticketa-orange);
    background: rgba(232,119,34,.05);
    box-shadow: 0 0 0 3px rgba(232,119,34,.1);
}

.room-block__select:disabled {
    opacity: .25; cursor: not-allowed;
}

.room-block__select option { background: #2a2a2a; color: var(--ticketa-white); }

.room-block__select-arrow {
    position: absolute;
    left: var(--space-3);
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255,255,255,.3);
    pointer-events: none;
    display: flex;
}

/* Price display */
/* Babies stepper */
.room-block__babies {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-3);
    padding: var(--space-3) var(--space-4);
    margin-top: var(--space-3);
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: var(--radius-md);
}
.room-block__babies-info {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    color: rgba(255,255,255,.78);
    font-size: var(--text-sm);
    flex-wrap: wrap;
}
.room-block__babies-info i { color: var(--ticketa-orange); }
.room-block__babies-price { color: rgba(255,255,255,.5); font-size: var(--text-xs); }
.room-block__babies-stepper {
    display: flex;
    align-items: center;
    gap: var(--space-2);
}
.room-block__stepper-btn {
    width: 32px; height: 32px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.18);
    background: rgba(255,255,255,.06);
    color: #fff;
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    display: inline-flex; align-items: center; justify-content: center;
    transition: background .15s, border-color .15s;
}
.room-block__stepper-btn:hover:not(:disabled) {
    background: rgba(232,119,34,.15);
    border-color: rgba(232,119,34,.4);
}
.room-block__stepper-btn:disabled { opacity: .35; cursor: not-allowed; }
.room-block__stepper-value {
    min-width: 24px;
    text-align: center;
    font-weight: 700;
    color: #fff;
}

.room-block__price-row {
    min-height: 40px;
    display: flex;
    align-items: center;
}

.room-block__price-loading {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    color: rgba(255,255,255,.35);
    font-size: var(--text-sm);
}

.mini-spinner {
    width: 16px; height: 16px;
    border: 2px solid rgba(255,255,255,.12);
    border-top-color: var(--ticketa-orange);
    border-radius: 50%;
    animation: ticketa-spin .65s linear infinite;
    flex-shrink: 0;
}

.room-block__price-display {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    background: rgba(232,119,34,.1);
    border: 1px solid rgba(232,119,34,.25);
    border-radius: var(--radius-md);
    padding: var(--space-2) var(--space-5);
}

.room-block__price-label {
    font-size: var(--text-sm);
    color: rgba(255,255,255,.55);
}

.room-block__price-amount {
    font-size: var(--text-xl);
    font-weight: 800;
    color: var(--ticketa-orange);
    direction: ltr;
}

/* Add room */
.room-block__add-row { margin-top: var(--space-2); }

.btn-add-room {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-6);
    border: 1px dashed rgba(255,255,255,.2);
    border-radius: var(--radius-md);
    background: transparent;
    color: rgba(255,255,255,.4);
    font-size: var(--text-sm);
    font-weight: 600;
    cursor: pointer;
    transition: all .15s ease;
    font-family: var(--font-body);
}
.btn-add-room:hover { border-color: var(--ticketa-orange); color: var(--ticketa-orange); }

/* ═════════════════════════════════════════════════════════════
   STEP 2 — ADD-ONS
   ═════════════════════════════════════════════════════════════ */
.wizard-step--2 { padding-top: var(--space-8); direction: rtl; }

.wizard-step__heading {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--ticketa-white);
    margin-bottom: var(--space-3);
}

.addons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: var(--space-5);
    direction: rtl;
    margin-top: var(--space-6);
}

/* ═════════════════════════════════════════════════════════════
   STEP 3 — CHECKOUT
   ═════════════════════════════════════════════════════════════ */
.wizard-step--3 { padding-top: var(--space-8); direction: rtl; }

.checkout-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-5);
    direction: rtl;
    margin-bottom: var(--space-8);
}
.checkout-form__full { grid-column: 1 / -1; }

.payment-security-note {
    background: rgba(255,255,255,.02);
    border: 1px solid var(--ticketa-border);
    border-radius: var(--radius-md);
    padding: var(--space-5) var(--space-6);
    direction: rtl;
}
.payment-security-note__title { font-weight: 700; color: var(--ticketa-white); margin-bottom: var(--space-3); }
.payment-security-note__body  { font-size: var(--text-sm); color: var(--ticketa-grey-muted); line-height: 1.6; }
.payment-security-note__badges { display: flex; gap: var(--space-3); margin-top: var(--space-4); flex-wrap: wrap; }
.payment-badge { font-size: 11px; color: var(--ticketa-grey-muted); padding: 4px 12px; border: 1px solid var(--ticketa-border); border-radius: var(--radius-pill); }

/* ═════════════════════════════════════════════════════════════
   SIDEBAR (.wsb) — LEFT side (second column in RTL)
   ═════════════════════════════════════════════════════════════ */
.wizard-sidebar {
    background: var(--ticketa-sidebar-bg);
    color: var(--ticketa-sidebar-text);
    width: var(--ticketa-sidebar-width);
    /* Flows naturally with page content — no scroll trap */
    position: sticky;
    top: var(--header-height);
    /* Height = viewport minus header so it doesn't overflow */
    max-height: calc(100vh - var(--header-height));
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    box-shadow: -4px 0 24px rgba(0,0,0,.25);
    z-index: var(--z-sticky);
    scrollbar-width: thin;
    scrollbar-color: rgba(255,255,255,.1) transparent;
}

.wsb { display: flex; flex-direction: column; height: 100%; direction: rtl; }

/* Poster */
.wsb__poster {
    position: relative;
    flex-shrink: 0;
    max-height: 140px;
    overflow: hidden;
}
.wsb__poster img { width: 100%; height: 100%; object-fit: cover; display: block; }
.wsb__poster-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.65) 0%, transparent 60%);
}
.wsb__poster-title {
    position: absolute;
    bottom: var(--space-4); right: var(--space-5);
    font-family: var(--font-display);
    font-size: var(--text-lg);
    font-weight: 700;
    color: #fff;
    text-shadow: 0 1px 6px rgba(0,0,0,.6);
    direction: rtl;
}
/* Magnifier — opens sidebar poster in shared lightbox */
.wsb__poster-zoom {
    position: absolute;
    top: 8px;
    left: 8px;
    z-index: 2;
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    appearance: none;
    background: rgba(0,0,0,.55);
    border: 1px solid rgba(255,255,255,.3);
    color: #fff;
    border-radius: 9px;
    cursor: pointer;
    font-size: 13px;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    transition: background .15s, border-color .15s, transform .15s;
}
.wsb__poster-zoom:hover {
    background: rgba(232,119,34,.92);
    border-color: rgba(232,119,34,1);
    transform: translateY(-1px);
}

/* Body */
.wsb__body {
    padding: var(--space-2) var(--space-4);
    display: flex;
    flex-direction: column;
    gap: 0;
    flex: 1;
    overflow-y: visible;
}

/* Package includes */
.wsb__includes {
    display: flex;
    align-items: flex-start;
    gap: var(--space-2);
    font-size: var(--text-xs);
    color: var(--ticketa-sidebar-muted);
    line-height: 1.45;
    padding: 6px 0 8px;
    border-bottom: 1px solid var(--ticketa-sidebar-border);
}
.wsb__includes-icon { font-size: 14px; flex-shrink: 0; }

/* Empty hint */
.wsb__empty-hint {
    text-align: center;
    padding: var(--space-6) var(--space-4);
    color: rgba(0,0,0,.25);
    font-size: var(--text-sm);
    line-height: 1.5;
    border: 1px dashed rgba(0,0,0,.1);
    border-radius: var(--radius-md);
    margin-top: var(--space-2);
}

/* Summary */
.wsb__summary {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.wsb__row {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    padding: 6px 0;
}

.wsb__row-icon {
    font-size: 14px;
    flex-shrink: 0;
    width: 20px;
    text-align: center;
    margin-top: 2px;
    opacity: .6;
}

.wsb__row-body {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
    min-width: 0;
}

.wsb__row-label {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: rgba(0,0,0,.35);
}

.wsb__row-value {
    font-size: var(--text-sm);
    color: var(--ticketa-sidebar-text);
    font-weight: 500;
    word-break: break-word;
}

.wsb__row-value--strong { font-weight: 700; font-size: var(--text-base); }

.wsb__row-meta {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    flex-wrap: wrap;
}

.wsb__row-sub {
    font-size: var(--text-xs);
    color: rgba(0,0,0,.4);
}

/* Room details */
.wsb__room-details {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.wsb__room-type  { font-size: var(--text-sm); color: var(--ticketa-sidebar-text); font-weight: 600; }
.wsb__room-board { font-size: var(--text-xs); color: var(--ticketa-sidebar-muted); }
.wsb__room-price { font-size: var(--text-sm); color: #e87722; font-weight: 700; }

/* Addon */
.wsb__addon-price { font-size: var(--text-xs); color: #e87722; font-weight: 700; }

/* Divider */
.wsb__divider { height: 1px; background: var(--ticketa-sidebar-border); margin: var(--space-2) 0; }

/* Total */
.wsb__total {
    border-top: 2px solid #111;
    padding-top: var(--space-4);
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
    flex-shrink: 0;
}

.wsb__total-row {
    display: flex;
    justify-content: space-between;
    font-size: var(--text-xs);
    color: var(--ticketa-sidebar-muted);
}

.wsb__total-final {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    font-weight: 900;
    font-size: var(--text-xl);
    color: #fff;
    margin-top: var(--space-1);
}

/* CTA */
.wsb__cta {
    padding: var(--space-3) var(--space-4) var(--space-4);
    flex-shrink: 0;
    background: var(--ticketa-sidebar-bg);
    border-top: 1px solid var(--ticketa-sidebar-border);
}

.wsb__cta-btn {
    display: block;
    width: 100%;
    padding: var(--space-4);
    background: #111;
    color: #fff;
    font-weight: 800;
    font-size: var(--text-base);
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    font-family: var(--font-body);
    transition: all .2s ease;
    letter-spacing: .01em;
}

.wsb__cta-btn:not(:disabled):hover {
    background: var(--ticketa-orange);
    box-shadow: 0 4px 20px rgba(232,119,34,.4);
    transform: translateY(-1px);
}

.wsb__cta-btn:disabled {
    opacity: .3;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.wsb__cta-secure {
    text-align: center;
    font-size: 10px;
    color: rgba(0,0,0,.3);
    margin: var(--space-2) 0 0;
    letter-spacing: .03em;
}

/* ═════════════════════════════════════════════════════════════
   RESPONSIVE
   ═════════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
    .whs__grid { grid-template-columns: repeat(2, 1fr); }
    :root { --ticketa-sidebar-width: 300px; }
}

/* Mobile sticky summary strip — hidden on desktop, shown fixed-bottom on mobile */
.wizard-mobile-strip { display: none; }

@media (max-width: 900px) {
    .wizard-shell {
        grid-template-columns: 1fr;
    }
    /* Full sidebar is replaced by the sticky strip on mobile.
     * !important defeats any inline-style or specificity collisions. */
    .wizard-sidebar,
    .wizard-shell .wizard-sidebar { display: none !important; }
    .wizard-main { order: 1; min-height: unset; }
    /* Reserve space at the bottom of step content for the fixed strip */
    .wizard-step-content { padding: 0 var(--space-5) calc(var(--space-8) + 76px); }
    .wizard-info-bar { padding: var(--space-3) 0; }
    .wizard-stepper  { padding: var(--space-5) var(--space-5) var(--space-4); }
    .room-block__selects { grid-template-columns: 1fr 1fr; }

    /* Sticky strip itself */
    .wizard-mobile-strip {
        display: flex !important;
        position: fixed;
        bottom: 0;
        inset-inline: 0;
        z-index: 60;
        padding: 10px 14px;
        background: rgba(13,13,13,.96);
        backdrop-filter: blur(14px) saturate(1.4);
        -webkit-backdrop-filter: blur(14px) saturate(1.4);
        border-top: 1px solid rgba(232,119,34,.35);
        box-shadow: 0 -8px 24px rgba(0,0,0,.4);
        align-items: center;
        justify-content: space-between;
        gap: 10px;
        font-family: var(--font-body);
        direction: rtl;
    }
    .wizard-mobile-strip__lines {
        display: flex;
        flex-direction: column;
        gap: 2px;
        min-width: 0;
        flex: 1;
    }
    .wizard-mobile-strip__line {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        line-height: 1.25;
    }
    .wizard-mobile-strip__line--top {
        font-size: .85rem;
        font-weight: 700;
        color: #fff;
    }
    .wizard-mobile-strip__line--sub {
        font-size: .72rem;
        color: rgba(255,255,255,.6);
    }
    .wizard-mobile-strip__price {
        font-size: 1.05rem;
        font-weight: 800;
        color: var(--ticketa-orange, #e87722);
        flex-shrink: 0;
        font-family: var(--font-mono, ui-monospace, monospace);
        letter-spacing: -.01em;
    }
}

@media (max-width: 650px) {
    .whs__grid { grid-template-columns: 1fr; }
    .whs__header { padding: var(--space-10) var(--space-5) var(--space-8); }
    .room-block { padding: var(--space-5) var(--space-4); }
    .room-block__selects { grid-template-columns: 1fr; }
    .checkout-form { grid-template-columns: 1fr; }
    .wizard-stepper__sub { display: none; }
}

/* Spin animation */
@keyframes ticketa-spin { to { transform: rotate(360deg); } }

/* ── Starting price chip (shown before user selects) ─────────────────────── */
.room-block__starting-price {
    display: inline-flex;
    align-items: baseline;
    gap: 4px;
    background: #f0f7ff;
    border: 1px solid #c3dffe;
    border-radius: 6px;
    padding: 6px 12px;
    margin-bottom: 14px;
    font-size: var(--text-sm);
}
.room-block__starting-label {
    color: #5a7fa8;
    font-size: 12px;
}
.room-block__starting-amount {
    color: #1a5fa8;
    font-weight: 700;
    font-size: 15px;
}

/* ── Auto-fill chip (room category when only 1 option) ───────────────────── */
.room-block__autofill-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #f0faf0;
    border: 1px solid #b2ddb2;
    border-radius: 6px;
    padding: 8px 14px;
    font-size: var(--text-sm);
    font-weight: 600;
    color: #2a6b2a;
    width: 100%;
}
.room-block__autofill-badge {
    margin-right: auto;
    background: #2a6b2a;
    color: #fff;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    flex-shrink: 0;
}

/* ── Addon qty stepper ───────────────────────────────────────────────────── */
.addon-card__stepper {
    margin-top: auto;
    padding-top: var(--space-4);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}
.addon-qty-stepper {
    display: flex;
    align-items: center;
    gap: 0;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: border-color .2s;
    width: 100%;
}
.addon-qty-stepper.has-qty {
    border-color: var(--ticketa-accent, #c9a84c);
}
.addon-qty-btn {
    background: #f5f5f5;
    border: none;
    width: 40px;
    height: 40px;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    transition: background .15s;
    flex-shrink: 0;
    color: #333;
}
.addon-qty-btn:hover:not(:disabled) { background: #e8e8e8; }
.addon-qty-btn:disabled { color: #bbb; cursor: default; }
.addon-qty-count {
    flex: 1;
    text-align: center;
    font-weight: 700;
    font-size: 15px;
    padding: 0 4px;
}
.addon-qty-label {
    font-size: 12px;
    color: #2a6b2a;
    font-weight: 600;
}
.addon-rooms-note {
    color: #888;
    font-size: 12px;
}

/* ── Step1 selects appear progressively (animated) ───────────────────────── */
.room-block__select-group {
    animation: fadeSlideIn .2s ease;
}
@keyframes fadeSlideIn {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ═══════════════════════════════════════════════════════════════
   STEP 1 HOTEL HERO BANNER
   ═══════════════════════════════════════════════════════════════ */
.step1-hotel-hero {
    position: relative;
    width: 100%;
    min-height: 240px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    margin-bottom: 0;
    border-bottom: 1px solid var(--ticketa-border);
}

.step1-hotel-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,.88) 0%,
        rgba(0,0,0,.55) 45%,
        rgba(0,0,0,.25) 100%
    );
}

.step1-hotel-hero__content {
    position: relative;
    z-index: 1;
    padding: var(--space-8) var(--space-10);
    width: 100%;
    direction: rtl;
}

.step1-hotel-hero__name {
    font-family: var(--font-display);
    font-size: clamp(var(--text-2xl), 4vw, var(--text-4xl));
    font-weight: 800;
    color: #fff;
    margin: 0 0 var(--space-3);
    text-shadow: 0 2px 12px rgba(0,0,0,.5);
}

.step1-hotel-hero__desc {
    font-size: var(--text-sm);
    color: rgba(255,255,255,.78);
    line-height: 1.65;
    max-width: 540px;
    margin: 0 0 var(--space-4);
    text-shadow: 0 1px 6px rgba(0,0,0,.4);
    white-space: pre-line;
}
.step1-hotel-hero__desc.is-clamped {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.step1-hotel-hero__desc.is-expanded {
    -webkit-line-clamp: unset;
    overflow: visible;
}

/* Hotel facilities — gentle glowing pills, displayed above קראו עוד */
.step1-hotel-hero__amenities {
    list-style: none;
    margin: 0 0 .85rem;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: .5rem .55rem;
}
.step1-hotel-hero__amenity {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .42rem .9rem;
    border-radius: 999px;
    font-size: .82rem;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, rgba(232,119,34,.20) 0%, rgba(255,140,51,.10) 100%);
    border: 1px solid rgba(232,119,34,.45);
    backdrop-filter: blur(6px);
    box-shadow:
        0 0 0 1px rgba(232,119,34,.08),
        0 0 14px rgba(232,119,34,.18),
        inset 0 1px 0 rgba(255,255,255,.06);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    line-height: 1.3;
}
.step1-hotel-hero__amenity:hover {
    transform: translateY(-1px);
    border-color: rgba(232,119,34,.65);
    box-shadow:
        0 0 0 1px rgba(232,119,34,.12),
        0 0 22px rgba(232,119,34,.32),
        inset 0 1px 0 rgba(255,255,255,.1);
}
.step1-hotel-hero__amenity i {
    color: #ffb27a;
    font-size: .9em;
    line-height: 1;
}

.step1-hotel-hero__toggle {
    appearance: none;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.18);
    color: #fff;
    font-size: var(--text-sm);
    font-weight: 600;
    padding: .5rem .9rem;
    border-radius: 999px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    margin: 0 0 var(--space-4);
    transition: background .15s, border-color .15s, transform .15s;
    backdrop-filter: blur(4px);
}
.step1-hotel-hero__toggle:hover {
    background: rgba(232,119,34,.18);
    border-color: rgba(232,119,34,.45);
}
.step1-hotel-hero__toggle:active { transform: translateY(1px); }
.step1-hotel-hero__toggle:focus-visible {
    outline: 2px solid var(--ticketa-orange, #e87722);
    outline-offset: 2px;
}

.step1-hotel-hero__price {
    display: inline-flex;
    align-items: baseline;
    gap: 6px;
    background: rgba(232,119,34,.15);
    border: 1px solid rgba(232,119,34,.4);
    border-radius: var(--radius-pill);
    padding: 6px 16px;
    backdrop-filter: blur(8px);
}

.step1-hotel-hero__price-from {
    font-size: 12px;
    color: rgba(255,255,255,.65);
}

.step1-hotel-hero__price-amount {
    font-size: var(--text-lg);
    font-weight: 800;
    color: var(--ticketa-orange);
}

/* ── FA icons in info bar chips ──────────────────────────────── */
.wizard-info-chip__icon {
    font-size: 14px;
    opacity: .75;
}

/* ── FA icons in room-block labels ──────────────────────────── */
.room-block__label-icon {
    font-size: 13px;
    opacity: .6;
    margin-left: 5px;
}

.room-block__title-icon {
    font-size: 16px;
    color: var(--ticketa-orange);
    margin-left: 6px;
}

/* ── Select loading skeleton ─────────────────────────────────── */
.room-block__select-loading {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: rgba(255,255,255,.03);
    border: 1px solid var(--ticketa-border);
    border-radius: var(--radius-md);
    color: rgba(255,255,255,.4);
    font-size: var(--text-sm);
}

.room-block__select-loading i {
    font-size: 14px;
    color: var(--ticketa-orange);
}

/* ── Select arrow → FA chevron ───────────────────────────────── */
.room-block__select-arrow {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: rgba(255,255,255,.35);
    font-size: 11px;
    transition: color .2s;
}

.room-block__select:focus ~ .room-block__select-arrow { color: var(--ticketa-orange); }

/* ── Auto-fill chip ──────────────────────────────────────────── */
.room-block__autofill-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(42,107,42,.12);
    border: 1px solid rgba(42,107,42,.35);
    border-radius: 8px;
    padding: 10px 16px;
    font-size: var(--text-sm);
    font-weight: 600;
    color: #5aad5a;
    width: 100%;
}

.room-block__autofill-chip i {
    font-size: 15px;
    flex-shrink: 0;
}

/* ── Sidebar row icon — FA sizing ────────────────────────────── */
.wsb__row-icon {
    font-size: 16px;
    flex-shrink: 0;
    width: 22px;
    text-align: center;
    margin-top: 1px;
    opacity: .55;
}

.wsb__includes-icon {
    font-size: 16px;
    opacity: .6;
    flex-shrink: 0;
}

/* ── Partial price (before total is computed) ────────────────── */
.wsb__partial-price {
    background: linear-gradient(135deg, rgba(232,119,34,.08), rgba(232,119,34,.03));
    border: 1px solid rgba(232,119,34,.2);
    border-radius: var(--radius-md);
    padding: var(--space-4);
    margin-top: auto;
}

.wsb__partial-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4px;
}

.wsb__partial-label {
    font-size: var(--text-xs);
    font-weight: 700;
    color: rgba(255,255,255,.85);
    display: flex;
    align-items: center;
    gap: 5px;
}

.wsb__partial-label i { color: var(--ticketa-orange); }

.wsb__partial-amount {
    font-size: var(--text-base);
    font-weight: 800;
    color: var(--ticketa-orange);
}

.wsb__partial-hint {
    font-size: 10px;
    color: rgba(255,255,255,.55);
    margin: 0;
    line-height: 1.4;
}

/* ── Sidebar total — enhanced ────────────────────────────────── */
.wsb__total {
    border-radius: var(--radius-md);
    padding: var(--space-4);
    margin-top: var(--space-3);
    background: rgba(255,255,255,.04);
}

.wsb__total-final {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    font-weight: 900;
    font-size: var(--text-xl);
    color: #fff;
    padding-top: var(--space-3);
    border-top: 2px solid rgba(255,255,255,.15);
    margin-top: var(--space-2);
}

/* ── Secure CTA line ─────────────────────────────────────────── */
.wsb__cta-secure i { margin-left: 4px; color: #4CAF50; }

/* ── HotelSelection FA icons ─────────────────────────────────── */
.whs__chip-icon {
    font-size: 14px;
    opacity: .8;
}

.whs__amenity-icon {
    font-size: 13px;
}

.whs__spinner-icon {
    font-size: 28px;
    color: var(--ticketa-orange);
}

/* ── Step 1 select progress animation ────────────────────────── */
.room-block__select-group {
    animation: fadeSlideIn .22s ease;
}

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

/* ═══════════════════════════════════════════════════════════════
   FONT CONSISTENCY — force theme font everywhere in wizard
   ═══════════════════════════════════════════════════════════════ */
/* Font applied to text-bearing elements — NOT * wildcard (would kill FA icon pseudo-elements) */
.wizard-root,
.wizard-root p,
.wizard-root span,
.wizard-root div,
.wizard-root label,
.wizard-root input,
.wizard-root select,
.wizard-root textarea,
.wizard-root button,
.wizard-root a,
.wizard-root li, .wizard-root ul, .wizard-root ol,
.wsb, .wsb p, .wsb span, .wsb div,
.wsb label, .wsb button, .wsb a, .wsb li {
    font-family: var(--font-body);
}
/* Headings inside wizard keep Secular One */
.wizard-root h1, .wizard-root h2, .wizard-root h3,
.wizard-root h4, .wizard-root h5, .wizard-root h6,
.wsb h1, .wsb h2, .wsb h3 {
    font-family: var(--font-display);
}
/* Specific elements that may escape the above */
.wizard-stepper__label, .wizard-stepper__sub,
.room-block__title, .room-block__select-label,
.addon-card__title, .addon-card__description,
.wsb__row-value, .wsb__row-label, .wsb__total-final,
.whs__card-cta, .whs__card-name, .whs__card-price,
.whs__chip, .whs__amenity,
.btn, .btn--primary, .btn--secondary, .btn--ghost,
.wizard-back-btn, .btn-add-room,
.step3-room-header__title, .step3-room-header__sub,
.step3-security-notice__body, .step3-security-notice__list li,
.addon-room-header__label, .addon-room-header__category,
.form-field__label, .form-field__input, .form-field__error-msg {
    font-family: var(--font-body);
}

/* ═══════════════════════════════════════════════════════════════
   STEP 2 — PER-ROOM ADDON SECTIONS
   ═══════════════════════════════════════════════════════════════ */
.wizard-step__sub {
    color: var(--ticketa-grey-muted);
    font-size: var(--text-sm);
    margin-bottom: 0;
}

.addon-room-section {
    margin-top: var(--space-8);
}

.addon-room-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-3) 0;
    border-bottom: 2px solid var(--ticketa-orange);
    margin-bottom: var(--space-5);
    direction: rtl;
}

.addon-room-header__left {
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

.addon-room-header__icon {
    font-size: 18px;
    color: var(--ticketa-orange);
}

.addon-room-header__label {
    font-size: var(--text-base);
    font-weight: 800;
    color: var(--ticketa-white);
}

.addon-room-header__category {
    font-size: var(--text-sm);
    color: var(--ticketa-grey-muted);
}

.addon-room-header__count {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: var(--text-xs);
    color: #5aad5a;
    font-weight: 700;
}

.addon-room-header__count i { font-size: 14px; }

/* Addon card — clickable, full card toggle */
.addon-card {
    cursor: pointer;
    user-select: none;
    position: relative;
    display: flex;
    flex-direction: column;
    background: var(--ticketa-bg-card);
    border: 2px solid var(--ticketa-border);
    border-radius: var(--radius-xl);
    padding: var(--space-6);
    transition: border-color .2s ease, box-shadow .2s ease, transform .15s ease;
    direction: rtl;
    outline: none;
}

.addon-card:hover,
.addon-card:focus-visible {
    border-color: rgba(232,119,34,.5);
    box-shadow: 0 8px 24px rgba(0,0,0,.35);
    transform: translateY(-2px);
}

.addon-card.is-selected {
    border-color: var(--ticketa-orange);
    background: rgba(232,119,34,.07);
    box-shadow: 0 0 0 3px rgba(232,119,34,.2), 0 8px 24px rgba(0,0,0,.3);
}

/* Checkmark overlay */
.addon-card__check-overlay {
    position: absolute;
    top: var(--space-3);
    left: var(--space-3);
    width: 28px; height: 28px;
    background: var(--ticketa-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #fff;
    box-shadow: 0 2px 8px rgba(232,119,34,.5);
    z-index: 2;
}

.addon-card__icon-wrap {
    margin-bottom: var(--space-3);
}

.addon-card__icon {
    font-size: 2rem;
}

.addon-card__title {
    font-size: var(--text-base);
    font-weight: 700;
    color: var(--ticketa-white);
    margin-bottom: var(--space-2);
    font-family: var(--font-body);
}

.addon-card__description {
    font-size: var(--text-sm);
    color: var(--ticketa-grey-muted);
    line-height: 1.55;
    margin-bottom: var(--space-3);
    flex: 1;
}

.addon-card__bullets {
    list-style: none;
    padding: 0;
    margin-bottom: var(--space-3);
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.addon-card__bullets li {
    font-size: var(--text-xs);
    color: rgba(255,255,255,.65);
    display: flex;
    align-items: flex-start;
    gap: 6px;
    line-height: 1.4;
}

.addon-card__bullet-icon {
    color: var(--ticketa-orange);
    font-size: 10px;
    margin-top: 3px;
    flex-shrink: 0;
}

.addon-card__price {
    font-size: var(--text-xl);
    font-weight: 800;
    color: var(--ticketa-orange);
    margin-bottom: var(--space-4);
    direction: ltr;
    text-align: start;
}

.addon-card__cta-line {
    font-size: var(--text-xs);
    font-weight: 600;
    text-align: center;
    padding: 8px 0 2px;
    border-top: 1px solid var(--ticketa-border);
}

.addon-card__cta--add {
    color: rgba(255,255,255,.4);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}
.addon-card:hover .addon-card__cta--add { color: var(--ticketa-orange); }

.addon-card__cta--selected {
    color: var(--ticketa-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.addons-empty {
    text-align: center;
    padding: var(--space-12) 0;
    color: var(--ticketa-grey-muted);
}
.addons-empty__icon {
    font-size: 3rem;
    display: block;
    margin-bottom: var(--space-4);
    opacity: .3;
}

.addons-skip-note {
    text-align: center;
    color: var(--ticketa-grey-muted);
    font-size: var(--text-sm);
    margin-top: var(--space-8);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

/* ═══════════════════════════════════════════════════════════════
   STEP 3 — PER-ROOM CUSTOMER FORMS
   ═══════════════════════════════════════════════════════════════ */
.step3__heading-icon {
    color: var(--ticketa-orange);
    margin-left: var(--space-2);
}

.step3-room-section {
    margin-bottom: var(--space-8);
    border: 1px solid var(--ticketa-border);
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.step3-room-header {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-4) var(--space-6);
    background: rgba(255,255,255,.03);
    border-bottom: 1px solid var(--ticketa-border);
    direction: rtl;
}

.step3-room-header__icon {
    font-size: 18px;
    color: var(--ticketa-orange);
}

.step3-room-header__title {
    font-size: var(--text-base);
    font-weight: 800;
    color: var(--ticketa-white);
}

.step3-room-header__sub {
    font-size: var(--text-sm);
    color: var(--ticketa-grey-muted);
}

.step3-room-section .checkout-form {
    padding: var(--space-6);
    margin-bottom: 0;
}

/* Payment section within room */
.step3-payment-section {
    padding: var(--space-6);
    background: rgba(255,255,255,.015);
    border-top: 1px solid var(--ticketa-border);
}

.step3-payment-header {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    font-size: var(--text-base);
    font-weight: 700;
    color: var(--ticketa-white);
    margin-bottom: var(--space-5);
    direction: rtl;
}

.step3-payment-header__icon {
    font-size: 18px;
    color: var(--ticketa-orange);
}

/* Security notice */
.step3-security-notice {
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: var(--radius-md);
    padding: var(--space-5);
    margin-bottom: var(--space-5);
    direction: rtl;
}

.step3-security-notice__title {
    font-size: var(--text-sm);
    font-weight: 700;
    color: var(--ticketa-white);
    margin-bottom: var(--space-3);
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

.step3-security-notice__title i {
    color: #4CAF50;
    font-size: 15px;
}

.step3-security-notice__body {
    font-size: var(--text-sm);
    color: rgba(255,255,255,.65);
    line-height: 1.65;
    margin-bottom: var(--space-4);
}

.step3-security-notice__list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
    margin-bottom: var(--space-4);
}

.step3-security-notice__list li {
    font-size: 12px;
    color: rgba(255,255,255,.55);
    display: flex;
    align-items: flex-start;
    gap: var(--space-2);
    line-height: 1.55;
}

.step3-security-notice__list li i {
    font-size: 13px;
    color: #4CAF50;
    margin-top: 2px;
    flex-shrink: 0;
}

.step3-security-notice__footer {
    font-size: var(--text-xs);
    color: rgba(255,255,255,.45);
    line-height: 1.5;
}

.step3-payment-badges {
    display: flex;
    gap: var(--space-3);
    flex-wrap: wrap;
}

.step3-payment-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    font-weight: 700;
    color: rgba(255,255,255,.5);
    padding: 4px 12px;
    border: 1px solid var(--ticketa-border-strong);
    border-radius: var(--radius-pill);
}

.step3-payment-badge i {
    font-size: 11px;
    color: #4CAF50;
}

/* Shared section */
.step3-shared-section {
    border: 1px solid var(--ticketa-border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    margin-bottom: var(--space-8);
}

.step3-shared-header {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-4) var(--space-6);
    background: rgba(255,255,255,.03);
    border-bottom: 1px solid var(--ticketa-border);
    font-size: var(--text-base);
    font-weight: 700;
    color: var(--ticketa-white);
    direction: rtl;
}

.step3-shared-header__icon {
    color: var(--ticketa-orange);
    font-size: 18px;
}

.step3-shared-section .checkout-form {
    padding: var(--space-6);
    margin-bottom: 0;
}

.step3-error {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    background: rgba(231,76,60,.1);
    border: 1px solid rgba(231,76,60,.3);
    border-radius: var(--radius-md);
    padding: var(--space-4);
    color: #e74c3c;
    font-size: var(--text-sm);
    margin-bottom: var(--space-4);
    direction: rtl;
}

/* ── Terms-of-use consent ─────────────────────────────────────────────────── */
.step3-terms-consent {
    margin: var(--space-5) 0 var(--space-4);
    padding: var(--space-4) var(--space-5);
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: var(--radius-md);
    transition: border-color .18s ease, background .18s ease;
}
.step3-terms-consent--error {
    border-color: rgba(231,76,60,.5);
    background: rgba(231,76,60,.06);
}
.step3-terms-consent__label {
    display: flex;
    align-items: flex-start;
    gap: .65rem;
    cursor: pointer;
    user-select: none;
}
/* Hide native checkbox visually but keep it accessible */
.step3-terms-consent__checkbox {
    position: absolute;
    opacity: 0;
    width: 1px;
    height: 1px;
    pointer-events: none;
}
/* Custom checkbox box */
.step3-terms-consent__box {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    margin-top: 1px;
    border-radius: 6px;
    border: 1.5px solid rgba(255,255,255,.28);
    background: rgba(255,255,255,.04);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: border-color .15s ease, background .15s ease, transform .12s ease;
    color: transparent;
    font-size: 13px;
}
.step3-terms-consent__box i { line-height: 1; }
.step3-terms-consent__label:hover .step3-terms-consent__box {
    border-color: rgba(232,119,34,.55);
}
.step3-terms-consent__checkbox:focus-visible + .step3-terms-consent__box {
    outline: 2px solid var(--ticketa-orange, #e87722);
    outline-offset: 2px;
}
.step3-terms-consent__checkbox:checked + .step3-terms-consent__box {
    background: linear-gradient(135deg, #e87722 0%, #ff8c33 100%);
    border-color: #e87722;
    color: #fff;
    transform: scale(1.02);
    box-shadow: 0 0 0 4px rgba(232,119,34,.12);
}
.step3-terms-consent__text {
    font-size: var(--text-sm);
    color: rgba(255,255,255,.85);
    line-height: 1.55;
}
.step3-terms-consent__link {
    color: var(--ticketa-orange, #e87722);
    text-decoration: underline;
    text-underline-offset: 3px;
    font-weight: 600;
    transition: color .15s ease;
}
.step3-terms-consent__link:hover {
    color: #ff8c33;
}
.step3-terms-consent__error {
    margin: .65rem 0 0;
    padding: 0;
    color: #ff6b6b;
    font-size: .82rem;
    display: flex;
    align-items: center;
    gap: .4rem;
}
.step3-terms-consent__error i { font-size: .9em; }

.step3-pay-btn-wrap {
    margin-top: var(--space-6);
}

.step3-pay-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
}


/* ─ Responsive ──────────────────────────────────────────────────── */


/* ═══════════════════════════════════════════════════════════════
   PROCEED BAR — shown in wizard main content for steps 1 & 2
   ═══════════════════════════════════════════════════════════════ */
.wizard-proceed-bar {
    padding: var(--space-4) var(--space-6) var(--space-6);
    text-align: center;
}

.wizard-proceed-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: var(--space-4) var(--space-10);
    background: var(--ticketa-orange);
    color: #fff;
    font-family: var(--font-body);
    font-size: var(--text-base);
    font-weight: 800;
    border: none;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all .2s ease;
    letter-spacing: .01em;
    box-shadow: 0 4px 20px rgba(232,119,34,.4);
    min-width: 240px;
}
.wizard-proceed-btn:hover:not(:disabled) {
    background: #d96b18;
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(232,119,34,.55);
}
.wizard-proceed-btn:disabled {
    opacity: .4;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}
.wizard-proceed-btn i { font-size: 14px; }
.wizard-proceed-btn__icon {
    font-size: 18px !important;
    margin-inline-start: 4px;
    line-height: 1;
}

/* ── Sidebar secure badge (step 3, replaces CTA) ──────────────── */
.wsb__secure-badge {
    padding: var(--space-3) var(--space-4);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    font-size: 11px;
    font-weight: 600;
    color: rgba(0,0,0,.55);
    border-top: 1px solid var(--ticketa-sidebar-border);
    letter-spacing: .04em;
}
.wsb__secure-badge i { color: #2e7d32; font-size: 12px; }

/* ── Sidebar row icons smaller ──────────────────────────────────── */
.wsb__row-icon {
    font-size: 14px;
    width: 18px;
    text-align: center;
    flex-shrink: 0;
    margin-top: 0;
    color: var(--ticketa-orange);
    opacity: .75;
    align-self: center;
}

/* ── Sidebar rows compact label+value inline ───────────────────── */
.wsb__row-body {
    display: flex;
    flex-direction: column;
    gap: 1px;
    min-width: 0;
}
.wsb__row-label {
    font-size: 10px;
    font-weight: 700;
    color: #888888;
    text-transform: uppercase;
    letter-spacing: .06em;
}
.wsb__row-value {
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--ticketa-sidebar-text);
    word-break: break-word;
}
.wsb__row-value--strong {
    font-size: var(--text-base);
    font-weight: 700;
}
.wsb__row-sub {
    font-size: 11px;
    color: rgba(255,255,255,.45);
}
.wsb__row-meta {
    display: flex;
    align-items: baseline;
    gap: var(--space-2);
    flex-wrap: wrap;
}
.wsb__divider {
    height: 1px;
    background: var(--ticketa-sidebar-border);
    margin: var(--space-1) 0;
}

/* ── Room/addon details compact ─────────────────────────────────── */
.wsb__room-details {
    display: flex;
    flex-direction: column;
    gap: 1px;
}
.wsb__room-type  { font-size: var(--text-sm); color: var(--ticketa-sidebar-text); font-weight: 600; }
.wsb__room-board { font-size: 11px; color: var(--ticketa-sidebar-muted); }
.wsb__room-price { font-size: var(--text-sm); font-weight: 700; color: var(--ticketa-orange); direction: ltr; }
.wsb__addon-price { font-size: 11px; color: var(--ticketa-orange); }

/* ── Total compact ──────────────────────────────────────────────── */
.wsb__total {
    padding: var(--space-3) 0 0;
    border-top: 1px solid var(--ticketa-sidebar-border);
    margin-top: var(--space-2);
}
.wsb__total-row {
    display: flex;
    justify-content: space-between;
    font-size: var(--text-xs);
    color: var(--ticketa-sidebar-muted);
    padding: 2px 0;
}
.wsb__total-final {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    font-size: var(--text-lg);
    font-weight: 800;
    color: var(--ticketa-sidebar-text);
    margin-top: var(--space-2);
    padding-top: var(--space-2);
    border-top: 1px solid var(--ticketa-sidebar-border);
}

/* ── Partial price compact ──────────────────────────────────────── */
.wsb__partial-price {
    background: rgba(232,119,34,.07);
    border: 1px solid rgba(232,119,34,.2);
    border-radius: var(--radius-md);
    padding: var(--space-2) var(--space-3);
    margin-top: var(--space-1);
}
.wsb__partial-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.wsb__partial-label { font-size: 11px; color: rgba(255,255,255,.85); font-weight: 600; }
.wsb__partial-label i { margin-left: 4px; color: var(--ticketa-orange); }
.wsb__partial-amount { font-size: var(--text-base); font-weight: 800; color: var(--ticketa-orange); direction: ltr; }
.wsb__partial-hint { font-size: 10px; color: rgba(255,255,255,.6); margin-top: 3px; }

/* ── Pricing loader in sidebar ──────────────────────────────────────────────── */
.wsb__pricing-wrap {
    position: relative;
    transition: opacity .2s ease;
}
.wsb__pricing-wrap--loading {
    opacity: .5;
    pointer-events: none;
}
.wsb__pricing-loader {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 16px;
    background: rgba(255,255,255,.06);
    border-radius: var(--radius-md);
}
.wsb__pricing-spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255,165,0,.3);
    border-top-color: var(--ticketa-orange);
    border-radius: 50%;
    animation: wsb-spin .7s linear infinite;
    flex-shrink: 0;
}
@keyframes wsb-spin { to { transform: rotate(360deg); } }
.wsb__pricing-loader-text {
    font-size: 13px;
    color: rgba(255,255,255,.7);
    font-family: var(--font-body);
}

/* ── Clickable stepper items ─────────────────────────────────────────────────── */
.wizard-stepper__item {
    cursor: default;
}
.wizard-stepper__item.is-completed,
.wizard-stepper__item.is-active {
    cursor: pointer;
}
.wizard-stepper__item.is-locked {
    cursor: not-allowed;
    opacity: .55;
}
.wizard-stepper__item.is-completed:hover .wizard-stepper__diamond,
.wizard-stepper__item.is-active:hover .wizard-stepper__diamond {
    box-shadow: 0 0 0 3px rgba(255,165,0,.35);
    transition: box-shadow .15s ease;
}

/* ── Booking Confirmation Screen ─────────────────────────────────────────────── */
.wizard-confirmed-phase {
    max-width: 680px;
    margin: 0 auto;
    padding: var(--space-6) var(--space-4);
}
.wizard-confirmed-loading {
    display: flex; flex-direction: column; align-items: center;
    gap: 12px; padding: 60px 0; color: rgba(255,255,255,.6);
}
.wizard-confirmed-loading i { font-size: 2rem; color: var(--ticketa-orange); }

.wiz-confirmed { display: flex; flex-direction: column; gap: 20px; }

/* Header */
.wiz-confirmed__header {
    text-align: center;
    padding: 36px 24px 28px;
    background: linear-gradient(145deg, rgba(255,255,255,.06) 0%, rgba(255,255,255,.02) 100%);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--radius-lg);
}
.wiz-confirmed__checkmark {
    font-size: 52px;
    color: #27ae60;
    margin-bottom: 12px;
    animation: wiz-pop .4s cubic-bezier(.26,1.6,.48,1) forwards;
}
@keyframes wiz-pop { from { transform: scale(0); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.wiz-confirmed__title {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 4vw, 2.2rem);
    color: var(--ticketa-white);
    margin: 0 0 8px;
}
.wiz-confirmed__subtitle {
    font-size: var(--text-sm);
    color: rgba(255,255,255,.6);
    margin: 0 0 18px;
}
.wiz-confirmed__order-badge {
    display: inline-flex; align-items: center; gap: 10px;
    background: rgba(232,119,34,.15); border: 1px solid rgba(232,119,34,.35);
    border-radius: 40px; padding: 8px 20px;
}
.wiz-confirmed__order-label {
    font-size: var(--text-xs); color: rgba(255,255,255,.55);
    text-transform: uppercase; letter-spacing: .05em;
}
.wiz-confirmed__order-id {
    font-family: monospace; font-size: var(--text-base);
    font-weight: 800; color: var(--ticketa-orange); letter-spacing: .08em;
}
.wiz-confirmed__pay-ref {
    margin-top: 10px; font-size: 12px; color: rgba(255,255,255,.4);
}

/* Cards */
.wiz-confirmed__card {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: var(--radius-md);
    overflow: hidden;
}
.wiz-confirmed__card-header {
    display: flex; align-items: center; gap: 10px;
    padding: 14px 20px;
    background: rgba(255,255,255,.06);
    font-family: var(--font-display); font-size: var(--text-base);
    color: var(--ticketa-white); border-bottom: 1px solid rgba(255,255,255,.08);
}
.wiz-confirmed__card-header i { color: var(--ticketa-orange); }
.wiz-confirmed__card-body { padding: 16px 20px; }

/* Event card */
.wiz-confirmed__card-body.wiz-confirmed__card-body { display: block; }
.wiz-confirmed__card-body:has(.wiz-confirmed__poster) { display: flex; gap: 16px; align-items: flex-start; }
.wiz-confirmed__poster {
    width: 90px; height: 90px; object-fit: cover;
    border-radius: var(--radius-sm); flex-shrink: 0;
}
.wiz-confirmed__event-title {
    font-family: var(--font-display); font-size: var(--text-lg);
    color: var(--ticketa-white); margin: 0 0 6px;
}
.wiz-confirmed__event-dates {
    font-size: var(--text-sm); color: rgba(255,255,255,.6); margin: 0;
    display: flex; align-items: center; gap: 8px;
}
.wiz-confirmed__event-dates i { color: var(--ticketa-orange); }

/* Room rows */
.wiz-confirmed__room-row {
    display: flex; align-items: center; gap: 12px;
    padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,.06);
}
.wiz-confirmed__room-row:last-child { border-bottom: none; }
.wiz-confirmed__room-num {
    font-size: var(--text-sm); font-weight: 700; color: var(--ticketa-orange);
    display: flex; align-items: center; gap: 6px; min-width: 90px;
}
.wiz-confirmed__room-details {
    flex: 1; display: flex; flex-direction: column; gap: 2px;
}
.wiz-confirmed__room-hotel { font-size: var(--text-sm); color: var(--ticketa-white); font-weight: 600; }
.wiz-confirmed__room-type  { font-size: var(--text-sm); color: rgba(255,255,255,.7); }
.wiz-confirmed__room-board { font-size: 12px; color: rgba(255,255,255,.45); }
.wiz-confirmed__room-price { font-weight: 700; color: var(--ticketa-orange); font-size: var(--text-base); }

/* Customer grid */
.wiz-confirmed__customer-grid { display: flex; flex-direction: column; gap: 8px; }
.wiz-confirmed__cust-row {
    display: flex; align-items: baseline; gap: 12px;
    padding: 6px 0; border-bottom: 1px solid rgba(255,255,255,.05);
}
.wiz-confirmed__cust-row:last-child { border-bottom: none; }
.wiz-confirmed__cust-label { min-width: 70px; font-size: var(--text-xs); color: rgba(255,255,255,.45); text-transform: uppercase; letter-spacing: .04em; }
.wiz-confirmed__cust-val { font-size: var(--text-sm); color: var(--ticketa-white); }

/* Pricing card */
.wiz-confirmed__card--pricing { border-color: rgba(232,119,34,.25); }
.wiz-confirmed__pricing-rows { border-bottom: 1px dashed rgba(255,255,255,.1); padding-bottom: 12px; margin-bottom: 12px; }
.wiz-confirmed__price-row {
    display: flex; justify-content: space-between;
    font-size: var(--text-sm); color: rgba(255,255,255,.65); margin-bottom: 6px;
}
.wiz-confirmed__total-row {
    display: flex; justify-content: space-between; align-items: center;
}
.wiz-confirmed__total-row > span:first-child { font-size: var(--text-base); color: var(--ticketa-white); font-weight: 700; }
.wiz-confirmed__total-amount { font-size: 1.5rem; font-weight: 800; color: var(--ticketa-orange); font-family: var(--font-display); }

/* Footer */
.wiz-confirmed__footer {
    text-align: center; padding: 16px;
    font-size: var(--text-sm); color: rgba(255,255,255,.5);
    display: flex; flex-direction: column; gap: 6px;
}
.wiz-confirmed__footer-note i,
.wiz-confirmed__footer-date i { color: var(--ticketa-orange); margin-left: 6px; }
.wiz-confirmed__footer-note strong { color: rgba(255,255,255,.75); }

/* ── Inline payment iframe (Step 3, below Pay button) ──────────── */
.step3-payment-inline {
    display: none;
    margin-top: var(--space-4);
    border-radius: var(--radius-lg, 14px);
    overflow: hidden;
    border: 1px solid rgba(232,119,34,.25);
    background: #fff;
    box-shadow:
        0 0 0 1px rgba(232,119,34,.08),
        0 12px 40px rgba(0,0,0,.45),
        0 0 28px rgba(232,119,34,.18);
    position: relative;
    animation: rb-payment-mount .35s cubic-bezier(.2,.9,.25,1.05);
}
.step3-payment-inline.is-active {
    display: block;
}
@keyframes rb-payment-mount {
    from { opacity: 0; transform: translateY(12px) scale(.98); }
    to   { opacity: 1; transform: translateY(0)  scale(1); }
}
.rb-payment-loader {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 56px 16px;
    color: #555;
    gap: 14px;
    font-size: var(--text-sm);
    background: #fff;
}
.rb-payment-spinner {
    width: 36px; height: 36px;
    border: 3px solid rgba(232,119,34,.18);
    border-top-color: var(--ticketa-orange);
    border-radius: 50%;
    animation: wsb-spin .8s linear infinite;
}
.rb-payment-iframe {
    display: block;
    width: 100%;
    min-height: 620px;
    border: none;
    background: #fff;
}
.rb-payment-inline-error {
    padding: 20px;
    color: #c0392b;
    font-size: var(--text-sm);
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
}

/* Cancel + secure bar above iframe */
.rb-payment-cancel-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 14px;
    background: #1a1815;
    border-bottom: 1px solid rgba(255,255,255,.08);
    gap: 12px;
}
.rb-payment-cancel-btn {
    background: none;
    border: 1px solid rgba(255,100,100,.4);
    color: rgba(255,100,100,.85);
    border-radius: var(--radius-sm);
    padding: 6px 14px;
    font-size: var(--text-xs);
    font-family: var(--font-body);
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all .2s;
}
.rb-payment-cancel-btn:hover {
    background: rgba(255,100,100,.12);
    border-color: rgba(255,100,100,.7);
    color: #ff6b6b;
}

/* "Secure connection" badge inside the cancel/secure bar */
.rb-payment-secure {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: rgba(126,217,156,.95);
    font-size: var(--text-xs);
    font-weight: 600;
}
.rb-payment-secure i {
    color: #2ecc71;
    font-size: .85em;
}

/* ── Confirmed screen — action buttons ──────────────────────────────────── */
.wiz-confirmed__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,.08);
}
.wiz-confirmed__action-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 22px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    transition: all .2s;
    border: none;
    font-family: var(--font-body);
}
.wiz-confirmed__action-btn--print {
    background: rgba(255,255,255,.08);
    color: var(--color-text, #fff);
    border: 1px solid rgba(255,255,255,.15);
}
.wiz-confirmed__action-btn--print:hover {
    background: rgba(255,255,255,.14);
}
.wiz-confirmed__action-btn--zone {
    background: var(--ticketa-primary, #e87722);
    color: #fff;
}
.wiz-confirmed__action-btn--zone:hover { opacity: .88; }

/* ── Print styles ────────────────────────────────────────────────────────── */
@media print {
    /* Page setup — A4 with tight margins so content fits one page */
    @page {
        size: A4 portrait;
        margin: 10mm;
    }

    /* Reset body padding (header offset is irrelevant when printing) */
    html, body {
        padding: 0 !important;
        margin: 0 !important;
        background: #fff !important;
    }

    /* Hide everything except the confirmed booking content */
    body > *:not(#booking-wizard-root) { display: none !important; }
    .site-header,
    .site-footer,
    .mobile-nav,
    .skip-to-content,
    #ticketa-toast-container-booking,
    #ticketa-toast-container-session,
    .wizard-header,
    .wizard-stepper,
    .wizard-sidebar,
    .wizard-step,
    .wizard-cta-bar,
    .wizard-mobile-strip,
    .wiz-confirmed__actions,
    .step3-payment-inline { display: none !important; }

    /* Container — no max-width, no shadow, no scroll */
    .wiz-confirmed {
        max-width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    /* Compact card grid: stack tight, no page breaks within a card */
    .wiz-confirmed__card {
        background: #fff !important;
        border: 1px solid #ccc !important;
        color: #111 !important;
        margin-bottom: 8px !important;
        padding: 10px 14px !important;
        page-break-inside: avoid;
        break-inside: avoid;
        box-shadow: none !important;
        border-radius: 6px !important;
    }
    .wiz-confirmed__card-header,
    .wiz-confirmed__hero {
        background: #f5f5f5 !important;
        padding: 8px 12px !important;
    }

    /* Force readable colors */
    .wiz-confirmed,
    .wiz-confirmed * {
        color: #111 !important;
        text-shadow: none !important;
    }

    /* Tighten typography for print density */
    .wiz-confirmed h1 { font-size: 18pt !important; margin: 0 0 6px !important; }
    .wiz-confirmed h2,
    .wiz-confirmed h3 { font-size: 13pt !important; margin: 0 0 4px !important; }
    .wiz-confirmed p,
    .wiz-confirmed span,
    .wiz-confirmed li,
    .wiz-confirmed div { font-size: 10pt !important; line-height: 1.35 !important; }
    .wiz-confirmed__total-amount {
        color: #000 !important;
        font-size: 14pt !important;
        font-weight: 800 !important;
    }

    /* Card body internal padding tightened */
    .wiz-confirmed__card-body { padding: 8px 12px !important; }

    /* Room rows: prevent splitting across pages */
    .wiz-confirmed__room-row,
    .wiz-confirmed__price-row {
        page-break-inside: avoid;
        break-inside: avoid;
        padding: 4px 0 !important;
    }

    /* Hide any decorative gradients/backgrounds */
    .wiz-confirmed__hero { background-image: none !important; }
}

/* ── Payment iframe — polling status bar ─────────────────────────────────── */
.rb-payment-status {
    display: none;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(232, 119, 34, 0.08);
    border-bottom: 1px solid rgba(232, 119, 34, 0.2);
    font-size: 13px;
    color: var(--ticketa-primary, #e87722);
    font-weight: 600;
}
.rb-payment-status__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--ticketa-primary, #e87722);
    animation: rb-pulse 1.4s ease-in-out infinite;
    flex-shrink: 0;
}
@keyframes rb-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: .4; transform: scale(.7); }
}
