.mwtb-booking {
    --mwtb-primary: var(--primary-color, #2271b1);
    --mwtb-primary-hover: #135e96;
    --mwtb-text: #1d2939;
    --mwtb-muted: #667085;
    --mwtb-border: #d8dee8;
    --mwtb-soft: #f6f8fb;
    --mwtb-success: #157347;
    --mwtb-warning: #9a6700;
    --mwtb-danger: #b42318;
    --mwtb-radius: 14px;
    position: relative;
    width: 100%;
    color: var(--mwtb-text);
    font: inherit;
    font-size: 16px;
}

.mwtb-booking *,
.mwtb-booking *::before,
.mwtb-booking *::after {
    box-sizing: border-box;
}

.mwtb-booking button,
.mwtb-booking input,
.mwtb-booking select,
.mwtb-booking textarea {
    font: inherit;
}

.mwtb-booking-loading {
    display: none;
    min-height: 180px;
    padding: 32px 18px;
    border: 1px solid var(--mwtb-border);
    border-radius: var(--mwtb-radius);
    background: #fff;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 12px;
    text-align: center;
}

.mwtb-booking-loading.is-visible {
    display: flex;
}

.mwtb-spinner {
    display: inline-block;
    width: 22px;
    height: 22px;
    border: 3px solid rgba(34, 113, 177, .18);
    border-top-color: var(--mwtb-primary);
    border-radius: 50%;
    animation: mwtb-spin .7s linear infinite;
}

@keyframes mwtb-spin {
    to { transform: rotate(360deg); }
}

.mwtb-booking .mwtb-booking-intro {
    display: grid;
    min-height: 170px;
    margin: 0 0 18px;
    padding: 32px 36px;
    border-radius: 22px;
    color: #fff;
    background: linear-gradient(105deg, #117457 0%, #1c8b68 55%, #48aa89 100%);
    align-items: center;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 32px;
}

.mwtb-booking .mwtb-booking-intro-copy {
    min-width: 0;
}

.mwtb-booking .mwtb-booking-intro-eyebrow {
    display: block;
    margin: 0 0 8px;
    color: #fff;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: .08em;
    line-height: 1.35;
    text-transform: uppercase;
}

.mwtb-booking .mwtb-booking-intro h2 {
    margin: 0 0 8px !important;
    color: #fff !important;
    font-size: clamp(32px, 3.15vw, 40px);
    font-weight: 700;
    letter-spacing: -.025em;
    line-height: 1.12;
}

.mwtb-booking .mwtb-booking-intro p {
    max-width: 780px;
    margin: 0 !important;
    color: #fff !important;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.55;
}

.mwtb-booking .mwtb-booking-intro-benefits {
    min-width: 190px;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

.mwtb-booking .mwtb-booking-intro-benefits li {
    margin: 0 !important;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.7;
    list-style: none !important;
    white-space: nowrap;
}

.mwtb-booking .mwtb-booking-intro-benefits li::before {
    display: none !important;
    content: none !important;
}

.mwtb-booking .mwtb-booking-intro-benefits span {
    display: inline-block;
    width: 16px;
    font-weight: 800;
}

.mwtb-progress {
    display: none;
    margin-bottom: 18px;
    padding: 8px;
    border: 1px solid var(--mwtb-border);
    border-radius: var(--mwtb-radius);
    background: #fff;
}

.mwtb-progress-step {
    position: relative;
    display: flex;
    min-width: 0;
    padding: 8px 6px;
    color: var(--mwtb-muted);
    align-items: center;
    gap: 7px;
}

.mwtb-progress-step:not(:last-child)::after {
    position: absolute;
    top: 50%;
    right: -5px;
    width: 10px;
    height: 1px;
    content: "";
    background: var(--mwtb-border);
}

.mwtb-progress-number {
    display: inline-flex;
    width: 28px;
    height: 28px;
    border: 1px solid var(--mwtb-border);
    border-radius: 50%;
    background: #fff;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
}

.mwtb-progress-label {
    overflow: hidden;
    font-size: 16px;
    font-weight: 600;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.mwtb-progress-step.is-active,
.mwtb-progress-step.is-complete {
    color: var(--mwtb-primary);
}

.mwtb-progress-step.is-active .mwtb-progress-number,
.mwtb-progress-step.is-complete .mwtb-progress-number {
    color: #fff;
    border-color: var(--mwtb-primary);
    background: var(--mwtb-primary);
}

.mwtb-progress-step.is-complete .mwtb-progress-number {
    font-size: 0;
}

.mwtb-progress-step.is-complete .mwtb-progress-number::before {
    content: "✓";
    font-size: 16px;
}

.mwtb-mobile-progress {
    display: flex;
    margin-bottom: 12px;
    padding: 11px 13px;
    border-radius: 10px;
    color: #fff;
    background: var(--mwtb-primary);
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.mwtb-mobile-progress span {
    overflow: hidden;
    font-size: 16px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.mwtb-booking-layout {
    display: block;
}

.mwtb-booking-main,
.mwtb-summary-card {
    border: 1px solid var(--mwtb-border);
    border-radius: var(--mwtb-radius);
    background: #fff;
    box-shadow: 0 8px 28px rgba(16, 24, 40, .06);
}

.mwtb-booking-main {
    overflow: hidden;
}

.mwtb-step {
    display: none;
    padding: 18px 15px;
}

.mwtb-step.is-active {
    display: block;
    animation: mwtb-fade .18s ease;
}

@keyframes mwtb-fade {
    from { opacity: .65; transform: translateY(4px); }
    to { opacity: 1; transform: none; }
}

.mwtb-step-heading {
    margin-bottom: 18px;
}

.mwtb-step-heading > span {
    display: inline-block;
    margin-bottom: 5px;
    color: var(--mwtb-primary);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.mwtb-step-heading h2 {
    margin: 0 0 6px;
    color: var(--mwtb-text);
    font-size: clamp(21px, 4vw, 28px);
    line-height: 1.2;
}

.mwtb-step-heading p {
    margin: 0;
    color: var(--mwtb-muted);
    font-size: 16px;
}

.mwtb-field-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}

.mwtb-field {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 7px;
}

.mwtb-field > span {
    color: #344054;
    font-size: 16px;
    font-weight: 700;
}

.mwtb-field b {
    color: var(--mwtb-danger);
}

.mwtb-field input,
.mwtb-field select,
.mwtb-field textarea,
.mwtb-room-search input {
    width: 100%;
    min-height: 46px;
    padding: 10px 12px;
    border: 1px solid #c9d1dc;
    border-radius: 9px;
    color: var(--mwtb-text);
    background: #fff;
    box-shadow: none;
    outline: 0;
}

.mwtb-field textarea {
    resize: vertical;
}

.mwtb-field input:focus,
.mwtb-field select:focus,
.mwtb-field textarea:focus,
.mwtb-room-search input:focus {
    border-color: var(--mwtb-primary);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--mwtb-primary) 16%, transparent);
}

.mwtb-counter {
    display: grid;
    grid-template-columns: 44px minmax(55px, 1fr) 44px;
    overflow: hidden;
    min-height: 46px;
    border: 1px solid #c9d1dc;
    border-radius: 9px;
    background: #fff;
}

.mwtb-counter button {
    border: 0;
    color: var(--mwtb-primary);
    background: var(--mwtb-soft);
    cursor: pointer;
    font-size: 22px;
}

.mwtb-counter input {
    min-height: 44px;
    padding: 0;
    border: 0;
    border-radius: 0;
    text-align: center;
    -moz-appearance: textfield;
}

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

.mwtb-trip-note,
.mwtb-capacity-summary {
    display: flex;
    margin-top: 14px;
    padding: 12px 14px;
    border-radius: 9px;
    color: #344054;
    background: var(--mwtb-soft);
    flex-direction: column;
    gap: 2px;
    font-size: 16px;
}

.mwtb-capacity-summary.is-ok {
    color: var(--mwtb-success);
    background: #ecfdf3;
}

.mwtb-capacity-summary.is-warning {
    color: var(--mwtb-warning);
    background: #fffaeb;
}

.mwtb-skip-option,
.mwtb-choice-card,
.mwtb-room-card,
.mwtb-extra-item {
    border: 1px solid var(--mwtb-border);
    border-radius: 11px;
    background: #fff;
}

.mwtb-skip-option {
    display: flex;
    margin-bottom: 14px;
    padding: 13px;
    cursor: pointer;
    align-items: center;
    gap: 10px;
}

.mwtb-skip-option span {
    display: flex;
    flex-direction: column;
}

.mwtb-skip-option small {
    color: var(--mwtb-muted);
}

.mwtb-choice-group,
.mwtb-room-group {
    margin-bottom: 20px;
}

.mwtb-choice-group > h3,
.mwtb-room-group > h3 {
    margin: 0 0 10px;
    font-size: 17px;
}

.mwtb-choice-card {
    position: relative;
    display: grid;
    grid-template-columns: 28px minmax(0, 1fr);
    margin-bottom: 9px;
    padding: 13px;
    gap: 8px;
    transition: border-color .15s, box-shadow .15s, opacity .15s;
}

.mwtb-choice-card.is-selected,
.mwtb-room-price-option.is-selected,
.mwtb-extra-item.is-selected {
    border-color: var(--mwtb-primary);
    box-shadow: 0 0 0 2px color-mix(in srgb, var(--mwtb-primary) 12%, transparent);
}

.mwtb-choice-card.is-disabled,
.mwtb-room-card.is-disabled {
    opacity: .62;
    background: #f8fafc;
}

.mwtb-choice-select {
    padding-top: 3px;
}

.mwtb-choice-select input,
.mwtb-room-price-option input,
.mwtb-extra-item input,
.mwtb-confirm-check input {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
}

.mwtb-radio-ui,
.mwtb-check-ui {
    display: inline-flex;
    width: 20px;
    height: 20px;
    border: 2px solid #98a2b3;
    background: #fff;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
}

.mwtb-radio-ui {
    border-radius: 50%;
}

.mwtb-check-ui {
    border-radius: 5px;
}

input:checked + .mwtb-radio-ui,
input:checked + .mwtb-check-ui {
    border-color: var(--mwtb-primary);
    background: var(--mwtb-primary);
}

input:checked + .mwtb-radio-ui::after {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    content: "";
    background: #fff;
}

input:checked + .mwtb-check-ui::after {
    width: 5px;
    height: 9px;
    margin-top: -2px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    content: "";
    transform: rotate(45deg);
}

.mwtb-choice-title {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
}

.mwtb-choice-title strong {
    font-size: 16px;
}

.mwtb-choice-title span,
.mwtb-choice-meta {
    color: var(--mwtb-muted);
    font-size: 16px;
}

.mwtb-choice-meta {
    margin-top: 3px;
}

.mwtb-choice-price {
    grid-column: 2;
    text-align: right;
}

.mwtb-unsuitable-reason {
    margin: 7px 0 0;
    color: var(--mwtb-danger);
    font-size: 16px;
    font-weight: 600;
}

.mwtb-quantity {
    display: inline-grid;
    grid-template-columns: 31px 34px 31px;
    overflow: hidden;
    margin-top: 9px;
    border: 1px solid var(--mwtb-border);
    border-radius: 7px;
    background: #fff;
}

.mwtb-quantity button {
    min-height: 30px;
    padding: 0;
    border: 0;
    color: var(--mwtb-primary);
    background: var(--mwtb-soft);
    cursor: pointer;
    font-weight: 700;
}

.mwtb-quantity span {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
}

.mwtb-choice-loading {
    display: flex;
    margin: 12px 0;
    padding: 13px;
    border-radius: 9px;
    color: var(--mwtb-muted);
    background: var(--mwtb-soft);
    align-items: center;
    gap: 9px;
    font-size: 16px;
}

.mwtb-room-list.is-loading,
.mwtb-room-groups.is-loading {
    opacity: .5;
}

.mwtb-room-card {
    display: grid;
    grid-template-columns: 90px minmax(0, 1fr);
    overflow: hidden;
    margin-bottom: 11px;
}

.mwtb-room-media {
    display: flex;
    min-height: 115px;
    color: var(--mwtb-muted);
    background: #eef2f6;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    text-align: center;
}

.mwtb-room-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mwtb-room-info {
    min-width: 0;
    padding: 12px;
}

.mwtb-room-title {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
}

.mwtb-room-title h4 {
    margin: 0;
    font-size: 16px;
}

.mwtb-room-title span {
    color: var(--mwtb-muted);
    font-size: 16px;
    text-align: right;
}

.mwtb-room-price-list {
    display: flex;
    margin-top: 10px;
    flex-direction: column;
    gap: 7px;
}

.mwtb-room-price-option {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    padding: 9px;
    border: 1px solid #e4e7ec;
    border-radius: 8px;
    align-items: center;
    gap: 8px;
}

.mwtb-room-price-option > label,
.mwtb-extra-item > label {
    position: relative;
    display: flex;
    min-width: 0;
    cursor: pointer;
    align-items: center;
    gap: 9px;
}

.mwtb-room-price-option label > span:last-child,
.mwtb-extra-item label > span:last-child {
    display: flex;
    min-width: 0;
    flex-direction: column;
}

.mwtb-room-price-option small,
.mwtb-extra-item small {
    color: var(--mwtb-muted);
    font-size: 16px;
}

.mwtb-room-price-option .mwtb-quantity {
    grid-column: 1;
    margin-left: 29px;
}

.mwtb-line-total {
    grid-column: 2;
    grid-row: 1 / span 2;
    font-size: 16px;
    white-space: nowrap;
}

.mwtb-extra-tabs {
    display: flex;
    overflow-x: auto;
    margin-bottom: 14px;
    padding-bottom: 3px;
    gap: 7px;
}

.mwtb-extra-tabs button {
    min-height: 38px;
    padding: 7px 13px;
    border: 1px solid var(--mwtb-border);
    border-radius: 999px;
    color: var(--mwtb-text);
    background: #fff;
    cursor: pointer;
    white-space: nowrap;
}

.mwtb-extra-tabs button.is-active {
    color: #fff;
    border-color: var(--mwtb-primary);
    background: var(--mwtb-primary);
}

.mwtb-extra-panel {
    display: none;
}

.mwtb-extra-panel.is-active {
    display: block;
}

.mwtb-extra-item {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    margin-bottom: 8px;
    padding: 11px;
    align-items: center;
    gap: 8px;
}

.mwtb-extra-item .mwtb-quantity {
    grid-column: 1;
    margin-left: 29px;
}

.mwtb-extra-item > strong {
    grid-column: 2;
    grid-row: 1 / span 2;
    font-size: 16px;
    white-space: nowrap;
}

.mwtb-empty-choice {
    padding: 28px 15px;
    border: 1px dashed var(--mwtb-border);
    border-radius: 10px;
    color: var(--mwtb-muted);
    background: var(--mwtb-soft);
    text-align: center;
}

.mwtb-honeypot {
    position: absolute !important;
    left: -99999px !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
}

.mwtb-review {
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.mwtb-review section {
    padding: 14px;
    border: 1px solid var(--mwtb-border);
    border-radius: 10px;
}

.mwtb-review h3 {
    margin: 0 0 10px;
    font-size: 16px;
}

.mwtb-review dl,
.mwtb-review-lines {
    margin: 0;
}

.mwtb-review dl > div,
.mwtb-review-lines p {
    display: flex;
    margin: 0;
    padding: 7px 0;
    border-bottom: 1px solid #eef1f5;
    align-items: flex-start;
    justify-content: space-between;
    gap: 15px;
}

.mwtb-review dl > div:last-child,
.mwtb-review-lines p:last-child {
    border-bottom: 0;
}

.mwtb-review dt,
.mwtb-review-lines span {
    color: var(--mwtb-muted);
}

.mwtb-review dd {
    margin: 0;
    max-width: 60%;
    text-align: right;
}

.mwtb-review-total {
    margin-top: 7px !important;
    padding-top: 12px !important;
    color: var(--mwtb-primary);
    font-size: 16px;
}

.mwtb-confirm-check {
    position: relative;
    display: flex;
    margin-top: 15px;
    padding: 13px;
    border: 1px solid var(--mwtb-border);
    border-radius: 10px;
    cursor: pointer;
    align-items: flex-start;
    gap: 10px;
}

.mwtb-confirm-check::before {
    display: inline-flex;
    width: 21px;
    height: 21px;
    border: 2px solid #98a2b3;
    border-radius: 5px;
    content: "";
    flex: 0 0 auto;
}

.mwtb-confirm-check:has(input:checked)::before {
    border-color: var(--mwtb-primary);
    background: var(--mwtb-primary);
    box-shadow: inset 0 0 0 4px #fff;
}

.mwtb-step-actions {
    display: flex;
    padding: 13px 15px;
    border-top: 1px solid var(--mwtb-border);
    background: var(--mwtb-soft);
    justify-content: space-between;
    gap: 9px;
}

.mwtb-button {
    min-height: 44px;
    padding: 9px 16px;
    border: 1px solid transparent;
    border-radius: 9px;
    cursor: pointer;
    font-weight: 700;
}

.mwtb-button-primary {
    margin-left: auto;
    color: #fff;
    border-color: var(--mwtb-primary);
    background: var(--mwtb-primary);
}

.mwtb-button-primary:hover {
    filter: brightness(.92);
}

.mwtb-button-secondary {
    color: var(--mwtb-text);
    border-color: var(--mwtb-border);
    background: #fff;
}

.mwtb-button:disabled {
    cursor: wait;
    opacity: .65;
}

.mwtb-form-message {
    margin: 14px 15px 0;
    padding: 11px 13px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
}

.mwtb-form-message.is-error {
    color: var(--mwtb-danger);
    background: #fef3f2;
}

.mwtb-booking-summary {
    display: none;
}

.mwtb-summary-card {
    padding: 16px;
}

.mwtb-summary-card h3 {
    margin: 0 0 12px;
    font-size: 17px;
}

.mwtb-summary-trip,
.mwtb-summary-lines {
    padding-bottom: 8px;
    border-bottom: 1px solid var(--mwtb-border);
}

.mwtb-summary-content p,
.mwtb-summary-trip p,
.mwtb-summary-lines p {
    display: flex;
    margin: 0;
    padding: 6px 0;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
    font-size: 16px;
}

.mwtb-summary-content p span,
.mwtb-summary-trip p span,
.mwtb-summary-lines p span {
    color: var(--mwtb-muted);
}

.mwtb-summary-content p strong,
.mwtb-summary-trip p strong,
.mwtb-summary-lines p strong {
    max-width: 58%;
    text-align: right;
}

.mwtb-summary-total {
    display: flex;
    margin-top: 12px;
    color: var(--mwtb-primary);
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    font-size: 16px;
}

.mwtb-summary-total strong {
    font-size: 18px;
}

.mwtb-summary-card > small {
    display: block;
    margin-top: 11px;
    color: var(--mwtb-muted);
    font-size: 16px;
}

.mwtb-mobile-total {
    position: fixed;
    z-index: 9998;
    right: 10px;
    bottom: 10px;
    left: 10px;
    overflow: hidden;
    border-radius: 12px;
    background: var(--mwtb-primary);
    box-shadow: 0 10px 32px rgba(16, 24, 40, .25);
}

.mwtb-mobile-total button {
    display: grid;
    grid-template-columns: 1fr auto;
    width: 100%;
    min-height: 58px;
    padding: 9px 13px;
    border: 0;
    color: #fff;
    background: transparent;
    cursor: pointer;
    text-align: left;
}

.mwtb-mobile-total button span,
.mwtb-mobile-total button strong {
    align-self: center;
}

.mwtb-mobile-total button strong {
    font-size: 16px;
    text-align: right;
}

.mwtb-mobile-total button em {
    grid-column: 1 / -1;
    font-size: 16px;
    font-style: normal;
    opacity: .82;
}

.mwtb-mobile-summary-sheet {
    position: fixed;
    z-index: 10000;
    inset: 0;
    overflow: auto;
    padding: 52px 16px 24px;
    background: rgba(16, 24, 40, .55);
    opacity: 0;
    transition: opacity .18s;
}

.mwtb-mobile-summary-sheet.is-open {
    opacity: 1;
}

.mwtb-mobile-summary-sheet > div {
    max-width: 520px;
    margin: 0 auto;
    padding: 18px;
    border-radius: 14px;
    background: #fff;
}

.mwtb-mobile-summary-sheet h3 {
    margin-top: 0;
}

.mwtb-mobile-sheet-close {
    position: fixed;
    top: 12px;
    right: 14px;
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 50%;
    color: #fff;
    background: rgba(16, 24, 40, .75);
    cursor: pointer;
    font-size: 24px;
}

.mwtb-success {
    padding: 36px 18px;
    border: 1px solid #abefc6;
    border-radius: var(--mwtb-radius);
    background: #ecfdf3;
    text-align: center;
}

.mwtb-success-icon {
    display: inline-flex;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    color: #fff;
    background: var(--mwtb-success);
    align-items: center;
    justify-content: center;
    font-size: 30px;
}

.mwtb-success h2 {
    margin: 14px 0 6px;
}

.mwtb-success > strong {
    display: inline-block;
    margin: 4px 0 12px;
    padding: 9px 14px;
    border-radius: 8px;
    color: var(--mwtb-success);
    background: #fff;
    font-size: 22px;
    letter-spacing: .05em;
}

@media (min-width: 640px) {
    .mwtb-step {
        padding: 24px;
    }

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

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

    .mwtb-step-actions {
        padding: 15px 24px;
    }

    .mwtb-choice-card {
        grid-template-columns: 30px minmax(0, 1fr) auto;
    }

    .mwtb-choice-price {
        grid-column: 3;
        grid-row: 1;
        align-self: center;
    }

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

    .mwtb-room-media {
        min-height: 150px;
    }
}

@media (min-width: 960px) {
    .mwtb-progress {
        display: grid;
        grid-template-columns: repeat(6, minmax(0, 1fr));
    }

    .mwtb-mobile-progress {
        display: none;
    }

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

    .mwtb-booking-summary {
        position: sticky;
        top: 32px;
        display: block;
    }

    .mwtb-mobile-total,
    .mwtb-mobile-summary-sheet {
        display: none !important;
    }
}

@media (min-width: 1180px) {
    .mwtb-booking-layout {
        grid-template-columns: minmax(0, 1fr) 340px;
        gap: 22px;
    }

    .mwtb-progress-label {
        font-size: 16px;
    }
}

@media (max-width: 959px) {
    .mwtb-booking-shell {
        padding-bottom: 76px;
    }

    .mwtb-booking .mwtb-booking-intro {
        min-height: 0;
        padding: 26px 28px;
        grid-template-columns: minmax(0, 1fr);
        gap: 16px;
    }

    .mwtb-booking .mwtb-booking-intro h2 {
        font-size: clamp(28px, 5vw, 34px);
    }

    .mwtb-booking .mwtb-booking-intro-benefits {
        display: flex;
        flex-wrap: wrap;
        gap: 4px 24px;
    }
}

.mwtb-mobile-progress {
    position: relative;
    overflow: hidden;
    padding-bottom: 15px;
}

.mwtb-mobile-progress::before,
.mwtb-mobile-progress::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 4px;
    content: "";
}

.mwtb-mobile-progress::before {
    background: rgba(255, 255, 255, .28);
}

.mwtb-mobile-progress::after {
    right: auto;
    width: var(--mwtb-progress-percent, 16.666%);
    background: #fff;
    transition: width .2s ease;
}

.mwtb-booking [hidden] {
    display: none !important;
}

.mwtb-choice-groups.is-loading,
.mwtb-room-groups.is-loading {
    opacity: .55;
    transition: opacity .12s;
}


/* ===== 3.2.0: chọn số lượng theo từng Dạng phòng ===== */
.mwtb-room-price-option {
    display: block;
    padding: 9px;
}

.mwtb-room-price-heading {
    display: flex;
    margin-bottom: 7px;
    padding-bottom: 7px;
    border-bottom: 1px dashed #e4e7ec;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.mwtb-room-price-heading span {
    color: var(--mwtb-muted);
    font-size: 16px;
    text-align: right;
}

.mwtb-room-variant-options {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.mwtb-room-variant-option {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    padding: 8px;
    border: 1px solid #e4e7ec;
    border-radius: 7px;
    align-items: center;
    gap: 8px;
    background: #fff;
}

.mwtb-room-variant-option.is-selected {
    border-color: var(--mwtb-primary);
    background: var(--mwtb-primary-soft);
}

.mwtb-room-variant-option > label {
    position: relative;
    display: flex;
    min-width: 0;
    cursor: pointer;
    align-items: center;
    gap: 9px;
}

.mwtb-room-variant-option label > span:last-child {
    display: flex;
    min-width: 0;
    flex-direction: column;
}

.mwtb-room-variant-option small {
    color: var(--mwtb-muted);
    font-size: 16px;
}

.mwtb-room-variant-option .mwtb-quantity {
    grid-column: 1;
    margin-left: 29px;
}

.mwtb-room-variant-option .mwtb-line-total {
    grid-column: 2;
    grid-row: 1 / span 2;
}

@media (max-width: 640px) {
    .mwtb-booking .mwtb-booking-intro {
        margin-bottom: 12px;
        padding: 22px 18px;
        border-radius: 16px;
        gap: 14px;
    }

    .mwtb-booking .mwtb-booking-intro-eyebrow {
        margin-bottom: 7px;
        font-size: 16px;
        letter-spacing: .075em;
    }

    .mwtb-booking .mwtb-booking-intro h2 {
        margin-bottom: 7px !important;
        font-size: 27px;
        line-height: 1.16;
    }

    .mwtb-booking .mwtb-booking-intro p {
        font-size: 16px;
        line-height: 1.5;
    }

    .mwtb-booking .mwtb-booking-intro-benefits {
        display: block;
        min-width: 0;
    }

    .mwtb-booking .mwtb-booking-intro-benefits li {
        font-size: 16px;
        white-space: normal;
    }

    .mwtb-room-price-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .mwtb-room-price-heading span {
        text-align: left;
    }
}


/* ===== 3.3.0: chống xung đột Flatsome và cải thiện UX ===== */
.mwtb-booking .mwtb-progress-step {
    width: 100%;
    min-height: 44px;
    margin: 0 !important;
    padding: 8px 6px !important;
    border: 0 !important;
    border-radius: 8px;
    color: var(--mwtb-muted);
    background: transparent !important;
    box-shadow: none !important;
    line-height: 1.25 !important;
    letter-spacing: 0 !important;
    text-align: left;
    text-transform: none !important;
    cursor: default;
    opacity: 1 !important;
}

.mwtb-booking .mwtb-progress-step.is-clickable {
    cursor: pointer;
}

.mwtb-booking .mwtb-progress-step.is-clickable:hover,
.mwtb-booking .mwtb-progress-step.is-clickable:focus-visible {
    background: color-mix(
        in srgb,
        var(--mwtb-primary) 8%,
        #fff
    ) !important;
    outline: 0;
}

.mwtb-booking .mwtb-progress-step:disabled {
    cursor: default;
    opacity: 1 !important;
}

.mwtb-booking input,
.mwtb-booking select,
.mwtb-booking textarea,
.mwtb-booking button {
    font-family: inherit !important;
    letter-spacing: 0 !important;
    text-transform: none !important;
}

.mwtb-booking .mwtb-field input:not([type="checkbox"]):not([type="radio"]),
.mwtb-booking .mwtb-field select,
.mwtb-booking .mwtb-field textarea {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 10px 13px !important;
    border: 1px solid #c9d1dc !important;
    border-radius: 10px !important;
    color: var(--mwtb-text) !important;
    background-color: #fff !important;
    box-shadow: none !important;
    line-height: 1.35 !important;
    opacity: 1 !important;
}

.mwtb-booking .mwtb-field input:not([type="checkbox"]):not([type="radio"]),
.mwtb-booking .mwtb-field select {
    height: 48px !important;
    min-height: 48px !important;
}

.mwtb-booking .mwtb-field textarea {
    min-height: 112px !important;
}

.mwtb-booking .mwtb-field select {
    padding-right: 38px !important;
    background-position: right 12px center !important;
}

.mwtb-booking .mwtb-field input[type="date"] {
    appearance: auto !important;
    -webkit-appearance: auto !important;
}

.mwtb-booking .mwtb-field input:focus,
.mwtb-booking .mwtb-field select:focus,
.mwtb-booking .mwtb-field textarea:focus {
    border-color: var(--mwtb-primary) !important;
    box-shadow: 0 0 0 3px color-mix(
        in srgb,
        var(--mwtb-primary) 15%,
        transparent
    ) !important;
    outline: 0 !important;
}

.mwtb-booking .mwtb-counter {
    height: 48px !important;
    min-height: 48px !important;
    margin: 0 !important;
    border: 1px solid #c9d1dc !important;
    border-radius: 10px !important;
    background: #fff !important;
    box-shadow: none !important;
}

.mwtb-booking .mwtb-counter input {
    width: 100% !important;
    height: 46px !important;
    min-height: 46px !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: #fff !important;
    box-shadow: none !important;
    font-weight: 700 !important;
}

.mwtb-booking .mwtb-counter button,
.mwtb-booking .mwtb-quantity button {
    min-width: 42px !important;
    min-height: 42px !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    color: var(--mwtb-primary) !important;
    background: var(--mwtb-soft) !important;
    box-shadow: none !important;
    line-height: 1 !important;
    font-size: 21px !important;
    font-weight: 700 !important;
}

.mwtb-booking .mwtb-counter button:hover,
.mwtb-booking .mwtb-quantity button:hover {
    color: #fff !important;
    background: var(--mwtb-primary) !important;
}

.mwtb-booking .mwtb-button {
    display: inline-flex !important;
    min-width: 124px;
    min-height: 46px !important;
    margin: 0 !important;
    padding: 10px 17px !important;
    border-radius: 10px !important;
    box-shadow: none !important;
    line-height: 1.2 !important;
    align-items: center;
    justify-content: center;
    font-size: 16px !important;
    font-weight: 700 !important;
}

.mwtb-booking .mwtb-button-primary {
    margin-left: auto !important;
    color: #fff !important;
    border: 1px solid var(--mwtb-primary) !important;
    background: var(--mwtb-primary) !important;
}

.mwtb-booking .mwtb-button-secondary {
    color: var(--mwtb-text) !important;
    border: 1px solid var(--mwtb-border) !important;
    background: #fff !important;
}

.mwtb-booking .mwtb-extra-tabs button {
    min-height: 40px !important;
    margin: 0 !important;
    padding: 8px 13px !important;
    border-radius: 8px !important;
    box-shadow: none !important;
    line-height: 1.2 !important;
    font-size: 16px !important;
}

.mwtb-booking .mwtb-capacity-summary.is-neutral {
    color: #344054;
    background: #f2f4f7;
}

@media (max-width: 640px) {
    .mwtb-booking .mwtb-step-actions {
        position: sticky;
        z-index: 20;
        bottom: 66px;
        padding: 10px !important;
    }

    .mwtb-booking .mwtb-button {
        min-width: 0;
        flex: 1 1 50%;
    }
}


/* ===== 3.3.1: trạng thái nút và bộ chọn số khách ===== */

/* Flatsome không được phép ép hiện phần tử đang hidden. */
.mwtb-booking [hidden] {
    display: none !important;
}

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

.mwtb-booking .mwtb-guest-card {
    display: flex;
    min-width: 0;
    min-height: 72px;
    padding: 12px 13px;
    border: 1px solid #d7dde6;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 1px 2px rgba(16, 24, 40, .03);
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.mwtb-booking .mwtb-guest-card:hover {
    border-color: color-mix(
        in srgb,
        var(--mwtb-primary) 45%,
        #d7dde6
    );
}

.mwtb-booking .mwtb-guest-copy {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 3px;
}

.mwtb-booking .mwtb-guest-title {
    color: var(--mwtb-text);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.25;
}

.mwtb-booking .mwtb-guest-title b {
    color: #d92d20;
}

.mwtb-booking .mwtb-guest-copy small {
    color: var(--mwtb-muted);
    font-size: 16px;
    line-height: 1.3;
}

.mwtb-booking .mwtb-guest-card .mwtb-counter {
    display: grid;
    width: 126px !important;
    min-width: 126px;
    height: 40px !important;
    min-height: 40px !important;
    overflow: hidden;
    grid-template-columns: 38px 50px 38px;
    border: 1px solid #d7dde6 !important;
    border-radius: 10px !important;
    background: #f8fafc !important;
    box-shadow: none !important;
}

.mwtb-booking .mwtb-guest-card .mwtb-counter input {
    width: 50px !important;
    height: 38px !important;
    min-height: 38px !important;
    padding: 0 !important;
    color: var(--mwtb-text) !important;
    background: #fff !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    text-align: center;
}

.mwtb-booking .mwtb-guest-card .mwtb-counter button {
    width: 38px !important;
    min-width: 38px !important;
    height: 38px !important;
    min-height: 38px !important;
    border-radius: 0 !important;
    color: var(--mwtb-primary) !important;
    background: #f3f7f6 !important;
    font-size: 20px !important;
}

.mwtb-booking
    .mwtb-guest-card
    .mwtb-counter
    button:hover {
    color: #fff !important;
    background: var(--mwtb-primary) !important;
}

.mwtb-booking .mwtb-step-actions {
    align-items: center;
}

.mwtb-booking .mwtb-step-actions .mwtb-button-primary {
    margin-left: auto !important;
}

@media (max-width: 640px) {
    .mwtb-booking .mwtb-guest-grid {
        grid-template-columns: 1fr;
        gap: 9px;
    }

    .mwtb-booking .mwtb-guest-card {
        min-height: 66px;
        padding: 10px 11px;
    }
}

@media (max-width: 380px) {
    .mwtb-booking .mwtb-guest-card {
        align-items: stretch;
        flex-direction: column;
    }

    .mwtb-booking .mwtb-guest-card .mwtb-counter {
        width: 100% !important;
        grid-template-columns: 40px minmax(50px, 1fr) 40px;
    }

    .mwtb-booking .mwtb-guest-card .mwtb-counter input {
        width: 100% !important;
    }
}


/* ===== 3.3.2: có thể quay lại mọi bước đã mở ===== */
.mwtb-booking .mwtb-progress-step.is-reached:not(.is-active) {
    color: var(--mwtb-text);
}

.mwtb-booking
    .mwtb-progress-step.is-reached:not(.is-active)
    .mwtb-progress-number {
    border-color: color-mix(
        in srgb,
        var(--mwtb-primary) 45%,
        var(--mwtb-border)
    );
}

.mwtb-booking .mwtb-progress-step.is-clickable {
    cursor: pointer !important;
}

.mwtb-booking
    .mwtb-progress-step:not(.is-reached):disabled {
    color: var(--mwtb-muted);
    cursor: not-allowed;
}


/* ===== 3.4.0: trạng thái phụ thuộc giữa các bước ===== */
.mwtb-form-message.is-info {
    color: #175cd3;
    border: 1px solid #b2ddff;
    background: #eff8ff;
}

.mwtb-form-message.is-warning {
    color: #93370d;
    border: 1px solid #fedf89;
    background: #fffaeb;
}

.mwtb-booking
    .mwtb-progress-step.is-needs-review {
    color: #b54708;
}

.mwtb-booking
    .mwtb-progress-step.is-needs-review
    .mwtb-progress-number {
    color: #fff;
    border-color: #f79009;
    background: #f79009;
}

.mwtb-booking
    .mwtb-progress-step.is-needs-review
    .mwtb-progress-number {
    font-size: 0;
}

.mwtb-booking
    .mwtb-progress-step.is-needs-review
    .mwtb-progress-number::before {
    content: "!";
    font-size: 16px;
    font-weight: 800;
}

.mwtb-booking
    .mwtb-progress-step.is-needs-review
    .mwtb-progress-label::after {
    display: block;
    margin-top: 2px;
    content: "Cần kiểm tra";
    color: #b54708;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.1;
}

.mwtb-booking
    .mwtb-progress-step.is-updated:not(.is-needs-review)
    .mwtb-progress-number {
    color: #175cd3;
    border-color: #84caff;
    background: #eff8ff;
}

.mwtb-booking
    .mwtb-progress-step.is-updated:not(.is-needs-review)
    .mwtb-progress-label::after {
    display: block;
    margin-top: 2px;
    content: "Đã tính lại";
    color: #175cd3;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.1;
}

@media (max-width: 980px) {
    .mwtb-booking
        .mwtb-progress-step.is-needs-review
        .mwtb-progress-label::after,
    .mwtb-booking
        .mwtb-progress-step.is-updated
        .mwtb-progress-label::after {
        display: none;
    }
}


/* ===== 3.4.1: số lượng dịch vụ là số người/số suất thực tế ===== */
.mwtb-booking .mwtb-extra-item .mwtb-quantity {
    max-width: 210px;
}

.mwtb-booking .mwtb-extra-item .mwtb-quantity input {
    font-weight: 700 !important;
    text-align: center !important;
}


/* ===== 3.4.2: bố cục Dịch vụ kèm theo gọn hơn ===== */

.mwtb-booking .mwtb-extra-panel.is-active {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.mwtb-booking .mwtb-extra-item {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    min-height: 62px;
    margin: 0 !important;
    padding: 9px 11px !important;
    border-radius: 10px;
    align-items: center;
    gap: 12px;
    transition:
        border-color .15s ease,
        background-color .15s ease,
        box-shadow .15s ease;
}

.mwtb-booking .mwtb-extra-item.is-selected {
    background: color-mix(
        in srgb,
        var(--mwtb-primary) 3%,
        #fff
    );
}

.mwtb-booking .mwtb-extra-main {
    display: grid !important;
    min-width: 0;
    margin: 0 !important;
    grid-template-columns: 20px minmax(0, 1fr);
    align-items: center;
    gap: 9px;
    cursor: pointer;
}


/* ===== 3.4.5: chia Hình thức đi thành tab ===== */
.mwtb-booking .mwtb-vehicle-tabs {
    display: flex;
    overflow-x: auto;
    margin: 0 0 14px;
    padding: 2px 0 5px;
    gap: 8px;
    overscroll-behavior-x: contain;
    scroll-snap-type: x proximity;
    scrollbar-width: thin;
}

.mwtb-booking .mwtb-vehicle-tabs button {
    min-width: max-content;
    min-height: 40px !important;
    margin: 0 !important;
    padding: 8px 14px !important;
    border: 1px solid var(--mwtb-border) !important;
    border-radius: 9px !important;
    color: var(--mwtb-text) !important;
    background: #fff !important;
    box-shadow: none !important;
    flex: 0 0 auto;
    scroll-snap-align: start;
    line-height: 1.2 !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    cursor: pointer;
}

.mwtb-booking .mwtb-vehicle-tabs button:hover,
.mwtb-booking .mwtb-vehicle-tabs button:focus-visible {
    border-color: var(--mwtb-primary) !important;
    outline: 0;
}

.mwtb-booking .mwtb-vehicle-tabs button.is-active {
    color: #fff !important;
    border-color: var(--mwtb-primary) !important;
    background: var(--mwtb-primary) !important;
}

.mwtb-booking .mwtb-vehicle-panel {
    display: none;
}

.mwtb-booking .mwtb-vehicle-panel.is-active {
    display: block;
}

.mwtb-booking .mwtb-vehicle-roundtrip-note,
.mwtb-booking .mwtb-self-transport-card {
    display: flex;
    margin-bottom: 14px;
    padding: 12px 14px;
    border: 1px solid #b7e2d3;
    border-radius: 10px;
    color: var(--mwtb-primary);
    background: #effaf6;
    align-items: center;
    gap: 10px;
    font-size: 16px;
}

.mwtb-booking .mwtb-vehicle-roundtrip-note > span,
.mwtb-booking .mwtb-self-transport-card > span {
    display: inline-flex;
    width: 21px;
    height: 21px;
    border-radius: 50%;
    color: #fff;
    background: var(--mwtb-primary);
    flex: 0 0 21px;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 800;
}

.mwtb-booking .mwtb-self-transport-card {
    margin-bottom: 0;
}

.mwtb-booking .mwtb-self-transport-card > div {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 2px;
}

.mwtb-booking .mwtb-self-transport-card small {
    color: var(--mwtb-muted);
}

.mwtb-booking .mwtb-vehicle-panel .mwtb-choice-card:last-child {
    margin-bottom: 0;
}

@media (max-width: 640px) {
    .mwtb-booking .mwtb-vehicle-tabs {
        margin-right: -11px;
        padding-right: 11px;
    }

    .mwtb-booking .mwtb-vehicle-tabs button {
        min-height: 38px !important;
        padding: 7px 12px !important;
    }
}

.mwtb-booking .mwtb-extra-copy {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 2px;
}

.mwtb-booking .mwtb-extra-copy strong {
    overflow: hidden;
    color: var(--mwtb-text);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.25;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.mwtb-booking .mwtb-extra-copy small {
    color: var(--mwtb-muted);
    font-size: 16px;
    line-height: 1.3;
}

.mwtb-booking .mwtb-extra-controls {
    display: flex;
    min-width: 0;
    align-items: center;
    justify-content: flex-end;
    gap: 14px;
}

.mwtb-booking .mwtb-extra-quantity-block {
    display: flex;
    align-items: center;
    gap: 7px;
}

.mwtb-booking .mwtb-extra-quantity-label {
    color: var(--mwtb-muted);
    font-size: 16px;
    font-weight: 600;
    white-space: nowrap;
}

.mwtb-booking
    .mwtb-extra-item
    .mwtb-quantity {
    display: inline-grid;
    width: auto;
    max-width: none;
    margin: 0 !important;
    grid-template-columns: 30px 34px 30px;
    border-radius: 7px;
}

.mwtb-booking
    .mwtb-extra-item
    .mwtb-quantity button {
    width: 30px !important;
    min-width: 30px !important;
    height: 30px !important;
    min-height: 30px !important;
    font-size: 17px !important;
}

.mwtb-booking
    .mwtb-extra-item
    .mwtb-quantity span {
    min-width: 34px;
    height: 30px;
    font-size: 16px;
}

.mwtb-booking .mwtb-extra-total {
    display: flex;
    min-width: 112px;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    gap: 1px;
    text-align: right;
    white-space: nowrap;
}

.mwtb-booking .mwtb-extra-total small {
    color: var(--mwtb-muted);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.1;
}

.mwtb-booking .mwtb-extra-total strong {
    color: var(--mwtb-text);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.25;
}

.mwtb-booking
    .mwtb-extra-total.is-active strong {
    color: var(--mwtb-primary);
}

.mwtb-booking
    .mwtb-extra-total.is-preview {
    opacity: .8;
}

/* Bỏ các vị trí grid cũ của phiên bản trước. */
.mwtb-booking
    .mwtb-extra-item > strong,
.mwtb-booking
    .mwtb-extra-item > .mwtb-quantity {
    grid-column: auto;
    grid-row: auto;
    margin-left: 0;
}

@media (max-width: 720px) {
    .mwtb-booking .mwtb-extra-item {
        grid-template-columns: minmax(0, 1fr);
        min-height: 0;
        padding: 10px !important;
        gap: 8px;
    }

    .mwtb-booking .mwtb-extra-controls {
        padding-left: 29px;
        justify-content: space-between;
        gap: 8px;
    }

    .mwtb-booking .mwtb-extra-total {
        min-width: 98px;
    }
}

@media (max-width: 420px) {
    .mwtb-booking .mwtb-extra-controls {
        align-items: stretch;
        flex-direction: column;
    }

    .mwtb-booking .mwtb-extra-quantity-block {
        justify-content: space-between;
    }

    .mwtb-booking .mwtb-extra-total {
        width: 100%;
        min-width: 0;
        padding-top: 6px;
        border-top: 1px dashed var(--mwtb-border);
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        text-align: left;
    }
}

/* ===== 3.4.7: chọn phòng bằng select và gallery ảnh ===== */
.mwtb-booking .mwtb-room-select-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.mwtb-booking .mwtb-room-select-row {
    overflow: hidden;
    border: 1px solid var(--mwtb-border);
    border-radius: 12px;
    background: #fff;
    transition:
        border-color .15s ease,
        box-shadow .15s ease;
}

.mwtb-booking .mwtb-room-select-row.is-complete {
    border-color: color-mix(
        in srgb,
        var(--mwtb-primary) 58%,
        var(--mwtb-border)
    );
    box-shadow: 0 0 0 2px color-mix(
        in srgb,
        var(--mwtb-primary) 8%,
        transparent
    );
}

.mwtb-booking .mwtb-room-select-row-heading {
    display: flex;
    min-height: 56px;
    padding: 10px 13px;
    border-bottom: 1px solid var(--mwtb-border);
    background: var(--mwtb-soft);
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.mwtb-booking .mwtb-room-select-row-heading > div {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 2px;
}

.mwtb-booking .mwtb-room-select-row-heading span {
    color: var(--mwtb-primary);
    font-size: 16px;
    font-weight: 800;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.mwtb-booking .mwtb-room-select-row-heading strong {
    overflow: hidden;
    color: var(--mwtb-text);
    font-size: 16px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.mwtb-booking .mwtb-room-select-row-heading button {
    min-width: 46px;
    padding: 5px 8px;
    border: 1px solid #f0b4b4;
    border-radius: 7px;
    color: var(--mwtb-danger);
    background: #fff;
    cursor: pointer;
    font-size: 16px;
    font-weight: 700;
}

.mwtb-booking .mwtb-room-select-grid {
    display: grid;
    padding: 13px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: end;
    gap: 12px;
}

.mwtb-booking .mwtb-room-select-field {
    display: flex;
    min-width: 0;
    margin: 0;
    flex-direction: column;
    gap: 6px;
}

.mwtb-booking .mwtb-room-select-field > span {
    color: #344054;
    font-size: 16px;
    font-weight: 700;
}

.mwtb-booking .mwtb-room-select-field select {
    width: 100%;
    min-width: 0;
    min-height: 44px;
    margin: 0;
    padding: 8px 34px 8px 10px;
    border: 1px solid #c9d1dc;
    border-radius: 8px;
    color: var(--mwtb-text);
    background-color: #fff;
    box-shadow: none;
    outline: 0;
    font-size: 16px;
}

.mwtb-booking .mwtb-room-select-field select:focus {
    border-color: var(--mwtb-primary);
    box-shadow: 0 0 0 3px color-mix(
        in srgb,
        var(--mwtb-primary) 16%,
        transparent
    );
}

.mwtb-booking .mwtb-room-select-field select:disabled {
    color: #98a2b3;
    background-color: #f2f4f7;
    cursor: not-allowed;
    opacity: 1;
}

.mwtb-booking .mwtb-room-quantity {
    display: grid;
    overflow: hidden;
    width: 156px;
    max-width: 100%;
    min-height: 40px;
    border: 1px solid #c9d1dc;
    border-radius: 8px;
    background: #fff;
    grid-template-columns: 38px 78px 38px;
}

.mwtb-booking .mwtb-room-quantity:focus-within {
    border-color: var(--mwtb-primary);
    box-shadow: 0 0 0 3px color-mix(
        in srgb,
        var(--mwtb-primary) 16%,
        transparent
    );
}

.mwtb-booking .mwtb-room-quantity button {
    min-width: 38px !important;
    min-height: 38px !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    color: var(--mwtb-primary) !important;
    background: var(--mwtb-soft) !important;
    box-shadow: none !important;
    cursor: pointer;
    font-size: 18px !important;
    font-weight: 700 !important;
    line-height: 1 !important;
}

.mwtb-booking .mwtb-room-quantity button:hover:not(:disabled) {
    color: #fff !important;
    background: var(--mwtb-primary) !important;
}

.mwtb-booking .mwtb-room-quantity button:disabled {
    color: #98a2b3 !important;
    background: #f2f4f7 !important;
    cursor: not-allowed;
}

.mwtb-booking .mwtb-room-quantity input {
    width: 78px !important;
    min-width: 0 !important;
    min-height: 38px !important;
    margin: 0 !important;
    padding: 0 5px !important;
    border: 0 !important;
    border-radius: 0 !important;
    color: var(--mwtb-text) !important;
    background: #fff !important;
    box-shadow: none !important;
    outline: 0 !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    text-align: center;
    -moz-appearance: textfield;
}

.mwtb-booking .mwtb-room-quantity input::-webkit-inner-spin-button,
.mwtb-booking .mwtb-room-quantity input::-webkit-outer-spin-button {
    margin: 0;
    -webkit-appearance: none;
}

.mwtb-booking .mwtb-room-quantity input:disabled {
    color: #98a2b3 !important;
    background: #f2f4f7 !important;
}

.mwtb-booking .mwtb-room-price-availability {
    display: grid;
    min-height: 67px;
    padding: 9px 11px;
    border: 1px solid #b7e2d3;
    border-radius: 8px;
    color: #344054;
    background: #effaf6;
    grid-template-columns: minmax(0, 1fr) auto;
    align-content: center;
    align-items: center;
    gap: 2px 10px;
}

.mwtb-booking .mwtb-room-price-availability span {
    font-size: 16px;
    font-weight: 700;
}

.mwtb-booking .mwtb-room-price-availability strong {
    color: var(--mwtb-primary);
    font-size: 16px;
    white-space: nowrap;
}

.mwtb-booking .mwtb-room-price-availability small {
    grid-column: 1 / -1;
    color: var(--mwtb-muted);
    font-size: 16px;
}

.mwtb-booking .mwtb-room-selection-summary {
    display: flex;
    padding: 11px 13px;
    border-top: 1px dashed var(--mwtb-border);
    background: color-mix(
        in srgb,
        var(--mwtb-primary) 3%,
        #fff
    );
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.mwtb-booking .mwtb-room-selection-summary > span {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 2px;
}

.mwtb-booking .mwtb-room-selection-summary > span strong {
    overflow: hidden;
    font-size: 16px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.mwtb-booking .mwtb-room-selection-summary small {
    color: var(--mwtb-muted);
    font-size: 16px;
}

.mwtb-booking .mwtb-room-selection-summary > strong {
    color: var(--mwtb-primary);
    font-size: 16px;
    white-space: nowrap;
}

.mwtb-booking .mwtb-room-add-actions {
    display: flex;
    margin-top: 12px;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.mwtb-booking .mwtb-room-add-actions .mwtb-button {
    min-height: 40px;
}

.mwtb-booking .mwtb-room-add-actions small {
    color: var(--mwtb-muted);
    font-size: 16px;
}

.mwtb-booking .mwtb-room-add-actions button:disabled {
    color: #98a2b3;
    border-color: #d0d5dd;
    background: #f2f4f7;
    cursor: not-allowed;
    opacity: 1;
}

.mwtb-booking .mwtb-selected-room-list {
    overflow: hidden;
    margin-top: 17px;
    border: 1px solid var(--mwtb-border);
    border-radius: 12px;
    background: #fff;
}

.mwtb-booking .mwtb-selected-room-list-heading {
    display: flex;
    min-height: 68px;
    padding: 12px 15px;
    border-bottom: 1px solid var(--mwtb-border);
    background: color-mix(
        in srgb,
        var(--mwtb-primary) 3%,
        #fff
    );
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.mwtb-booking .mwtb-selected-room-list-heading > div {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 3px;
}

.mwtb-booking .mwtb-selected-room-list-heading span,
.mwtb-booking .mwtb-selected-room-info small {
    color: var(--mwtb-primary);
    font-size: 16px;
    font-weight: 800;
    letter-spacing: .055em;
    text-transform: uppercase;
}

.mwtb-booking .mwtb-selected-room-list-heading h3 {
    margin: 0;
    color: var(--mwtb-text);
    font-size: 16px;
}

.mwtb-booking .mwtb-selected-room-list-heading > small {
    color: var(--mwtb-muted);
    font-size: 16px;
    white-space: nowrap;
}

.mwtb-booking .mwtb-selected-room-list-items {
    padding: 0 15px;
}

.mwtb-booking .mwtb-selected-room-item {
    display: grid;
    padding: 14px 0;
    border-bottom: 1px solid var(--mwtb-border);
    grid-template-columns: 32px minmax(150px, 1fr) auto minmax(118px, auto) 34px;
    align-items: center;
    gap: 12px;
}

.mwtb-booking .mwtb-selected-room-item:last-child {
    border-bottom: 0;
}

.mwtb-booking .mwtb-selected-room-index {
    display: inline-flex;
    width: 28px;
    height: 28px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--mwtb-primary);
    background: color-mix(
        in srgb,
        var(--mwtb-primary) 10%,
        #fff
    );
    font-size: 16px;
    font-weight: 800;
}

.mwtb-booking .mwtb-selected-room-info,
.mwtb-booking .mwtb-selected-room-quantity,
.mwtb-booking .mwtb-selected-room-price {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 3px;
}

.mwtb-booking .mwtb-selected-room-info strong {
    overflow: hidden;
    color: var(--mwtb-text);
    font-size: 16px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.mwtb-booking .mwtb-selected-room-info > span,
.mwtb-booking .mwtb-selected-room-price > span {
    color: var(--mwtb-muted);
    font-size: 16px;
}

.mwtb-booking .mwtb-selected-room-quantity > small,
.mwtb-booking .mwtb-selected-room-price > small {
    color: #667085;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: .045em;
    text-transform: uppercase;
}

.mwtb-booking .mwtb-selected-room-quantity .mwtb-room-quantity {
    width: 132px;
    min-height: 36px;
    grid-template-columns: 34px 62px 34px;
}

.mwtb-booking .mwtb-selected-room-quantity .mwtb-room-quantity button {
    min-width: 34px !important;
    min-height: 34px !important;
}

.mwtb-booking .mwtb-selected-room-quantity .mwtb-room-quantity input {
    width: 62px !important;
    min-height: 34px !important;
}

.mwtb-booking .mwtb-selected-room-price {
    align-items: flex-end;
    text-align: right;
}

.mwtb-booking .mwtb-selected-room-price strong {
    color: var(--mwtb-primary);
    font-size: 16px;
    white-space: nowrap;
}

.mwtb-booking .mwtb-selected-room-remove {
    display: inline-flex;
    width: 32px;
    height: 32px;
    margin: 0;
    padding: 0;
    align-items: center;
    justify-content: center;
    border: 1px solid #f3c2c2;
    border-radius: 50%;
    color: var(--mwtb-danger);
    background: #fff7f7;
    box-shadow: none;
    cursor: pointer;
    font-size: 17px;
    line-height: 1;
}

.mwtb-booking .mwtb-selected-room-remove:hover {
    color: #fff;
    border-color: var(--mwtb-danger);
    background: var(--mwtb-danger);
}

.mwtb-booking .mwtb-selected-room-galleries {
    margin-top: 22px;
}

.mwtb-booking .mwtb-room-gallery-section-heading {
    margin-bottom: 13px;
}

.mwtb-booking .mwtb-room-gallery-section-heading > span {
    color: var(--mwtb-primary);
    font-size: 16px;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.mwtb-booking .mwtb-room-gallery-section-heading h3 {
    margin: 0;
    color: var(--mwtb-text);
    font-size: 18px;
}

.mwtb-booking .mwtb-room-gallery-section-heading p {
    margin: 0;
    color: var(--mwtb-muted);
    font-size: 16px;
}

.mwtb-booking .mwtb-selected-room-gallery {
    overflow: hidden;
    margin-bottom: 14px;
    padding: 14px 15px 12px;
    border: 1px solid var(--mwtb-border);
    border-radius: 14px;
    background: #fff;
}

.mwtb-booking .mwtb-selected-room-gallery:last-child {
    margin-bottom: 0;
}

.mwtb-booking .mwtb-selected-room-gallery-heading {
    display: flex;
    margin-bottom: 10px;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.mwtb-booking .mwtb-selected-room-gallery-heading > div {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 3px;
}

.mwtb-booking .mwtb-room-gallery-kicker {
    color: var(--mwtb-primary) !important;
    font-size: 16px !important;
    font-weight: 800;
    letter-spacing: .055em;
    line-height: 1.3;
    text-transform: uppercase;
}

.mwtb-booking .mwtb-selected-room-gallery-heading h4 {
    margin: 0;
    color: var(--mwtb-text);
    font-size: 16px;
}

.mwtb-booking .mwtb-selected-room-gallery-heading small {
    color: var(--mwtb-muted);
    font-size: 16px;
}

.mwtb-booking .mwtb-room-gallery-type {
    padding-top: 13px;
    white-space: nowrap;
}

.mwtb-booking .mwtb-room-gallery-swiper {
    width: 100%;
    min-height: 0;
}

.mwtb-booking .mwtb-room-gallery-swiper .swiper-slide {
    min-width: 0;
}

.mwtb-booking .mwtb-room-gallery-swiper .swiper-slide a {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    border-radius: 9px;
    background: #eef2f6;
}

.mwtb-booking .mwtb-room-gallery-swiper img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .2s ease;
}

.mwtb-booking .mwtb-room-gallery-swiper a:hover img {
    transform: scale(1.035);
}

.mwtb-booking .mwtb-room-gallery-controls {
    display: flex;
    margin-top: 10px;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
}

.mwtb-booking .mwtb-room-gallery-controls.is-empty {
    margin-top: 8px;
}

.mwtb-booking .mwtb-room-gallery-controls .swiper-button-prev,
.mwtb-booking .mwtb-room-gallery-controls .swiper-button-next {
    position: static;
    top: auto;
    right: auto;
    left: auto;
    display: inline-flex;
    width: 36px;
    height: 36px;
    margin: 0;
    flex: 0 0 36px;
    align-items: center;
    justify-content: center;
    border: 1px solid color-mix(in srgb, var(--mwtb-primary) 24%, #d0d5dd);
    border-radius: 50%;
    color: var(--mwtb-primary);
    background: color-mix(in srgb, var(--mwtb-primary) 5%, #fff);
    box-shadow: none;
    cursor: pointer;
    transition: color .18s ease, background .18s ease, border-color .18s ease, transform .18s ease;
}

.mwtb-booking .mwtb-room-gallery-controls .swiper-button-prev::after,
.mwtb-booking .mwtb-room-gallery-controls .swiper-button-next::after {
    display: none;
}

.mwtb-booking .mwtb-room-gallery-controls .swiper-button-prev span,
.mwtb-booking .mwtb-room-gallery-controls .swiper-button-next span {
    display: inline-flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.mwtb-booking .mwtb-room-gallery-controls .mwtb-room-gallery-arrow svg {
    display: block;
    width: 16px;
    height: 16px;
}

.mwtb-booking .mwtb-room-gallery-controls .swiper-button-prev:hover,
.mwtb-booking .mwtb-room-gallery-controls .swiper-button-next:hover {
    color: #fff;
    border-color: var(--mwtb-primary);
    background: var(--mwtb-primary);
    transform: translateY(-1px);
}

.mwtb-booking .mwtb-room-gallery-controls .swiper-button-disabled,
.mwtb-booking .mwtb-room-gallery-controls button:disabled {
    color: #98a2b3;
    border-color: #e4e7ec;
    background: #f9fafb;
    cursor: not-allowed;
    opacity: 1;
    transform: none;
}

.mwtb-booking .mwtb-room-gallery-controls .swiper-button-prev,
.mwtb-booking .mwtb-room-gallery-controls .swiper-button-next {
    font-size: 0;
}

.mwtb-booking .mwtb-room-gallery-count {
    min-width: 54px;
    color: var(--mwtb-muted);
    text-align: center;
    font-size: 16px;
    white-space: nowrap;
}

.mwtb-booking .mwtb-room-gallery-count strong {
    color: var(--mwtb-text);
    font-size: 16px;
}

.mwtb-booking .mwtb-room-gallery-empty {
    padding: 22px 12px;
    border: 1px dashed var(--mwtb-border);
    border-radius: 9px;
    color: var(--mwtb-muted);
    background: var(--mwtb-soft);
    text-align: center;
    font-size: 16px;
}

@media (max-width: 640px) {
    .mwtb-booking .mwtb-room-select-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .mwtb-booking .mwtb-room-selection-summary {
        align-items: flex-start;
        flex-direction: column;
    }

    .mwtb-booking .mwtb-room-selection-summary > strong {
        align-self: flex-end;
    }

    .mwtb-booking .mwtb-room-add-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .mwtb-booking .mwtb-room-add-actions .mwtb-button {
        width: 100%;
    }

    .mwtb-booking .mwtb-selected-room-list-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 5px;
    }

    .mwtb-booking .mwtb-selected-room-list-heading > small {
        white-space: normal;
    }

    .mwtb-booking .mwtb-selected-room-list-items {
        padding: 0 10px;
    }

    .mwtb-booking .mwtb-selected-room-item {
        grid-template-columns: 30px minmax(0, 1fr) 34px;
        align-items: start;
        gap: 9px;
    }

    .mwtb-booking .mwtb-selected-room-info {
        grid-column: 2;
    }

    .mwtb-booking .mwtb-selected-room-remove {
        grid-column: 3;
        grid-row: 1;
    }

    .mwtb-booking .mwtb-selected-room-quantity,
    .mwtb-booking .mwtb-selected-room-price {
        grid-column: 2 / 4;
        align-items: flex-start;
        text-align: left;
    }

    .mwtb-booking .mwtb-selected-room-gallery {
        padding: 10px;
    }

    .mwtb-booking .mwtb-room-gallery-type {
        max-width: 38%;
        overflow: hidden;
        padding-top: 12px;
        text-overflow: ellipsis;
    }

    .mwtb-booking .mwtb-room-gallery-controls .swiper-button-prev,
    .mwtb-booking .mwtb-room-gallery-controls .swiper-button-next {
        width: 38px;
        height: 38px;
        flex-basis: 38px;
    }
}

/* ===== 3.4.10: sửa giao diện mobile và trạng thái chọn phòng ===== */
.mwtb-booking .mwtb-room-add-button {
    transition:
        color .16s ease,
        border-color .16s ease,
        background-color .16s ease,
        box-shadow .16s ease,
        transform .16s ease;
}

.mwtb-booking .mwtb-room-add-button.is-ready {
    color: #fff !important;
    border-color: var(--mwtb-primary) !important;
    background: var(--mwtb-primary) !important;
    box-shadow: 0 5px 14px color-mix(
        in srgb,
        var(--mwtb-primary) 24%,
        transparent
    ) !important;
}

.mwtb-booking .mwtb-room-add-button.is-ready:hover {
    filter: brightness(.94);
    transform: translateY(-1px);
}

.mwtb-booking .mwtb-selected-room-remove {
    position: relative;
    display: inline-block !important;
    width: 32px !important;
    min-width: 32px !important;
    max-width: 32px !important;
    height: 32px !important;
    min-height: 32px !important;
    max-height: 32px !important;
    margin: 0 !important;
    padding: 0 !important;
    border-radius: 999px !important;
    box-sizing: border-box !important;
    flex: 0 0 32px;
    font-size: 0 !important;
    line-height: 0 !important;
    appearance: none;
    -webkit-appearance: none;
}

.mwtb-booking .mwtb-selected-room-remove::before,
.mwtb-booking .mwtb-selected-room-remove::after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 11px;
    height: 1.5px;
    border-radius: 999px;
    content: "";
    background: currentColor;
    transform-origin: center;
}

.mwtb-booking .mwtb-selected-room-remove::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.mwtb-booking .mwtb-selected-room-remove::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

@media (max-width: 640px) {
    /*
     * Thanh điều hướng phải nằm sau nội dung. Dùng sticky ở màn hình thấp
     * khiến thanh này nổi giữa form và che các lựa chọn bên dưới.
     */
    .mwtb-booking .mwtb-step-actions {
        position: static !important;
        inset: auto !important;
        bottom: auto !important;
        width: auto;
    }

    .mwtb-booking .mwtb-step {
        overflow: visible;
    }
}

.mwtb-booking .mwtb-room-gallery-controls {
    width: 100%;
    margin-top: 12px;
    padding: 9px 10px;
    border: 1px solid color-mix(
        in srgb,
        var(--mwtb-primary) 16%,
        var(--mwtb-border)
    );
    border-radius: 11px;
    background: color-mix(
        in srgb,
        var(--mwtb-primary) 3%,
        #fff
    );
    justify-content: center;
    gap: 10px;
}

.mwtb-booking .mwtb-room-gallery-controls .swiper-button-prev,
.mwtb-booking .mwtb-room-gallery-controls .swiper-button-next {
    position: static !important;
    display: inline-flex !important;
    width: auto !important;
    min-width: 108px !important;
    max-width: none !important;
    height: 38px !important;
    min-height: 38px !important;
    margin: 0 !important;
    padding: 0 13px !important;
    border-radius: 9px !important;
    flex: 0 0 auto;
    gap: 7px;
    font-size: 16px !important;
    font-weight: 700 !important;
    line-height: 1 !important;
}

.mwtb-booking
    .mwtb-room-gallery-controls
    .mwtb-room-gallery-arrow {
    font-size: 18px !important;
    font-weight: 700;
    line-height: 1;
}

.mwtb-booking
    .mwtb-room-gallery-controls
    .mwtb-room-gallery-button-label {
    font-size: 16px !important;
    font-weight: 700;
    line-height: 1;
}

.mwtb-booking .mwtb-room-gallery-count {
    display: inline-flex;
    min-width: 90px;
    height: 38px;
    padding: 0 10px;
    border-radius: 9px;
    color: var(--mwtb-muted);
    background: #fff;
    box-shadow: inset 0 0 0 1px var(--mwtb-border);
    align-items: center;
    justify-content: center;
    gap: 4px;
    font-size: 16px;
    font-weight: 600;
}

.mwtb-booking .mwtb-room-gallery-count strong {
    color: var(--mwtb-text);
    font-size: 16px;
    font-weight: 800;
}

.mwtb-booking .mwtb-room-gallery-controls.is-empty {
    opacity: .78;
}

@media (max-width: 460px) {
    .mwtb-booking .mwtb-room-gallery-controls {
        padding: 8px;
        gap: 7px;
    }

    .mwtb-booking .mwtb-room-gallery-controls .swiper-button-prev,
    .mwtb-booking .mwtb-room-gallery-controls .swiper-button-next {
        width: 40px !important;
        min-width: 40px !important;
        height: 40px !important;
        min-height: 40px !important;
        padding: 0 !important;
        border-radius: 50% !important;
    }

    .mwtb-booking
        .mwtb-room-gallery-controls
        .mwtb-room-gallery-button-label {
        display: none;
    }

    .mwtb-booking .mwtb-room-gallery-count {
        min-width: 92px;
        height: 40px;
    }
}


/* ===== 3.4.11: thanh bước và điều hướng ảnh tinh gọn ===== */
.mwtb-booking .mwtb-room-gallery-controls {
    width: auto;
    margin: 11px auto 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    justify-content: center;
    gap: 9px;
}

/* ===== 3.4.12: chọn cả thẻ xe và tự tính số xe theo sức chứa ===== */
.mwtb-booking .mwtb-vehicle-choice-card:not(.is-disabled) {
    cursor: pointer;
}

.mwtb-booking .mwtb-vehicle-choice-card:focus-visible {
    border-color: var(--mwtb-primary);
    outline: 3px solid color-mix(
        in srgb,
        var(--mwtb-primary) 18%,
        transparent
    );
    outline-offset: 2px;
}

.mwtb-booking .mwtb-vehicle-choice-card .mwtb-choice-price {
    grid-row: auto;
}

.mwtb-booking .mwtb-choice-selected-badge {
    display: inline-flex;
    min-height: 25px;
    padding: 4px 11px;
    border-radius: 999px;
    color: #fff;
    background: var(--mwtb-primary);
    grid-column: 1 / -1;
    justify-self: end;
    align-items: center;
    line-height: 1;
    font-size: 16px;
    font-weight: 800;
}

.mwtb-booking .mwtb-vehicle-quantity-row {
    display: flex;
    margin: 8px -13px -13px;
    padding: 12px 13px;
    border-top: 1px solid
        color-mix(
            in srgb,
            var(--mwtb-primary) 18%,
            var(--mwtb-border)
        );
    border-radius: 0 0 10px 10px;
    background: color-mix(
        in srgb,
        var(--mwtb-primary) 6%,
        #fff
    );
    grid-column: 1 / -1;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.mwtb-booking .mwtb-vehicle-quantity-row > p {
    margin: 0;
    color: var(--mwtb-text);
    font-size: 16px;
}

.mwtb-booking .mwtb-vehicle-quantity-picker {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 9px;
}

.mwtb-booking .mwtb-vehicle-quantity-picker > span {
    color: var(--mwtb-text);
    white-space: nowrap;
    font-size: 16px;
    font-weight: 700;
}

.mwtb-booking
    .mwtb-vehicle-quantity-picker
    .mwtb-quantity {
    margin: 0;
    grid-template-columns: 34px 38px 34px;
    border-color: color-mix(
        in srgb,
        var(--mwtb-primary) 22%,
        var(--mwtb-border)
    );
    border-radius: 9px;
}

.mwtb-booking
    .mwtb-vehicle-quantity-picker
    .mwtb-quantity button {
    width: 34px !important;
    min-width: 34px !important;
    height: 34px !important;
    min-height: 34px !important;
    font-size: 18px !important;
}

.mwtb-booking
    .mwtb-vehicle-quantity-picker
    .mwtb-quantity span {
    min-width: 38px;
    height: 34px;
    font-size: 16px;
}

.mwtb-booking .mwtb-quantity button:disabled,
.mwtb-booking .mwtb-quantity button:disabled:hover {
    color: var(--mwtb-muted) !important;
    background: #eef2f4 !important;
    cursor: not-allowed;
    opacity: .72;
}

@media (max-width: 640px) {
    .mwtb-booking .mwtb-vehicle-quantity-row {
        align-items: stretch;
        flex-direction: column;
        gap: 10px;
    }

    .mwtb-booking .mwtb-vehicle-quantity-picker {
        justify-content: space-between;
    }
}

.mwtb-booking .mwtb-room-gallery-controls .swiper-button-prev,
.mwtb-booking .mwtb-room-gallery-controls .swiper-button-next {
    position: static !important;
    display: inline-flex !important;
    width: 32px !important;
    min-width: 32px !important;
    max-width: 32px !important;
    height: 32px !important;
    min-height: 32px !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 1px solid #dfe8e4 !important;
    border-radius: 999px !important;
    color: var(--mwtb-primary) !important;
    background: #f5faf8 !important;
    box-shadow: none !important;
    flex: 0 0 32px;
    transform: none !important;
}

.mwtb-booking
    .mwtb-room-gallery-controls
    .mwtb-room-gallery-arrow {
    display: block;
    font-size: 16px !important;
    font-weight: 500;
    line-height: 1;
    transform: translateY(-1px);
}

.mwtb-booking .mwtb-room-gallery-controls .swiper-button-prev:hover,
.mwtb-booking .mwtb-room-gallery-controls .swiper-button-next:hover {
    color: #fff !important;
    border-color: var(--mwtb-primary) !important;
    background: var(--mwtb-primary) !important;
}

.mwtb-booking .mwtb-room-gallery-controls .swiper-button-disabled,
.mwtb-booking .mwtb-room-gallery-controls button:disabled {
    color: #98a2b3 !important;
    border-color: #e7e9ee !important;
    background: #f8f9fb !important;
    cursor: not-allowed;
    opacity: .72 !important;
}

.mwtb-booking .mwtb-room-gallery-count {
    display: inline-flex;
    min-width: 46px;
    width: auto;
    height: 32px;
    padding: 0 1px;
    border: 0;
    border-radius: 0;
    color: #667085;
    background: transparent;
    box-shadow: none;
    align-items: center;
    justify-content: center;
    gap: 3px;
    font-size: 16px;
    font-weight: 500;
}

.mwtb-booking .mwtb-room-gallery-count strong {
    color: #344054;
    font-size: 16px;
    font-weight: 600;
}

.mwtb-booking .mwtb-room-gallery-controls.is-empty {
    opacity: .72;
}

@media (max-width: 460px) {
    .mwtb-booking .mwtb-room-gallery-controls {
        width: auto;
        padding: 0;
        gap: 8px;
    }

    .mwtb-booking .mwtb-room-gallery-controls .swiper-button-prev,
    .mwtb-booking .mwtb-room-gallery-controls .swiper-button-next {
        width: 34px !important;
        min-width: 34px !important;
        max-width: 34px !important;
        height: 34px !important;
        min-height: 34px !important;
        flex-basis: 34px;
    }

    .mwtb-booking .mwtb-room-gallery-count {
        min-width: 48px;
        height: 34px;
    }
}

@media (min-width: 960px) {
    .mwtb-booking .mwtb-progress {
        display: grid;
        margin-bottom: 20px;
        padding: 9px;
        border: 1px solid #dfe5ec;
        border-radius: 16px;
        background: linear-gradient(180deg, #fff 0%, #fbfcfe 100%);
        box-shadow: 0 8px 26px rgba(16, 24, 40, .055);
        grid-template-columns: repeat(6, minmax(0, 1fr));
        gap: 5px;
    }

    .mwtb-booking .mwtb-progress-step {
        position: relative;
        z-index: 1;
        display: flex;
        width: 100%;
        min-height: 52px;
        padding: 8px 9px !important;
        border: 1px solid transparent !important;
        border-radius: 11px;
        color: #667085;
        background: transparent !important;
        align-items: center;
        justify-content: center;
        gap: 8px;
        transition:
            color .18s ease,
            border-color .18s ease,
            background-color .18s ease,
            box-shadow .18s ease;
    }

    .mwtb-booking .mwtb-progress-step:not(:last-child)::after {
        top: 50%;
        right: -6px;
        width: 7px;
        height: 1px;
        background: #d9e1e8;
        transform: translateY(-50%);
    }

    .mwtb-booking .mwtb-progress-number {
        width: 29px;
        height: 29px;
        border: 1px solid #d6dee8;
        color: #667085;
        background: #fff;
        box-shadow: 0 1px 2px rgba(16, 24, 40, .04);
        flex: 0 0 29px;
        font-size: 16px;
    }

    .mwtb-booking .mwtb-progress-label {
        overflow: visible;
        color: inherit;
        font-size: 16px;
        font-weight: 650;
        line-height: 1.25;
        text-align: left;
        text-overflow: clip;
        white-space: normal;
    }

    .mwtb-booking .mwtb-progress-step.is-active {
        color: #075e48;
        border-color: color-mix(
            in srgb,
            var(--mwtb-primary) 22%,
            #dfe5ec
        ) !important;
        background: color-mix(
            in srgb,
            var(--mwtb-primary) 8%,
            #fff
        ) !important;
        box-shadow: 0 3px 10px color-mix(
            in srgb,
            var(--mwtb-primary) 10%,
            transparent
        );
    }

    .mwtb-booking .mwtb-progress-step.is-active .mwtb-progress-number {
        color: #fff;
        border-color: var(--mwtb-primary);
        background: var(--mwtb-primary);
        box-shadow: 0 3px 8px color-mix(
            in srgb,
            var(--mwtb-primary) 22%,
            transparent
        );
    }

    .mwtb-booking .mwtb-progress-step.is-complete {
        color: #344054;
        background: #f4faf7 !important;
    }

    .mwtb-booking .mwtb-progress-step.is-complete .mwtb-progress-number {
        color: #fff;
        border-color: var(--mwtb-primary);
        background: var(--mwtb-primary);
    }

    .mwtb-booking .mwtb-progress-step.is-clickable:hover,
    .mwtb-booking .mwtb-progress-step.is-clickable:focus-visible {
        border-color: #dce6e2 !important;
        background: #f0f8f4 !important;
        box-shadow: none;
    }

    .mwtb-booking .mwtb-progress-step.is-needs-review {
        color: #b54708;
        border-color: #fedf89 !important;
        background: #fffaeb !important;
    }

    .mwtb-booking
        .mwtb-progress-step.is-updated:not(.is-needs-review) {
        color: #175cd3;
        border-color: #b2ddff !important;
        background: #eff8ff !important;
    }
}

@media (max-width: 959px) {
    .mwtb-booking .mwtb-mobile-progress {
        margin-bottom: 14px;
        padding: 11px 13px 14px;
        border: 1px solid color-mix(
            in srgb,
            var(--mwtb-primary) 18%,
            #dfe5ec
        );
        border-radius: 13px;
        color: #344054;
        background: #fff;
        box-shadow: 0 5px 18px rgba(16, 24, 40, .05);
    }

    .mwtb-booking .mwtb-mobile-progress strong {
        padding: 5px 8px;
        border-radius: 999px;
        color: #fff;
        background: var(--mwtb-primary);
        font-size: 16px;
        line-height: 1;
        white-space: nowrap;
    }

    .mwtb-booking .mwtb-mobile-progress span {
        color: #344054;
        font-size: 16px;
        font-weight: 650;
        text-align: right;
    }

    .mwtb-booking .mwtb-mobile-progress::before {
        height: 3px;
        background: #e9eef2;
    }

    .mwtb-booking .mwtb-mobile-progress::after {
        height: 3px;
        background: var(--mwtb-primary);
    }
}


/* ===== 3.4.13: thẻ xe đầy đủ và điều hướng ảnh ổn định ===== */
.mwtb-booking .mwtb-vehicle-choice-card {
    display: grid;
    overflow: hidden;
    min-height: 184px;
    margin-bottom: 12px;
    padding: 18px 20px !important;
    border-radius: 15px;
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 0;
}

.mwtb-booking .mwtb-vehicle-choice-card.is-selected {
    border-color: var(--mwtb-primary);
    background: color-mix(
        in srgb,
        var(--mwtb-primary) 2.5%,
        #fff
    );
    box-shadow: 0 0 0 1px var(--mwtb-primary);
}

.mwtb-booking
    .mwtb-vehicle-choice-card:not(.is-disabled):not(.is-selected):hover {
    border-color: color-mix(
        in srgb,
        var(--mwtb-primary) 72%,
        var(--mwtb-border)
    );
    box-shadow: 0 7px 20px rgba(16, 24, 40, .06);
}

.mwtb-booking .mwtb-vehicle-choice-card.is-selected:hover {
    border-color: var(--mwtb-primary);
    background: color-mix(
        in srgb,
        var(--mwtb-primary) 2.5%,
        #fff
    );
    box-shadow: 0 0 0 1px var(--mwtb-primary);
    filter: none !important;
    transform: none !important;
}

.mwtb-booking .mwtb-vehicle-choice-card .mwtb-choice-selected-badge {
    position: absolute;
    top: 17px;
    right: 20px;
    z-index: 2;
    min-height: 24px;
    padding: 4px 12px;
    grid-column: auto;
}

.mwtb-booking .mwtb-vehicle-card-content {
    display: flex;
    min-width: 0;
    padding-right: 90px;
    flex-direction: column;
    align-items: flex-start;
}

.mwtb-booking .mwtb-vehicle-mode-name {
    margin-bottom: 13px;
    color: var(--mwtb-primary);
    font-size: 16px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: .035em;
    text-transform: uppercase;
}

.mwtb-booking .mwtb-vehicle-card-content h3 {
    margin: 0 0 9px;
    color: var(--mwtb-text);
    font-size: 17px;
    font-weight: 800;
    line-height: 1.3;
}

.mwtb-booking .mwtb-vehicle-facts {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 11px;
    gap: 7px;
}

.mwtb-booking .mwtb-vehicle-facts > span {
    display: inline-flex;
    min-height: 25px;
    padding: 5px 10px;
    border-radius: 999px;
    color: #667085;
    background: #f1f6f4;
    align-items: center;
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
}

.mwtb-booking .mwtb-vehicle-unit-price {
    display: flex;
    flex-wrap: wrap;
    color: #667085;
    align-items: baseline;
    gap: 4px;
    font-size: 16px;
}

.mwtb-booking .mwtb-vehicle-unit-price strong {
    color: var(--mwtb-primary);
    font-size: 18px;
    font-weight: 850;
    line-height: 1.2;
}

.mwtb-booking .mwtb-vehicle-child-note {
    margin: 9px 0 0;
    color: #667085;
    font-size: 16px;
}

.mwtb-booking .mwtb-vehicle-child-note strong {
    color: #475467;
}

.mwtb-booking .mwtb-vehicle-quantity-copy {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 4px;
}

.mwtb-booking .mwtb-vehicle-quantity-copy > p {
    margin: 0;
    color: var(--mwtb-text);
    font-size: 16px;
}

.mwtb-booking .mwtb-vehicle-quantity-copy > span {
    color: #667085;
    font-size: 16px;
}

.mwtb-booking .mwtb-vehicle-quantity-copy > span strong {
    color: var(--mwtb-primary);
    font-size: 16px;
}

.mwtb-booking .mwtb-vehicle-choice-card .mwtb-vehicle-quantity-row {
    margin: 15px -20px -18px;
    padding: 13px 20px;
    border-radius: 0;
    grid-column: auto;
}

.mwtb-booking .mwtb-room-gallery-controls {
    display: flex;
    margin: 11px 0 0 auto !important;
    justify-content: flex-end !important;
}

.mwtb-booking
    .mwtb-room-gallery-controls
    .swiper-button-prev::before,
.mwtb-booking
    .mwtb-room-gallery-controls
    .swiper-button-prev::after,
.mwtb-booking
    .mwtb-room-gallery-controls
    .swiper-button-next::before,
.mwtb-booking
    .mwtb-room-gallery-controls
    .swiper-button-next::after {
    display: none !important;
    content: none !important;
}

.mwtb-booking
    .mwtb-room-gallery-controls
    .swiper-button-prev
    > svg,
.mwtb-booking
    .mwtb-room-gallery-controls
    .swiper-button-next
    > svg,
.mwtb-booking
    .mwtb-room-gallery-controls
    .swiper-navigation-icon {
    display: none !important;
}

.mwtb-booking
    .mwtb-room-gallery-controls
    .mwtb-room-gallery-arrow {
    display: inline-flex;
    width: 100%;
    height: 100%;
    transform: none;
    align-items: center;
    justify-content: center;
    line-height: 1 !important;
}

@media (max-width: 640px) {
    .mwtb-booking .mwtb-vehicle-choice-card {
        min-height: 0;
        padding: 16px !important;
    }

    .mwtb-booking .mwtb-vehicle-choice-card .mwtb-choice-selected-badge {
        top: 14px;
        right: 14px;
    }

    .mwtb-booking .mwtb-vehicle-card-content {
        padding-right: 76px;
    }

    .mwtb-booking .mwtb-vehicle-mode-name {
        margin-bottom: 12px;
    }

    .mwtb-booking .mwtb-vehicle-card-content h3 {
        font-size: 16px;
    }

    .mwtb-booking .mwtb-vehicle-choice-card .mwtb-vehicle-quantity-row {
        margin: 14px -16px -16px;
        padding: 12px 16px;
    }

    .mwtb-booking .mwtb-room-gallery-controls {
        margin-left: auto !important;
        margin-right: 0 !important;
    }
}


/* ===== 3.4.15: xác nhận chính sách và tách nhóm chi phí ===== */
.mwtb-booking .mwtb-confirm-checks {
    display: grid;
    margin-top: 15px;
    gap: 10px;
}

.mwtb-booking .mwtb-confirm-checks .mwtb-confirm-check {
    margin-top: 0;
    padding: 5px 0;
    border: 0;
    border-radius: 0;
    background: transparent;
}

.mwtb-booking .mwtb-confirm-check:focus-within {
    outline: 2px solid color-mix(
        in srgb,
        var(--mwtb-primary) 30%,
        transparent
    );
    outline-offset: 4px;
    box-shadow: none;
}

.mwtb-booking .mwtb-confirm-check a {
    color: var(--mwtb-primary);
    font-weight: 700;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
}

.mwtb-booking .mwtb-summary-groups,
.mwtb-booking .mwtb-review-cost-groups {
    display: grid;
    gap: 10px;
}

.mwtb-booking .mwtb-summary-groups {
    margin-top: 14px;
}

.mwtb-booking .mwtb-summary-group,
.mwtb-booking .mwtb-review-cost-group {
    overflow: hidden;
    border: 1px solid #e4e9f0;
    border-radius: 10px;
    background: #fff;
}

.mwtb-booking .mwtb-summary-group-heading,
.mwtb-booking .mwtb-review-cost-heading {
    display: flex;
    padding: 8px 10px;
    background: color-mix(
        in srgb,
        var(--mwtb-primary) 5%,
        #fff
    );
    align-items: center;
    gap: 8px;
}

.mwtb-booking .mwtb-summary-group-heading > span,
.mwtb-booking .mwtb-review-cost-heading > span {
    display: inline-flex;
    min-height: 22px;
    padding: 3px 8px;
    border-radius: 999px;
    color: var(--mwtb-primary);
    background: color-mix(
        in srgb,
        var(--mwtb-primary) 11%,
        #fff
    );
    align-items: center;
    font-size: 16px;
    font-weight: 800;
    line-height: 1;
    white-space: nowrap;
}

.mwtb-booking .mwtb-summary-group-heading > strong {
    color: var(--mwtb-text);
    font-size: 16px;
}

.mwtb-booking .mwtb-summary-group .mwtb-summary-lines,
.mwtb-booking .mwtb-review-cost-group .mwtb-review-lines {
    padding: 0 10px;
}

.mwtb-booking
    .mwtb-summary-group
    .mwtb-summary-lines
    p:last-child,
.mwtb-booking
    .mwtb-review-cost-group
    .mwtb-review-lines
    p:last-child {
    border-bottom: 0;
}

.mwtb-booking .mwtb-review-costs {
    padding: 14px;
}

.mwtb-booking .mwtb-review-cost-heading {
    padding: 10px 12px;
}

.mwtb-booking .mwtb-review-cost-heading h4 {
    margin: 0;
    color: var(--mwtb-text);
    font-size: 16px;
    font-weight: 800;
    line-height: 1.25;
}

.mwtb-booking
    .mwtb-review-cost-group
    .mwtb-review-lines {
    padding: 0 12px;
}

.mwtb-booking .mwtb-review-costs > .mwtb-review-total {
    display: flex;
    margin: 12px 0 0 !important;
    padding: 14px 2px 0 !important;
    border-top: 1px solid var(--mwtb-border);
    border-bottom: 0;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.mwtb-booking
    .mwtb-review-costs
    > .mwtb-review-total
    span {
    color: var(--mwtb-primary);
    font-weight: 700;
}

.mwtb-booking
    .mwtb-review-costs
    > .mwtb-review-total
    strong {
    color: var(--mwtb-primary);
    font-size: 18px;
    white-space: nowrap;
}

.mwtb-booking .mwtb-step-actions {
    justify-content: flex-end !important;
}

.mwtb-booking
    .mwtb-step-actions
    .mwtb-button-primary {
    margin-left: 0 !important;
}

/* ===== 3.4.17: checkbox xác nhận và select dễ đọc hơn ===== */
.mwtb-booking .mwtb-confirm-check::before {
    width: 19px;
    height: 19px;
    border: 2px solid var(--mwtb-primary);
    border-radius: 4px;
    color: #fff;
    background: #fff;
    box-shadow: none;
    content: "";
    align-items: center;
    justify-content: center;
    font-family: Arial, sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
}

.mwtb-booking .mwtb-confirm-check,
.mwtb-booking .mwtb-confirm-check > span,
.mwtb-booking .mwtb-confirm-check a {
    font-weight: 400 !important;
}

.mwtb-booking .mwtb-confirm-check:has(input:checked)::before {
    border-color: var(--mwtb-primary);
    color: #fff;
    background: var(--mwtb-primary);
    box-shadow: none;
    content: "✓";
}

.mwtb-booking .mwtb-confirm-check:focus-within {
    outline: 0;
    box-shadow: none;
}

.mwtb-booking
    .mwtb-confirm-check:has(input:focus-visible)::before {
    border-color: var(--mwtb-primary-hover);
}

.mwtb-booking select,
.mwtb-booking .mwtb-field select,
.mwtb-booking .mwtb-room-select-field select {
    height: 50px !important;
    min-height: 50px !important;
    padding: 0 42px 0 14px !important;
    border-radius: 10px !important;
    font-size: 16px !important;
    line-height: 1.4 !important;
}

.mwtb-booking select option {
    font-size: 16px;
}

@media (max-width: 767px) {
    .mwtb-booking select,
    .mwtb-booking .mwtb-field select,
    .mwtb-booking .mwtb-room-select-field select,
    .mwtb-booking select option {
        font-size: 16px !important;
    }
}

.mwtb-booking .mwtb-location-locked-note {
    display: block;
    margin-top: 7px;
    color: #52606d;
    font-size: 16px;
    line-height: 1.45;
}

.mwtb-booking select[data-field="location_id"]:disabled {
    color: #172033;
    background-color: #f4f7f8;
    opacity: 1;
    cursor: not-allowed;
}

.mwtb-booking-error {
    padding: 18px 20px;
    border: 1px solid #d63638;
    border-radius: 10px;
    background: #fcf0f1;
    color: #8a2424;
    font-weight: 600;
}


/* Giữ nội dung động ẩn trong thời gian GTranslate dịch lại để tránh lóe tiếng Việt. */
.mwtb-booking [data-mwtb-translate-zone].mwtb-gt-translation-pending {
    min-height: var(--mwtb-gt-zone-height, auto);
    opacity: 0 !important;
    pointer-events: none !important;
    transition: none !important;
}


/* ===== 3.5.7: tách ngày khởi hành và ngày về trong tóm tắt ===== */
.mwtb-booking .mwtb-summary-trip .mwtb-summary-date strong {
    white-space: nowrap;
}

.mwtb-booking .mwtb-summary-trip .mwtb-summary-date span {
    flex: 1 1 auto;
    min-width: 0;
}

.mwtb-booking .mwtb-summary-trip .mwtb-summary-date strong {
    flex: 0 0 auto;
    max-width: none;
}
