.copyright {
    display: none;
}

html,
body {
    background: var(--escape-bg);
}

footer {
    background: var(--escape-bg);
}


:root {
    --escape-bg: #f5f5f7;
    --escape-surface: #ffffff;
    --escape-surface-soft: #fafbfd;
    --escape-surface-tint: #f7f9fd;
    --escape-primary: #2b2d6d;
    --escape-primary-soft: #eef3fb;
    --escape-primary-soft-hover: #dde9ff;
    --escape-primary-border: #bfd1ff;
    --escape-border: #e5e8ef;
    --escape-border-soft: #d8dfef;
    --escape-text: #1f2937;
    --escape-text-muted: #4b5563;
    --escape-text-soft: #6b7280;
}

.main-page-content {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.reservations.form {
    flex: 1 0 auto;
    background: var(--escape-bg);
    overflow-x: hidden;
}

.bottom-info {
    flex-shrink: 0;
}

.reservations.form * {
    font-family: "Montserrat", "Open Sans", sans-serif;
}

.reservations .container {
    position: relative;
    padding-bottom: 80px;
}

.reservations .reservation-header {
    position: relative;
    z-index: 1;
    left: 50%;
    right: 50%;
    width: 100vw;
    margin-left: -50vw;
    margin-right: -50vw;
    background: linear-gradient(135deg, #0f1f3a 0%, #15284f 100%);
    color: white;
    text-align: center;
    padding: 40px 15px 150px;
}

.reservations .reservation-content {
    position: relative;
    z-index: 2;
    max-width: none;
    margin: -90px auto 60px;
}

.reservations .reservation-card {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 100%;
    background: var(--escape-surface);
    border-radius: 14px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
    padding: 36px 40px;
    border: 1px solid var(--escape-border);
}

.reservations .reservation-card h1 {
    font-weight: 700;
    font-size: 28px;
    margin-top: 0;
    margin-bottom: 16px;
    text-align: center;
}

.reservation-layout {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 28px;
    align-items: start;
}

.reservation-layout.is-list-view {
    display: block;
}

.reservation-layout.is-list-view .details-panel {
    display: none;
}

.reservation-layout.is-detail-view {
    display: block;
}

.reservation-layout.is-detail-view .rooms-panel {
    display: none;
}

.rooms-list-placeholder {
    display: none;
    margin-top: 24px;
    padding: 18px 20px;
    border: 1px dashed var(--escape-border-soft);
    border-radius: 12px;
    background: var(--escape-surface-soft);
    text-align: center;
}

.reservation-card.is-list-view-mode .rooms-list-placeholder {
    display: block;
}

.rooms-list-placeholder-title {
    font-size: 16px;
    font-weight: 800;
    color: var(--escape-primary);
    margin-bottom: 4px;
}

.rooms-list-placeholder-text {
    font-size: 13px;
    line-height: 1.5;
    color: var(--escape-text-muted);
}

.rooms-panel {
    grid-column: 1 / -1;
    width: 100%;
    text-align: left;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.rooms-panel-title {
    grid-column: 1 / -1;
    font-size: 18px;
    font-weight: 800;
    color: var(--escape-primary);
    margin-bottom: 4px;
    padding: 0 4px;
}

.rooms-group {
    display: contents;
}

.group-header {
    font-weight: 700;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 6px 8px;
    border-bottom: 1px solid #e1e5ed;
    margin-bottom: 12px;
    color: var(--escape-primary);
}

.chevron {
    font-size: 18px;
    color: var(--escape-text-soft);
}

.room-card {
    display: grid;
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 12px;
    padding: 12px;
    border: 1px solid var(--escape-border);
    border-radius: 10px;
    background: var(--escape-surface);
    margin-bottom: 0;
    min-width: 0;
    transition: border-color 0.2s, box-shadow 0.2s;
    cursor: pointer;
}

.room-card.wide {
    grid-template-columns: 110px minmax(0, 1fr);
}

.room-card:hover {
    border-color: #cdd4e3;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.05);
}

.room-card.active {
    border-color: var(--escape-primary);
    box-shadow: 0 10px 22px rgba(43, 45, 109, 0.15);
}

.room-thumb {
    background: #dfe3eb;
    border-radius: 8px;
    aspect-ratio: 4 / 3;
    min-height: 100%;
    width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
}

.room-meta {
    font-size: 12px;
    color: var(--escape-text-muted);
    text-align: left;
}

.room-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--escape-text);
    margin-bottom: 2px;
}

.room-next {
    margin: 4px 0 3px;
    font-weight: 600;
    font-size: 13px;
}

.room-desc {
    font-size: 12px;
    line-height: 1.4;
    color: var(--escape-text-muted);
    text-align: left;
    margin: 4px 0 2px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.room-date-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--escape-primary-soft);
    border: 1px solid var(--escape-border);
    border-radius: 6px;
    padding: 2px 4px;
    font-weight: 700;
    color: var(--escape-text);
    font-size: 13px;
    min-height: 24px;
    width: 100%;
    transition: background .15s ease, border-color .15s ease, color .15s ease;
}

