/**
 * Reservation Page Styles — Tatilbudur-style Redesign
 * Single page form + confirmation
 *
 * @package TatilTour
 */

/* ═══ PAGE LAYOUT ═══ */
.tt-reservation-page {
    min-height: 60vh;
    padding: 30px 0 80px;
    background: #f5f6f8;
}
.tt-reservation-page .tt-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ═══ PROGRESS BAR ═══ */
.tt-res-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 32px;
    padding: 0 20px;
}
.tt-res-progress__step {
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0.35;
    transition: opacity 0.3s;
}
.tt-res-progress__step.active,
.tt-res-progress__step.done {
    opacity: 1;
}
.tt-res-progress__num {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #ccc;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    transition: background 0.3s;
}
.tt-res-progress__step.active .tt-res-progress__num {
    background: var(--tt-primary, #fd5c02);
}
.tt-res-progress__step.done .tt-res-progress__num {
    background: #22c55e;
}
.tt-res-progress__label {
    font-size: 14px;
    font-weight: 600;
    color: var(--tt-dark, #3e3837);
}
.tt-res-progress__line {
    flex: 0 0 80px;
    height: 2px;
    background: #ddd;
    margin: 0 16px;
}

/* ═══ MAIN GRID ═══ */
.tt-res-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 28px;
    align-items: start;
}
.tt-res-main {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* ═══ ITEM CARD (Top Info) ═══ */
.tt-res-item-card {
    display: flex;
    gap: 18px;
    padding: 18px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 1px 8px rgba(0,0,0,0.06);
    border: 1px solid #eee;
}
.tt-res-item-card__img {
    flex: 0 0 180px;
    border-radius: 8px;
    overflow: hidden;
}
.tt-res-item-card__img img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    display: block;
}
.tt-res-item-card__info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
    justify-content: center;
}
.tt-res-item-card__type {
    font-size: 11px;
    font-weight: 700;
    color: var(--tt-primary, #fd5c02);
    text-transform: uppercase;
    letter-spacing: 0.8px;
}
.tt-res-item-card__type i { margin-right: 4px; font-size: 10px; }
.tt-res-item-card__title {
    font-size: 18px;
    font-weight: 700;
    margin: 2px 0;
    color: var(--tt-dark, #3e3837);
    line-height: 1.3;
}
.tt-res-item-card__title a { color: inherit; text-decoration: none; }
.tt-res-item-card__title a:hover { color: var(--tt-primary, #fd5c02); }
.tt-res-item-card__title i { font-size: 11px; opacity: 0.3; margin-left: 6px; }
.tt-res-item-card__stars { color: #f59e0b; font-size: 13px; letter-spacing: 1px; }
.tt-res-item-card__meta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 4px;
}
.tt-res-item-card__meta span {
    font-size: 12px;
    color: #888;
}
.tt-res-item-card__meta span i {
    margin-right: 4px;
    color: var(--tt-primary, #fd5c02);
    font-size: 11px;
}

/* ═══ SECTION CARDS ═══ */
.tt-res-section {
    background: #fff;
    border-radius: 12px;
    padding: 22px;
    box-shadow: 0 1px 8px rgba(0,0,0,0.06);
    border: 1px solid #eee;
}
.tt-res-section__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid #f0f0f0;
}
.tt-res-section__header h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--tt-dark, #3e3837);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}
.tt-res-section__header h3 i {
    color: var(--tt-primary, #fd5c02);
    font-size: 17px;
}
.tt-res-section__badge {
    font-size: 11px;
    font-weight: 600;
    color: var(--tt-primary, #fd5c02);
    background: rgba(253,92,2,0.08);
    padding: 4px 10px;
    border-radius: 20px;
}

/* ═══ DATE & GUEST SELECTOR ═══ */
.tt-res-date-guest {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.tt-res-date-guest__dates {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 12px;
    align-items: end;
}
.tt-res-date-guest__dates--single {
    grid-template-columns: 1fr;
    max-width: 280px;
}
.tt-res-nights-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--tt-primary, #fd5c02);
    color: #fff;
    border-radius: 10px;
    padding: 8px 14px;
    min-width: 60px;
    text-align: center;
}
.tt-res-nights-badge i { font-size: 14px; margin-bottom: 2px; }
.tt-res-nights-badge span { font-size: 22px; font-weight: 800; line-height: 1; }
.tt-res-nights-badge small { font-size: 10px; font-weight: 600; text-transform: uppercase; }

.tt-res-date-guest__guests {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}
.tt-res-guest-counter label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #666;
    margin-bottom: 6px;
}
.tt-res-guest-counter label small {
    color: #aaa;
    font-weight: 400;
}

/* ═══ FORM FIELDS ═══ */
.tt-res-field label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #666;
    margin-bottom: 6px;
}
.tt-res-field input,
.tt-res-field select,
.tt-res-field textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1.5px solid #e2e5ea;
    border-radius: 8px;
    font-size: 14px;
    color: var(--tt-dark, #3e3837);
    background: #fff;
    transition: border-color 0.2s, box-shadow 0.2s;
    box-sizing: border-box;
    font-family: inherit;
}
.tt-res-field input:focus,
.tt-res-field select:focus,
.tt-res-field textarea:focus {
    border-color: var(--tt-primary, #fd5c02);
    box-shadow: 0 0 0 3px rgba(253,92,2,0.08);
    outline: none;
}
.tt-res-field input.tt-field--error,
.tt-res-field select.tt-field--error {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239,68,68,0.08);
}

/* ═══ COUNTER ═══ */
.tt-res-counter {
    display: flex;
    align-items: center;
    border: 1.5px solid #e2e5ea;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
}
.tt-res-counter__btn {
    width: 38px;
    height: 38px;
    border: none;
    background: #f8f9fa;
    color: var(--tt-dark, #3e3837);
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.tt-res-counter__btn:hover {
    background: var(--tt-primary, #fd5c02);
    color: #fff;
}
.tt-res-counter input {
    flex: 1;
    text-align: center;
    border: none;
    font-size: 15px;
    font-weight: 700;
    padding: 6px 0;
    -moz-appearance: textfield;
    border-radius: 0;
    color: var(--tt-dark, #3e3837);
}
.tt-res-counter input::-webkit-inner-spin-button,
.tt-res-counter input::-webkit-outer-spin-button {
    -webkit-appearance: none;
}

/* ═══ PER-PERSON CARDS ═══ */
.tt-res-person {
    border: 1px solid #e8eaee;
    border-radius: 10px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: box-shadow 0.2s;
}
.tt-res-person:hover {
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.tt-res-person:last-child {
    margin-bottom: 0;
}
.tt-res-person__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: #f8f9fb;
    border-bottom: 1px solid #e8eaee;
}
.tt-res-person__num {
    font-size: 14px;
    font-weight: 700;
    color: var(--tt-dark, #3e3837);
}
.tt-res-person__tag {
    font-size: 11px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 20px;
    background: #f0f0f0;
    color: #888;
}
.tt-res-person__tag--contact {
    background: rgba(253,92,2,0.08);
    color: var(--tt-primary, #fd5c02);
}
.tt-res-person__tag--child {
    background: rgba(59,130,246,0.08);
    color: #3b82f6;
}
.tt-res-person__fields {
    padding: 16px;
}
.tt-res-person__row {
    display: grid;
    gap: 12px;
    margin-bottom: 12px;
}
.tt-res-person__row:last-child {
    margin-bottom: 0;
}
.tt-res-person__row--3 {
    grid-template-columns: 1fr 1fr 1fr;
}
.tt-res-person__row--2 {
    grid-template-columns: 1fr 1fr;
}

/* ═══ TOGGLE SECTIONS ═══ */
.tt-res-toggles {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.tt-res-toggle {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 1px 8px rgba(0,0,0,0.06);
    border: 1px solid #eee;
    overflow: hidden;
}
.tt-res-toggle__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    cursor: pointer;
    transition: background 0.2s;
}
.tt-res-toggle__header:hover {
    background: #fafbfc;
}
.tt-res-toggle__info {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 1;
}
.tt-res-toggle__info > i {
    font-size: 20px;
    color: var(--tt-primary, #fd5c02);
    width: 24px;
    text-align: center;
}
.tt-res-toggle__info strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--tt-dark, #3e3837);
    margin-bottom: 2px;
}
.tt-res-toggle__info small {
    display: block;
    font-size: 12px;
    color: #999;
}
.tt-res-toggle__arrow {
    font-size: 13px;
    color: #bbb;
    transition: transform 0.3s;
}
.tt-res-toggle.open .tt-res-toggle__arrow {
    transform: rotate(180deg);
}
.tt-res-toggle__body {
    padding: 0 20px 20px;
    border-top: 1px solid #f0f0f0;
    padding-top: 16px;
}

/* Toggle Switch */
.tt-res-switch {
    position: relative;
    display: inline-block;
    width: 46px;
    height: 26px;
    flex-shrink: 0;
}
.tt-res-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}
.tt-res-switch__slider {
    position: absolute;
    cursor: pointer;
    top: 0; left: 0; right: 0; bottom: 0;
    background: #ddd;
    transition: 0.3s;
    border-radius: 26px;
}
.tt-res-switch__slider::before {
    position: absolute;
    content: '';
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background: #fff;
    transition: 0.3s;
    border-radius: 50%;
}
.tt-res-switch input:checked + .tt-res-switch__slider {
    background: var(--tt-primary, #fd5c02);
}
.tt-res-switch input:checked + .tt-res-switch__slider::before {
    transform: translateX(20px);
}

/* Radio Options */
.tt-res-transfer-options {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.tt-res-radio {
    cursor: pointer;
}
.tt-res-radio input {
    display: none;
}
.tt-res-radio span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border: 1.5px solid #e2e5ea;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #666;
    transition: all 0.2s;
}
.tt-res-radio span i { font-size: 13px; }
.tt-res-radio input:checked + span {
    border-color: var(--tt-primary, #fd5c02);
    background: rgba(253,92,2,0.05);
    color: var(--tt-primary, #fd5c02);
}

/* ═══ TERMS ═══ */
.tt-res-terms-section {
    background: #fff;
    border-radius: 12px;
    padding: 18px 22px;
    box-shadow: 0 1px 8px rgba(0,0,0,0.06);
    border: 1px solid #eee;
}
.tt-res-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 13px;
    color: #555;
}
.tt-res-checkbox input {
    width: 18px;
    height: 18px;
    accent-color: var(--tt-primary, #fd5c02);
    flex-shrink: 0;
    margin-top: 1px;
}
.tt-res-checkbox__mark { display: none; }

/* ═══ MOBILE SUBMIT ═══ */
.tt-res-mobile-submit {
    display: none;
    background: #fff;
    border-radius: 12px;
    padding: 16px 20px;
    box-shadow: 0 1px 8px rgba(0,0,0,0.06);
    border: 1px solid #eee;
    align-items: center;
    gap: 16px;
}
.tt-res-mobile-submit__price {
    display: flex;
    flex-direction: column;
}
.tt-res-mobile-submit__price small {
    font-size: 11px;
    color: #999;
    font-weight: 600;
}
.tt-res-mobile-submit__price strong {
    font-size: 22px;
    font-weight: 800;
    color: var(--tt-primary, #fd5c02);
}
.tt-res-mobile-submit .tt-res-btn {
    flex: 1;
}

/* ═══ SIDEBAR ═══ */
.tt-res-sidebar {
    align-self: stretch; /* B35 fix: stretch sidebar to full grid row height so sticky works */
}
.tt-res-sidebar__sticky {
    position: sticky;
    top: 90px;
}
.tt-res-sidebar-card {
    background: #fff;
    border-radius: 12px;
    padding: 22px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.08);
    border: 1px solid #eee;
}
.tt-res-sidebar-card__heading {
    font-size: 15px;
    font-weight: 700;
    color: var(--tt-dark, #3e3837);
    margin: 0 0 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid #f0f0f0;
}

/* Sidebar Item */
.tt-res-sidebar-item {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}
.tt-res-sidebar-item__img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}
.tt-res-sidebar-item__info {
    flex: 1;
}
.tt-res-sidebar-item__info strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--tt-dark, #3e3837);
    margin-bottom: 3px;
    line-height: 1.3;
}
.tt-res-sidebar-item__stars {
    color: #f59e0b;
    font-size: 11px;
    letter-spacing: 1px;
    margin-bottom: 2px;
}
.tt-res-sidebar-item__info small {
    font-size: 12px;
    color: #999;
}
.tt-res-sidebar-item__info small i { margin-right: 3px; }

/* Sidebar Info */
.tt-res-sidebar-info {
    border-top: 1px solid #f0f0f0;
    padding-top: 12px;
    margin-bottom: 14px;
}
.tt-res-sidebar-info__row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 7px 0;
    font-size: 13px;
    color: #555;
}
.tt-res-sidebar-info__row i {
    width: 16px;
    text-align: center;
    color: var(--tt-primary, #fd5c02);
    font-size: 13px;
}
.tt-res-sidebar-info__placeholder {
    color: #bbb;
    font-style: italic;
}

/* Sidebar Amenities */
.tt-res-sidebar-amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    padding: 12px 0;
    border-top: 1px solid #f0f0f0;
    margin-bottom: 12px;
}
.tt-res-sidebar-amenity {
    font-size: 11px;
    color: #666;
    background: #f5f6f8;
    padding: 4px 8px;
    border-radius: 4px;
    white-space: nowrap;
}
.tt-res-sidebar-amenity i {
    margin-right: 4px;
    color: var(--tt-primary, #fd5c02);
    font-size: 10px;
}

/* Sidebar Price */
.tt-res-sidebar-price {
    border-top: 1px solid #f0f0f0;
    padding-top: 12px;
    margin-bottom: 16px;
}
.tt-res-sidebar-price__list {
    min-height: 40px;
}
.tt-res-sidebar-price__loading {
    text-align: center;
    padding: 16px;
    color: #ccc;
    font-size: 20px;
}
.tt-res-sidebar-price__campaign {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: #fff;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 12px;
}
.tt-res-sidebar-price__campaign i {
    font-size: 14px;
}
.tt-res-sidebar-price__row--discount {
    color: #27ae60;
    font-weight: 600;
}
.tt-res-sidebar-price__row--discount span:last-child {
    color: #27ae60;
}
.tt-res-sidebar-price__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
    font-size: 13px;
    color: #666;
}
.tt-res-sidebar-price__row span:last-child {
    font-weight: 600;
    color: var(--tt-dark, #3e3837);
}
.tt-res-sidebar-price__total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0 4px;
    margin-top: 8px;
    border-top: 2px solid var(--tt-primary, #fd5c02);
}
.tt-res-sidebar-price__total span {
    font-size: 13px;
    font-weight: 700;
    color: #555;
    text-transform: uppercase;
}
.tt-res-sidebar-price__total strong {
    font-size: 24px;
    font-weight: 800;
    color: var(--tt-primary, #fd5c02);
}

/* Sidebar Trust */
.tt-res-sidebar-trust {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 12px;
    padding-top: 10px;
    border-top: 1px solid #f0f0f0;
}
.tt-res-sidebar-trust span {
    font-size: 11px;
    color: #22c55e;
    font-weight: 600;
}
.tt-res-sidebar-trust span i { margin-right: 4px; }

/* ═══ BUTTONS ═══ */
.tt-res-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.25s;
    text-decoration: none;
    font-family: inherit;
}
.tt-res-btn--primary {
    background: var(--tt-primary, #fd5c02);
    color: #fff;
    border-color: var(--tt-primary, #fd5c02);
}
.tt-res-btn--primary:hover {
    background: #e04d00;
    border-color: #e04d00;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(253,92,2,0.3);
}
.tt-res-btn--outline {
    background: transparent;
    color: var(--tt-dark, #3e3837);
    border-color: #ddd;
}
.tt-res-btn--outline:hover {
    border-color: var(--tt-primary, #fd5c02);
    color: var(--tt-primary, #fd5c02);
}
.tt-res-btn--full {
    width: 100%;
}
.tt-res-btn--lg {
    padding: 14px 28px;
    font-size: 16px;
}
.tt-res-btn--loading {
    opacity: 0.7;
    pointer-events: none;
}

/* ═══ CONFIRMATION ═══ */
.tt-res-confirmation {
    text-align: center;
    padding: 60px 40px;
    background: #fff;
    border-radius: 16px;
    max-width: 560px;
    margin: 0 auto;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}
.tt-res-confirmation__icon {
    font-size: 64px;
    color: #22c55e;
    margin-bottom: 16px;
    animation: ttResScaleIn 0.5s ease;
}
@keyframes ttResScaleIn {
    0% { transform: scale(0); opacity: 0; }
    60% { transform: scale(1.2); }
    100% { transform: scale(1); opacity: 1; }
}
.tt-res-confirmation h2 {
    font-size: 24px;
    font-weight: 800;
    color: var(--tt-dark, #3e3837);
    margin: 0 0 8px;
}
.tt-res-confirmation__msg {
    font-size: 14px;
    color: #777;
    margin: 0 0 32px;
}
.tt-res-confirmation__details {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 32px;
    text-align: left;
}
.tt-res-confirmation__row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    font-size: 14px;
}
.tt-res-confirmation__row:last-child { border-bottom: none; }
.tt-res-confirmation__row span { color: #777; }
.tt-res-confirmation__row strong { color: var(--tt-dark, #3e3837); }
.tt-res-confirmation__row--total strong {
    color: var(--tt-primary, #fd5c02);
    font-size: 18px;
}
/* Confirmation Pay Button */
.tt-res-confirmation__pay {
    text-align: center;
    margin-top: 28px;
    padding: 24px;
    background: linear-gradient(135deg, #fff7ed, #fff);
    border: 2px dashed var(--tt-primary, #fd5c02);
    border-radius: 14px;
}

.tt-res-btn--pay {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    background: var(--tt-primary, #fd5c02);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(253, 92, 2, 0.3);
}

.tt-res-btn--pay:hover {
    background: #e55200;
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(253, 92, 2, 0.4);
    color: #fff;
}

.tt-res-btn--pay i {
    font-size: 1.2rem;
}

.tt-res-confirmation__pay-note {
    margin: 14px 0 0;
    font-size: 0.85rem;
    color: #999;
}

.tt-res-confirmation__pay-note i {
    color: var(--tt-primary, #fd5c02);
    margin-right: 4px;
}

.tt-res-confirmation__actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ═══ EMPTY STATE ═══ */
.tt-res-empty {
    text-align: center;
    padding: 80px 40px;
    background: #fff;
    border-radius: 16px;
    max-width: 480px;
    margin: 40px auto;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.tt-res-empty__icon { font-size: 56px; color: #ddd; margin-bottom: 16px; }
.tt-res-empty h2 { font-size: 20px; color: var(--tt-dark, #3e3837); margin: 0 0 8px; }
.tt-res-empty p { color: #777; font-size: 14px; margin: 0 0 24px; }

/* ═══ ERROR MESSAGE ═══ */
.tt-res-error {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #dc2626;
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 500;
}
.tt-res-error i { margin-right: 6px; }

/* ═══ ANIMATIONS ═══ */
@keyframes spin {
    to { transform: rotate(360deg); }
}
.fa-spin { animation: spin 1s linear infinite; }

/* ═══ RESPONSIVE ═══ */
@media (max-width: 1024px) {
    .tt-res-grid {
        grid-template-columns: 1fr 340px;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .tt-reservation-page { padding: 16px 0 40px; }
    .tt-res-progress__label { display: none; }
    .tt-res-progress__line { flex: 0 0 40px; margin: 0 8px; }

    .tt-res-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .tt-res-sidebar {
        order: -1;
    }
    .tt-res-sidebar__sticky {
        position: static;
    }
    /* Hide desktop submit on mobile */
    .tt-res-sidebar-card > #ttResSubmit { display: none; }
    .tt-res-mobile-submit { display: flex; }

    .tt-res-item-card {
        flex-direction: column;
    }
    .tt-res-item-card__img {
        flex: none;
        width: 100%;
    }
    .tt-res-item-card__img img {
        height: 160px;
        width: 100%;
    }

    .tt-res-date-guest__dates {
        grid-template-columns: 1fr 1fr;
    }
    .tt-res-nights-badge {
        grid-column: 1 / -1;
        flex-direction: row;
        gap: 6px;
        justify-content: center;
        padding: 6px 14px;
    }

    .tt-res-date-guest__guests {
        grid-template-columns: repeat(3, 1fr);
    }

    .tt-res-person__row--3 {
        grid-template-columns: 1fr 1fr;
    }

    .tt-res-transfer-options {
        flex-direction: column;
    }

    .tt-res-confirmation { padding: 40px 24px; }
    .tt-res-confirmation__icon { font-size: 48px; }
}

@media (max-width: 480px) {
    .tt-res-date-guest__guests {
        grid-template-columns: 1fr;
    }
    .tt-res-person__row--3,
    .tt-res-person__row--2 {
        grid-template-columns: 1fr;
    }
    .tt-res-progress__num {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }
    .tt-res-item-card__title { font-size: 16px; }
    .tt-res-sidebar-price__total strong { font-size: 20px; }
    /* BACS form inline grid → stack on mobile */
    .tt-bacs-form-row { grid-template-columns: 1fr !important; }
}
