/* Source: assets\css\site-booking.css */
/* Shared booking form patterns for Bus, Hotel, Ticket, Car and future booking modules. */
body:not(.admin-layout) .site-booking-page,
body:not(.admin-layout) .bus-booking-page,
body:not(.admin-layout) .hotel-booking-page,
body:not(.admin-layout) .cruise-booking-page,
body:not(.admin-layout) .ticket-book,
body:not(.admin-layout) .cr-book {
    padding: 30px 0 52px;
    background: var(--cbe-page-gradient, linear-gradient(180deg, #f5f9fd 0, #fff 220px));
    color: var(--cbe-ink, #17324d);
}

body:not(.admin-layout) .site-booking-panel,
body:not(.admin-layout) .ticket-panel,
body:not(.admin-layout) .cr-panel,
body:not(.admin-layout) .hotel-booking-box,
body:not(.admin-layout) .cruise-box {
    min-width: 0;
    padding: 22px;
}

body:not(.admin-layout) .site-booking-panel h1,
body:not(.admin-layout) .site-booking-panel h2,
body:not(.admin-layout) .site-booking-panel h3 {
    margin-top: 0;
    color: var(--cbe-ink, #17324d);
}

body:not(.admin-layout) .site-booking-intro {
    margin: 0 0 18px;
    color: var(--cbe-muted, #5d7287);
    line-height: 1.7;
}

body:not(.admin-layout) .site-booking-grid,
body:not(.admin-layout) .ticket-form-grid,
body:not(.admin-layout) .cr-grid,
body:not(.admin-layout) .hotel-booking-fields,
body:not(.admin-layout) .cruise-fields {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

body:not(.admin-layout) .site-booking-grid--3,
body:not(.admin-layout) .ticket-form-grid--3,
body:not(.admin-layout) .cr-grid--3,
body:not(.admin-layout) .cruise-fields--three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

body:not(.admin-layout) .site-booking-grid--4,
body:not(.admin-layout) .hotel-booking-fields {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

body:not(.admin-layout) .site-booking-field,
body:not(.admin-layout) .ticket-field,
body:not(.admin-layout) .cr-field,
body:not(.admin-layout) .hotel-booking-field,
body:not(.admin-layout) .cruise-field {
    min-width: 0;
}

body:not(.admin-layout) .site-booking-field--note {
    margin-top: 16px;
}

body:not(.admin-layout) .site-booking-label,
body:not(.admin-layout) .site-booking-field > label,
body:not(.admin-layout) .ticket-field > label,
body:not(.admin-layout) .cr-field > label,
body:not(.admin-layout) .hotel-booking-field > label,
body:not(.admin-layout) .cruise-field > label {
    display: block;
    margin-bottom: 7px;
    color: var(--cbe-ink, #17324d);
    font-weight: 800;
    line-height: 1.35;
}

body:not(.admin-layout) .site-booking-field .site-form-field,
body:not(.admin-layout) .ticket-field .site-form-field,
body:not(.admin-layout) .cr-field .site-form-field,
body:not(.admin-layout) .hotel-booking-field .site-form-field,
body:not(.admin-layout) .cruise-field .site-form-field {
    width: 100%;
    min-height: 46px;
    border-radius: 14px;
}

body:not(.admin-layout) .site-booking-control {
    display: block;
    width: 100%;
    min-height: 46px;
    padding: 11px 14px;
    border: 1px solid var(--cbe-line, #dce8f2);
    border-radius: 14px;
    background: #fff;
    color: var(--cbe-ink, #17324d);
    font: inherit;
    line-height: 1.35;
    box-shadow: none;
    transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

body:not(.admin-layout) .site-booking-control:focus {
    border-color: var(--cbe-accent, #0e74a5);
    outline: 0;
    box-shadow: 0 0 0 4px rgba(14, 116, 165, .13);
}

body:not(.admin-layout) textarea.site-booking-control {
    min-height: 88px;
    resize: vertical;
}

body:not(.admin-layout) .site-booking-field .site-form-field--textarea,
body:not(.admin-layout) .ticket-field .site-form-field--textarea,
body:not(.admin-layout) .cr-field .site-form-field--textarea {
    align-items: flex-start;
    padding-top: 12px;
    padding-bottom: 12px;
}

body:not(.admin-layout) .site-booking-field textarea,
body:not(.admin-layout) .ticket-field textarea,
body:not(.admin-layout) .cr-field textarea,
body:not(.admin-layout) .hotel-booking-field textarea,
body:not(.admin-layout) .cruise-field textarea {
    min-height: 88px;
    resize: vertical;
}

body:not(.admin-layout) .site-booking-divider {
    height: 1px;
    margin: 22px 0;
    border: 0;
    background: var(--cbe-line, #dce8f2);
}

body:not(.admin-layout) .site-booking-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    margin-top: 18px;
}

body:not(.admin-layout) .site-booking-check-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 16px;
    margin: 16px 0;
}

body:not(.admin-layout) .site-booking-check-row label {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin: 0;
    color: var(--cbe-muted, #5d7287);
    font-weight: 700;
}

body:not(.admin-layout) .site-booking-price-note,
body:not(.admin-layout) .ticket-price-note,
body:not(.admin-layout) .cr-price-note {
    color: var(--cbe-muted, #60748a);
    font-weight: 800;
}

body:not(.admin-layout) .site-booking-price-note strong,
body:not(.admin-layout) .ticket-price-note strong,
body:not(.admin-layout) .cr-price-note {
    color: var(--cbe-success, #00805e);
}

@media (max-width: 991px) {
    body:not(.admin-layout) .site-booking-grid--4,
    body:not(.admin-layout) .hotel-booking-fields,
    body:not(.admin-layout) .cruise-fields--three {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    body:not(.admin-layout) .site-booking-page,
    body:not(.admin-layout) .bus-booking-page,
    body:not(.admin-layout) .hotel-booking-page,
    body:not(.admin-layout) .cruise-booking-page,
    body:not(.admin-layout) .ticket-book,
    body:not(.admin-layout) .cr-book {
        padding: 24px 0 42px;
    }

    body:not(.admin-layout) .site-booking-panel,
    body:not(.admin-layout) .ticket-panel,
    body:not(.admin-layout) .cr-panel,
    body:not(.admin-layout) .hotel-booking-box,
    body:not(.admin-layout) .cruise-box {
        padding: 16px;
    }

    body:not(.admin-layout) .site-booking-grid,
    body:not(.admin-layout) .site-booking-grid--3,
    body:not(.admin-layout) .site-booking-grid--4,
    body:not(.admin-layout) .ticket-form-grid,
    body:not(.admin-layout) .ticket-form-grid--3,
    body:not(.admin-layout) .cr-grid,
    body:not(.admin-layout) .cr-grid--3,
    body:not(.admin-layout) .hotel-booking-fields,
    body:not(.admin-layout) .cruise-fields,
    body:not(.admin-layout) .cruise-fields--three {
        grid-template-columns: 1fr;
    }

    body:not(.admin-layout) .site-booking-actions {
        align-items: stretch;
        flex-direction: column;
    }

    body:not(.admin-layout) .site-booking-actions .site-button {
        justify-content: center;
        width: 100%;
    }
}


/* Source: assets\css\hotel-booking-layout.css */
/* Booking form */
.hotel-booking-page{padding:24px 0 46px;background:linear-gradient(180deg,#f5f9fd 0,#fff 220px)}
.hotel-booking-main{display:grid;grid-template-columns:minmax(0,1fr) 350px;gap:22px}
.hotel-booking-box{padding:22px;margin-bottom:20px}
.hotel-booking-box h2{margin:0 0 16px;font-size:20px;color:#153550}
.hotel-booking-fields{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:15px}
.hotel-booking-field{min-width:0}
.hotel-booking-field .site-form-field{width:100%;min-height:46px;border-radius:14px}
.hotel-booking-field .site-form-field textarea{min-height:110px;padding:12px 0;resize:vertical}
.hotel-booking-room-line{padding:18px;border:1px solid #d7e7f3;background:#f4faff;border-radius:20px;margin-bottom:15px}
.hotel-booking-room-grid{display:grid;grid-template-columns:160px minmax(0,1fr) 46px;gap:14px;align-items:end}
.hotel-booking-room-meta{margin-top:10px;color:#526b7f;display:flex;gap:14px;flex-wrap:wrap}
.hotel-booking-room-state{margin-top:8px;font-weight:700}
.hotel-booking-room-state--ok{color:#0b8a54}.hotel-booking-room-state--stop{color:#cc3d2a}
.hotel-booking-extra-wrap{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:14px;margin-top:14px;padding-top:14px;border-top:1px dashed #cadceb}
.hotel-booking-extra{padding:14px;border-radius:16px;border:1px solid #d7e5ef;background:#fff}
.hotel-booking-extra h4{margin:0 0 6px;font-size:16px;color:#17324d}
.hotel-booking-extra small{display:block;color:#60778a;line-height:1.6}
.hotel-booking-extra-checks{display:flex;gap:8px;flex-wrap:wrap;margin-top:10px}
.hotel-booking-extra-checks label{display:inline-flex;align-items:center;gap:6px;padding:8px 12px;border-radius:999px;border:1px solid #d1e1ec;background:#f7fbff}
.hotel-booking-addon-list{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:14px}
.hotel-booking-addon{padding:16px;border-radius:18px}
.hotel-booking-addon__head{display:flex;justify-content:space-between;gap:12px;align-items:flex-start}
.hotel-booking-addon__check{display:flex;gap:10px;align-items:flex-start}
.hotel-booking-addon__check input{margin-top:4px}
.hotel-booking-addon__title{margin:0;font-size:16px;color:#17324d}
.hotel-booking-addon__meta{margin-top:6px;color:#5d7488;line-height:1.6}
.hotel-booking-addon__price{font-weight:800;color:#0d8057}
.hotel-booking-addon__price del{color:#647486;font-weight:500;margin-right:8px}
.hotel-booking-addon__badge{display:inline-flex;align-items:center;padding:5px 9px;border-radius:999px;background:#e8f8ef;color:#0d8057;font-size:12px;font-weight:700;margin-top:8px}
.hotel-booking-addon__details{margin-top:12px;padding-top:12px;border-top:1px dashed #d1dfeb}
.hotel-booking-addon__details p{margin:0 0 10px;color:#61788c;line-height:1.7}
.hotel-booking-addon__details select{width:100%;height:42px;border:1px solid #cfdfeb;border-radius:12px;padding:0 12px}
.hotel-booking-addon__details .js-addon-request-input{width:100%;height:44px;border:1px solid #cfdfeb;border-radius:14px;padding:0 14px;background:#fff;color:#17324d;font-weight:600;box-shadow:inset 0 1px 2px rgba(13,38,61,.04);transition:border-color .2s ease,box-shadow .2s ease,background .2s ease}
.hotel-booking-addon__details .js-addon-request-input::placeholder{color:#7a91a5;font-weight:500}
.hotel-booking-addon__details .js-addon-request-input:focus{outline:none;border-color:#6ca8d6;box-shadow:0 0 0 4px rgba(66,140,196,.14);background:#fbfdff}
.hotel-booking-addon__detail-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:12px;margin-top:12px}
.hotel-booking-addon__detail-grid input{width:100%;height:42px;border:1px solid #cfdfeb;border-radius:12px;padding:0 12px}
.hotel-inline-modal{position:fixed;inset:0;display:none;align-items:center;justify-content:center;padding:24px;background:rgba(10,22,36,.72);z-index:9999}
.hotel-inline-modal.is-open{display:flex}
.hotel-inline-modal__dialog{width:min(820px,92vw);max-height:88vh;overflow:auto;background:#fff;border-radius:22px;box-shadow:0 24px 80px rgba(10,22,36,.28)}
.hotel-inline-modal__header{display:flex;justify-content:space-between;align-items:center;gap:16px;padding:18px 22px;border-bottom:1px solid #e2ebf2}
.hotel-inline-modal__title{margin:0;font-size:20px;font-weight:800;color:#17324d}
.hotel-inline-modal__close{border:none;background:#eef5fb;color:#17324d;width:40px;height:40px;border-radius:999px;font-size:22px;line-height:1;cursor:pointer}
.hotel-inline-modal__body{padding:22px;color:#41576b;line-height:1.8}
.hotel-booking-summary__sub{display:block;font-weight:600;color:#7fd6c8;margin-top:4px;line-height:1.4}
.hotel-booking-summary{position:sticky;top:24px;align-self:start}
.hotel-booking-summary__card{padding:22px;border-radius:24px;background:linear-gradient(135deg,#123556 0,#1d5d81 56%,#3a8bb1 100%);color:#fff}
.hotel-booking-summary__card h3{margin:0 0 14px;font-size:18px}
.hotel-booking-summary__row{display:flex;justify-content:space-between;gap:12px;padding:10px 0;border-bottom:1px solid rgba(255,255,255,.14)}
.hotel-booking-summary__row:last-child{border-bottom:none}
.hotel-booking-summary__note{margin-top:14px;padding:14px 16px;border-radius:16px;background:rgba(255,255,255,.13);line-height:1.7}
.hotel-booking-summary__section{padding:12px 0;border-bottom:1px solid rgba(255,255,255,.14)}
.hotel-booking-summary__section:last-of-type{border-bottom:none}
.hotel-booking-summary__section-title{font-size:12px;font-weight:800;letter-spacing:.06em;text-transform:uppercase;color:#bfe9ff;margin:0 0 10px}
.hotel-booking-summary__item{padding:10px 0;border-top:1px dashed rgba(255,255,255,.16)}
.hotel-booking-summary__item:first-of-type{border-top:none;padding-top:0}
.hotel-booking-summary__item-head{display:flex;justify-content:space-between;gap:10px;align-items:flex-start}
.hotel-booking-summary__item-title{font-weight:700;color:#fff}
.hotel-booking-summary__item-price{font-weight:800;color:#fff;white-space:nowrap}
.hotel-booking-summary__item-meta{margin-top:5px;color:#dceeff;line-height:1.6;font-size:14px}
.hotel-booking-summary__grand{margin-top:16px;padding:16px 18px;border-radius:18px;background:rgba(255,255,255,.16);border:1px solid rgba(255,255,255,.18)}
.hotel-booking-summary__grand-label{display:block;font-size:12px;font-weight:800;letter-spacing:.06em;text-transform:uppercase;color:#bfe9ff;margin-bottom:6px}
.hotel-booking-summary__grand-value{font-size:28px;font-weight:900;line-height:1.1;color:#fff}
.hotel-booking-coupon-row{display:flex;gap:10px;align-items:center}
.hotel-booking-coupon-row .site-form-field{flex:1 1 auto}
.hotel-booking-coupon-row input{font-weight:700}
.hotel-booking-coupon-row .site-button{border-radius:14px;white-space:nowrap}
.hotel-booking-toolbar{display:flex;gap:10px;flex-wrap:wrap;margin-bottom:14px}
.hotel-booking-toolbar .site-button{border-radius:999px}
.hotel-booking-alert{padding:16px 18px;border-radius:18px;border:1px solid #d8e7f0;background:#f7fbff;margin-top:16px}
.hotel-booking-alert--warning{background:#fff8eb;border-color:#f1dfb9;color:#8f6107}
@media (max-width:991px){.hotel-booking-main{grid-template-columns:1fr}.hotel-booking-summary{position:static}.hotel-booking-fields{grid-template-columns:repeat(2,minmax(0,1fr))}.hotel-booking-room-grid{grid-template-columns:1fr}.hotel-booking-extra-wrap{grid-template-columns:1fr}.hotel-booking-addon-list{grid-template-columns:1fr}}
@media (max-width:640px){.hotel-booking-fields{grid-template-columns:1fr}.hotel-booking-coupon-row{flex-direction:column;align-items:stretch}.hotel-booking-addon__detail-grid{grid-template-columns:1fr}.hotel-inline-modal{padding:14px}.hotel-inline-modal__header{padding:16px 18px}.hotel-inline-modal__body{padding:18px}}

/* Booking lookup */
.hotel-booking-lookup{padding:30px 0 46px;background:linear-gradient(180deg,#f4f9fd 0,#fff 180px)}
    .hotel-booking-lookup__wrap{max-width:1080px;margin:0 auto}
    .hotel-booking-lookup__hero{margin-bottom:22px}
    .hotel-booking-lookup__card{padding:22px}
    .hotel-booking-lookup__grid{display:grid;grid-template-columns:minmax(0,1fr) 360px;gap:22px;margin-top:22px}
    .hotel-booking-lookup__form{display:flex;gap:12px;align-items:flex-end;flex-wrap:wrap}
    .hotel-booking-lookup__form .hotel-booking-field{flex:1 1 320px;margin-bottom:0}
    .hotel-booking-lookup__form .site-form-field input,.hotel-booking-lookup__form .site-button{height:46px;border-radius:12px}
    .hotel-booking-lookup__box{padding:18px;border-radius:18px;margin-bottom:18px}
    .hotel-booking-lookup__box:last-child{margin-bottom:0}
    .hotel-booking-lookup__row{display:flex;justify-content:space-between;align-items:flex-start;gap:12px;padding:10px 0;border-bottom:1px solid #e6eff6;color:#566b7f;font-size:14px}
    .hotel-booking-lookup__row span{flex:0 0 160px;max-width:160px}
    .hotel-booking-lookup__row strong{flex:1 1 auto;min-width:0;text-align:right;word-break:break-word}
    .hotel-booking-lookup__row:last-child{border-bottom:none}
    .hotel-booking-lookup__room{padding:14px 16px;border-radius:16px;margin-bottom:12px}
    .hotel-booking-lookup__room:last-child{margin-bottom:0}
    .hotel-booking-lookup__message{padding:14px 16px;border-radius:16px;margin-bottom:12px;border:1px solid #e2ebf3}
    .hotel-booking-lookup__message--admin{background:#f6fbff}
    .hotel-booking-lookup__message--customer{background:#fffdf5}
    .hotel-booking-lookup__status{display:inline-flex;align-items:center;padding:7px 12px;border-radius:999px;font-size:12px;font-weight:700}
    .hotel-booking-lookup__status--pending{background:#fff4d8;color:#9a6800}
    .hotel-booking-lookup__status--confirmed{background:#e4f2ff;color:#0b5fa8}
    .hotel-booking-lookup__status--completed{background:#e3f7ed;color:#157347}
    .hotel-booking-lookup__status--cancelled{background:#fde5e8;color:#b42318}
    .hotel-booking-lookup__status--default{background:#edf3f7;color:#496277}
    .hotel-booking-lookup__message-form textarea{min-height:120px;border-radius:14px}
    @media (max-width:991px){.hotel-booking-lookup__grid{grid-template-columns:1fr}.hotel-booking-lookup__row span,.hotel-booking-lookup__row strong{flex:1 1 100%;max-width:none;text-align:left}}

/* Booking success */
.hotel-booking-success{padding:30px 0 46px;background:linear-gradient(180deg,#f4f9fd 0,#fff 180px)}
    .hotel-booking-success__card{max-width:980px;margin:0 auto;padding:28px;border-radius:28px}
    .hotel-booking-success__hero{margin-bottom:22px}
    .hotel-booking-success__grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:18px}
    .hotel-booking-success__box{padding:18px;border-radius:18px}
    .hotel-booking-success__box h3{margin:0 0 12px;font-size:18px;color:#17324d}
    .hotel-booking-success__row{display:flex;justify-content:space-between;align-items:flex-start;gap:12px;padding:10px 0;border-bottom:1px solid #e8f0f6;font-size:14px;color:#53697d}
    .hotel-booking-success__row span{flex:0 0 160px;max-width:160px}
    .hotel-booking-success__row strong{flex:1 1 auto;min-width:0;text-align:right;word-break:break-word}
    .hotel-booking-success__row:last-child{border-bottom:none}
    .hotel-booking-success__room{padding:14px;border-radius:16px;margin-bottom:12px}
    .hotel-booking-success__room:last-child{margin-bottom:0}
    .hotel-booking-success__actions{display:flex;gap:12px;flex-wrap:wrap;margin-top:22px}
    .hotel-booking-success__actions .site-button{border-radius:999px;padding:11px 18px;font-weight:700}
    .hotel-booking-success__status{display:inline-flex;align-items:center;padding:7px 12px;border-radius:999px;background:#fff4d8;color:#9a6800;font-size:12px;font-weight:700}
    @media (max-width:767px){.hotel-booking-success__grid{grid-template-columns:1fr}.hotel-booking-success__row span,.hotel-booking-success__row strong{flex:1 1 100%;max-width:none;text-align:left}}


/* Source: assets\css\bus-booking-layout.css */
.bus-booking-page,
.bus-booking-page button,
.bus-booking-page input,
.bus-booking-page select,
.bus-booking-page textarea {
    font-family: Roboto, "Roboto Slab", Arial, sans-serif;
}

.bus-booking-page {
    padding: 26px 0 40px;
    background: linear-gradient(180deg, #f5f9fd 0, #fff 220px);
    color: #17324d;
    font-size: 14px;
    line-height: 1.7;
}

.bus-booking-page p,
.bus-booking-page li,
.bus-booking-page td,
.bus-booking-page th,
.bus-booking-page label,
.bus-booking-page .site-booking-control {
    font-size: 14px;
}

.bus-booking-page h2 {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.35;
}

.bus-booking-page h3 {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.35;
}

.bus-booking-page h4 {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.35;
}

.bus-booking-card {
    padding: 20px;
    border: 1px solid #deebf5;
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 16px 34px rgba(17, 45, 70, .06);
}

.bus-booking-hero {
    margin-bottom: 18px;
}

.bus-booking-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 22px;
    align-items: center;
}

.bus-booking-eyebrow {
    margin-bottom: 8px;
}

.bus-booking-hero h1 {
    font-size: 32px;
}

.bus-booking-hero p {
    max-width: 760px;
}

.bus-booking-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.bus-booking-step {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 999px;
    background: rgba(255, 255, 255, .1);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
}

.bus-booking-total-card {
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 16px;
    background: rgba(9, 31, 52, .3);
    backdrop-filter: blur(4px);
}

.bus-booking-total-card span {
    display: block;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, .72);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.bus-booking-total-card strong {
    display: block;
    color: #aef1d6;
    font-size: 28px;
    line-height: 1.25;
}

.bus-booking-total-card small {
    display: block;
    margin-top: 8px;
    color: rgba(255, 255, 255, .82);
    line-height: 1.6;
}

.bus-booking-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 20px;
    align-items: start;
}

.bus-booking-section {
    margin-bottom: 16px;
    padding: 16px;
    border: 1px solid #deebf5;
    border-radius: 16px;
    background: #f9fcff;
}

.bus-booking-section h2 {
    margin: 0 0 12px;
    color: #17324d;
    font-size: 20px;
    font-weight: 700;
}

.bus-booking-section__note {
    margin: -4px 0 12px;
    color: #5b7387;
    font-size: 14px;
    line-height: 1.7;
}

.bus-booking-section__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 14px;
}

.bus-booking-section__head h2 {
    margin: 0 0 6px;
}

.bus-booking-section__head .bus-booking-section__note {
    margin: 0;
}

.bus-booking-section__tools {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px;
}

.bus-booking-trip {
    margin-bottom: 12px;
    padding: 15px;
    border: 1px solid #d7e6f3;
    border-radius: 14px;
    background: #fff;
}

.bus-booking-trip:last-child {
    margin-bottom: 0;
}

.bus-booking-trip__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 10px;
}

.bus-booking-trip__side {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
}

.bus-booking-trip__title {
    margin: 0;
    color: #11314f;
    font-size: 18px;
    font-weight: 700;
}

.bus-booking-trip__pricing {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}

.bus-booking-trip__price-old {
    color: #7e90a0;
    font-size: 14px;
    line-height: 1.3;
    text-decoration: line-through;
}

.bus-booking-trip__price-current {
    color: #0e7d5a;
    font-size: 19px;
    font-weight: 700;
    line-height: 1.3;
    text-align: right;
}

.bus-booking-trip__price-child {
    color: #23445f;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.45;
    text-align: right;
}

.bus-booking-trip__promo {
    color: #0f7d61;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.5;
    text-align: right;
}

.bus-booking-trip__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
    color: #506579;
    font-size: 14px;
}

.bus-booking-trip__actions {
    display: flex;
    justify-content: flex-start;
    margin: 2px 0 12px;
}

.bus-booking-trip__tools {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 10px;
}

.bus-booking-trip__editor {
    display: none;
    margin: 10px 0 14px;
    padding: 14px;
    border: 1px solid #deebf5;
    border-radius: 14px;
    background: #f8fbff;
}

.bus-booking-trip__editor.is-open {
    display: block;
}

.bus-booking-trip__edit-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.bus-booking-trip__edit-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 14px;
}

.bus-booking-badge {
    display: inline-flex;
    align-items: center;
    padding: 5px 10px;
    border-radius: 999px;
    background: #eaf4ff;
    color: #17456d;
    font-size: 12px;
    font-weight: 700;
}

.bus-booking-badge i {
    margin-right: 6px;
}

.bus-booking-badge--button {
    border: 1px dashed #b7cee2;
    background: #f4f9ff;
    cursor: pointer;
}

.bus-booking-badge--button:hover {
    border-color: #8fb1ce;
    background: #e8f3ff;
}

.bus-booking-tool {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 14px;
    border: 1px solid #cfe1f0;
    border-radius: 12px;
    background: #fff;
    color: #17324d;
    font-size: 14px;
    font-weight: 700;
    transition: .2s ease;
}

.bus-booking-tool:hover {
    border-color: #7da5c7;
    color: #102b45;
    text-decoration: none;
}

.bus-booking-tool:focus {
    outline: none;
    box-shadow: none;
}

.bus-booking-tool--primary {
    border-color: #173a5d;
    background: #173a5d;
    color: #fff;
}

.bus-booking-tool--primary:hover {
    border-color: #102f4f;
    background: #102f4f;
    color: #fff;
}

.bus-booking-tool--danger {
    border-color: #f1c3c3;
    color: #bb3d3d;
}

.bus-booking-tool--danger:hover {
    border-color: #d66767;
    color: #9f2f2f;
}

.bus-booking-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.bus-addon-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 14px;
    align-items: start;
}

.bus-booking-section .site-booking-field {
    margin-bottom: 0;
}

.bus-booking-section label {
    display: block;
    margin: 0 0 8px;
    color: #17324d;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.bus-booking-section label i {
    width: 16px;
    margin-right: 6px;
    color: #1f6d97;
    text-align: center;
}

.bus-booking-section .checkbox label i {
    margin-right: 0;
}

.bus-booking-inline-label {
    display: flex;
    align-items: center;
    gap: 8px;
}

.bus-booking-mini-help {
    padding: 3px 8px;
    border-radius: 999px;
    font-size: 12px;
}

.bus-booking-section .site-booking-control {
    width: 100%;
    height: 42px;
    padding: 0 13px;
    border: 1px solid #cfdfeb;
    border-radius: 10px;
    background: #fff;
    color: #17324d;
    font-size: 14px;
    font-weight: 500;
    box-shadow: inset 0 1px 2px rgba(13, 38, 61, .04);
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.bus-booking-section textarea.site-booking-control {
    height: auto;
    min-height: 120px;
    padding: 12px 14px;
    resize: vertical;
}

.bus-booking-section .site-booking-control::placeholder {
    color: #7a91a5;
    font-weight: 500;
}

.bus-booking-section .site-booking-control:focus {
    border-color: #6ca8d6;
    background: #fbfdff;
    box-shadow: 0 0 0 4px rgba(66, 140, 196, .14);
    outline: none;
}

.bus-addon-card {
    padding: 16px;
    border: 1px solid #d9e6f1;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 8px 18px rgba(18, 52, 82, .04);
    transition: .2s ease;
}

.bus-addon-card.is-selected {
    border-color: #0e7b66;
    box-shadow: 0 12px 24px rgba(17, 65, 95, .08);
}

.bus-addon-card__head {
    display: block;
}

.bus-addon-card__check {
    display: grid;
    grid-template-columns: 22px minmax(0, 1fr);
    align-items: flex-start;
    gap: 12px;
    min-width: 0;
}

.bus-addon-card__check input {
    margin-top: 6px;
}

.bus-addon-card__content {
    min-width: 0;
    width: 100%;
}

.bus-addon-card__title {
    display: block;
    width: 100%;
    margin: 0;
    color: #17324d;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.45;
    word-break: break-word;
}

.bus-addon-card__meta {
    display: block;
    width: 100%;
    margin-top: 8px;
    color: #5d7488;
    font-size: 14px;
    line-height: 1.65;
}

.bus-addon-card__price {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    width: 100%;
    min-width: 0;
    margin-top: 12px;
}

.bus-addon-card__price del {
    color: #7a8b9b;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.3;
}

.bus-addon-card__price-current {
    color: #0d8057;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.3;
    text-align: left;
}

.bus-addon-card__controls {
    margin-top: 14px;
    padding: 14px;
    border: 1px solid #e2edf5;
    border-radius: 12px;
    background: #f8fbfe;
}

.bus-addon-card__controls p {
    margin: 0 0 10px;
    color: #61788c;
    font-size: 14px;
    line-height: 1.75;
}

.bus-addon-card__discount {
    display: inline-flex;
    align-items: center;
    margin-top: 10px;
    padding: 5px 10px;
    border-radius: 999px;
    background: #e8f8ef;
    color: #0d8057;
    font-size: 12px;
    font-weight: 700;
}

.bus-addon-choice {
    margin-top: 10px;
    padding: 10px 12px;
    border: 1px solid #e1ebf4;
    border-radius: 10px;
    background: #f9fcff;
}

.bus-addon-choice__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 8px;
}

.bus-addon-choice__label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
}

.bus-addon-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 12px;
}

.bus-addon-detail-grid input,
.bus-addon-detail-grid .js-addon-request-input {
    width: 100%;
}

.bus-booking-extra-field {
    margin-top: 8px;
}

.bus-booking-note {
    display: block;
    margin-top: 6px;
}

.bus-summary-card {
    position: sticky;
    top: 24px;
    align-self: start;
}

.bus-summary-card__box {
    padding: 18px 18px 14px;
    border-radius: 16px;
    background: #163a5d;
    color: #fff;
    box-shadow: 0 14px 28px rgba(9, 27, 42, .14);
}

.bus-summary-card__box h3 {
    margin: 0 0 12px;
    font-size: 18px;
    font-weight: 700;
}

.bus-summary-row {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
}

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

.bus-summary-row--total {
    margin-top: 10px;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, .18);
    font-size: 18px;
    font-weight: 700;
}

.bus-summary-line {
    padding: 10px 0;
    border-bottom: 1px dashed rgba(255, 255, 255, .14);
}

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

.bus-summary-line__title {
    font-weight: 700;
}

.bus-summary-line__meta {
    color: rgba(255, 255, 255, .78);
    font-size: 14px;
    line-height: 1.7;
}

.bus-summary-line__label {
    color: rgba(255, 255, 255, .72);
    font-weight: 600;
}

.bus-summary-card__box h3 i,
.bus-summary-row span i,
.bus-summary-line__label i,
.bus-summary-line__total-label i {
    width: 16px;
    margin-right: 6px;
    color: #aee1ff;
    text-align: center;
}

.bus-summary-line__title i {
    margin-right: 7px;
    color: #aef1d6;
}

.bus-summary-inline-price {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 8px;
}

.bus-summary-inline-price__old {
    color: rgba(255, 255, 255, .55);
    font-size: 12px;
    text-decoration: line-through;
}

.bus-summary-inline-price__current {
    color: #fff;
    font-weight: 700;
}

.bus-summary-line__price {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}

.bus-summary-line__old {
    color: rgba(255, 255, 255, .65);
    font-size: 12px;
    text-decoration: line-through;
}

.bus-summary-line__total-row {
    display: flex;
    align-items: baseline;
    justify-content: flex-end;
    gap: 8px;
}

.bus-summary-line__total-label {
    color: rgba(255, 255, 255, .7);
    font-size: 12px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.bus-summary-line__value {
    color: #aef1d6;
    font-weight: 700;
}

.bus-summary-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    margin-top: 16px;
    padding: 14px 18px;
    border: none;
    border-radius: 999px;
    background: #fff;
    color: #173a5d;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.2;
    box-shadow: 0 12px 24px rgba(0, 0, 0, .16);
    transition: all .2s ease;
}

.bus-summary-submit:hover {
    background: #f3f8ff;
    color: #102f4f;
    transform: translateY(-1px);
}

.bus-summary-submit:focus {
    box-shadow: 0 0 0 4px rgba(174, 225, 255, .28);
    outline: none;
}

.bus-booking-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
}

body:not(.admin-layout) .bus-booking-actions .site-button {
    width: auto;
    min-width: 140px;
    height: 48px;
    min-height: 48px;
}

body:not(.admin-layout) .bus-booking-actions .site-button--soft {
    border: 1px solid #d4e4f0;
    background: #f3f7fb;
    color: #17324d;
}

body:not(.admin-layout) .bus-booking-actions .site-button--soft:hover,
body:not(.admin-layout) .bus-booking-actions .site-button--soft:focus {
    border-color: #c1d6e8;
    background: #e7f0f8;
    color: #102f4f;
}

.bus-alert {
    margin-bottom: 16px;
    border-radius: 16px;
}

.bus-booking-field-hidden {
    display: none !important;
}

.bus-booking-coupon-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px;
}

.bus-booking-coupon-row input {
    color: #143a5a;
    font-weight: 700;
}

.bus-booking-coupon-row input::placeholder {
    color: #6d86a0;
    font-weight: 500;
}

body:not(.admin-layout) .bus-booking-coupon-row .site-button {
    height: 40px !important;
    min-height: 40px !important;
    padding: 0 16px;
    font-size: 14px;
}

.bus-booking-preview-alert {
    margin-top: 16px;
    padding: 16px 18px;
    border: 1px solid #d8e7f0;
    border-radius: 18px;
    background: #f7fbff;
}

.bus-booking-preview-alert--warning {
    border-color: #f1dfb9;
    background: #fff8eb;
    color: #8f6107;
}

.bus-booking-preview-alert strong {
    display: block;
    margin-bottom: 6px;
    color: #17324d;
}

.bus-booking-preview-alert__line {
    display: block;
    color: #536b80;
    line-height: 1.7;
}

.bus-booking-preview-alert__line + .bus-booking-preview-alert__line {
    margin-top: 4px;
}

.bus-child-policy-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(10, 31, 50, .52);
}

.bus-child-policy-modal.is-open {
    display: flex;
}

.bus-child-policy-modal__dialog {
    display: flex;
    flex-direction: column;
    width: min(760px, 96vw);
    max-height: 82vh;
    border: 1px solid #d8e7f0;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 18px 38px rgba(9, 28, 46, .28);
}

.bus-child-policy-modal__head {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 16px;
    border-bottom: 1px solid #e3edf5;
}

.bus-child-policy-modal__title {
    margin: 0;
    color: #17324d;
    font-size: 18px;
    font-weight: 700;
}

.bus-child-policy-modal__close {
    padding: 2px 6px;
    border: none;
    background: transparent;
    color: #4d667b;
    font-size: 20px;
    line-height: 1;
}

.bus-child-policy-modal__body {
    flex: 1 1 auto;
    padding: 14px 16px;
    overflow-y: auto;
    overscroll-behavior: contain;
}

.bus-child-policy-modal__body ul {
    margin: 0;
    padding-left: 18px;
    color: #375068;
    line-height: 1.8;
}

@media (max-width: 991px) {
    .bus-booking-hero__grid,
    .bus-booking-layout,
    .bus-booking-grid,
    .bus-addon-grid {
        grid-template-columns: 1fr;
    }

    .bus-summary-card {
        position: static;
    }

    .bus-booking-trip__head {
        flex-direction: column;
    }

    .bus-booking-trip__side,
    .bus-booking-trip__pricing,
    .bus-summary-line__price {
        align-items: flex-start;
    }

    .bus-booking-trip__price-current,
    .bus-booking-trip__promo {
        text-align: left;
    }

    .bus-booking-trip__tools,
    .bus-booking-section__tools {
        justify-content: flex-start;
    }

    .bus-booking-section__head {
        flex-direction: column;
    }

    .bus-addon-detail-grid,
    .bus-booking-trip__edit-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .bus-booking-page {
        padding: 16px 0 30px;
    }

    .bus-booking-card {
        padding: 14px;
        border-radius: 18px;
    }

    .bus-booking-total-card strong {
        font-size: 24px;
    }

    .bus-booking-section {
        padding: 14px;
        border-radius: 14px;
    }

    .bus-booking-section .site-booking-control {
        height: 48px;
        min-height: 48px;
        border-radius: 12px;
        font-size: 16px;
    }

    .bus-booking-section textarea.site-booking-control {
        height: auto;
        min-height: 120px;
    }

    .bus-booking-trip {
        padding: 13px;
        border-radius: 14px;
    }

    .bus-booking-trip__edit-actions,
    .bus-booking-trip__tools {
        flex-wrap: wrap;
    }

    .bus-booking-coupon-row {
        grid-template-columns: 1fr;
    }

    body:not(.admin-layout) .bus-booking-coupon-row .site-button {
        width: 100%;
        height: 44px !important;
        min-height: 44px !important;
    }

    .bus-booking-actions {
        justify-content: stretch;
    }

    body:not(.admin-layout) .bus-booking-actions .site-button {
        width: 100%;
        min-width: 0;
    }
}