.room-date-chip:hover {
    background: var(--escape-primary-soft-hover);
    border-color: var(--escape-primary-border);
    color: var(--escape-primary);
}

.room-dates {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(60px, 1fr));
    gap: 4px;
    margin-top: 4px;
}

.room-extra-line {
    margin-top: 5px;
    font-size: 13px;
    font-weight: 700;
    color: #334155;
    text-align: left;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.room-extra-sep {
    color: #94a3b8;
    margin: 0 4px;
}

.escape-field-error {
    display: block;
    width: 100%;
    margin-top: 6px;
    color: #d64541;
    font-size: 12px;
    font-weight: 600;
    text-align: left;
    justify-self: start;
    align-self: start;
}

.room-price {
    margin-top: 6px;
}

.room-people {
    display: flex;
    align-items: center;
    gap: 6px;
}

.last-minute {
    margin-top: 20px;
    border: 1px dashed #cfd6e6;
    border-radius: 10px;
    padding: 14px;
    background: #f8fafc;
    text-align: center;
    font-size: 13px;
}

.last-minute-title {
    font-weight: 700;
    margin-bottom: 6px;
}

.last-minute-text {
    margin-bottom: 10px;
    color: var(--escape-text-muted);
}

.slots-inline {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-left: 8px;
}

.slot-chip {
    background: var(--escape-primary-soft);
    border: 1px solid var(--escape-primary-border);
    border-radius: 6px;
    padding: 3px 8px;
    font-weight: 600;
    color: var(--escape-text);
}

.day-row {
    margin-bottom: 8px;
}

/* Week Strip */
#escape-week-strip {
    width: 100%;
    user-select: none;
}

.week-strip-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 4px 12px;
}

.week-strip-month-label {
    font-size: 14px;
    font-weight: 800;
    color: var(--escape-text);
    text-align: center;
    flex: 1;
    cursor: pointer;
    position: relative;
    transition: color 0.15s ease;
}

.week-strip-month-text {
    cursor: pointer;
    border-bottom: 1px dashed transparent;
    transition: color 0.15s ease, border-color 0.15s ease;
}

.week-strip-month-text:hover {
    color: var(--escape-primary);
    border-bottom-color: var(--escape-primary);
}

.week-strip-date-range {
    font-weight: 600;
    font-size: 12px;
    color: var(--escape-text-muted);
}

.week-month-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    margin-top: 6px;
    background: var(--escape-surface);
    border: 1px solid var(--escape-primary-border);
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    padding: 8px 0;
    min-width: 220px;
    max-height: 260px;
    overflow-y: auto;
}

.week-month-dropdown-item {
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 600;
    color: var(--escape-text);
    cursor: pointer;
    transition: background 0.12s ease;
    white-space: nowrap;
}

.week-month-dropdown-item:hover {
    background: var(--escape-primary-soft);
}

.week-month-dropdown-item.is-active {
    background: var(--escape-primary);
    color: #fff;
}

.week-month-dropdown-item.is-disabled {
    opacity: 0.35;
    cursor: not-allowed;
    pointer-events: none;
}

.week-strip-arrow {
    width: 34px;
    height: 34px;
    border: 1px solid var(--escape-primary-border);
    border-radius: 8px;
    background: var(--escape-surface);
    color: var(--escape-text);
    font-size: 22px;
    font-weight: 700;
    line-height: 1;
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: background 0.15s ease, border-color 0.15s ease;
    flex-shrink: 0;
}

.week-strip-arrow:hover {
    background: var(--escape-primary-soft);
    border-color: var(--escape-primary-border);
}

.week-strip-arrow:disabled {
    opacity: 0.35;
    cursor: not-allowed;
    pointer-events: none;
}

.week-strip-days {
    padding: 15px;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 6px;
    overflow: hidden;
}

.week-strip-days.slide-left .week-strip-day {
    animation: weekSlideInLeft 0.25s ease-out both;
}

.week-strip-days.slide-left .week-strip-day.is-disabled {
    animation-name: weekSlideInLeftDisabled;
}

.week-strip-days.slide-right .week-strip-day {
    animation: weekSlideInRight 0.25s ease-out both;
}

.week-strip-days.slide-right .week-strip-day.is-disabled {
    animation-name: weekSlideInRightDisabled;
}

.week-strip-days.slide-left .week-strip-day:nth-child(1) {
    animation-delay: 0ms;
}

.week-strip-days.slide-left .week-strip-day:nth-child(2) {
    animation-delay: 20ms;
}

.week-strip-days.slide-left .week-strip-day:nth-child(3) {
    animation-delay: 40ms;
}

.week-strip-days.slide-left .week-strip-day:nth-child(4) {
    animation-delay: 60ms;
}

.week-strip-days.slide-left .week-strip-day:nth-child(5) {
    animation-delay: 80ms;
}

.week-strip-days.slide-right .week-strip-day:nth-child(5) {
    animation-delay: 0ms;
}

.week-strip-days.slide-right .week-strip-day:nth-child(4) {
    animation-delay: 20ms;
}

.week-strip-days.slide-right .week-strip-day:nth-child(3) {
    animation-delay: 40ms;
}

.week-strip-days.slide-right .week-strip-day:nth-child(2) {
    animation-delay: 60ms;
}

.week-strip-days.slide-right .week-strip-day:nth-child(1) {
    animation-delay: 80ms;
}

@keyframes weekSlideInLeft {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes weekSlideInLeftDisabled {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 0.4;
        transform: translateX(0);
    }
}

@keyframes weekSlideInRight {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes weekSlideInRightDisabled {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 0.4;
        transform: translateX(0);
    }
}

.week-strip-day {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    padding: 15px;
    border: 1px solid var(--escape-primary-border);
    border-radius: 10px;
    background: var(--escape-surface);
    cursor: pointer;
    transition: background 0.15s ease, border-color 0.15s ease, transform 0.05s ease;
    text-align: center;
}

.week-strip-day:hover:not(.is-disabled) {
    background: var(--escape-primary-soft-hover);
    border-color: var(--escape-primary);
}

.week-strip-day.is-selected:hover {
    background: var(--escape-primary);
    border-color: var(--escape-primary);
}

.week-strip-day:active:not(.is-disabled) {
    transform: translateY(1px);
}

.week-strip-day.is-available {
    background: var(--escape-primary-soft);
    border-color: var(--escape-primary-border);
}

.week-strip-day.is-selected {
    background: var(--escape-primary);
    border-color: var(--escape-primary);
    color: #fff;
}

.week-strip-day.is-selected .week-day-name,
.week-strip-day.is-selected .week-day-number,
.week-strip-day.is-selected .week-day-price {
    color: #fff;
}

.week-strip-day.is-selected .week-day-price {
    color: rgba(255, 255, 255, 0.75);
}

.week-strip-day.is-disabled {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
}

.week-day-name {
    font-size: 9px;
    font-weight: 700;
    color: var(--escape-text-muted);
    text-transform: uppercase;
    line-height: 1;
}

.week-day-number {
    font-size: 16px;
    font-weight: 800;
    color: var(--escape-text);
    line-height: 1.05;
    margin-bottom: 2px;
}

.week-day-price {
    font-size: 15px;
    font-weight: 700;
    color: var(--escape-primary);
    line-height: 1;
    min-height: 14px;
}

@media (max-width: 768px) {
    .week-strip-days {
        gap: 3px;
    }

    .week-strip-day {
        padding: 15px 8px;
    }

    .week-day-number {
        font-size: 14px;
    }

    .week-day-name {
        font-size: 8px;
    }

    .week-day-price {
        font-size: 11px;
    }
}

.details-panel {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.details-toolbar {
    display: flex;
    justify-content: flex-start;
}

.rooms-back-btn {
    border: 0;
    background: var(--escape-primary-soft);
    color: var(--escape-primary);
    border-radius: 999px;
    font-size: 0;
    padding: 0;
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background .15s ease, color .15s ease;
}

.rooms-back-btn::before {
    content: '';
    display: block;
    width: 9px;
    height: 9px;
    border-left: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg) translate(1px, -1px);
}

.rooms-back-btn:hover {
    background: var(--escape-primary-soft-hover);
    color: var(--escape-text);
}

.room-hero {
    display: grid;
    grid-template-columns: 190px 1fr;
    gap: 18px;
    padding: 18px;
    border: 1px solid var(--escape-border);
    border-radius: 12px;
    background: var(--escape-surface-soft);
}

.hero-thumb {
    background: #d6dae4;
    border-radius: 10px;
    min-height: 100%;
    aspect-ratio: 4 / 3;
    width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
}

.hero-content {
    text-align: left;
    align-self: center;
}

.hero-name {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 6px;
    color: var(--escape-text);
    text-align: left;
}

.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 10px;
}

.tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.tag-level {
    background: var(--escape-primary-soft);
    color: var(--escape-primary);
}

.tag-style {
    background: var(--escape-primary-soft);
    color: var(--escape-primary);
}

.hero-desc {
    margin: 0;
    color: var(--escape-text-muted);
    line-height: 1.6;
    text-align: left;
    white-space: pre-line;
}

.selection-progress {
    border: 1px solid var(--escape-border-soft);
    border-radius: 12px;
    padding: 14px 16px;
    background: linear-gradient(135deg, var(--escape-surface-soft) 0%, var(--escape-primary-soft) 100%);
}

.selection-progress-title {
    font-size: 13px;
    font-weight: 800;
    color: var(--escape-primary);
    margin-bottom: 10px;
    text-align: left;
}

.selection-progress-items {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.selection-pill {
    border-radius: 10px;
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid var(--escape-border-soft);
    display: grid;
    gap: 4px;
    min-width: 0;
}

.selection-pill.is-current {
    border-color: var(--escape-primary);
    box-shadow: 0 8px 18px rgba(43, 45, 109, 0.10);
}

.selection-pill.is-complete {
    background: var(--escape-primary-soft);
    border-color: var(--escape-primary-border);
}

.selection-pill-label {
    font-size: 11px;
    font-weight: 800;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: .04em;
    text-align: left;
}

.selection-pill-value {
    font-size: 13px;
    font-weight: 700;
    color: var(--escape-text);
    text-align: left;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.selection-pill-value.is-empty {
    color: #94a3b8;
}

.pickers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 14px;
}

.picker-card {
    border: 1px solid var(--escape-border);
    border-radius: 12px;
    background: var(--escape-surface);
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-height: 150px;
}

.picker-card.has-single-slot {
    min-height: 0;
}

.picker-heading,
.guest-form-heading {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    position: relative;
    min-height: 34px;
}

.picker-card.is-locked {
    display: none;
}

.picker-card.is-revealed {
    animation: slideUp .35s ease both;
}

.picker-card.is-step-hidden,
.guest-form.is-step-hidden {
    display: none !important;
}

.picker-card.is-current-step,
.guest-form.is-current-step {
    animation: slideUp .35s ease both;
}

.picker-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--escape-text);
}

.picker-heading .picker-title,
.guest-form-heading .form-title {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    margin: 0;
    width: max-content;
    max-width: calc(100% - 140px);
}

.step-back-btn {
    border: 0;
    background: var(--escape-primary-soft);
    color: var(--escape-text-muted);
    border-radius: 999px;
    font-size: 0;
    padding: 0;
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background .15s ease, color .15s ease;
    margin-left: 0;
    position: relative;
    z-index: 1;
}

.step-back-btn::before {
    content: '';
    display: block;
    width: 9px;
    height: 9px;
    border-left: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg) translate(1px, -1px);
}

.step-back-btn:hover {
    background: var(--escape-primary-soft-hover);
    color: var(--escape-text);
}

.picker-placeholder {
    flex: 1;
    background: #eef1f6;
    border-radius: 10px;
    display: grid;
    place-items: center;
    color: var(--escape-text-soft);
    font-weight: 700;
}

#slots-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-content: flex-start;
    justify-content: stretch;
    gap: 8px;
    padding: 12px;
    place-items: unset;
    font-weight: 400;
}

#slots-list.has-single-slot {
    grid-template-columns: minmax(220px, 320px);
    justify-content: start;
    flex: 0 0 auto;
}

#slots-list.is-empty {
    display: grid;
    grid-template-columns: 1fr;
    align-content: center;
    justify-items: center;
    text-align: center;
}

#slots-list .muted {
    width: 100%;
    color: var(--escape-text-soft);
    font-weight: 700;
    align-self: center;
    text-align: center;
}

.slot-option {
    border: 1px solid var(--escape-primary-border);
    background: var(--escape-primary-soft);
    color: var(--escape-text);
    border-radius: 10px;
    padding: 8px 10px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: background .15s ease, border-color .15s ease, transform .05s ease;
    width: 100%;
    min-width: 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.slot-price {
    font-size: 14px;
    font-weight: 700;
    color: var(--escape-text-soft);
}

.slot-option.active .slot-price {
    color: rgba(255, 255, 255, 0.75);
}

.slot-option:hover {
    background: var(--escape-primary-soft-hover);
    border-color: var(--escape-primary-border);
}

.slot-option:active {
    transform: translateY(1px);
}

.slot-option.active {
    background: var(--escape-primary);
    border-color: var(--escape-primary);
    color: #fff;
    box-shadow: 0 6px 14px rgba(43, 45, 109, .18);
}

#tickets-list {
    display: grid;
    grid-template-columns: 1fr;
    align-content: flex-start;
    gap: 8px;
    padding: 12px;
    place-items: unset;
    font-weight: 400;
}

#tickets-list.is-empty {
    align-content: center;
    justify-items: center;
    text-align: center;
}

.ticket-option {
    border: 1.5px solid var(--escape-primary-border);
    background: var(--escape-primary-soft);
    border-radius: 12px;
    padding: 14px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    width: 100%;
    text-align: left;
    cursor: pointer;
    transition: background .15s ease, border-color .15s ease, box-shadow .15s ease, opacity .15s ease;
}

.ticket-option:hover {
    background: var(--escape-primary-soft-hover);
    border-color: var(--escape-primary);
}

.ticket-option.active {
    background: var(--escape-primary);
    border-color: var(--escape-primary);
    box-shadow: 0 6px 18px rgba(43, 45, 109, .22);
}

#tickets-list.has-selection .ticket-option:not(.active) {
    opacity: .45;
}

.ticket-option-left {
    flex: 1;
    min-width: 0;
}

.ticket-option-name {
    color: var(--escape-text);
    font-weight: 700;
    font-size: 14px;
    text-align: left;
    line-height: 1.3;
}

.ticket-option.active .ticket-option-name {
    color: #fff;
}

.ticket-option-right {
    text-align: right;
    flex-shrink: 0;
}

.ticket-price-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--escape-text-muted);
    margin-bottom: 3px;
}

.ticket-option.active .ticket-price-label {
    color: rgba(255, 255, 255, 0.6);
}

.ticket-price-display {
    font-size: 14px;
    font-weight: 800;
    color: var(--escape-primary);
    line-height: 1;
    white-space: nowrap;
}

.ticket-option.active .ticket-price-display {
    color: #fff;
}

.ticket-price-sep {
    font-weight: 400;
    color: var(--escape-primary-border);
    font-size: 14px;
}

.ticket-option.active .ticket-price-sep {
    color: rgba(255, 255, 255, 0.4);
}

.ticket-continue-btn {
    border: 0;
    border-radius: 10px;
    background: var(--escape-primary);
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    padding: 12px 14px;
    transition: opacity .15s ease, transform .05s ease;
}

.ticket-continue-btn:disabled {
    opacity: .45;
    cursor: not-allowed;
}

.ticket-continue-btn:not(:disabled):active {
    transform: translateY(1px);
}

#tickets-list.has-active-ticket {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

#tickets-list.has-active-ticket .ticket-option:not(.active) {
    display: none;
    max-height: 0;
    opacity: 0;
    padding-top: 0;
    padding-bottom: 0;
    pointer-events: none;
    overflow: hidden;
    border-width: 0;
    margin: 0;
}

#tickets-list .ticket-option {
    transition: max-height .25s ease, opacity .2s ease, padding .2s ease, border-width .2s ease;
    max-height: 120px;
}

.ticket-payment-choice {
    margin-top: 16px;
    border: 1.5px solid var(--escape-primary-border);
    border-radius: 14px;
    padding: 16px;
    background: var(--escape-surface);
}

.payment-choice-ticket-summary {
    margin-bottom: 14px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--escape-border);
}

.payment-choice-ticket-name {
    font-size: 14px;
    font-weight: 800;
    color: var(--escape-text);
    line-height: 1.2;
}

.payment-choice-ticket-meta {
    font-size: 14px;
    color: var(--escape-text-muted);
    margin-top: 3px;
}

.payment-choice-title {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--escape-text-muted);
    margin-bottom: 10px;
}

.payment-choice-options {
    display: flex;
    gap: 10px;
}

.payment-choice-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    border: 1.5px solid var(--escape-primary-border);
    background: var(--escape-primary-soft);
    border-radius: 12px;
    padding: 14px 12px;
    cursor: pointer;
    transition: background .15s ease, border-color .15s ease, box-shadow .15s ease;
}

.payment-choice-btn:hover {
    background: var(--escape-primary-soft-hover);
}

.payment-choice-btn:active {
    background: var(--escape-primary);
    border-color: var(--escape-primary);
    color: #fff;
}

.payment-choice-label {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--escape-text-muted);
}

.payment-choice-amount {
    font-size: 20px;
    font-weight: 800;
    color: var(--escape-primary);
    line-height: 1;
}

.guest-form {
    border: 1px solid var(--escape-border);
    border-radius: 12px;
    padding: 16px 16px 12px;
    background: var(--escape-surface);
}

.guest-form.is-hidden {
    display: none;
}

.guest-form.is-revealed {
    animation: slideUp .35s ease both;
}

.form-title {
    font-size: 15px;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--escape-text);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    align-items: start;
}

.form-grid .form-control {
    height: 42px;
}

.field-group {
    display: grid;
    grid-template-columns: 1fr;
    gap: 6px;
}

.field-group--wide {
    grid-column: 1 / -1;
}

.field-group label {
    margin: 0;
    font-size: 14px;
    font-weight: 700;
    color: var(--escape-text-muted);
    text-align: left;
}

.card-check-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    align-items: center;
}

.card-status {
    min-height: 18px;
    font-size: 12px;
    font-weight: 700;
    text-align: left;
}

.card-status.is-success {
    color: #0f766e;
}

.card-status.is-error {
    color: #b91c1c;
}

.card-status.is-loading {
    color: #475569;
}

.form-hint {
    margin-top: 10px;
    font-size: 12px;
    color: var(--escape-text-soft);
}


/* Summary step */
.summary-step {
    border: 1px solid var(--escape-border);
    border-radius: 12px;
    padding: 18px 20px 20px;
    background: var(--escape-surface);
}

.summary-step.is-hidden {
    display: none;
}

.summary-step.is-step-hidden {
    display: none !important;
}

.summary-step.is-current-step {
    animation: slideUp .35s ease both;
}

.summary-rows {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1px solid var(--escape-border);
    border-radius: 10px;
    overflow: hidden;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 11px 14px;
    border-bottom: 1px solid var(--escape-border);
    font-size: 14px;
}

.summary-row:last-child {
    border-bottom: none;
}

.summary-row-label {
    font-weight: 600;
    color: var(--escape-text-muted);
    flex-shrink: 0;
    font-size: 14px;
}

.summary-row-value {
    font-weight: 700;
    color: var(--escape-text);
    text-align: right;
    word-break: break-word;
}

.summary-row--total {
    background: var(--escape-primary-soft);
}

.summary-row--total .summary-row-label {
    font-size: 14px;
    font-weight: 800;
    color: var(--escape-primary);
}

.summary-row--total .summary-row-value {
    font-size: 16px;
    font-weight: 800;
    color: var(--escape-primary);
}

.summary-row-label--icon {
    display: flex;
    align-items: center;
    color: var(--escape-text-soft);
    line-height: 1;
}

.summary-step-actions {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.summary-regulamin {
    padding: 0;
    background: none;
    border: none;
}

.summary-regulamin-label {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    cursor: pointer;
    user-select: none;
}

.summary-regulamin-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--escape-text-muted);
    line-height: 1.4;
}

.summary-regulamin-text a {
    color: var(--escape-primary);
    text-decoration: underline;
}

.summary-step .form-hint {
    text-align: center;
    color: #b0b7c3;
    font-size: 11px;
    margin-top: 12px;
}

.summary-step-actions #escape-submit-btn {
    display: block;
    width: 100%;
    height: 54px;
    font-size: 15px;
    font-weight: 800;
    float: none !important;
    background: #15284f;
    border-radius: 12px;
    border: 0;
    transition: opacity .15s ease;
}

.summary-step-actions #escape-submit-btn:disabled {
    opacity: .45;
    cursor: not-allowed;
}

#escape-open-summary {
    display: block;
    margin-left: auto;
    margin-top: 14px;
}

.guest-form .guest-form-heading {
    margin-bottom: 20px;
}

/* Animations */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.slot-option {
    animation: fadeIn .25s ease both;
}

.ticket-option {
    animation: slideUp .3s ease both;
}

.room-card {
    animation: slideUp .4s ease both;
}

.rooms-group:nth-child(2) .room-card {
    animation-delay: .08s;
}

.rooms-group:nth-child(3) .room-card {
    animation-delay: .16s;
}

.room-hero {
    animation: fadeIn .5s ease both;
}

.room-hero.is-hero-hidden {
    display: none;
}

.details-toolbar.is-toolbar-hidden {
    display: none;
}

.escape-breadcrumbs {
    display: none;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px;
    padding: 10px 14px;
    border: 1px solid var(--escape-border);
    border-radius: 10px;
}

.escape-breadcrumbs.is-visible {
    display: flex;
    animation: fadeIn .25s ease both;
}

.escape-crumb {
    background: none;
    border: none;
    padding: 4px 6px;
    font-size: 15px;
    font-weight: 800;
    color: var(--escape-primary);
    border-radius: 6px;
    cursor: pointer;
    transition: background .15s ease, color .15s ease;
    max-width: 220px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.3;
}

.escape-crumb:hover {
    background: var(--escape-primary-soft-hover);
    color: var(--escape-text);
}

.escape-crumb-sep {
    font-size: 18px;
    font-weight: 400;
    color: var(--escape-text-soft);
    flex-shrink: 0;
    line-height: 1;
    padding: 0 2px;
}

.escape-crumb-cond {
    display: none;
}

.escape-crumb-cond.is-crumb-visible {
    display: inline-flex;
}

/* Mobile fallback */
@media (max-width: 991px) {
    .reservations .reservation-content {
        width: 90%;
        margin: -70px auto 40px;
    }

    .reservation-layout {
        grid-template-columns: 1fr;
    }

    .rooms-panel {
        order: 1;
    }

    .details-panel {
        order: 2;
    }

    #escape-open-guest-form {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .rooms-list-placeholder {
        margin-top: 18px;
        padding: 16px 14px;
    }

    .rooms-panel {
        grid-template-columns: minmax(0, 1fr);
    }

    .room-hero {
        grid-template-columns: 1fr;
    }

    .hero-thumb {
        min-height: 0;
        max-height: none;
    }

    .reservations .reservation-header {
        padding: 30px 15px 110px;
    }

    .reservations .reservation-content {
        width: 100%;
        margin: -60px auto 30px;
        padding: 0 10px;
    }

    .reservations .reservation-card {
        padding: 24px 20px;
        border-radius: 10px;
    }

    .selection-progress {
        padding: 12px;
    }

    .selection-progress-items {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .selection-pill {
        padding: 10px;
    }

    .selection-pill-value {
        white-space: normal;
    }

    .pickers {
        grid-template-columns: 1fr;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .field-group--wide {
        grid-column: auto;
    }

    .card-check-row {
        grid-template-columns: 1fr;
    }

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

    #slots-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .picker-heading,
    .guest-form-heading {
        align-items: center;
        flex-direction: row;
    }

    .picker-heading .picker-title,
    .guest-form-heading .form-title {
        max-width: calc(100% - 120px);
    }

    .step-back-btn,
    .ticket-continue-btn {
        text-align: center;
    }

    .ticket-continue-btn {
        width: 100%;
    }
}


@media (max-width: 600px) {
    .summary-grid {
        grid-template-columns: 1fr;
    }

    .summary-contact-strip {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    .summary-contact-sep {
        display: none;
    }
}

@media (max-width: 420px) {
    .reservations .reservation-card {
        padding: 20px 14px;
    }

    .room-card,
    .room-card.wide {
        grid-template-columns: 84px minmax(0, 1fr);
        gap: 10px;
        padding: 10px;
    }

    .room-name {
        font-size: 16px;
    }

    .room-extra-line {
        white-space: normal;
    }

    .room-dates {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}
