:root {
    --qt-navy: #061f3f;
    --qt-blue: #0b3c74;
    --qt-red: #8b0024;
    --qt-pink: #ff2d55;
    --qt-orange: #f5a11b;
    --qt-text: #1f2937;
    --qt-muted: #697386;
    --qt-border: #dde2ea;
    --qt-soft: #f3f6fa;
    --qt-bg: #edf1f5;
    --qt-card: #ffffff;
}

.qt-breadcrumbs li.items-2 {
    display: none;
}
.qt-destination-archive,
.qt-destination-archive * {
    box-sizing: border-box;
}

.qt-destination-archive {
    background: linear-gradient(180deg, #edf1f5 0%, #f8fafc 100%);
    color: var(--qt-text);
    font-family: Arial, Helvetica, sans-serif;
    padding-bottom: 80px;
}

.qt-destination-top-banner {
    position: relative;
    min-height: 350px;
    margin: 0;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.qt-destination-top-banner::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 82% 22%, rgba(255,255,255,.16), transparent 28%), linear-gradient(180deg, rgba(3,16,33,.12), rgba(3,16,33,.5));
    pointer-events: none;
}

.qt-destination-top-banner__inner {
    position: relative;
    z-index: 1;
    width: min(1440px, calc(100% - 64px));
    margin: 0 auto;
    padding: 62px 0 72px;
    color: #fff;
}

.qt-destination-crumbs {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
    padding: 11px 18px;
    border-radius: 999px;
    background: rgba(255,255,255,.16);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    backdrop-filter: blur(8px);
}

.qt-destination-crumbs a {
    color: #fff;
    text-decoration: none;
}

.qt-destination-top-banner h1 {
    max-width: 980px;
    margin: 0 0 26px;
    color: #fff;
    font-size: clamp(48px, 6vw, 86px);
    line-height: 1;
    font-weight: 900;
    letter-spacing: -2px;
    text-transform: capitalize;
    text-shadow: 0 12px 32px rgba(0,0,0,.28);
}

.qt-destination-top-banner__stats {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.qt-destination-top-banner__stats span {
    display: inline-flex;
    align-items: center;
    min-height: 56px;
    padding: 14px 20px;
    border: 1px solid rgba(255,255,255,.28);
    border-radius: 14px;
    background: rgba(255,255,255,.11);
    color: #fff;
    font-weight: 800;
    backdrop-filter: blur(8px);
}

.qt-destination-layout {
    width: min(1440px, calc(100% - 48px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 34px;
    align-items: start;
    padding: 52px 0 0;
}

.qt-destination-sidebar {
    position: sticky;
    top: 30px;
    z-index: 2;
}

.qt-filter-panel {
    width: 100%;
    padding: 20px 18px 24px;
    border: 1px solid rgba(6,31,63,.08);
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 14px 34px rgba(6,31,63,.11);
}

.qt-filter-panel::before {
    content: "Find Your Tour";
    display: block;
    margin: -2px 0 18px;
    padding: 14px 16px;
    border-radius: 13px;
    background: linear-gradient(135deg, var(--qt-navy), var(--qt-blue));
    color: #fff;
    font-size: 16px;
    font-weight: 900;
    letter-spacing: .02em;
}

.qt-filter-section {
    margin: 0 0 22px;
    padding: 0;
}

.qt-filter-section:last-child {
    margin-bottom: 0;
}

.qt-filter-section h4 {
    margin: 0 0 13px;
    color: var(--qt-navy);
    font-size: 16px;
    line-height: 1.2;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .03em;
}

.qt-filter-section h4::after {
    content: "";
    display: block;
    width: 52px;
    height: 2px;
    margin-top: 6px;
    background: #d8183a;
}

.qt-filter-groups {
    display: grid;
    gap: 10px;
}

.qt-filter-accordion {
    margin: 0;
}

.qt-filter-accordion__head {
    width: 100%;
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 13px;
    border: 0;
    border-radius: 8px;
    background: #e7edf5;
    color: #06234d;
    font-size: 13px;
    line-height: 1.15;
    font-weight: 900;
    text-transform: uppercase;
    cursor: pointer;
    text-align: left;
    box-shadow: none;
}

.qt-filter-accordion__head:hover,
.qt-filter-accordion__head:focus,
.qt-filter-accordion.is-open .qt-filter-accordion__head {
    background: #dbe5f1;
    color: #06234d;
    outline: none;
}

.qt-filter-arrow {
    width: 0;
    height: 0;
    flex: 0 0 auto;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 9px solid #06234d;
    font-size: 0;
    line-height: 0;
    transition: transform .2s ease;
}

.qt-filter-accordion.is-open .qt-filter-arrow {
    transform: rotate(180deg);
}

.qt-filter-accordion__body {
    display: none;
    margin: 0;
    padding: 10px 0 4px 7px;
}

.qt-filter-accordion.is-open .qt-filter-accordion__body {
    display: block;
}

.qt-filter-list {
    display: grid;
    gap: 6px;
}

.qt-filter-check {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 27px;
    margin: 0 0 7px;
    padding: 5px 7px;
    border-radius: 6px;
    color: var(--qt-navy);
    font-size: 12.5px;
    line-height: 1.2;
    font-weight: 900;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color .18s ease, color .18s ease, opacity .18s ease;
}

.qt-filter-section--destination .qt-filter-check {
    margin: 0;
    padding: 7px 8px;
}

.qt-filter-check:hover,
.qt-filter-check.is-active,
.qt-filter-check:has(input:checked) {
    background: #f3f6fa;
    color: var(--qt-pink);
}

.qt-filter-check span {
    color: inherit;
    line-height: 1.25;
}

.qt-filter-check input[type="checkbox"],
.qt-filter-check input[type="radio"] {
    appearance: none;
    -webkit-appearance: none;
    position: relative;
    width: 18px;
    height: 18px;
    min-width: 18px;
    flex: 0 0 18px;
    margin: 0;
    padding: 0;
    border: 2px solid #111;
    border-radius: 0;
    background: #fff;
    box-shadow: none;
    outline: none;
    cursor: pointer;
}

.qt-filter-check input[type="checkbox"]:checked,
.qt-filter-check input[type="radio"]:checked {
    border-color: #ff1f34;
    background: #fff;
}

.qt-filter-check input[type="checkbox"]:checked::after,
.qt-filter-check input[type="radio"]:checked::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 6px;
    height: 6px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: #ff1f34;
}

.qt-filter-check input:focus-visible {
    outline: 2px solid rgba(255, 31, 52, .35);
    outline-offset: 2px;
}

.qt-filter-check.is-disabled,
.qt-filter-check:has(input:disabled) {
    color: #9aa4b2 !important;
    cursor: not-allowed;
    opacity: 1;
    pointer-events: none;
    background: transparent !important;
}

.qt-filter-check.is-disabled input,
.qt-filter-check input:disabled {
    border-color: #b8c1cc !important;
    background: #f8fafc !important;
    cursor: not-allowed;
}

.qt-filter-item-hidden,
.qt-filter-list .qt-filter-check.qt-filter-item-hidden {
    display: none;
}

.qt-filter-list.is-expanded .qt-filter-check.qt-filter-item-hidden {
    display: flex;
}

/* Sidebar filter More/Less button styled like tour card More link */
.qt-filter-readmore {
    appearance: none;
    -webkit-appearance: none;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 6px;
    min-height: auto;
    margin: 12px 0 2px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: #08244a;
    font-size: 14px;
    line-height: 1.2;
    font-weight: 600;
    letter-spacing: 0;
    text-transform: none;
    cursor: pointer;
    box-shadow: none;
    transition: color .2s ease;
}

.qt-filter-readmore::before {
    content: "+";
    width: 16px;
    height: 16px;
    min-width: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #08244a;
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    line-height: 16px;
}

.qt-filter-readmore::after {
    content: none;
}

.qt-filter-readmore.is-expanded::before {
    content: "−";
}

.qt-filter-readmore:hover,
.qt-filter-readmore:focus,
.qt-filter-readmore.is-expanded {
    background: transparent;
    border-color: transparent;
    color: #d71945;
    outline: none;
    transform: none;
}

.qt-filter-readmore:hover::before,
.qt-filter-readmore:focus::before,
.qt-filter-readmore.is-expanded::before {
    background: #d71945;
    color: #fff;
}

.qt-destination-results {
    min-width: 0;
}

.qt-destination-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    margin: 0 0 22px;
    padding: 24px 28px;
    border: 1px solid rgba(6,31,63,.07);
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 12px 30px rgba(6,31,63,.09);
}

.qt-eyebrow {
    margin: 0 0 4px;
    color: var(--qt-orange);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.qt-destination-card-header h2 {
    margin: 0;
    color: var(--qt-navy);
    font-size: clamp(34px, 3.4vw, 52px);
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -1px;
}

.qt-destination-intro {
    max-width: 760px;
    margin-top: 12px;
    color: #4a5568;
    font-size: 15px;
    line-height: 1.6;
}

.qt-view-toggle {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 6px;
    padding: 8px;
    border-radius: 14px;
    background: #eef2f7;
}

.qt-view-toggle button {
    min-width: 54px;
    height: 44px;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 10px;
    background: #fff;
    color: #cf1236;
    font-size: 0;
    cursor: pointer;
    box-shadow: none;
}

.qt-view-toggle button#listViewBtn::before {
    content: "☷";
    font-size: 18px;
}

.qt-view-toggle button#gridViewBtn::before {
    content: "▦";
    font-size: 18px;
}

.qt-view-toggle button.active {
    background: #000;
    color: #fff;
}

.qt-tour-results,
.tour-container {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.tour-card {
    position: relative;
    width: 100%;
    display: grid;
    grid-template-columns: 360px minmax(0, 1fr) 218px;
    align-items: stretch;
    min-height: 255px;
    border: 1px solid var(--qt-border);
    border-radius: 14px;
    background: var(--qt-card);
    box-shadow: 0 12px 30px rgba(15,44,79,.09);
    overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease;
}

.tour-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 24px 54px rgba(6,31,63,.16);
}

.tour-image {
    min-height: 255px;
    background: #dfe6ef;
}

.tour-image img {
    width: 100%;
    height: 290px;
    min-height: 255px;
    display: block;
    object-fit: cover;
}

.tour-content {
    display: contents;
}

.clstripscontents {
    position: relative;
    min-width: 0;
    display: flex;
    flex-direction: column;
    padding: 24px 40px 20px 26px;
    border-right: 1px solid #d7dce5;
}

.tour-type {
    display: block;
    margin: 0 0 8px;
    padding: 0;
    color: var(--qt-blue);
    background: transparent;
    font-size: 18px;
    line-height: 1.2;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: none;
}

.tour-title {
    margin: 0 54px 10px 0;
    color: #555d6d;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(25px, 2vw, 32px);
    line-height: 1.1;
    font-weight: 500;
}

.tour-meta {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    margin: 0 0 11px;
    color: var(--qt-muted);
    font-size: 13px;
    line-height: 1.45;
    font-weight: 500;
}

.tour-stats {
    color: var(--qt-navy);
    font-size: 13px;
    font-weight: 900;
}

.tour-meta i {
    width: 18px;
    min-width: 18px;
    margin-top: 2px;
    color: #8b95a5;
    font-size: 16px;
    text-align: center;
}

.tour-dates span {
    word-spacing: 3px;
}

.tour-cities span,
.tour-dates span {
    display: inline;
}

.more-content p {
    margin-bottom: 0px;
    padding-bottom: 0px;
}
.clstripscontents .more-content{
    position: absolute;
    bottom: 12px;
    right: 20px;
    font-weight: 500;
    font-family: 'Poppins';
}

.tourpluse {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
    padding-top: 8px;
    color: var(--qt-navy);
    font-size: 13px;
    font-weight: 900;
}

.wishlist-icon {
    position: absolute;
    top: 20px;
    right: 20px;
}

.wishlist-btn {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #d8dde6;
    border-radius: 50%;
    background: #fff;
    color: #d61245;
    font-size: 16px;
    line-height: 1;
    box-shadow: none;
    cursor: pointer;
}

.clstripsbtn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 34px;
    padding: 24px 18px;
    border-left: 0;
    background: linear-gradient(180deg, #fff 0%, #fbfcfe 100%);
    text-align: center;
}

.price {
    margin: 0;
    color: var(--qt-navy);
    font-size: 16px;
    font-weight: 800;
    line-height: 1.25;
}

.price .price-label {
    display: block;
    margin-bottom: 5px;
    color: var(--qt-navy);
    font-size: 16px;
    font-weight: 700;
}

.price strong {
    display: inline-block;
    color: var(--qt-navy);
    font-size: 24px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: .01em;
}

.price span:not(.price-label):not(.clstooltip) {
    color: var(--qt-navy);
    font-size: 13px;
    font-weight: 900;
}

.clstooltip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--qt-orange);
    color: var(--qt-navy);
    font-size: 12px;
    font-weight: 900;
}

.view-btn {
    min-width: 142px;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 20px;
    border: 2px solid var(--qt-red);
    border-radius: 999px;
    background: #fff;
    color: var(--qt-navy) !important;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .02em;
    text-decoration: none !important;
    box-shadow: none;
    transition: background .2s ease, color .2s ease, border-color .2s ease;
}

.view-btn:hover,
.view-btn:focus {
    background: linear-gradient(to right, #800000, #172B50) padding-box, linear-gradient(to right, #800000, #172B50) border-box;
    border-color: var(--qt-red);
    color: #fff !important;
}

.offer-badge {
    position: absolute;
    top: -5px;
    left: -10px;
    z-index: 3;
}

.offer-badge img {
    width: 68px;
    height: auto;
}

.qt-tour-results.tour-grid-view,
.tour-container.tour-grid-view {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}
.qt-special-offers-archive .tour-grid-view span.tour-type {
    width: 50%;
    padding: 6px 10px;
}
.qt-special-offers-archive .tour-grid-view h3.tour-title {
    font-size: 24px !important;
}
.qt-destination-archive--reference-style .tour-grid-view .clstripsbtn {
    gap: 10px;
    padding: 10px;
    background: #fff;
}
.tour-grid-view p.price {
    text-align: left;
}
.tour-grid-view p.price strong {
    font-size: 18px;
}
.qt-destination-archive--reference-style .tour-grid-view .actionbtn a.view-btn {
    min-width: 120px;
    min-height: 30px;
    border-width: 3px;
    border-color: #8b0015 #16213f #16213f #8b0015;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    padding: 8px 20px;
}

.tour-grid-view .tour-card {
    display: block;
    min-height: 0;
}

.tour-grid-view .tour-content {
    display: block;
}

.tour-grid-view .tour-image,
.tour-grid-view .tour-image img {
    height: 250px;
    min-height: 250px;
}

.tour-grid-view .clstripscontents {
    border-right: 0;
    min-height: 285px;
}

.tour-grid-view .clstripsbtn {
    flex-direction: row;
    justify-content: space-between;
    border-top: 1px solid var(--qt-border);
}
.qt-destination-archive--reference-style article.tour-card {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #e5e5e5;
    background: #fff;
}
.qt-destination-archive--reference-style .tour-image img {
    border-radius: 20px 0 0 20px;
}
.navigation.pagination {
    margin-top: 30px;
}

.tour-container.is-loading {
    opacity: .55;
    pointer-events: none;
}

.qt-archive-banner {
    background: linear-gradient(135deg, var(--qt-navy), var(--qt-blue));
    color: #fff;
    padding: 70px 0;
}

.qt-archive-banner__inner {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.qt-archive-banner h1 {
    margin: 0;
    color: #fff;
    font-size: clamp(36px, 5vw, 64px);
}

.td-clsmain,
.tour-list-container,
.sidebar,
.main-content,
.main-content-top {
    box-sizing: border-box;
}

@media (max-width: 1280px) {
    .qt-destination-layout {
        grid-template-columns: 280px minmax(0, 1fr);
        gap: 28px;
    }

    .tour-card {
        grid-template-columns: 310px minmax(0, 1fr);
    }

    .clstripsbtn {
        grid-column: 1 / -1;
        flex-direction: row;
        justify-content: space-between;
        border-top: 1px solid var(--qt-border);
    }
}

@media (max-width: 960px) {
    .qt-destination-top-banner__inner,
    .qt-destination-layout {
        width: min(100% - 32px, 760px);
    }

    .qt-destination-layout,
    .tour-card,
    .qt-tour-results.tour-grid-view,
    .tour-container.tour-grid-view {
        grid-template-columns: 1fr;
    }

    .qt-destination-sidebar {
        position: static;
    }

    .qt-destination-card-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .tour-content {
        display: block;
    }

    .tour-image,
    .tour-image img {
        height: 260px;
        min-height: 260px;
    }

    .clstripscontents {
        border-right: 0;
    }
}

@media (max-width: 640px) {
    .qt-destination-archive {
        padding-bottom: 50px;
    }

    .qt-destination-top-banner {
        min-height: 300px;
    }

    .qt-destination-top-banner h1 {
        font-size: 46px;
    }

    .qt-destination-card-header {
        padding: 22px;
    }

    .qt-destination-card-header h2 {
        font-size: 34px;
    }

    .qt-filter-panel {
        padding: 20px 16px 24px;
    }

    .clstripscontents {
        padding: 26px 22px;
    }

    .tour-title {
        margin-right: 48px;
        font-size: 28px;
    }

    .clstripsbtn,
    .tour-grid-view .clstripsbtn {
        flex-direction: column;
        gap: 24px;
        align-items: flex-start;
        text-align: left;
    }

    .view-btn {
        width: 100%;
    }
}

/* Destination archive reference layout polish v1.0.18 */
.qt-destination-archive--reference-style {
    background: #d9d9d9;
    padding: 24px 0 80px;
}

.qt-destination-archive--reference-style .qt-destination-top-banner {
    display: none;
}

.qt-destination-archive--reference-style .qt-destination-layout {
    grid-template-columns: 315px minmax(0, 1fr);
    gap: 24px;
    padding: 0;
}

.qt-destination-archive--reference-style .qt-destination-sidebar {
    top: 24px;
}

.qt-destination-archive--reference-style .qt-filter-panel {
    padding: 28px 18px 28px;
    border: 0;
    border-radius: 10px;
    box-shadow: none;
}

.qt-destination-archive--reference-style .qt-filter-panel::before {
    display: none;
}

.qt-destination-archive--reference-style .qt-filter-section {
    margin-bottom: 24px;
}

.qt-destination-archive--reference-style .qt-filter-section h4 {
    margin-bottom: 15px;
    font-size: 20px;
    line-height: 1;
    letter-spacing: .02em;
}

.qt-destination-archive--reference-style .qt-filter-section h4::after {
    width: 90px;
    height: 2px;
    margin-top: 10px;
    background: #e11d48;
}

.qt-destination-archive--reference-style .qt-filter-groups {
    gap: 11px;
}

.qt-destination-archive--reference-style .qt-filter-accordion__head:hover,
.qt-destination-archive--reference-style .qt-filter-accordion__head:focus,
.qt-destination-archive--reference-style .qt-filter-accordion.is-open .qt-filter-accordion__head {
    background: #dfe8f3;
}

.qt-destination-archive--reference-style .qt-filter-arrow {
    border-left-width: 8px;
    border-right-width: 8px;
    border-top-width: 9px;
}

.qt-destination-archive--reference-style .qt-filter-accordion__body {
    padding: 13px 0 10px 14px;
}

.qt-destination-archive--reference-style .qt-filter-check {
    min-height: 30px;
    gap: 13px;
    margin: 0 0 10px;
    padding: 4px 8px;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0;
}

.qt-destination-archive--reference-style .qt-filter-check input[type="checkbox"],
.qt-destination-archive--reference-style .qt-filter-check input[type="radio"] {
    width: 19px;
    height: 19px;
    min-width: 19px;
    border: 2px solid #111;
}

.qt-destination-archive--reference-style .qt-filter-check:hover,
.qt-destination-archive--reference-style .qt-filter-check.is-active,
.qt-destination-archive--reference-style .qt-filter-check:has(input:checked) {
    background: #f2f5f9;
    color: #ff1744;
}

.qt-destination-archive--reference-style .qt-filter-readmore {
    min-height: 42px;
    margin-top: 18px;
    padding: 12px 16px;
    border-color: #ff2d55;
    color: #ff2d55;
    font-size: 15px;
    font-weight: 800;
}

.qt-destination-archive--reference-style .qt-destination-card-header {
    margin: 0 0 22px;
    padding: 0 0 4px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.qt-destination-archive--reference-style .qt-destination-card-header h2 {
    color: #1e2648;
    font-size: 66px;
    line-height: .95;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: linear-gradient(90deg, #c9223b 0%, #1d294b 48%, #c9223b 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.qt-destination-archive--reference-style .qt-eyebrow,
.qt-destination-archive--reference-style .qt-destination-intro {
    display: none;
}

.qt-destination-archive--reference-style .qt-view-toggle {
    gap: 14px;
    padding: 0;
    border-radius: 0;
    background: transparent;
}

.qt-destination-archive--reference-style .qt-view-toggle button {
    width: 44px;
    min-width: 44px;
    height: 44px;
    border: 1px solid #c9c9c9;
    border-radius: 3px;
    background: #fff;
    color: #d53b63;
}

.qt-destination-archive--reference-style .qt-view-toggle button.active {
    border-color: #000;
    background: #000;
    color: #fff;
}

.qt-destination-archive--reference-style .qt-tour-results,
.qt-destination-archive--reference-style .tour-container {
    gap: 24px;
}

.qt-destination-archive--reference-style .tour-card {
    grid-template-columns: 470px minmax(0, 1fr) 260px;
    min-height: 310px;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    background: #fff;
    overflow: visible;
}

.qt-destination-archive--reference-style .tour-card:hover {
    transform: none;
    box-shadow: none;
}

.qt-destination-archive--reference-style .tour-image,
.qt-destination-archive--reference-style .tour-image img {
    height: 310px;
    min-height: 310px;
}

.qt-destination-archive--reference-style .tour-image img {
    object-fit: cover;
}

.qt-destination-archive--reference-style .tour-type {
    margin-bottom: 16px;
    color: #061f3f;
    font-size: 24px;
    line-height: 1;
    font-weight: 500;
}

.qt-destination-archive--reference-style .tour-title {
    margin: 0 0px 10px 0;
    color: #172b50;
    font-size: 30px;
    line-height: 1.08;
    font-weight: 500;
}

.qt-destination-archive--reference-style .tour-meta {
    margin-bottom: 12px;
    color: #172b50;
    font-size: 16px;
    line-height: 1.45;
}

.qt-destination-archive--reference-style .tour-stats {
    color: #061f3f;
    font-size: 16px;
    font-weight: 500;
}

.qt-destination-archive--reference-style .tour-meta i {
    width: 25px;
    min-width: 25px;
    color: #172b50;
    font-size: 20px;
}
.fa.fa-clock-o:before {
    content: "\f017";
}
.qt-destination-archive--reference-style .tourpluse {
    padding-top: 2px;
    color: #061f3f;
    font-size: 16px;
    font-weight: 500;
    display: none;
}

.qt-destination-archive--reference-style .wishlist-icon {
    top: 22px;
    right: 26px;
}

.qt-destination-archive--reference-style .wishlist-btn {
    width: 42px;
    height: 42px;
    border: 1px solid #cfcfcf;
    color: #cfcfcf;
}

.qt-destination-archive--reference-style .clstripsbtn {
    gap: 40px;
    padding: 20px;
    background: #fff;
}
.clstripsbtn .actionbtn {
    display: grid;
    gap: 10px;
}
.qt-destination-archive--reference-style .price .price-label {
    margin-bottom: 8px;
    font-size: 17px;
    font-weight: 400;
}

.qt-destination-archive--reference-style .price strong {
    font-size: 24px;
}

.qt-destination-archive--reference-style .clstooltip {
    background: #555;
    color: #fff;
}

.qt-destination-archive--reference-style .view-btn {
    min-width: 165px;
    min-height: 35px;
    border-width: 3px;
    border-color: #8b0015 #16213f #16213f #8b0015;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
}

.qt-destination-archive--reference-style .offer-badge img {
    width: 72px;
}

@media (max-width: 1400px) {
    .qt-destination-archive--reference-style .qt-destination-layout {
        width: min(1280px, calc(100% - 44px));
        grid-template-columns: 280px minmax(0, 1fr);
    }
    .qt-destination-archive--reference-style .tour-card {
        grid-template-columns: 350px minmax(0, 1fr) 210px;
    }
    .qt-destination-archive--reference-style .tour-image,
    .qt-destination-archive--reference-style .tour-image img {
        height: 280px;
        min-height: 280px;
    }
    .qt-destination-archive--reference-style .tour-title {
        font-size: 28px;
    }
}

@media (max-width: 1100px) {
    .qt-destination-archive--reference-style .tour-card {
        grid-template-columns: 300px minmax(0, 1fr);
    }
    .qt-destination-archive--reference-style .clstripsbtn {
        grid-column: 1 / -1;
        flex-direction: row;
        justify-content: space-between;
        border-top: 1px solid #d7d7d7;
    }
}


/* Destination top banner section - v1.0.20 */
.qt-destination-archive .qt-destination-top-banner {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center center;
    margin: 0;
    overflow: hidden;
}
.qt-destination-archive .qt-destination-top-banner::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 74% 24%, rgb(255 255 255 / 30%), transparent 30%), linear-gradient(90deg, rgb(8 24 43 / 14%), rgb(8 24 43 / 14%)) 
    pointer-events: none;
}
.qt-destination-archive .qt-destination-top-banner__inner {
    position: relative;
    z-index: 2;
    width: min(1440px, calc(100% - 72px));
    margin: 0 auto;
    padding: 70px 0 82px;
    color: #fff;
}
.qt-destination-archive .qt-destination-crumbs {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 32px;
    padding: 14px 24px;
    border-radius: 999px;
    background: rgba(255,255,255,.14);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    backdrop-filter: blur(8px);
}
.qt-destination-archive .qt-destination-crumbs a {
    color: #fff;
    text-decoration: none;
}
.qt-destination-archive .qt-destination-top-banner h1 {
    margin: 0 0 30px;
    color: #fff;
    font-size: clamp(62px, 6vw, 102px);
    line-height: .98;
    font-weight: 700;
    letter-spacing: -3px;
    text-transform: capitalize;
}
.qt-destination-archive .qt-destination-top-banner__stats {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}
.qt-destination-archive .qt-destination-top-banner__stats span {
    display: inline-flex;
    align-items: center;
    min-height: 45px;
    padding: 2px 24px;
    border: 1px solid rgba(255,255,255,.34);
    border-radius: 15px;
    background: rgba(255,255,255,.1);
    color: #fff;
    font-size: 18px;
    font-weight: 800;
    backdrop-filter: blur(8px);
}
@media (max-width: 767px) {
    .qt-destination-archive .qt-destination-top-banner {
        min-height: 320px;
    }
    .qt-destination-archive .qt-destination-top-banner__inner {
        width: min(100% - 32px, 100%);
        padding: 48px 0 54px;
    }
    .qt-destination-archive .qt-destination-crumbs {
        font-size: 13px;
        padding: 10px 16px;
        margin-bottom: 22px;
    }
    .qt-destination-archive .qt-destination-top-banner h1 {
        font-size: 54px;
        letter-spacing: -1px;
    }
    .qt-destination-archive .qt-destination-top-banner__stats span {
        min-height: 46px;
        padding: 10px 14px;
        font-size: 14px;
    }
}

/* Destination filter + wishlist polish - v1.0.21 */
.qt-destination-archive--reference-style .qt-filter-accordion__head {
    min-height: 34px;
    padding: 8px 13px;
    border: 0 !important;
    outline: 0;
    border-radius: 6px;
    background: #e6edf6;
    box-shadow: none !important;
    color: #061f3f;
    font-size: 13px;
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: 0;
}
.qt-destination-archive--reference-style .qt-filter-accordion__head:hover,
.qt-destination-archive--reference-style .qt-filter-accordion__head:focus,
.qt-destination-archive--reference-style .qt-filter-accordion.is-open .qt-filter-accordion__head {
    border: 0 !important;
    background: #dce6f2;
    color: #061f3f;
    box-shadow: none !important;
}
.qt-destination-archive--reference-style .qt-filter-arrow {
    border-left-width: 7px;
    border-right-width: 7px;
    border-top-width: 8px;
    border-top-color: #06234d;
}
.qt-destination-archive--reference-style .qt-filter-accordion__body {
    padding: 13px 0 12px 14px;
}
.qt-destination-archive--reference-style .qt-filter-check {
    gap: 12px;
    min-height: 34px;
    margin: 0 0 8px;
    padding: 5px 8px;
    border-radius: 5px;
    color: #061f3f;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: .01em;
}
.qt-destination-archive--reference-style .qt-filter-check input[type="checkbox"],
.qt-destination-archive--reference-style .qt-filter-check input[type="radio"] {
    width: 20px;
    height: 20px;
    min-width: 20px;
    border: 2px solid #111;
    border-radius: 0;
    background: #fff;
}
.qt-destination-archive--reference-style .qt-filter-check input[type="checkbox"]:checked,
.qt-destination-archive--reference-style .qt-filter-check input[type="radio"]:checked {
    border-color: #ff1744;
    background: #fff;
}
.qt-destination-archive--reference-style .qt-filter-check input[type="checkbox"]:checked::after,
.qt-destination-archive--reference-style .qt-filter-check input[type="radio"]:checked::after {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #ff1744;
}
.qt-destination-archive--reference-style .qt-filter-check:hover,
.qt-destination-archive--reference-style .qt-filter-check.is-active,
.qt-destination-archive--reference-style .qt-filter-check:has(input:checked) {
    background: #f3f6fa;
    color: #ff1744;
}
.qt-destination-archive--reference-style .qt-filter-check.is-disabled,
.qt-destination-archive--reference-style .qt-filter-check:has(input:disabled) {
    color: #9aa4b2 !important;
    background: transparent !important;
}
.qt-destination-archive--reference-style .wishlist-icon {
    top: 25px;
    right: 28px;
    z-index: 3;
}
.qt-destination-archive--reference-style .wishlist-btn {
    width: 36px;
    height: 36px;
    border: 1px solid #d6d6d6;
    border-radius: 50%;
    background: #fff;
    color: #d71945;
    font-size: 18px;
    box-shadow: none;
}
.qt-destination-archive--reference-style .wishlist-btn i {
    color: #d71945;
}
.qt-destination-archive--reference-style .wishlist-btn:hover,
.qt-destination-archive--reference-style .wishlist-btn:focus {
    border-color: #d6d6d6;
    background: #fff;
    color: #d71945;
    box-shadow: 0 4px 12px rgba(0,0,0,.08);
}

/* Wishlist center + active functionality polish - v1.0.22 */
.qt-destination-archive--reference-style .wishlist-icon,
.wishlist-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}
.qt-destination-archive--reference-style .wishlist-btn,
.wishlist-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
    text-align: center;
    line-height: 1 !important;
}
.qt-destination-archive--reference-style .wishlist-btn i,
.wishlist-btn i {
    display: block;
    width: 1em;
    height: 1em;
    line-height: 1 !important;
    margin: 0 !important;
    transform: none !important;
}
.qt-destination-archive--reference-style .wishlist-btn.is-active,
.wishlist-btn.is-active {
    border-color: #d6d6d6;
    background: #fff;
    color: #d71945;
}
.qt-destination-archive--reference-style .wishlist-btn.is-active i,
.wishlist-btn.is-active i {
    color: #d71945;
}

/* v1.0.23: final sidebar read-more and wishlist behavior polish */
.qt-destination-archive--reference-style .qt-filter-readmore,
.qt-filter-readmore {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 6px !important;
    width: auto !important;
    min-width: 0 !important;
    min-height: 0 !important;
    margin: 12px 0 2px !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    color: #08244a !important;
    font-size: 14px !important;
    line-height: 1.2 !important;
    font-weight: 600 !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    box-shadow: none !important;
}
.qt-destination-archive--reference-style .qt-filter-readmore::before,
.qt-filter-readmore::before {
    content: "+" !important;
    width: 16px !important;
    height: 16px !important;
    min-width: 16px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 50% !important;
    background: #08244a !important;
    color: #fff !important;
    font-size: 13px !important;
    font-weight: 800 !important;
    line-height: 16px !important;
}
.qt-destination-archive--reference-style .qt-filter-readmore::after,
.qt-filter-readmore::after {
    content: none !important;
}
.qt-destination-archive--reference-style .qt-filter-readmore.is-expanded::before,
.qt-filter-readmore.is-expanded::before {
    content: "−" !important;
}
.qt-destination-archive--reference-style .qt-filter-readmore:hover,
.qt-destination-archive--reference-style .qt-filter-readmore:focus,
.qt-filter-readmore:hover,
.qt-filter-readmore:focus {
    color: #d71945 !important;
    transform: none !important;
}
.qt-destination-archive--reference-style .qt-filter-readmore:hover::before,
.qt-destination-archive--reference-style .qt-filter-readmore:focus::before,
.qt-filter-readmore:hover::before,
.qt-filter-readmore:focus::before {
    background: #d71945 !important;
}
.qt-destination-archive--reference-style .wishlist-btn,
.wishlist-btn {
    position: relative !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 40px !important;
    height: 39px !important;
    padding: 0 !important;
    border-radius: 50% !important;
    cursor: pointer !important;
    pointer-events: auto !important;
    line-height: 1 !important;
}
.qt-destination-archive--reference-style .wishlist-btn i,
.wishlist-btn i {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    display: block !important;
    width: auto !important;
    height: auto !important;
    margin: 0 !important;
    line-height: 1 !important;
    transform: translate(-50%, -50%) !important;
    pointer-events: none !important;
}
.qt-destination-archive--reference-style .wishlist-btn:not(.is-active) i,
.wishlist-btn:not(.is-active) i {
    color: #d71945 !important;
}
.qt-destination-archive--reference-style .wishlist-btn.is-active,
.wishlist-btn.is-active {
    border-color: #d6d6d6 !important;
    background: #fff !important;
}
.qt-destination-archive--reference-style .wishlist-btn.is-saving,
.wishlist-btn.is-saving {
    opacity: .75;
}


/* v1.0.24 wishlist functional/visual fix */
.wishlist-icon,
.qt-destination-archive--reference-style .wishlist-icon {
	position: absolute;
	top: 10px;
	right: 10px;
	z-index: 5;
	display: flex;
	align-items: center;
	justify-content: center;
}
.wishlist-btn,
.qt-destination-archive--reference-style .wishlist-btn {
	width: 36px;
	height: 36px;
	min-width: 36px;
	min-height: 36px;
	padding: 0 !important;
	border-radius: 50%;
	border: 1px solid #d8d8d8;
	background: #fff;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	line-height: 1 !important;
	cursor: pointer;
	pointer-events: auto !important;
	box-shadow: none;
	appearance: none;
	-webkit-appearance: none;
}
.wishlist-btn i,
.qt-destination-archive--reference-style .wishlist-btn i {
	position: static !important;
	display: block !important;
	margin: 0 0 -3px 0px !important;
	padding: 0 !important;
	font-size: 18px !important;
	line-height: 1 !important;
	color: #d7d7d7;
	transform: none !important;
}
.wishlist-btn.is-active i,
.wishlist-btn.active i,
.wishlist-btn.selected i,
.qt-destination-archive--reference-style .wishlist-btn.is-active i,
.qt-destination-archive--reference-style .wishlist-btn.active i,
.qt-destination-archive--reference-style .wishlist-btn.selected i {
	color: #e52e5f !important;
}
.wishlist-btn.is-saving {
	opacity: .7;
}


/* v1.0.25 wishlist color state */
.wishlist-btn i,
.qt-destination-archive--reference-style .wishlist-btn i,
.wishlist-btn:not(.is-active):not(.active):not(.selected) i,
.qt-destination-archive--reference-style .wishlist-btn:not(.is-active):not(.active):not(.selected) i {
    color: #ccc !important;
}

.wishlist-btn.is-active i,
.wishlist-btn.active i,
.wishlist-btn.selected i,
.qt-destination-archive--reference-style .wishlist-btn.is-active i,
.qt-destination-archive--reference-style .wishlist-btn.active i,
.qt-destination-archive--reference-style .wishlist-btn.selected i {
    color: #b1003f !important;
}

.wishlist-btn:hover i,
.qt-destination-archive--reference-style .wishlist-btn:hover i {
    color: #b1003f !important;
}


/* v1.0.27 special offers taxonomy spacing + filter density fixes */
.qt-special-offers-archive.qt-destination-archive--reference-style {
    padding-top: 0 !important;
}
.qt-special-offers-archive .qt-destination-top-banner {
    margin-top: 0 !important;
}
.qt-special-offers-archive .qt-destination-layout {
    padding-top: 28px !important;
}
.qt-special-offers-archive .qt-destination-card-header {
    margin-top: 0 !important;
    margin-bottom: 28px !important;
}
.qt-special-offers-archive .qt-filter-panel {
    padding-top: 24px !important;
}
.qt-special-offers-archive.qt-destination-archive--reference-style .qt-filter-section {
    margin-bottom: 22px !important;
}
.qt-special-offers-archive.qt-destination-archive--reference-style .qt-filter-section h4 {
    margin-bottom: 11px !important;
    font-size: 18px !important;
    line-height: 1.1 !important;
}
.qt-special-offers-archive.qt-destination-archive--reference-style .qt-filter-section h4::after {
    width: 64px !important;
    margin-top: 7px !important;
}
.qt-special-offers-archive.qt-destination-archive--reference-style .qt-filter-groups {
    gap: 8px !important;
}
.qt-special-offers-archive.qt-destination-archive--reference-style .qt-filter-accordion__head {
    min-height: 32px !important;
    padding: 7px 12px !important;
    font-size: 13px !important;
    border: 0 !important;
}
.qt-special-offers-archive.qt-destination-archive--reference-style .qt-filter-accordion__body {
    padding: 10px 0 8px 12px !important;
}
.qt-special-offers-archive.qt-destination-archive--reference-style .qt-filter-list {
    gap: 2px !important;
}
.qt-special-offers-archive.qt-destination-archive--reference-style .qt-filter-check {
    min-height: 28px !important;
    gap: 10px !important;
    margin: 0 0 5px !important;
    padding: 3px 7px !important;
    font-size: 13px !important;
    line-height: 1.15 !important;
}
.qt-special-offers-archive.qt-destination-archive--reference-style .qt-filter-check input[type="checkbox"],
.qt-special-offers-archive.qt-destination-archive--reference-style .qt-filter-check input[type="radio"] {
    width: 18px !important;
    height: 18px !important;
    min-width: 18px !important;
}
.qt-special-offers-archive.qt-destination-archive--reference-style .qt-filter-readmore {
    margin-top: 8px !important;
}
.qt-special-offers-archive.qt-destination-archive--reference-style .qt-tour-results,
.qt-special-offers-archive.qt-destination-archive--reference-style .tour-container {
    gap: 22px !important;
}
.qt-special-offers-archive.qt-destination-archive--reference-style .tour-card {
    min-height: 286px !important;
    grid-template-columns: 430px minmax(0, 1fr) 250px !important;
}
.qt-special-offers-archive.qt-destination-archive--reference-style .tour-image,
.qt-special-offers-archive.qt-destination-archive--reference-style .tour-image img {
    height: 286px !important;
    min-height: 286px !important;
}
.qt-destination-archive--reference-style .tour-grid-view .tour-image img {
    border-radius: 0px;
}
.qt-special-offers-archive.qt-destination-archive--reference-style .clstripscontents {
    padding: 15px 15px 10px 20px !important;
}
.qt-special-offers-archive.qt-destination-archive--reference-style .tour-type {
    margin-bottom: 10px !important;
    font-size: 15px !important;
    background-color: #e6edf6;
    font-weight: 600;
    width: 40%;
    padding: 6px 20px;
    border-radius: 20px;
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
}
.qt-special-offers-archive.qt-destination-archive--reference-style .tour-title {
    margin-bottom: 11px !important;
    font-size: 30px !important;
}
.qt-special-offers-archive.qt-destination-archive--reference-style .tour-meta,
.qt-special-offers-archive.qt-destination-archive--reference-style .tour-stats {
    font-size: 15px !important;
}
@media (max-width: 1400px) {
    .qt-special-offers-archive.qt-destination-archive--reference-style .tour-card {
        grid-template-columns: 350px minmax(0, 1fr) 210px !important;
    }
    .qt-special-offers-archive.qt-destination-archive--reference-style .tour-image,
    .qt-special-offers-archive.qt-destination-archive--reference-style .tour-image img {
        height: 276px !important;
        min-height: 276px !important;
    }
}
@media (max-width: 1100px) {
    .qt-special-offers-archive.qt-destination-archive--reference-style .tour-card {
        grid-template-columns: 300px minmax(0, 1fr) !important;
    }
}


/* v1.0.28: apply special-offers reference design to Tours and Destinations archives */
.qt-destination-archive.qt-destination-archive--reference-style {
    padding-top: 0 !important;
    background: #d9d9d9 !important;
}
.qt-destination-archive--reference-style .qt-destination-top-banner {
    margin-top: 0px !important;
}
.ehf-header #masthead {
    position: absolute !important;
    right: 0px;
    left: 0px;
}
.qt-destination-archive--reference-style .qt-destination-layout {
    padding-top: 28px !important;
}
.qt-destination-archive--reference-style .qt-destination-card-header {
    margin-top: 0 !important;
    margin-bottom: 28px !important;
}
.qt-destination-archive--reference-style .qt-filter-panel {
    padding-top: 24px !important;
}
.qt-destination-archive--reference-style .qt-filter-section {
    margin-bottom: 22px !important;
}
.qt-destination-archive--reference-style .qt-filter-section h4 {
    margin-bottom: 11px !important;
    font-size: 18px !important;
    line-height: 1.1 !important;
}
.qt-destination-archive--reference-style .qt-filter-section h4::after {
    width: 64px !important;
    margin-top: 7px !important;
}
.qt-destination-archive--reference-style .qt-filter-groups {
    gap: 8px !important;
}
.qt-destination-archive--reference-style .qt-filter-accordion__head {
    min-height: 32px !important;
    padding: 7px 12px !important;
    font-size: 13px !important;
    border: 0 !important;
    box-shadow: none !important;
    width: 100%;
    text-align: left;
    justify-content: space-between;
    display: flex;
}
.qt-destination-archive--reference-style .qt-filter-accordion__body {
    padding: 10px 0 8px 12px !important;
}
.qt-destination-archive--reference-style .qt-filter-list {
    gap: 2px !important;
}
.qt-destination-archive--reference-style .qt-filter-check {
    min-height: 28px !important;
    gap: 10px !important;
    margin: 0 0 5px !important;
    padding: 3px 7px !important;
    font-size: 13px !important;
    line-height: 1.15 !important;
}
.qt-destination-archive--reference-style .qt-filter-check input[type="checkbox"],
.qt-destination-archive--reference-style .qt-filter-check input[type="radio"] {
    width: 18px !important;
    height: 18px !important;
    min-width: 18px !important;
}
.qt-destination-archive--reference-style .qt-filter-readmore {
    margin-top: 8px !important;
}
.qt-destination-archive--reference-style .qt-tour-results,
.qt-destination-archive--reference-style .tour-container {
    gap: 22px !important;
}
.qt-destination-archive--reference-style .tour-card {
    min-height: 286px !important;
    grid-template-columns: 430px minmax(0, 1fr) 220px !important;
}
.qt-destination-archive--reference-style .tour-image,
.qt-destination-archive--reference-style .tour-image img {
    height: 286px !important;
    min-height: 286px !important;
}
.qt-destination-archive--reference-style .clstripscontents {
    padding: 15px 15px 10px 20px !important;
}
.qt-destination-archive--reference-style .tour-type {
    margin-bottom: 10px !important;
    font-size: 16px !important;
    background-color: #e6edf6;
    font-weight: 600;
    width: 45%;
    padding: 8px 20px;
    border-radius: 20px;
    text-align: left;
    font-family: Arial, Helvetica, sans-serif;
}
.qt-destination-archive--reference-style .tour-title {
    margin-bottom: 11px !important;
    font-size: 30px !important;
}
.qt-destination-archive--reference-style .tour-meta,
.qt-destination-archive--reference-style .tour-stats {
    font-size: 15px !important;
    font-weight: 600;
    font-family: 'Roboto', sans-serif !important;
}
@media (max-width: 1400px) {
    .qt-destination-archive--reference-style .tour-card {
        grid-template-columns: 350px minmax(0, 1fr) 210px !important;
    }
    .qt-destination-archive--reference-style .tour-image,
    .qt-destination-archive--reference-style .tour-image img {
        height: 276px !important;
        min-height: 276px !important;
    }
}
@media (max-width: 1100px) {
    .qt-destination-archive--reference-style .tour-card {
        grid-template-columns: 300px minmax(0, 1fr) !important;
    }
}


/* =========================================================
   Single Tour Top Section + Banner (Reference Match)
   Added for full-width white header and banner below content
   ========================================================= */
body.single-tour .tour-single-wrapper,
.tour-single-wrapper {
    background: #ffffff !important;
}

.tour-single-wrapper > .container {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    background: #ffffff !important;
}

/*.tour-single-wrapper .tour-breadcrumb {*/
/*    max-width: 1320px !important;*/
/*    margin: 0 auto !important;*/
/*    padding: 28px 24px 0 !important;*/
/*    font-size: 15px !important;*/
/*    line-height: 1.4 !important;*/
/*    color: #d4003b !important;*/
/*}*/

/*.tour-single-wrapper .section-top-contents {*/
/*    width: 100% !important;*/
/*    max-width: 100% !important;*/
/*    margin: 0 !important;*/
/*    padding: 80px 24px 48px !important;*/
/*    background: #ffffff !important;*/
/*    border: 0 !important;*/
/*    border-radius: 0 !important;*/
/*    box-shadow: none !important;*/
/*}*/

.tour-single-wrapper .travdek-trip-summary {
    width: 100% !important;
    max-width: 1440px !important;
    margin: 20px auto 0px !important;
    padding: 0 !important;
    background: transparent !important;
    text-align: center !important;
    position: relative !important;
}

.tour-single-wrapper .wishlist-icon {
    position: static !important;
    display: flex !important;
    justify-content: center !important;
    margin: 0 0 22px !important;
}

.tour-single-wrapper .wishlist-btn {
    width: 44px !important;
    height: 44px !important;
    border: 1.5px solid #082555 !important;
    border-radius: 50% !important;
    background: #ffffff !important;
    color: #c9c9c9 !important;
    box-shadow: none !important;
}


/* v1.0.73 Special Deals shortcode/widget */
.travdek-special-deals-shortcode {
    display: grid;
    gap: 24px;
}
.travdek-special-offer-section {
    background: #fff;
    border: 1px solid #e8edf3;
    border-radius: 14px;
    padding: 18px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}
.travdek-special-offer-heading h3 {
    margin: 0 0 14px;
    font-size: 22px;
    line-height: 1.2;
}
.travdek-offer-list {
    display: grid;
}
/*.travdek-offer-list .travdek-offer-item {*/
/*    display: grid;*/
/*    grid-template-columns: 70px minmax(0, 1fr) auto auto;*/
/*    align-items: center;*/
    /*gap: 16px;
    background: #fff;
    border: 1px solid #edf1f6;*/
/*    padding: 14px;*/
/*    border-radius: 12px;*/
/*}*/
.travdek-offer-item .thumb {
    width: 92px;
    height: 72px;
    object-fit: cover;
    border-radius: 10px;
    display: block;
}
.travdek-offer-item .item-tourtitle {
    display: block;
    align-items: baseline;
}
.travdek-offer-item .city-name a {
    color: #102a43;
    text-decoration: none;
    font-size: 17px;
}
.travdek-offer-item .country {
    color: #66788a;
    font-size: 14px;
}
.travdek-offer-item .trip-type {
    margin-top: 6px;
    color: #52616f;
    font-size: 14px;
}
.travdek-offer-item .item-right {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: flex-end;
    white-space: nowrap;
}
.travdek-offer-item .price {
    color: #52616f;
    font-size: 13px;
    display: flex;
    gap: 8px;
}
.travdek-offer-list .price sup {
    top: 0.2em;
}
.travdek-offer-item .price strong {
    display: block;
    color: #102a43;
    font-size: 18px;
    line-height: 1.2;
}
.travdek-offer-item .detail-btnmodel {
    border: 0;
    background: transparent;
    color: #fff;
    padding: 0px;
    margin: 0px;
    width: 10%;
    height: auto;
    border-radius: 999px;
    cursor: pointer;
}
.detail-btnmodel i.fa.fa-info-circle {
    padding: 2px !important;
    cursor: pointer;
    background: #0f5ea8;
    border-radius: 35px;
}
.detail-btnmodel i.fa.fa-info-circle:hover {
    background-color: #172b50 !important;
}
.travdek-offer-item .detail-btnmodel:hover {
    background: transparent;
}

.travdek-price-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: rgba(15, 23, 42, .62);
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.travdek-price-modal.is-open {
    display: flex !important;
}
.travdek-price-modal .modal-inner {
    position: relative;
    width: min(720px, 100%);
    max-height: 90vh;
    overflow: auto;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 24px 80px rgba(0,0,0,.25);
}
.travdek-price-modal .modal-close {
    position: absolute;
    top: 10px;
    right: 12px;
    z-index: 2;
    border: 0;
    background: #fff;
    color: #102a43;
    border-radius: 999px;
    width: 34px;
    height: 34px;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
}
.travdek-offer-list .modal-close {
    padding-top: 5px;
    padding-left: 12px;
    font-size: 24px;
    width: 35px;
    height: 35px;
}
.travdek-price-modal .modal-hero-img {
    width: 180px;
    height: 130px;
    object-fit: cover;
    border-radius: 14px;
}
.travdek-price-modal .modal-hero-content h3 {
    margin: 0 34px 8px 0;
    font-size: 24px;
}
.travdek-price-modal .modal-conditions {
    padding: 22px 24px;
}
.travdek-price-modal .condition-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}
.travdek-price-modal .condition-item {
    padding: 14px;
    border: 1px solid #edf1f6;
    border-radius: 12px;
    background: #fff;
    color: #52616f;
}
.travdek-price-modal .condition-item strong {
    color: #102a43;
}
.travdek-price-modal .model-bottom {
    padding: 0 24px 24px;
    text-align: right;
}
.travdek-price-modal .modal-book-now {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 999px;
    background: #0f5ea8;
    color: #fff;
    padding: 12px 20px;
    font-weight: 700;
    text-decoration: none;
}
.travdek-special-deals-empty {
    padding: 16px;
    border: 1px solid #edf1f6;
    border-radius: 12px;
    background: #fff;
}
@media (max-width: 700px) {
    .travdek-offer-item {
        grid-template-columns: 76px 1fr;
    }
    .travdek-offer-item .thumb {
        width: 76px;
        height: 64px;
    }
    .travdek-offer-item .clsmobile {
        display: none;
    }
    .travdek-offer-item .item-right {
        grid-column: 1 / -1;
        justify-content: space-between;
        border-top: 1px solid #edf1f6;
        padding-top: 12px;
    }
    .travdek-price-modal .modal-hero,
    .travdek-price-modal .condition-grid {
        grid-template-columns: 1fr;
    }
    .travdek-price-modal .modal-hero-img {
        width: 100%;
        height: 190px;
    }
}


/* Destination Landing Page Mobile Improvements */
@media (max-width: 767px){
.qt-destination-top-banner{
min-height:220px;
}
.qt-destination-top-banner__inner{
width:calc(100% - 24px);
padding:30px 0 40px;
}
.qt-destination-top-banner h1{
font-size:34px;
line-height:1.05;
letter-spacing:-1px;
}
.qt-destination-top-banner__stats{
display:grid;
grid-template-columns:1fr;
gap:10px;
}
.qt-destination-layout{
width:calc(100% - 20px);
grid-template-columns:1fr;
gap:20px;
padding-top:20px;
}
.qt-destination-sidebar{
position:relative;
top:auto;
order:2;
}
.qt-destination-results{
order:1;
}
.qt-destination-header-row{
flex-direction:column;
align-items:flex-start;
gap:15px;
}
.qt-view-toggle{
width:100%;
display:grid;
grid-template-columns:1fr 1fr;
}
.qt-view-toggle button{
width:100%;
}
.qt-filter-panel{
padding:16px;
border-radius:16px;
}
.tour-container.tour-list-view{
display:grid;
grid-template-columns:1fr;
gap:16px;
}
.qt-tour-results .tour-card,
.tour-card{
border-radius:16px;
overflow:hidden;
}
}

/* =========================================================
   v1.0.87 Destination / Country Landing Mobile Redesign
   Mobile only: keeps desktop layout and functionality unchanged
   ========================================================= */
@media (max-width: 767px) {
    html,
    body {
        overflow-x: hidden !important;
    }

    .qt-destination-archive.qt-destination-archive--reference-style {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 0 48px !important;
        margin: 0 !important;
        overflow-x: hidden !important;
        background: linear-gradient(180deg, #f5f8fc 0%, #eef3f9 100%) !important;
    }

    .qt-destination-archive--reference-style .qt-destination-top-banner {
        display: block !important;
        min-height: 210px !important;
        height: 210px !important;
        margin: 0 0 18px !important;
        padding: 0 !important;
        border-radius: 0 0 28px 28px !important;
        background-size: cover !important;
        background-position: center !important;
        overflow: hidden !important;
    }

    .qt-destination-archive--reference-style .qt-destination-top-banner__inner {
        width: 100% !important;
        max-width: 100% !important;
        height: 100% !important;
        padding: 28px 18px 24px !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: flex-end !important;
    }

    .qt-destination-archive--reference-style .qt-destination-crumbs {
        display: inline-flex !important;
        width: fit-content !important;
        max-width: 100% !important;
        margin-bottom: 10px !important;
        padding: 7px 12px !important;
        border-radius: 999px !important;
        background: rgba(255,255,255,.18) !important;
        color: #fff !important;
        font-size: 12px !important;
        line-height: 1.2 !important;
        backdrop-filter: blur(8px) !important;
    }

    .qt-destination-archive--reference-style .qt-destination-crumbs a,
    .qt-destination-archive--reference-style .qt-destination-crumbs span {
        color: #fff !important;
    }

    .qt-destination-archive--reference-style .qt-destination-top-banner h1 {
        margin: 0 !important;
        color: #fff !important;
        font-size: clamp(34px, 12vw, 54px) !important;
        line-height: .95 !important;
        letter-spacing: .01em !important;
        text-shadow: 0 10px 24px rgba(0,0,0,.35) !important;
    }

    .qt-destination-archive--reference-style .qt-destination-top-banner__stats {
        display: flex !important;
        flex-wrap: wrap !important;
        gap: 8px !important;
        margin-top: 13px !important;
    }

    .qt-destination-archive--reference-style .qt-destination-top-banner__stats span {
        min-height: 32px !important;
        padding: 8px 11px !important;
        border: 1px solid rgba(255,255,255,.28) !important;
        border-radius: 999px !important;
        background: rgba(255,255,255,.15) !important;
        color: #fff !important;
        font-size: 11px !important;
        font-weight: 800 !important;
        letter-spacing: .02em !important;
        backdrop-filter: blur(8px) !important;
    }

    .qt-destination-archive--reference-style .qt-destination-layout {
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 14px 28px !important;
        margin: 0 auto !important;
        box-sizing: border-box !important;
        overflow: visible !important;
    }

    .qt-destination-archive--reference-style .qt-destination-sidebar {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 0 16px !important;
        padding: 0 !important;
        transform: none !important;
        z-index: 2 !important;
    }

    .qt-destination-archive--reference-style .qt-filter-panel {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 16px !important;
        border: 1px solid #dfe8f5 !important;
        border-radius: 22px !important;
        background: #ffffff !important;
        box-shadow: 0 16px 40px rgba(8, 30, 64, .08) !important;
        box-sizing: border-box !important;
    }

    .qt-destination-archive--reference-style .qt-filter-section {
        margin-bottom: 14px !important;
    }

    .qt-destination-archive--reference-style .qt-filter-section:last-child {
        margin-bottom: 0 !important;
    }

    .qt-destination-archive--reference-style .qt-filter-section h4 {
        margin: 0 0 10px !important;
        font-size: 16px !important;
        line-height: 1.2 !important;
    }

    .qt-destination-archive--reference-style .qt-filter-groups,
    .qt-destination-archive--reference-style .qt-filter-list {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 8px !important;
    }

    .qt-destination-archive--reference-style .qt-filter-accordion__head,
    .qt-destination-archive--reference-style .qt-filter-check {
        min-height: 44px !important;
        padding: 11px 13px !important;
        border: 1px solid #d8e3f2 !important;
        border-radius: 14px !important;
        background: #f7faff !important;
        color: #08285a !important;
        font-size: 14px !important;
        font-weight: 800 !important;
        box-shadow: none !important;
    }

    .qt-destination-archive--reference-style .qt-filter-accordion__body {
        padding: 10px 0 0 !important;
    }

    .qt-destination-archive--reference-style .qt-destination-results {
        width: 100% !important;
        max-width: 100% !important;
        overflow: visible !important;
    }

    .qt-destination-archive--reference-style .qt-destination-card-header {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 0 18px !important;
        padding: 18px !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 15px !important;
        border: 1px solid #dfe8f5 !important;
        border-radius: 24px !important;
        background: #ffffff !important;
        box-shadow: 0 14px 36px rgba(8, 30, 64, .08) !important;
        box-sizing: border-box !important;
    }

    .qt-destination-archive--reference-style .qt-destination-card-header h2 {
        margin: 0 !important;
        color: #08285a !important;
        font-size: clamp(32px, 12vw, 50px) !important;
        line-height: .98 !important;
        letter-spacing: .02em !important;
        word-break: break-word !important;
    }

    .qt-destination-archive--reference-style .qt-destination-card-header h2::after {
        content: '' !important;
        display: block !important;
        width: 74px !important;
        height: 3px !important;
        margin-top: 12px !important;
        border-radius: 99px !important;
        background: #d61245 !important;
    }

    .qt-destination-archive--reference-style .qt-destination-intro {
        margin-top: 12px !important;
        color: #43536d !important;
        font-size: 14px !important;
        line-height: 1.55 !important;
    }

    .qt-destination-archive--reference-style .qt-view-toggle {
        width: 100% !important;
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 10px !important;
        padding: 0 !important;
        background: transparent !important;
        border: 0 !important;
    }

    .qt-destination-archive--reference-style .qt-view-toggle button {
        width: 100% !important;
        min-width: 0 !important;
        min-height: 48px !important;
        padding: 12px 10px !important;
        border: 1px solid #d6e2f2 !important;
        border-radius: 16px !important;
        background: #f7faff !important;
        color: #08285a !important;
        font-size: 0 !important;
        box-shadow: 0 8px 18px rgba(8, 30, 64, .05) !important;
    }

    .qt-destination-archive--reference-style .qt-view-toggle button#listViewBtn::before,
    .qt-destination-archive--reference-style .qt-view-toggle button#gridViewBtn::before {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 100% !important;
        height: auto !important;
        margin: 0 !important;
        color: inherit !important;
        font-family: Arial, Helvetica, sans-serif !important;
        font-size: 13px !important;
        font-weight: 900 !important;
        line-height: 1 !important;
        letter-spacing: .02em !important;
        opacity: 1 !important;
    }

    .qt-destination-archive--reference-style .qt-view-toggle button#listViewBtn::before {
        content: 'List View' !important;
    }

    .qt-destination-archive--reference-style .qt-view-toggle button#gridViewBtn::before {
        content: 'Grid View' !important;
    }

    .qt-destination-archive--reference-style .qt-view-toggle button.active {
        background: linear-gradient(135deg, #97000d 0%, #142850 100%) !important;
        border-color: transparent !important;
        color: #ffffff !important;
        box-shadow: 0 14px 28px rgba(151, 0, 13, .22) !important;
    }

    .qt-destination-archive--reference-style .qt-tour-results,
    .qt-destination-archive--reference-style .tour-container,
    .qt-destination-archive--reference-style .qt-tour-results.tour-grid-view,
    .qt-destination-archive--reference-style .tour-container.tour-grid-view {
        width: 100% !important;
        max-width: 100% !important;
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 18px !important;
        overflow: visible !important;
    }

    .qt-destination-archive--reference-style .tour-card,
    .qt-destination-archive--reference-style article.tour-card,
    .qt-destination-archive--reference-style .tour-container.tour-list-view .tour-card,
    .qt-destination-archive--reference-style .tour-container.tour-grid-view .tour-card {
        width: 100% !important;
        max-width: 100% !important;
        min-height: 0 !important;
        display: block !important;
        grid-template-columns: 1fr !important;
        border: 1px solid #dfe8f5 !important;
        border-radius: 24px !important;
        background: #ffffff !important;
        box-shadow: 0 16px 38px rgba(8, 30, 64, .10) !important;
        overflow: hidden !important;
        transform: none !important;
        box-sizing: border-box !important;
    }

    .qt-destination-archive--reference-style .tour-card:hover {
        transform: none !important;
    }

    .qt-destination-archive--reference-style .tour-content {
        display: block !important;
    }

    .qt-destination-archive--reference-style .tour-image,
    .qt-destination-archive--reference-style .tour-image img,
    .qt-destination-archive--reference-style .tour-container.tour-grid-view .tour-image,
    .qt-destination-archive--reference-style .tour-container.tour-grid-view .tour-image img {
        width: 100% !important;
        height: 230px !important;
        min-height: 230px !important;
        border-radius: 0 !important;
        object-fit: cover !important;
    }

    .qt-destination-archive--reference-style .clstripscontents {
        width: 100% !important;
        max-width: 100% !important;
        padding: 18px 18px 8px !important;
        border-right: 0 !important;
        box-sizing: border-box !important;
    }

    .qt-destination-archive--reference-style .tour-type {
        display: inline-flex !important;
        width: auto !important;
        max-width: 100% !important;
        margin: 0 0 12px !important;
        padding: 8px 16px !important;
        border-radius: 999px !important;
        background: #eaf1fa !important;
        color: #08285a !important;
        font-family: Arial, Helvetica, sans-serif !important;
        font-size: 15px !important;
        line-height: 1.1 !important;
        font-weight: 900 !important;
        text-align: left !important;
    }

    .qt-destination-archive--reference-style .tour-title {
        margin: 0 10px 12px 0 !important;
        color: #08285a !important;
        font-size: clamp(26px, 8vw, 34px) !important;
        line-height: 1.08 !important;
        font-weight: 700 !important;
        word-break: break-word !important;
    }

    .qt-destination-archive--reference-style .wishlist-icon {
        top: 2% !important;
        right: 18px !important;
        bottom: auto !important;
        z-index: 5 !important;
    }

    .qt-destination-archive--reference-style .wishlist-btn {
        width: 45px !important;
        height: 45px !important;
        border: 1px solid #d8e1ec !important;
        background: rgba(255,255,255,.96) !important;
        color: #d61245 !important;
        box-shadow: 0 12px 28px rgba(8,30,64,.14) !important;
    }

    .qt-destination-archive--reference-style .tour-meta,
    .qt-destination-archive--reference-style .tour-stats {
        color: #43536d !important;
        font-size: 13px !important;
        line-height: 1.45 !important;
        font-weight: 700 !important;
    }

    .qt-destination-archive--reference-style .tour-meta {
        margin-bottom: 8px !important;
    }

    .qt-destination-archive--reference-style .tourpluse {
        margin-top: 10px !important;
        padding-top: 0 !important;
        color: #08285a !important;
        font-size: 13px !important;
    }

    .qt-destination-archive--reference-style .clstripsbtn,
    .qt-destination-archive--reference-style .tour-grid-view .clstripsbtn {
        width: 100% !important;
        padding: 16px 18px 18px !important;
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 14px !important;
        align-items: stretch !important;
        justify-content: stretch !important;
        border-top: 1px solid #e5edf7 !important;
        background: #fbfdff !important;
        text-align: left !important;
        box-sizing: border-box !important;
    }

    .qt-destination-archive--reference-style .price {
        width: 100% !important;
        margin: 0 !important;
        padding: 12px 14px !important;
        border-radius: 16px !important;
        background: #f0f5fb !important;
        color: #08285a !important;
        font-size: 13px !important;
        text-align: left !important;
        box-sizing: border-box !important;
        display: flex;
        gap: 10px;
    }

    .qt-destination-archive--reference-style .price strong {
        font-size: 24px !important;
    }

    .qt-destination-archive--reference-style .view-btn {
        width: 100% !important;
        min-height: 32px !important;
        border-radius: 28px !important;
        background: linear-gradient(135deg, #97000d 0%, #142850 100%) !important;
        border-color: transparent !important;
        color: #ffffff !important;
        font-size: 14px !important;
        box-shadow: 0 14px 28px rgba(151,0,13,.18) !important;
    }

    .qt-destination-archive--reference-style .offer-badge {
        top: -6px !important;
        left: -10px !important;
        z-index: 6 !important;
    }

    .qt-destination-archive--reference-style .offer-badge img {
        width: 64px !important;
    }
}

@media (max-width: 420px) {
    .qt-destination-archive--reference-style .tour-image,
    .qt-destination-archive--reference-style .tour-image img,
    .qt-destination-archive--reference-style .tour-container.tour-grid-view .tour-image,
    .qt-destination-archive--reference-style .tour-container.tour-grid-view .tour-image img {
        height: 210px !important;
        min-height: 210px !important;
    }

    .qt-destination-archive--reference-style .qt-destination-layout {
        padding-left: 12px !important;
        padding-right: 12px !important;
    }

    .qt-destination-archive--reference-style .tour-title {
        font-size: 28px !important;
    }
}

/* v1.0.84 Destination landing mobile refinements: hide view switcher + improved filter card */
@media (max-width: 767px) {
  body .qt-destination-archive.qt-destination-archive--reference-style {
    overflow-x: hidden !important;
    background: #f4f7fb !important;
  }

  body .qt-destination-archive--reference-style .qt-view-toggle,
  body .qt-destination-archive--reference-style #listViewBtn,
  body .qt-destination-archive--reference-style #gridViewBtn {
    display: none !important;
    visibility: hidden !important;
  }

  body .qt-destination-archive--reference-style .qt-destination-top-banner {
    min-height: 308px !important;
    margin: 0 0 14px !important;
    padding: 24px 18px !important;
    border-radius: 0 0 28px 28px !important;
    background-position: center !important;
    background-size: cover !important;
  }

  body .qt-destination-archive--reference-style .qt-destination-top-banner__inner {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
  }

  body .qt-destination-archive--reference-style .qt-destination-top-banner h1 {
    margin: 22px 0 10px !important;
    color: #ffffff !important;
    font-size: clamp(42px, 14vw, 58px) !important;
    line-height: .95 !important;
    letter-spacing: -.04em !important;
    text-transform: capitalize !important;
    text-shadow: 0 10px 30px rgba(0,0,0,.35) !important;
  }

  body .qt-destination-archive--reference-style .qt-destination-top-banner__stats {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 8px !important;
    margin-top: 14px !important;
  }

  body .qt-destination-archive--reference-style .qt-destination-top-banner__stats span {
    width: auto !important;
    min-height: 32px !important;
    padding: 8px 12px !important;
    border: 1px solid rgba(255,255,255,.32) !important;
    border-radius: 999px !important;
    background: rgba(255,255,255,.20) !important;
    color: #ffffff !important;
    font-size: 12px !important;
    font-weight: 900 !important;
    line-height: 1 !important;
    box-shadow: none !important;
    backdrop-filter: blur(8px) !important;
  }

  body .qt-destination-archive--reference-style .qt-destination-layout {
    width: 100% !important;
    max-width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 16px !important;
    padding: 0 14px 36px !important;
    margin: 0 auto !important;
    box-sizing: border-box !important;
  }

  body .qt-destination-archive--reference-style .qt-destination-sidebar,
  body .qt-destination-archive--reference-style .qt-destination-results {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    box-sizing: border-box !important;
    position: static !important;
    transform: none !important;
  }

  body .qt-destination-archive--reference-style .qt-filter-panel {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 0 12px !important;
    padding: 16px !important;
    border: 1px solid #dfe8f5 !important;
    border-radius: 24px !important;
    background: #ffffff !important;
    box-shadow: 0 16px 36px rgba(8, 30, 64, .08) !important;
    box-sizing: border-box !important;
  }

  body .qt-destination-archive--reference-style .qt-filter-section {
    margin: 0 0 14px !important;
    padding: 0 0 14px !important;
    border: 0 !important;
    border-bottom: 1px solid #e5edf7 !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  body .qt-destination-archive--reference-style .qt-filter-section:last-child {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
    border-bottom: 0 !important;
  }

  body .qt-destination-archive--reference-style .qt-filter-section h4 {
    position: relative !important;
    margin: 0 0 12px !important;
    padding: 0 0 10px !important;
    color: #08285a !important;
    font-size: 18px !important;
    font-weight: 900 !important;
    line-height: 1.1 !important;
    letter-spacing: .04em !important;
    text-transform: uppercase !important;
  }

  body .qt-destination-archive--reference-style .qt-filter-section h4::after {
    content: '' !important;
    position: absolute !important;
    left: 0 !important;
    bottom: 0 !important;
    width: 58px !important;
    height: 3px !important;
    border-radius: 999px !important;
    background: #e4003a !important;
  }

  body .qt-destination-archive--reference-style .qt-filter-groups,
  body .qt-destination-archive--reference-style .qt-filter-list {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 8px !important;
  }

  body .qt-destination-archive--reference-style .qt-filter-accordion {
    width: 100% !important;
    margin: 0 !important;
    border: 0 !important;
    border-radius: 16px !important;
    background: transparent !important;
    box-shadow: none !important;
    overflow: visible !important;
  }

  body .qt-destination-archive--reference-style .qt-filter-accordion__head {
    width: 100% !important;
    min-height: 50px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 12px !important;
    padding: 13px 15px !important;
    border: 1px solid #d7e3f3 !important;
    border-radius: 16px !important;
    background: #f6f9fe !important;
    color: #08285a !important;
    font-size: 14px !important;
    font-weight: 900 !important;
    line-height: 1.15 !important;
    letter-spacing: .02em !important;
    text-align: left !important;
    box-shadow: none !important;
  }

  body .qt-destination-archive--reference-style .qt-filter-accordion.is-open .qt-filter-accordion__head {
    border-color: #cbdcf1 !important;
    background: linear-gradient(135deg, #f8fbff 0%, #eef5ff 100%) !important;
    color: #08285a !important;
  }

  body .qt-destination-archive--reference-style .qt-filter-arrow {
    width: 22px !important;
    height: 22px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 999px !important;
    background: #e9f1fb !important;
    color: #08285a !important;
    font-size: 13px !important;
    line-height: 1 !important;
  }

  body .qt-destination-archive--reference-style .qt-filter-accordion__body {
    padding: 8px 0 0 !important;
    background: transparent !important;
    border: 0 !important;
  }

  body .qt-destination-archive--reference-style .qt-filter-check {
    width: 100% !important;
    min-height: 48px !important;
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    margin: 0 !important;
    padding: 12px 14px !important;
    border: 1px solid #dce7f5 !important;
    border-radius: 15px !important;
    background: #f8fbff !important;
    color: #0b2a59 !important;
    box-shadow: none !important;
    box-sizing: border-box !important;
  }

  body .qt-destination-archive--reference-style .qt-filter-check span {
    color: #0b2a59 !important;
    font-size: 14px !important;
    font-weight: 900 !important;
    line-height: 1.2 !important;
    letter-spacing: .02em !important;
  }

  body .qt-destination-archive--reference-style .qt-filter-check input[type="checkbox"] {
    width: 18px !important;
    height: 18px !important;
    min-width: 18px !important;
    margin: 0 !important;
    accent-color: #e4003a !important;
  }

  body .qt-destination-archive--reference-style .qt-filter-check:has(input:checked),
  body .qt-destination-archive--reference-style .qt-filter-check.is-active {
    border-color: #ff2d55 !important;
    background: #fff6f8 !important;
    box-shadow: 0 8px 20px rgba(228,0,58,.08) !important;
  }

  body .qt-destination-archive--reference-style .qt-filter-check.is-disabled {
    opacity: .55 !important;
  }

  body .qt-destination-archive--reference-style .qt-filter-readmore {
    width: 100% !important;
    min-height: 44px !important;
    margin-top: 8px !important;
    border-radius: 14px !important;
    border: 1px solid #d7e3f3 !important;
    background: #ffffff !important;
    color: #08285a !important;
    font-weight: 900 !important;
  }

  body .qt-destination-archive--reference-style .qt-destination-card-header {
    padding: 20px 0 8px !important;
    margin: 0 !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
  }

  body .qt-destination-archive--reference-style .qt-destination-card-header h2 {
    margin: 0 0 8px !important;
    color: #08285a !important;
    font-size: clamp(34px, 12vw, 48px) !important;
    line-height: .95 !important;
    letter-spacing: -.04em !important;
    text-transform: uppercase !important;
  }

  body .qt-destination-archive--reference-style .qt-destination-card-header h2::after {
    content: '' !important;
    display: block !important;
    width: 72px !important;
    height: 3px !important;
    margin-top: 10px !important;
    border-radius: 999px !important;
    background: #e4003a !important;
  }

  body .qt-destination-archive--reference-style .tour-container,
  body .qt-destination-archive--reference-style .tour-container.tour-list-view,
  body .qt-destination-archive--reference-style .tour-container.tour-grid-view {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 18px !important;
    width: 100% !important;
    max-width: 100% !important;
  }
}


/* v1.0.88 Destination mobile filter accordion above itinerary list */
@media (max-width: 767px) {
  body .qt-destination-archive--reference-style .qt-destination-layout {
    display: flex !important;
    flex-direction: column !important;
  }

  body .qt-destination-archive--reference-style .qt-destination-results {
    display: contents !important;
  }

  body .qt-destination-archive--reference-style .qt-destination-card-header {
    order: 1 !important;
  }

  body .qt-destination-archive--reference-style .qt-destination-sidebar {
    order: 2 !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 0 16px !important;
    padding: 0 !important;
  }

  body .qt-destination-archive--reference-style #tourContainer,
  body .qt-destination-archive--reference-style .tour-container,
  body .qt-destination-archive--reference-style .qt-tour-results {
    order: 3 !important;
  }

  body .qt-destination-archive--reference-style .qt-mobile-filter-toggle {
    width: 100% !important;
    min-height: 54px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 12px !important;
    margin: 0 0 10px !important;
    padding: 14px 16px !important;
    border: 1px solid #d8e4f3 !important;
    border-radius: 18px !important;
    background: linear-gradient(135deg, #ffffff 0%, #f5f9ff 100%) !important;
    color: #08285a !important;
    font-size: 15px !important;
    font-weight: 900 !important;
    line-height: 1.1 !important;
    letter-spacing: .02em !important;
    text-align: left !important;
    box-shadow: 0 12px 28px rgba(8, 30, 64, .08) !important;
    cursor: pointer !important;
    box-sizing: border-box !important;
  }

  body .qt-destination-archive--reference-style .qt-mobile-filter-toggle::before {
    content: '☰' !important;
    width: 34px !important;
    height: 34px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex: 0 0 34px !important;
    border-radius: 12px !important;
    background: #eaf1fb !important;
    color: #08285a !important;
    font-size: 16px !important;
    line-height: 1 !important;
  }

  body .qt-destination-archive--reference-style .qt-mobile-filter-toggle__text {
    flex: 1 1 auto !important;
    display: block !important;
  }

  body .qt-destination-archive--reference-style .qt-mobile-filter-toggle__arrow {
    width: 30px !important;
    height: 30px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex: 0 0 30px !important;
    border-radius: 999px !important;
    background: #ffffff !important;
    color: #e4003a !important;
    font-size: 18px !important;
    font-weight: 900 !important;
    box-shadow: inset 0 0 0 1px #d8e4f3 !important;
    transform: rotate(0deg) !important;
    transition: transform .25s ease !important;
  }

  body .qt-destination-archive--reference-style .qt-destination-sidebar.is-mobile-filter-open .qt-mobile-filter-toggle {
    background: linear-gradient(135deg, #97000d 0%, #142850 100%) !important;
    border-color: transparent !important;
    color: #ffffff !important;
    box-shadow: 0 16px 34px rgba(151, 0, 13, .18) !important;
  }

  body .qt-destination-archive--reference-style .qt-destination-sidebar.is-mobile-filter-open .qt-mobile-filter-toggle::before {
    background: rgba(255,255,255,.16) !important;
    color: #ffffff !important;
  }

  body .qt-destination-archive--reference-style .qt-destination-sidebar.is-mobile-filter-open .qt-mobile-filter-toggle__arrow {
    transform: rotate(180deg) !important;
  }

  body .qt-destination-archive--reference-style .qt-destination-sidebar #tour-filters.qt-filter-panel {
    display: none !important;
    margin-top: 0 !important;
  }

  body .qt-destination-archive--reference-style .qt-destination-sidebar.is-mobile-filter-open #tour-filters.qt-filter-panel {
    display: block !important;
    animation: qtMobileFilterDrop .22s ease both !important;
  }
}

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

@media (min-width: 768px) {
  .qt-mobile-filter-toggle {
    display: none !important;
  }
}

/* v1.0.90: Mobile destination filter accordion arrow + panel click fix */
@media (max-width: 767px) {
  body .qt-destination-archive--reference-style .qt-filter-accordion__head {
    position: relative !important;
    cursor: pointer !important;
    pointer-events: auto !important;
  }

  body .qt-destination-archive--reference-style .qt-filter-arrow {
    width: 24px !important;
    height: 24px !important;
    min-width: 24px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 0 !important;
    border-radius: 999px !important;
    background: #e9f1fb !important;
    color: #08285a !important;
    font-size: 0 !important;
    line-height: 1 !important;
    transform: none !important;
    transition: transform .2s ease, background .2s ease !important;
    pointer-events: none !important;
  }

  body .qt-destination-archive--reference-style .qt-filter-arrow::before {
    content: '▾' !important;
    display: block !important;
    font-size: 14px !important;
    font-weight: 900 !important;
    line-height: 1 !important;
  }

  body .qt-destination-archive--reference-style .qt-filter-accordion.is-open .qt-filter-arrow {
    transform: rotate(180deg) !important;
    background: #ffffff !important;
  }

  body .qt-destination-archive--reference-style .qt-filter-accordion__body {
    display: none !important;
  }

  body .qt-destination-archive--reference-style .qt-filter-accordion.is-open .qt-filter-accordion__body {
    display: block !important;
  }
}

/* v1.0.91 Special Offers mobile filter design fixes */
@media (max-width: 767px) {
  body .qt-special-offers-archive.qt-destination-archive--reference-style {
    background: #f4f7fb !important;
    padding-top: 0 !important;
    overflow-x: hidden !important;
  }

  body .qt-special-offers-archive.qt-destination-archive--reference-style .qt-destination-layout {
    width: 100% !important;
    max-width: 100% !important;
    padding: 16px 14px 70px !important;
    gap: 14px !important;
    display: flex !important;
    flex-direction: column !important;
  }

  body .qt-special-offers-archive.qt-destination-archive--reference-style .qt-destination-card-header {
    width: 100% !important;
    margin: 0 0 12px !important;
    padding: 18px 16px !important;
    border: 1px solid #dce7f5 !important;
    border-radius: 22px !important;
    background: #ffffff !important;
    box-shadow: 0 14px 32px rgba(8, 30, 64, .08) !important;
    order: 1 !important;
  }

  body .qt-special-offers-archive.qt-destination-archive--reference-style .qt-destination-card-header h2 {
    font-size: clamp(30px, 10vw, 42px) !important;
    line-height: .96 !important;
    letter-spacing: -.03em !important;
  }

  body .qt-special-offers-archive.qt-destination-archive--reference-style .qt-destination-sidebar {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 0 14px !important;
    padding: 0 !important;
    position: static !important;
    order: 2 !important;
    z-index: 1 !important;
  }

  body .qt-special-offers-archive.qt-destination-archive--reference-style .qt-mobile-filter-toggle {
    width: 100% !important;
    min-height: 58px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 12px !important;
    margin: 0 0 12px !important;
    padding: 14px 16px !important;
    border: 1px solid #d8e4f3 !important;
    border-radius: 18px !important;
    background: linear-gradient(135deg, #ffffff 0%, #f5f9ff 100%) !important;
    color: #08285a !important;
    font-size: 15px !important;
    font-weight: 900 !important;
    line-height: 1.1 !important;
    text-align: left !important;
    box-shadow: 0 12px 28px rgba(8, 30, 64, .08) !important;
    cursor: pointer !important;
  }

  body .qt-special-offers-archive.qt-destination-archive--reference-style .qt-mobile-filter-toggle::before {
    content: '☰' !important;
    width: 34px !important;
    height: 34px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex: 0 0 34px !important;
    border-radius: 12px !important;
    background: #eaf1fb !important;
    color: #08285a !important;
    font-size: 16px !important;
  }

  body .qt-special-offers-archive.qt-destination-archive--reference-style .qt-mobile-filter-toggle__text {
    flex: 1 1 auto !important;
  }

  body .qt-special-offers-archive.qt-destination-archive--reference-style .qt-mobile-filter-toggle__arrow {
    width: 30px !important;
    height: 30px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex: 0 0 30px !important;
    border-radius: 50% !important;
    background: #fff !important;
    color: #e4003a !important;
    font-size: 18px !important;
    font-weight: 900 !important;
    box-shadow: inset 0 0 0 1px #d8e4f3 !important;
    transition: transform .25s ease !important;
  }

  body .qt-special-offers-archive.qt-destination-archive--reference-style .qt-destination-sidebar.is-mobile-filter-open .qt-mobile-filter-toggle {
    background: linear-gradient(135deg, #97000d 0%, #142850 100%) !important;
    border-color: transparent !important;
    color: #fff !important;
    box-shadow: 0 16px 34px rgba(151, 0, 13, .18) !important;
  }

  body .qt-special-offers-archive.qt-destination-archive--reference-style .qt-destination-sidebar.is-mobile-filter-open .qt-mobile-filter-toggle::before {
    background: rgba(255,255,255,.16) !important;
    color: #fff !important;
  }

  body .qt-special-offers-archive.qt-destination-archive--reference-style .qt-destination-sidebar.is-mobile-filter-open .qt-mobile-filter-toggle__arrow {
    transform: rotate(180deg) !important;
  }

  body .qt-special-offers-archive.qt-destination-archive--reference-style #tour-filters.qt-filter-panel {
    display: none !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 16px !important;
    border: 1px solid #dce7f5 !important;
    border-radius: 22px !important;
    background: #ffffff !important;
    box-shadow: 0 16px 36px rgba(8, 30, 64, .09) !important;
  }

  body .qt-special-offers-archive.qt-destination-archive--reference-style .qt-destination-sidebar.is-mobile-filter-open #tour-filters.qt-filter-panel {
    display: block !important;
    animation: qtMobileFilterDrop .22s ease both !important;
  }

  body .qt-special-offers-archive.qt-destination-archive--reference-style .qt-filter-section {
    margin: 0 0 16px !important;
    padding: 0 !important;
  }

  body .qt-special-offers-archive.qt-destination-archive--reference-style .qt-filter-section h4 {
    margin: 0 0 12px !important;
    color: #08285a !important;
    font-size: 18px !important;
    line-height: 1.15 !important;
    font-weight: 900 !important;
  }

  body .qt-special-offers-archive.qt-destination-archive--reference-style .qt-filter-section h4::after {
    width: 58px !important;
    height: 3px !important;
    margin-top: 8px !important;
    border-radius: 999px !important;
    background: #e4003a !important;
  }

  body .qt-special-offers-archive.qt-destination-archive--reference-style .qt-filter-accordion__head {
    min-height: 48px !important;
    padding: 12px 14px !important;
    border: 1px solid #dbe7f5 !important;
    border-radius: 14px !important;
    background: #f3f7fc !important;
    color: #092b5d !important;
    font-size: 13px !important;
    font-weight: 900 !important;
    letter-spacing: .02em !important;
  }

  body .qt-special-offers-archive.qt-destination-archive--reference-style .qt-filter-accordion.is-open .qt-filter-accordion__head {
    background: #eaf1fb !important;
    border-color: #cbdcf0 !important;
  }

  body .qt-special-offers-archive.qt-destination-archive--reference-style .qt-filter-accordion__body {
    padding: 10px 0 4px !important;
  }

  body .qt-special-offers-archive.qt-destination-archive--reference-style .qt-filter-check {
    min-height: 46px !important;
    margin: 0 0 8px !important;
    padding: 11px 12px !important;
    border: 1px solid #dce7f5 !important;
    border-radius: 14px !important;
    background: #f8fbff !important;
    color: #092b5d !important;
    font-size: 13px !important;
    line-height: 1.2 !important;
    font-weight: 900 !important;
  }

  body .qt-special-offers-archive.qt-destination-archive--reference-style .qt-filter-check:hover,
  body .qt-special-offers-archive.qt-destination-archive--reference-style .qt-filter-check.is-active,
  body .qt-special-offers-archive.qt-destination-archive--reference-style .qt-filter-check:has(input:checked) {
    border-color: #ff5b78 !important;
    background: #fff5f8 !important;
    color: #e4003a !important;
  }

  body .qt-special-offers-archive.qt-destination-archive--reference-style #tourContainer,
  body .qt-special-offers-archive.qt-destination-archive--reference-style .tour-container,
  body .qt-special-offers-archive.qt-destination-archive--reference-style .qt-tour-results {
    order: 3 !important;
  }
}


/* v1.0.93 - Mobile filter fixes for tours archive and all taxonomy landing templates */
@media (max-width: 767px) {
  body .qt-destination-archive .qt-destination-layout,
  body .qt-destination-archive .qt-destination-shell,
  body .qt-tour-archive .qt-destination-layout {
    display: flex !important;
    flex-direction: column !important;
    gap: 18px !important;
    width: 100% !important;
    padding-left: 14px !important;
    padding-right: 14px !important;
    box-sizing: border-box !important;
  }

  body .qt-destination-archive .qt-destination-sidebar,
  body .qt-tour-archive .qt-destination-sidebar {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 auto !important;
    order: 1 !important;
    position: relative !important;
    top: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    z-index: 5 !important;
  }

  body .qt-destination-archive .qt-destination-results,
  body .qt-tour-archive .qt-destination-results {
    width: 100% !important;
    max-width: 100% !important;
    order: 2 !important;
    margin: 0 !important;
  }

  body .qt-destination-archive .qt-mobile-filter-toggle,
  body .qt-tour-archive .qt-mobile-filter-toggle {
    width: 100% !important;
    min-height: 58px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 12px !important;
    margin: 0 0 12px !important;
    padding: 14px 16px !important;
    border: 1px solid #d8e4f3 !important;
    border-radius: 18px !important;
    background: linear-gradient(135deg, #ffffff 0%, #f5f9ff 100%) !important;
    color: #08285a !important;
    font-size: 15px !important;
    font-weight: 900 !important;
    line-height: 1.1 !important;
    text-align: left !important;
    box-shadow: 0 12px 28px rgba(8, 30, 64, .08) !important;
    cursor: pointer !important;
  }

  body .qt-destination-archive .qt-mobile-filter-toggle::before,
  body .qt-tour-archive .qt-mobile-filter-toggle::before {
    content: '☰' !important;
    width: 34px !important;
    height: 34px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex: 0 0 34px !important;
    border-radius: 12px !important;
    background: #eaf1fb !important;
    color: #08285a !important;
    font-size: 16px !important;
  }

  body .qt-destination-archive .qt-mobile-filter-toggle__text,
  body .qt-tour-archive .qt-mobile-filter-toggle__text {
    flex: 1 1 auto !important;
  }

  body .qt-destination-archive .qt-mobile-filter-toggle__arrow,
  body .qt-tour-archive .qt-mobile-filter-toggle__arrow {
    width: 30px !important;
    height: 30px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex: 0 0 30px !important;
    border-radius: 50% !important;
    background: #fff !important;
    color: #e4003a !important;
    font-size: 18px !important;
    font-weight: 900 !important;
    box-shadow: inset 0 0 0 1px #d8e4f3 !important;
    transition: transform .25s ease !important;
  }

  body .qt-destination-archive .qt-destination-sidebar.is-mobile-filter-open .qt-mobile-filter-toggle,
  body .qt-tour-archive .qt-destination-sidebar.is-mobile-filter-open .qt-mobile-filter-toggle {
    background: linear-gradient(135deg, #97000d 0%, #142850 100%) !important;
    border-color: transparent !important;
    color: #fff !important;
    box-shadow: 0 16px 34px rgba(151, 0, 13, .18) !important;
  }

  body .qt-destination-archive .qt-destination-sidebar.is-mobile-filter-open .qt-mobile-filter-toggle::before,
  body .qt-tour-archive .qt-destination-sidebar.is-mobile-filter-open .qt-mobile-filter-toggle::before {
    background: rgba(255,255,255,.16) !important;
    color: #fff !important;
  }

  body .qt-destination-archive .qt-destination-sidebar.is-mobile-filter-open .qt-mobile-filter-toggle__arrow,
  body .qt-tour-archive .qt-destination-sidebar.is-mobile-filter-open .qt-mobile-filter-toggle__arrow {
    transform: rotate(180deg) !important;
  }

  body .qt-destination-archive #tour-filters.qt-filter-panel,
  body .qt-tour-archive #tour-filters.qt-filter-panel {
    display: none !important;
    width: 100% !important;
    margin: 0 0 16px !important;
    padding: 16px !important;
    border: 1px solid #dce7f5 !important;
    border-radius: 22px !important;
    background: #ffffff !important;
    box-shadow: 0 16px 36px rgba(8, 30, 64, .09) !important;
    box-sizing: border-box !important;
  }

  body .qt-destination-archive .qt-destination-sidebar.is-mobile-filter-open #tour-filters.qt-filter-panel,
  body .qt-tour-archive .qt-destination-sidebar.is-mobile-filter-open #tour-filters.qt-filter-panel {
    display: block !important;
    animation: qtMobileFilterDrop .22s ease both !important;
  }

  body .qt-destination-archive .qt-view-toggle,
  body .qt-tour-archive .qt-view-toggle {
    display: none !important;
  }

  body .qt-destination-archive .qt-filter-section,
  body .qt-tour-archive .qt-filter-section {
    margin: 0 0 16px !important;
    padding: 0 !important;
  }

  body .qt-destination-archive .qt-filter-section h4,
  body .qt-tour-archive .qt-filter-section h4 {
    margin: 0 0 12px !important;
    color: #08285a !important;
    font-size: 18px !important;
    line-height: 1.15 !important;
    font-weight: 900 !important;
  }

  body .qt-destination-archive .qt-filter-accordion,
  body .qt-tour-archive .qt-filter-accordion {
    margin: 0 0 8px !important;
  }

  body .qt-destination-archive .qt-filter-accordion__head,
  body .qt-tour-archive .qt-filter-accordion__head {
    min-height: 48px !important;
    padding: 12px 14px !important;
    border: 1px solid #dbe7f5 !important;
    border-radius: 14px !important;
    background: #f3f7fc !important;
    color: #092b5d !important;
    font-size: 13px !important;
    font-weight: 900 !important;
    letter-spacing: .02em !important;
  }

  body .qt-destination-archive .qt-filter-accordion.is-open .qt-filter-accordion__head,
  body .qt-tour-archive .qt-filter-accordion.is-open .qt-filter-accordion__head {
    background: #eaf1fb !important;
    border-color: #cbdcf0 !important;
  }

  body .qt-destination-archive .qt-filter-accordion__body,
  body .qt-tour-archive .qt-filter-accordion__body {
    padding: 10px 0 4px !important;
  }

  body .qt-destination-archive .qt-filter-check,
  body .qt-tour-archive .qt-filter-check {
    min-height: 46px !important;
    margin: 0 0 8px !important;
    padding: 11px 12px !important;
    border: 1px solid #dce7f5 !important;
    border-radius: 14px !important;
    background: #f8fbff !important;
    color: #092b5d !important;
    font-size: 13px !important;
    line-height: 1.2 !important;
    font-weight: 900 !important;
  }

  body .qt-destination-archive .qt-filter-check:hover,
  body .qt-destination-archive .qt-filter-check.is-active,
  body .qt-destination-archive .qt-filter-check:has(input:checked),
  body .qt-tour-archive .qt-filter-check:hover,
  body .qt-tour-archive .qt-filter-check.is-active,
  body .qt-tour-archive .qt-filter-check:has(input:checked) {
    border-color: #ff5b78 !important;
    background: #fff5f8 !important;
    color: #e4003a !important;
  }
}





/********07-08-2026*********/

/* ---- Block 1 (from: Single Tour) ---- */
.qt-inquire-modal-overlay {
        display: none;
        position: fixed;
        inset: 0;
        z-index: 99999;
        padding: 24px 16px;
        background: rgba(9, 20, 41, .55);
        overflow-y: auto;
    }
    .qt-inquire-modal-overlay.is-open {
        display: flex;
        align-items: flex-start;
        justify-content: center;
    }
    body.qt-modal-open {
        overflow: hidden;
    }
    .qt-inquire-modal-box {
        position: relative;
        width: 100%;
        max-width: 720px;
        margin: auto;
        background: #fff;
        border-radius: 16px;
        padding: 28px 24px 24px;
        box-shadow: 0 25px 70px rgba(9, 20, 41, .35);
        max-height: calc(100vh - 48px);
        overflow-y: auto;
        border: 8px solid #000;
    }
    .qt-inquire-modal-close {
        position: absolute;
        top: 14px;
        right: 16px;
        width: 34px !important;
        height: 34px;
        line-height: 1;
        border: 0;
        border-radius: 50% !important;
        background: #f1f4f9;
        color: #17263f;
        font-size: 22px;
        cursor: pointer;
        display: flex !important;
        align-items: center;
        justify-content: center;
        z-index:1;
    }
    .qt-inquire-modal-close:hover {
        background-color: #000 !important;
    }
    @media (max-width: 600px) {
        .qt-inquire-modal-overlay {
            padding: 12px;
        }
        .qt-inquire-modal-box {
            padding: 24px 16px 18px;
            border-radius: 12px;
        }
    }

    /* Ask an Expert popup */
    .qt-expert-modal-overlay {
        display: none;
        position: fixed;
        inset: 0;
        z-index: 99999;
        padding: 24px 16px;
        background: rgba(9, 20, 41, .55);
        overflow-y: auto;
    }
    .qt-expert-modal-overlay.is-open {
        display: flex;
        align-items: flex-start;
        justify-content: center;
    }
    .qt-expert-modal-box {
        position: relative;
        width: 100%;
        max-width: 960px;
        margin: auto;
        background: #fff;
        border-radius: 24px;
        box-shadow: 0 25px 70px rgba(9, 20, 41, .35);
        max-height: calc(100vh - 48px);
        overflow-y: auto;
        border:8px solid #000;
    }
    .qt-expert-modal-close {
        position: absolute;
        top: 18px;
        right: 20px;
        width: 40px;
        height: 40px;
        line-height: 1;
        border: 0;
        border-radius: 50%;
        background: #fff;
        color: #17263f;
        font-size: 20px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 4px 14px rgba(9, 20, 41, .18);
        z-index: 2;
    }
    .qt-expert-modal-close:hover {
        background: #000;
    }
    
    .qt-expert-modal-grid {
        display: grid;
        grid-template-columns: 38% 62%;
        align-items: stretch;
    }
    .qt-expert-modal-photo {
        position: relative;
        min-height: 100%;
        border-radius: 14px 0 0 14px;
        overflow: hidden;
        background: #17263f;
    }
    .qt-expert-modal-photo img {
        width: 100%;
        height: 100%;
        min-height: 20px;
        object-fit: cover;
        display: block;
    }
    .qt-expert-modal-badge {
        position: absolute;
        left: 0;
        bottom: 0;
        display: flex;
        align-items: center;
        gap: 10px;
        max-width: 88%;
        padding: 18px 22px 20px 24px;
        background: linear-gradient(135deg, rgba(15, 26, 46, .92), rgba(15, 26, 46, .78));
        border-radius: 0 24px 0 0;
        width: 70%;
    }
    .qt-expert-modal-badge-icon {
        font-size: 26px;
        line-height: 1;
        color: #f0b429;
    }
    .qt-expert-modal-badge-icon img.emoji {
        width: 45px !important;
        height: 45px !important;
    }
    .qt-expert-modal-badge-text {
        display: flex;
        flex-direction: column;
        color: #fff;
        line-height: 1.35;
    }
    .qt-expert-modal-badge-text strong {
        font-size: 19px;
        color: #f0b429;
    }
    .qt-expert-modal-badge-text span {
        font-size: 14px;
        color: #e6ebf3;
    }
    .qt-expert-modal-content {
        padding: 44px 44px 36px;
        text-align: center;
    }
    .qt-expert-modal-box #qt-expert-modal-title {
        margin: 0 0 16px;
        font-family: Georgia, 'Times New Roman', serif;
        font-size: 30px;
        line-height: 1.28;
        font-weight: 700;
        color: #17263f;
    }
    .qt-expert-modal-highlight {
        color: #2952d1;
    }
    .qt-expert-modal-grid .qt-expert-modal-rule {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        margin: 0 0 20px;
        color: #d9a441;
    }
    .qt-expert-modal-grid .qt-expert-modal-rule span {
        display: block;
        width: 56px;
        height: 1px;
        background: #d8dee8;
    }
    .qt-expert-modal-grid .qt-expert-modal-subtitle {
        margin: 0 0 28px;
        color: #6b7994;
        font-size: 15.5px;
        line-height: 1.6;
        max-width: 460px;
        margin-left: auto;
        margin-right: auto;
    }
    .qt-expert-modal-grid .qt-expert-modal-features {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 0;
        margin-bottom: 30px;
    }
    .qt-expert-modal-grid .qt-expert-modal-feature {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        padding: 0 10px;
        border-left: 1px solid #e6ebf3;
        font-size: 12.5px;
        font-weight: 700;
        color: #17263f;
        line-height: 1.4;
    }
    .qt-expert-modal-grid .qt-expert-modal-feature:first-child {
        border-left: 0;
    }
    .qt-expert-modal-grid .qt-expert-modal-feature-icon {
        width: 48px;
        height: 48px;
        border-radius: 50%;
        background: #edf1fb;
        color: #2952d1;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
    }
    .qt-expert-modal-grid .qt-expert-modal-feature-icon-whatsapp {
        color: #25D366;
    }
    .qt-expert-modal-grid .qt-expert-modal-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
        margin-bottom: 22px;
    }
    .qt-expert-modal-grid .qt-expert-action {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        width: 100%;
        padding: 8px 15px;
        border: 2px solid #17263f;
        border-radius: 10px;
        background: #fff;
        color: #17263f;
        font-size: 13px;
        font-weight: 800;
        letter-spacing: .02em;
        text-transform: uppercase;
        text-decoration: none;
        cursor: pointer;
        transition: transform .15s ease, box-shadow .15s ease;
    }
    .qt-expert-modal-grid .qt-expert-action:hover {
        transform: translateY(-1px);
        box-shadow: 0 10px 22px rgba(23, 38, 63, .14);
        color: #17263f;
    }
    .qt-expert-modal-grid .qt-expert-action-icon {
        font-size: 18px;
        line-height: 1;
    }
    .qt-expert-modal-grid .qt-expert-action-whatsapp {
        background: linear-gradient(135deg, #29c063, #1fa851);
        border-color: #1fa851;
        color: #fff;
        justify-content: flex-start;
        padding-left: 16px;
        text-transform: none;
    }
    .qt-expert-modal-grid .qt-expert-action-whatsapp:hover {
        color: #fff;
        filter: brightness(1.04);
    }
    .qt-expert-modal-grid .qt-expert-action-icon-circle {
        flex: 0 0 auto;
        width: 32px;
        height: 32px;
        border-radius: 50%;
        background: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .qt-expert-modal-grid .qt-expert-action-whatsapp-text {
        display: flex;
        flex-direction: column;
        line-height: 1.3;
        text-align: left;
    }
    .qt-expert-modal-grid .qt-expert-action-whatsapp-text strong {
        font-size: 13px;
        letter-spacing: .02em;
        text-transform: uppercase;
        font-weight: 700;
    }
    .qt-expert-action-whatsapp-text small {
        font-size: 12px;
        font-weight: 600;
        opacity: .92;
        text-transform: none;
    }
    .qt-expert-modal-trust-row {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        flex-wrap: wrap;
        color: #17263f;
        font-size: 13.5px;
        font-weight: 600;
    }
    .qt-expert-modal-avatars {
        display: flex;
    }
    .qt-expert-modal-avatar {
        width: 30px;
        height: 30px;
        border-radius: 50%;
        border: 2px solid #fff;
        margin-left: -8px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 12px;
        font-weight: 800;
    }
    .qt-expert-modal-avatar:first-child {
        margin-left: 0;
    }
    .qt-expert-modal-stars {
        color: #f0b429;
        letter-spacing: 2px;
        font-size: 15px;
    }
    @media (max-width: 820px) {
        .qt-expert-modal-grid {
            grid-template-columns: 1fr;
        }
        .qt-expert-modal-photo {
            border-radius: 24px 24px 0 0;
        }
        .qt-expert-modal-photo img {
            min-height: auto;
            display: none;
        }
        .qt-expert-modal-content {
            padding: 32px 24px 28px;
        }
        .qt-expert-modal-box #qt-expert-modal-title {
            font-size: 24px;
        }
        .qt-expert-modal-features {
            grid-template-columns: repeat(2, 1fr);
            row-gap: 20px;
            display: none;
        }
        .qt-expert-modal-feature:nth-child(3) {
            border-left: 0;
        }
    }
    @media (max-width: 600px) {
        .qt-expert-modal-overlay {
            padding: 12px;
        }
        .qt-expert-modal-box {
            border-radius: 16px;
        }
        .qt-expert-modal-photo {
            border-radius: 16px 16px 0 0;
        }
        .qt-expert-modal-content {
            padding: 26px 18px 22px;
        }
        .qt-expert-modal-actions {
            grid-template-columns: 1fr;
        }
        .qt-expert-action-whatsapp {
            justify-content: center;
        }
    }

    /* Contact Form 7 popup */
    .qt-cf7-modal-overlay {
        display: none;
        position: fixed;
        inset: 0;
        z-index: 99999;
        padding: 24px 16px;
        background: rgba(9, 20, 41, .55);
        overflow-y: auto;
    }
    .qt-cf7-modal-overlay.is-open {
        display: flex;
        align-items: flex-start;
        justify-content: center;
    }
    .qt-cf7-modal-box {
        position: relative;
        width: 100%;
        max-width: 1100px;
        margin: auto;
        background: #fff;
        border-radius: 28px;
        padding: 0px;
        box-shadow: 0 25px 70px rgba(9, 20, 41, .35);
        max-height: calc(100vh - 48px);
        overflow-y: auto;
        border: 8px solid #000;
    }
    .qt-cf7-modal-close {
        position: absolute;
        top: 14px;
        right: 16px;
        width: 34px;
        height: 34px;
        line-height: 1;
        border: 0;
        border-radius: 50%;
        background: #f1f4f9;
        color: #17263f;
        font-size: 22px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 1;
    }
    .qt-cf7-modal-close:hover {
        background: #e2e8f0;
    }
    .qt-cf7-modal-box #qt-cf7-modal-title {
        margin: 0 0 20px;
        font-size: 24px;
        font-weight: 800;
        color: #17263f;
    }
    .qt-cf7-modal-form .wpcf7-form input[type="text"],
    .qt-cf7-modal-form .wpcf7-form input[type="email"],
    .qt-cf7-modal-form .wpcf7-form input[type="tel"],
    .qt-cf7-modal-form .wpcf7-form input[type="url"],
    .qt-cf7-modal-form .wpcf7-form input[type="number"],
    .qt-cf7-modal-form .wpcf7-form select,
    .qt-cf7-modal-form .wpcf7-form textarea {
        width: 100%;
        padding: 12px 14px;
        border: 1px solid #d8e2ee;
        border-radius: 8px;
        font-size: 14.5px;
        color: #17263f;
    }
    .qt-cf7-modal-form .wpcf7-form label {
        display: block;
        margin-bottom: 6px;
        font-weight: 700;
        color: #17263f;
        font-size: 14px;
    }
    .qt-cf7-modal-form .wpcf7-form input[type="submit"] {
        padding: 12px 26px;
        border: 0;
        border-radius: 8px;
        background: #17263f;
        color: #fff;
        font-weight: 800;
        letter-spacing: .02em;
        text-transform: uppercase;
        cursor: pointer;
    }
    .qt-cf7-modal-form .wpcf7-form input[type="submit"]:hover {
        background: #0f1a2e;
    }
    .qt-cf7-modal-form .wpcf7-response-output {
        margin-top: 14px !important;
        border-radius: 8px !important;
    }
    @media (max-width: 600px) {
        .qt-cf7-modal-overlay {
            padding: 12px;
        }
        .qt-cf7-modal-box {
            padding: 0px;
            border-radius: 12px;
        }
    }

/* ---- Block 2 (from: Single Tour) ---- */
.qt-faq-list{display:flex;flex-direction:column;gap:12px;margin-top:10px}
.qt-faq-item{border:1px solid #e2e8f0;border-radius:12px;overflow:hidden;background:#fff}
.qt-faq-item[open]{border-color:#cbd5e1}
.qt-faq-question{display:flex;align-items:center;justify-content:space-between;gap:16px;padding:16px 18px;cursor:pointer;font-weight:700;color:#17263f;font-size:15.5px;list-style:none}
.qt-faq-question::-webkit-details-marker{display:none}
.qt-faq-question::marker{content:""}
.qt-faq-toggle{position:relative;width:22px;height:22px;border-radius:50%;border:1.5px solid #cc3366;flex-shrink:0}
.qt-faq-toggle::before,.qt-faq-toggle::after{content:"";position:absolute;top:50%;left:50%;background:#cc3366;transform:translate(-50%,-50%)}
.qt-faq-toggle::before{width:10px;height:2px}
.qt-faq-toggle::after{width:2px;height:10px;transition:transform .2s ease,opacity .2s ease}
.qt-faq-item[open] .qt-faq-toggle::after{transform:translate(-50%,-50%) rotate(90deg);opacity:0}
.qt-faq-answer{padding:0 18px 18px;color:#475569;font-size:14.5px;line-height:1.7}
.qt-faq-answer p{margin:0}

/* ---- Block 3 (from: Single Tour) ---- */
.tour-single-wrapper .qt-deal-bar .qt-deal-stat-hidden {
  display: none !important;
}
.tour-single-wrapper .trip-summary .qt-editable-trip-summary-list li {
  gap: 10px;
  overflow: visible;
}
.tour-single-wrapper .trip-summary .qt-editable-trip-summary-list li.qt-summary-short-desc {
  display: block;
  margin-top: 4px;
  padding-top: 12px;
  border-top: 1px solid #e5eaf1;
  color: #45536b;
  font-size: 14px;
  line-height: 1.55;
}
.tour-single-wrapper .trip-summary .qt-editable-trip-summary-list li.qt-summary-short-desc p {
  margin: 0 0 8px;
}
.tour-single-wrapper .trip-summary .qt-editable-trip-summary-list li.qt-summary-short-desc p:last-child {
  margin-bottom: 0;
}
.tour-single-wrapper .trip-summary .qt-editable-trip-summary-list li.qt-summary-note {
  display: block;
  padding-top: 6px;
  font-size: 12.5px;
  font-style: italic;
  color: #6b7994;
}
.tour-single-wrapper .trip-summery-wrapper.qt-summary-accordion .qt-summary-accordion-header.qt-summary-accordion-header {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 12px !important;
  padding: 14px 18px !important;
  background-color: #112f5f !important;
  background-image: none !important;
  border-radius: 14px 14px 0 0 !important;
  cursor: pointer !important;
  border: 0px !important;
}
.tour-single-wrapper .trip-summery-wrapper.qt-summary-accordion .qt-summary-accordion-header.qt-summary-accordion-header .title {
  color: #fff !important;
  opacity: 1 !important;
  font-weight: 700 !important;
  font-size: 16px !important;
}
.tour-single-wrapper .qt-summary-accordion-toggle {
  position: relative;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .18);
  flex-shrink: 0;
}
.tour-single-wrapper .qt-summary-accordion-toggle::before,
.tour-single-wrapper .qt-summary-accordion-toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: #fff;
  transform: translate(-50%, -50%);
}
.tour-single-wrapper .qt-summary-accordion-toggle::before {
  width: 11px;
  height: 2px;
}
.tour-single-wrapper .qt-summary-accordion-toggle::after {
  width: 2px;
  height: 11px;
  opacity: 0;
  transition: opacity .2s ease;
}
.tour-single-wrapper .qt-summary-accordion.is-collapsed .qt-summary-accordion-toggle::after {
  opacity: 1;
}
.tour-single-wrapper .qt-summary-accordion.is-collapsed .trip-summary {
  display: none !important;
}
.tour-single-wrapper .qt-google-reviews {
  margin: 0 0 16px;
  padding: 12px 14px;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  background: #fff;
}
.tour-single-wrapper .qt-google-reviews-label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #112f5f;
  margin-bottom: 6px;
}
.tour-single-wrapper .qt-google-reviews-stars {
  display: flex;
  align-items: center;
  gap: 2px;
}
.tour-single-wrapper .qt-star {
  position: relative;
  display: inline-block;
  width: 30px;
  height: 30px;
  flex-shrink: 0;
}
.tour-single-wrapper .qt-star-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  fill: #e2e8f0;
  display: block;
}
.tour-single-wrapper .qt-star-fill {
  position: absolute;
  inset: 0;
  width: var(--fill);
  overflow: hidden;
}
.tour-single-wrapper .qt-star-fill svg {
  width: 30px;
  height: 30px;
  fill: #f5a623;
  display: block;
}
.tour-single-wrapper .qt-google-reviews-score {
  margin-left: 8px;
  font-size: 22px;
  font-weight: 800;
  color: #17263f;
}

/* Stopover block nested inside the Trip Summary panel (the "Add to Trip"
   cart). Placed as a sibling of #qt-trip-summary-panel rather than nested
   inside it, since that panel's innerHTML is fully replaced whenever a
   pricing option is selected/removed - nesting it inside would wipe out
   any added stopovers on every price change. */
.tour-single-wrapper .qt-summary-stopover {
  margin: 4px 18px 16px;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  overflow: hidden;
}
.tour-single-wrapper .qt-summary-accordion.is-collapsed .qt-summary-stopover {
  display: none !important;
}
.tour-single-wrapper .qt-summary-stopover-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 16px;
  background-color: #112f5f;
  cursor: pointer;
}
.tour-single-wrapper .qt-summary-stopover-header .title {
  color: #fff;
  font-weight: 700;
  font-size: 14.5px;
}
.tour-single-wrapper .qt-summary-stopover-toggle {
  position: relative;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .18);
  flex-shrink: 0;
}
.tour-single-wrapper .qt-summary-stopover-toggle::before,
.tour-single-wrapper .qt-summary-stopover-toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: #fff;
  transform: translate(-50%, -50%);
}
.tour-single-wrapper .qt-summary-stopover-toggle::before {
  width: 10px;
  height: 2px;
}
.tour-single-wrapper .qt-summary-stopover-toggle::after {
  width: 2px;
  height: 10px;
  opacity: 0;
  transition: opacity .2s ease;
}
.tour-single-wrapper .qt-summary-stopover.is-collapsed .qt-summary-stopover-toggle::after {
  opacity: 1;
}
.tour-single-wrapper .qt-summary-stopover.is-collapsed .qt-summary-stopover-list {
  display: none !important;
}
.tour-single-wrapper .qt-summary-stopover-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 14px;
  background: #fff;
}
.tour-single-wrapper .qt-summary-stopover-card {
  border: 1px solid #e6ebf3;
  border-radius: 12px;
  padding: 12px 14px 14px;
  background: #fbfcfe;
}
.tour-single-wrapper .qt-summary-stopover-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}
.tour-single-wrapper .qt-summary-stopover-card-title {
  margin: 0;
  font-size: 14px;
  font-weight: 800;
  color: #112f5f;
  line-height: 1.35;
}
.tour-single-wrapper .qt-summary-stopover-card-remove {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #eef2f8;
  color: #6b7994;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  cursor: pointer;
  transition: background .15s ease, color .15s ease;
  padding: .2rem .5rem;
}
.tour-single-wrapper .qt-summary-stopover-card-remove:hover {
  background: #fde2e2;
  color: #c0392b;
}
.tour-single-wrapper .qt-summary-stopover-card-duration {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  background: #eef2f8;
  color: #112f5f;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 10px;
}
.tour-single-wrapper .qt-summary-stopover-card-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: 13.5px;
  font-weight: 700;
  color: #112f5f;
}
.tour-single-wrapper .qt-summary-stopover-card-price {
  font-size: 14.5px;
}

/* Tour Extensions: vertical deal cards shown in the sidebar */
.tour-single-wrapper .qt-tour-extensions {
  margin: 0 0 16px;
  padding: 12px 12px;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
}
.tour-single-wrapper .qt-tour-extensions-label {
  display: block;
  font-size: 18px;
  font-weight: 700;
  font-family: 'Poppins';
  color: #112f5f;
  margin-bottom: 10px;
}
.tour-single-wrapper .qt-tour-extensions-list {
  display: grid;
  gap: 16px;
}
.tour-single-wrapper .qt-ext-card {
    display: block;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-decoration: none;
    box-shadow: 0 6px 18px rgba(17, 47, 95, .06);
    transition: transform .18s ease, box-shadow .18s ease;
    min-height: 400px;
}
.tour-single-wrapper .qt-ext-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(17, 47, 95, .12);
}
.tour-single-wrapper .qt-ext-card-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #eef2f8;
}
.tour-single-wrapper .qt-ext-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.tour-single-wrapper .qt-ext-card-body {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    color: #fff;
}
.tour-single-wrapper .qt-ext-card-title {
  margin: 0 0 12px;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .01em;
  color: #fff;
  line-height: 1.35;
}
.tour-single-wrapper .qt-ext-card-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.tour-single-wrapper .qt-ext-card-location {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  font-weight: 600;
  color: #fff;
}
.tour-single-wrapper .qt-ext-card-location i {
  color: #fff;
  font-size: 13px;
}
.tour-single-wrapper .qt-ext-card-price {
  font-size: 18px;
  font-weight: 800;
  color: #d92b2b;
  white-space: nowrap;
}
.tour-single-wrapper .qt-ext-card-divider {
  margin: 12px 0 10px;
  height: 1px;
  background: #e9edf4;
}
.tour-single-wrapper .qt-ext-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.tour-single-wrapper .qt-ext-card-footer-solo {
  justify-content: flex-end;
}
.tour-single-wrapper .qt-ext-card-duration {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
}
.tour-single-wrapper .qt-ext-card-view {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  font-weight: 800;
  color: #fff;
  white-space: nowrap;
}
.tour-single-wrapper .qt-ext-card-view i {
  font-size: 12px;
  transition: transform .18s ease;
}
.tour-single-wrapper .qt-ext-card:hover .qt-ext-card-view i {
  transform: translateX(3px);
}
.tour-single-wrapper button.qt-ext-add-btn {
  background: transparent;
  padding: 4px 10px;
  cursor: pointer;
  font-family: inherit;
  border: 1px solid #fff;
  border-color: #fff !important;
  border-radius: 18px;
}
.tour-single-wrapper button.qt-ext-add-btn.is-added {
  color: #8fe3ab;
  cursor: default;
}

.tour-single-wrapper .trip-summary .qt-summary-select,
.tour-single-wrapper .trip-summary select.qt-summary-select {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  position: absolute !important;
  width: 0 !important;
  height: 0 !important;
  pointer-events: none !important;
}
.tour-single-wrapper .trip-summary .qt-summary-dropdown {
  position: relative;
  display: inline-flex;
  justify-content: flex-end;
  min-width: 150px;
  max-width: 100%;
  z-index: 5;
}
.tour-single-wrapper .trip-summary .qt-summary-dropdown.is-open {
  z-index: 50;
}
.tour-single-wrapper .trip-summary .qt-summary-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 7px;
  width: 100%;
  min-height: 30px;
  padding: 4px 0 4px 10px;
  border: 0;
  background: transparent;
  color: #001f4f;
  font-weight: 600;
  font-size: inherit;
  line-height: 1.2;
  text-align: right;
  cursor: pointer;
  font-family: inherit;
}
.tour-single-wrapper .trip-summary .qt-summary-dropdown-toggle:focus,
.tour-single-wrapper .trip-summary .qt-summary-dropdown-toggle:focus {
    outline: none !important;
    border-color: transparent !important;
    box-shadow: none !important;
}
.tour-single-wrapper .trip-summary .qt-summary-dropdown-toggle svg {
  width: 12px;
  height: 12px;
  flex: 0 0 auto;
  transition: transform .18s ease;
}
.tour-single-wrapper .trip-summary .qt-summary-dropdown.is-open .qt-summary-dropdown-toggle svg {
  transform: rotate(180deg);
}
.tour-single-wrapper .trip-summary .qt-summary-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 220px;
  width: max-content;
  max-width: min(280px, 82vw);
  max-height: 245px;
  overflow-y: auto;
  padding: 8px;
  border: 1px solid #d8e6f8;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(0,31,79,.16);
  display: none;
}
.tour-single-wrapper .trip-summary .qt-summary-dropdown.is-open .qt-summary-dropdown-menu {
  display: block;
}
.tour-single-wrapper .trip-summary .qt-summary-dropdown-menu::-webkit-scrollbar {
  width: 7px;
}
.tour-single-wrapper .trip-summary .qt-summary-dropdown-menu::-webkit-scrollbar-track {
  background: #f2f6fb;
  border-radius: 20px;
}
.tour-single-wrapper .trip-summary .qt-summary-dropdown-menu::-webkit-scrollbar-thumb {
  background: #8aa0bd;
  border-radius: 20px;
}
.tour-single-wrapper .trip-summary .qt-summary-dropdown-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  padding: 10px 12px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: #001f4f;
  font: inherit;
  font-weight: 700;
  line-height: 1.2;
  text-align: right;
  cursor: pointer;
  white-space: nowrap;
}
.tour-single-wrapper .trip-summary .qt-summary-dropdown-option:hover,
.tour-single-wrapper .trip-summary .qt-summary-dropdown-option.is-selected {
  background: #eef6ff;
  color: #9b0013;
}
.tour-single-wrapper .trip-summary .qt-summary-dropdown-check {
  opacity: 0;
  color: #0f9c9c;
  font-weight: 900;
}
.tour-single-wrapper .trip-summary .qt-summary-dropdown-option.is-selected .qt-summary-dropdown-check {
  opacity: 1;
}
.tour-single-wrapper .trip-summary .qt-summary-date-dropdown {
    min-width: 190px;
    min-height: auto !important;
    height: 20px;
    border: none !important;
    padding: 0px !important;
    margin-top: -10px !important;
}
.tour-single-wrapper .trip-summary .qt-summary-category-dropdown {
    min-width: 120px;
    min-height: auto !important;
    height: 20px;
    border: none !important;
    padding: 0px !important;
    margin-top: -10px !important;
}

/* ---- Block 4 (from: Single Tour) ---- */
.activity-more p {
    padding: 0px;
    margin: 0px;
}


@media (max-width: 767px) {
body .tour-single-wrapper .qt-breadcrumbs li:not(:last-child)::after, .tour-single-wrapper .tour-breadcrumb li:not(:last-child)::after {
    content: "››" !important;
    margin-left: 5px !important;
    margin-right: 5px;
}
 .tour-single-wrapper .qt-deal-banner .qt-deal-content .qt-deal-stat {
    display: grid !important;
    grid-template-columns: 12% 88%;
 }
.tour-single-wrapper .qt-deal-banner .qt-deal-content .qt-deal-stat-text {
    flex-direction: row !important;
    gap: 10px;
    justify-content: space-between;
    align-items: center;
}
.tour-single-wrapper .qt-deal-banner .qt-deal-content .qt-deal-stat-label {
    font-weight: 600 !important;
    margin-bottom: 0px !important;
}    
.tour-single-wrapper .qt-deal-banner .qt-deal-content .qt-deal-stat-value {
    font-size: 14px !important;
}
.tour-single-wrapper .qt-deal-banner .qt-deal-content .qt-deal-stat-price .qt-deal-stat-value,
.tour-single-wrapper .qt-deal-banner .qt-deal-content .qt-deal-stat-save .qt-deal-stat-value {
    font-size: 16px !important;
}
body .tour-single-wrapper .qt-hero-trust-row {
    row-gap: 0px !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    width: 100% !important;
    min-width: 0 !important;
    max-width: 94% !important;
    padding: 18px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    box-sizing: border-box !important;
}
i.fa.fa-tag.qt-deal-price-icon.qt-deal-stat-hidden::before {
    content: "";
}
.tour-single-wrapper .qt-deal-bar .qt-deal-stat-hidden {
    display: block !important;
}
.qt-deal-stat.qt-deal-stat-original.qt-deal-stat-hidden,
.qt-deal-stat.qt-deal-stat-save.qt-deal-stat-hidden {
    display: none !important;
}
.tour-single-wrapper .trip-summery-wrapper.qt-summary-accordion .qt-summary-accordion-header.qt-summary-accordion-header .title {
    color: #000 !important;
}
.tour-single-wrapper .qt-summary-accordion-toggle {
    background: #172b50;
    right: 50px;
}
.tour-single-wrapper .day-title strong {
    font-weight: 700;
}

    
}


@media (min-width: 768px) and (max-width: 1450px) {

.tour-single-wrapper .qt-deal-banner .qt-deal-content .qt-deal-bar {
    padding: 16px 8px !important;
    gap: 8px !important;
}
.tour-single-wrapper .qt-deal-banner .qt-deal-content .qt-deal-stats {
    gap: 5px !important;
}
.tour-single-wrapper .qt-deal-banner .qt-deal-content .qt-deal-stat {
    gap: 5px !important;
    padding: 10px 5px !important;
}
.tour-single-wrapper .qt-deal-banner .qt-deal-content .qt-deal-stat > i {
    font-size: 15px !important;
}
.tour-single-wrapper .qt-deal-banner .qt-deal-content .qt-deal-stat-label {
    font-size: 9px !important;
}
.tour-single-wrapper .qt-deal-banner .qt-deal-content .qt-deal-stat-value {
    font-size: 12px !important;
}
.tour-single-wrapper .qt-deal-banner .qt-deal-content .qt-deal-actions {
    margin-left: 10px !important;
    gap: 8px !important;
}
.tour-single-wrapper .qt-deal-banner .qt-deal-content .qt-deal-btn {
    padding: 9px 14px !important;
    font-size: 11px !important;
}
.qt-deal-content .qt-deal-bar .qt-deal-content .qt-deal-actions button.qt-deal-btn.qt-deal-btn-secondary.qt-customize-trip-btn{
    height: 40px !important;
    min-height: 40px !important;
}
.qt-deal-btn {
    max-width: 250px;
}

}

/* ---- Block 5 (from: Single Tour) ---- */
.tour-single-wrapper .qt-deal-bar .qt-deal-stat-price-combined {
    position: relative;
}
.tour-single-wrapper .qt-deal-bar .qt-deal-price-combined-rows {
    display: flex;
    align-items: center;
    gap: 18px;
}
.tour-single-wrapper .qt-deal-bar .qt-deal-price-row {
    display: flex;
    align-items: center;
    gap: 8px;
}
.tour-single-wrapper .qt-deal-bar .qt-deal-original-row .qt-deal-strike {
    text-decoration: line-through;
}
.tour-single-wrapper .qt-deal-bar .qt-deal-row-icon {
    display: none;
}
.tour-single-wrapper .qt-deal-bar .qt-deal-save-badge {
    position: absolute;
    top: -35px;
    right: 12px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    border-radius: 999px;
    background: linear-gradient(180deg, #e3273a, #9b0013);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .02em;
    text-transform: uppercase;
    box-shadow: 0 8px 18px rgba(0, 0, 0, .35);
    white-space: nowrap;
    z-index: 3;
}
.tour-single-wrapper .qt-deal-bar .qt-deal-save-badge i {
    font-size: 12px;
}
.tour-single-wrapper .qt-deal-bar .qt-deal-stat-price-combined .qt-deal-save-badge.qt-deal-stat-hidden,
.tour-single-wrapper .qt-deal-bar .qt-deal-original-row.qt-deal-stat-hidden {
    display: none !important;
}

@media (max-width: 767px) {
    .qt-deal-save-badge.qt-deal-stat-save { top: 55px !important; left: 30px; right: auto !important; }
    .tour-single-wrapper .travdek-trip-summary.qt-deal-content .qt-deal-bar .qt-deal-stat.qt-deal-stat-price-combined {
        display: block !important;
    }
    .tour-single-wrapper .qt-deal-bar .qt-deal-stat-price-combined > .qt-deal-price-icon {
        display: none !important;
    }
    .tour-single-wrapper .qt-deal-content .qt-deal-bar .qt-deal-price-combined-rows {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }
    .tour-single-wrapper .qt-deal-content .qt-deal-bar .qt-deal-price-row {
        display: grid;
        grid-template-columns: 12% 88%;
        align-items: center;
        gap: 10px;
        padding: 8px 0;
    }
    .tour-single-wrapper .qt-deal-content .qt-deal-bar .qt-deal-price-row .qt-deal-price-row-text {
        display: flex !important;
        flex-direction: row !important;
        justify-content: end;
        align-items: center;
        gap: 10px;
    }
    .travdek-trip-summary.qt-deal-content .qt-deal-stat-original.qt-deal-original-row .qt-deal-stat-text.qt-deal-price-row-text {
        justify-content: space-between;
    }
    i.fa.fa-tag.qt-deal-row-icon.qt-deal-row-icon-sale.qt-deal-stat-hidden {
        visibility: hidden;
    }
    .tour-single-wrapper .qt-deal-bar .qt-deal-row-icon {
        display: inline-flex !important;
        font-size: 15px;
    }
    .tour-single-wrapper .qt-deal-bar .qt-deal-sale-row {
        grid-template-columns: auto 1fr;
    }
    .tour-single-wrapper .qt-deal-bar .qt-deal-sale-row .qt-deal-save-badge {
        position: static;
        grid-column: 1 / 2;
        margin: 0;
        padding: 5px 12px;
        font-size: 11px;
        box-shadow: none;
    }
    .tour-single-wrapper .qt-deal-bar .qt-deal-label-hide-mobile {
        display: none !important;
    }
}

/* ---- Block 6 (from: Single Tour) ---- */
.qt-inquiry-success{
    margin:0 0 18px;
    padding:14px 16px;
    border-radius:12px;
    background:#ecfdf3;
    border:1px solid #b7efc5;
    color:#125c2f;
    font-weight:700;
}


/* Stopover cards inside the Extensions tab: premium wide card layout matching the tour listing reference. */
.tour-single-wrapper .td-extension-tab .qt-stopover-list {
    width: 100%;
    margin: 22px 0 34px;
}

.tour-single-wrapper .td-extension-tab .qt-stopover-card {
    position: relative;
    display: grid;
    grid-template-columns: minmax(340px, 40%) minmax(0, 1fr);
    min-height: 270px;
    border-radius: 14px;
    box-shadow: none;
    border: 1px solid #d8e2ee;
    background: #fff;
    overflow: hidden;
}

.tour-single-wrapper .td-extension-tab .qt-stopover-card:hover {
    transform: none;
    box-shadow: 0 12px 30px rgba(0, 43, 92, 0.08);
}

.tour-single-wrapper .td-extension-tab .qt-stopover-card .tour-image {
    width: 100%;
    min-height: 270px;
    background: #dfe6ef;
}

.tour-single-wrapper .td-extension-tab .qt-stopover-card .tour-image img {
    width: 100%;
    height: 100%;
    min-height: 270px;
    object-fit: cover;
    display: block;
}

.tour-single-wrapper .td-extension-tab .qt-stopover-card .offer-badge {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 5;
}

.tour-single-wrapper .td-extension-tab .qt-stopover-card .tour-content {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 210px;
    min-width: 0;
    background: #fff;
}

.tour-single-wrapper .td-extension-tab .qt-stopover-card .clstripscontents {
    position: relative;
    padding: 20px;
    border-right: 1px solid #d8e2ee;
    min-width: 0;
}

.tour-single-wrapper .td-extension-tab .qt-stopover-card .tour-type {
    display: inline-flex;
    width: fit-content;
    min-width: 190px;
    justify-content: center;
    padding: 8px 22px;
    margin-bottom: 16px;
    border-radius: 999px;
    background: #e7edf5;
    color: #002b5c;
    font-size: 14px;
    line-height: 1.2;
    font-weight: 800;
}

.tour-single-wrapper .td-extension-tab .qt-stopover-card .tour-content .tour-title {
    color: #002b5c !important;
    font-size: 22px !important;
    text-shadow: none !important;
    padding-left: 0px;
    margin-left: 0px !important;
}

.tour-single-wrapper .td-extension-tab .qt-stopover-card .tour-title a {
    color: #002b5c !important;
    text-decoration: none;
}

.tour-single-wrapper .td-extension-tab .qt-stopover-card .tour-meta,
.tour-single-wrapper .td-extension-tab .qt-stopover-card .tour-cities {
    color: #001f49;
    font-size: 16px;
    font-weight: 800;
    line-height: 1.55;
    margin-top: 8px;
}

.tour-single-wrapper .td-extension-tab .qt-stopover-card .tour-meta:before {
    content: "\f017";
    font-family: FontAwesome;
    margin-right: 10px;
    font-weight: normal;
}

.tour-single-wrapper .td-extension-tab .qt-stopover-card .tour-cities:before {
    content: "\f124";
    font-family: FontAwesome;
    margin-right: 10px;
    font-weight: normal;
}

.tour-single-wrapper .td-extension-tab .qt-stopover-card .more-content {
    display: none;
}

.tour-single-wrapper .td-extension-tab .qt-stopover-card .tourpluse {
    display: none;
    align-items: center;
    gap: 6px;
    margin-top: 10px;
    color: #002b5c;
    font-size: 14px;
    font-weight: 800;
}

.tour-single-wrapper .td-extension-tab .qt-stopover-card .wishlist-icon {
    position: absolute !important;
    top: 15px;
    right: 24px;
}

.tour-single-wrapper .td-extension-tab .qt-stopover-card .clstripsbtn {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    padding: 28px 24px;
    background: #fff;
    text-align: center;
}

.tour-single-wrapper .td-extension-tab .qt-stopover-card .airtrip {
    order: 2;
    color: #001f49;
    font-size: 15px;
    line-height: 1.4;
}

.tour-single-wrapper .td-extension-tab .qt-stopover-card .price {
    display: block;
    order: 1;
    margin: 0;
    color: #001f49;
    font-size: 16px;
    line-height: 1.25;
}

.tour-single-wrapper .td-extension-tab .qt-stopover-card .price strong {
    display: inline-block;
    margin-top: 5px;
    color: #002b5c;
    font-size: 24px;
    line-height: 1;
    font-weight: 900;
}

.tour-single-wrapper .td-extension-tab .qt-stopover-card .add-to-cart-btn {
    order: 3;
    width: 100%;
    max-width: 170px;
    min-height: 48px;
    border-radius: 8px;
    background: #123b73;
    color: #fff;
    font-size: 15px;
    font-weight: 800;
}

@media (max-width: 1100px) {
    .tour-single-wrapper .td-extension-tab .qt-stopover-card {
        grid-template-columns: 1fr;
    }

    .tour-single-wrapper .td-extension-tab .qt-stopover-card .tour-content {
        grid-template-columns: 1fr;
    }

    .tour-single-wrapper .td-extension-tab .qt-stopover-card .clstripscontents {
        border-right: 0;
        padding-right: 78px;
    }

    .tour-single-wrapper .td-extension-tab .qt-stopover-card .clstripsbtn {
        border-top: 1px solid #d8e2ee;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        text-align: left;
    }
}

@media (max-width: 640px) {
    .tour-single-wrapper .td-extension-tab .qt-stopover-card .tour-image,
    .tour-single-wrapper .td-extension-tab .qt-stopover-card .tour-image img {
        min-height: 220px;
    }

    .tour-single-wrapper .td-extension-tab .qt-stopover-card .clstripscontents {
        padding: 22px 24px;
    }

    .tour-single-wrapper .td-extension-tab .qt-stopover-card .wishlist-icon {
        position: static;
        margin: 8px 0;
    }

    .tour-single-wrapper .td-extension-tab .qt-stopover-card .clstripsbtn {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }

    .tour-single-wrapper .td-extension-tab .qt-stopover-card .add-to-cart-btn {
        max-width: 100%;
    }
}

/* ---- Block 7 (from: Single Tour) ---- */
.tour-single-wrapper:not(.tailor-made-wrapper) .qt-desktop-tabs-sticky-spacer {
    height: 0;
}
.trip-tabs .tabs .tab .qt-tab-icon {
    margin-right: 8px;
    font-size: .95em;
    vertical-align: -1px;
}
.tour-single-wrapper:not(.tailor-made-wrapper) .trip-tabs-outer > .tabs.qt-desktop-tabs-fixed {
    position: fixed !important;
    z-index: 999;
    background: #fff;
    box-shadow: 0 10px 24px rgba(15, 23, 42, .12);
    border-radius: 0 0 12px 12px;
    padding: 15px 0px 0px 0px;
}

@media (max-width: 767px) {
    .tour-single-wrapper .trip-tabs-outer > .tabs.qt-desktop-tabs-fixed {
        padding: 10px 10px 10px 10px !important;
        width: 100% !important;
        margin-left: -15px !important;
    }
    .tour-single-wrapper:not(.tailor-made-wrapper) .trip-tabs-outer > .tabs {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        gap: 8px;
    }
    .tour-single-wrapper:not(.tailor-made-wrapper) .trip-tabs-outer > .tabs::-webkit-scrollbar {
        display: none;
    }
    .tour-single-wrapper:not(.tailor-made-wrapper) .trip-tabs-outer > .tabs .tab {
        flex: 0 0 auto;
        white-space: nowrap;
    }
}

/* ---- Block 8 (from: Tailor Made) ---- */
.qt-inquire-modal-overlay {
            display: none;
            position: fixed;
            inset: 0;
            z-index: 99999;
            padding: 24px 16px;
            background: rgba(9, 20, 41, .55);
            overflow-y: auto;
        }
        .qt-inquire-modal-overlay.is-open {
            display: flex;
            align-items: flex-start;
            justify-content: center;
        }
        body.qt-modal-open {
            overflow: hidden;
        }
        .qt-inquire-modal-box {
            position: relative;
            width: 100%;
            max-width: 720px;
            margin: auto;
            background: #fff;
            border-radius: 16px;
            padding: 28px 24px 24px;
            box-shadow: 0 25px 70px rgba(9, 20, 41, .35);
            max-height: calc(100vh - 48px);
            overflow-y: auto;
            border: 8px solid #000;
        }
        .qt-inquire-modal-close {
            position: absolute;
            top: 14px;
            right: 16px;
            width: 34px !important;
            height: 34px;
            line-height: 1;
            border: 0;
            border-radius: 50%  !important;
            background: #f1f4f9;
            color: #17263f;
            font-size: 22px;
            cursor: pointer;
            display: flex  !important;
            align-items: center;
            justify-content: center;
            z-index: 1;
        }
        .qt-inquire-modal-close:hover {
            background: #000;
        }
        @media (max-width: 600px) {
            .qt-inquire-modal-overlay {
                padding: 12px;
            }
            .qt-inquire-modal-box {
                padding: 24px 16px 18px;
                border-radius: 12px;
            }
        }

        /* Ask an Expert popup */
        .qt-expert-modal-overlay {
            display: none;
            position: fixed;
            inset: 0;
            z-index: 99999;
            padding: 24px 16px;
            background: rgba(9, 20, 41, .55);
            overflow-y: auto;
        }
        .qt-expert-modal-overlay.is-open {
            display: flex;
            align-items: flex-start;
            justify-content: center;
        }
        .qt-expert-modal-box {
            position: relative;
            width: 100%;
            max-width: 960px;
            margin: auto;
            background: #fff;
            border-radius: 24px;
            box-shadow: 0 25px 70px rgba(9, 20, 41, .35);
            max-height: calc(100vh - 48px);
            overflow-y: auto;
            border: 8px solid #000;
        }
        .qt-expert-modal-box .qt-expert-modal-close {
            position: absolute;
            top: 18px;
            right: 20px;
            width: 40px;
            height: 40px;
            line-height: 1;
            border: 0;
            border-radius: 50%;
            background: #fff;
            color: #17263f;
            font-size: 20px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 14px rgba(9, 20, 41, .18);
            z-index: 2;
        }
        .qt-expert-modal-box .qt-expert-modal-close:hover {
            background: #000;
        }

        .qt-expert-modal-grid {
            display: grid;
            grid-template-columns: 38% 62%;
            align-items: stretch;
        }
        .qt-expert-modal-photo {
            position: relative;
            min-height: 100%;
            border-radius: 14px 0 0 14px;
            overflow: hidden;
            background: #17263f;
        }
        .qt-expert-modal-photo img {
            width: 100%;
            height: 100%;
            min-height: 20px;
            object-fit: cover;
            display: block;
        }
        .qt-expert-modal-badge {
            position: absolute;
            left: 0;
            bottom: 0;
            display: flex;
            align-items: center;
            gap: 10px;
            max-width: 88%;
            padding: 18px 22px 20px 24px;
            background: linear-gradient(135deg, rgba(15, 26, 46, .92), rgba(15, 26, 46, .78));
            border-radius: 0 24px 0 0;
            width: 70%;
        }
        .qt-expert-modal-badge-icon {
            font-size: 26px;
            line-height: 1;
            color: #f0b429;
        }
        .qt-expert-modal-badge-icon img.emoji {
            width: 45px !important;
            height: 45px !important;
        }
        .qt-expert-modal-badge-text {
            display: flex;
            flex-direction: column;
            color: #fff;
            line-height: 1.35;
        }
        .qt-expert-modal-badge-text strong {
            font-size: 19px;
            color: #f0b429;
        }
        .qt-expert-modal-badge-text span {
            font-size: 14px;
            color: #e6ebf3;
        }
        .qt-expert-modal-content {
            padding: 44px 44px 36px;
            text-align: center;
        }
        .qt-expert-modal-box #qt-expert-modal-title {
            margin: 0 0 16px;
            font-family: Georgia, 'Times New Roman', serif;
            font-size: 30px;
            line-height: 1.28;
            font-weight: 700;
            color: #17263f;
        }
        .qt-expert-modal-highlight {
            color: #2952d1;
        }
        .qt-expert-modal-rule {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            margin: 0 0 20px;
            color: #d9a441;
        }
        .qt-expert-modal-rule span {
            display: block;
            width: 56px;
            height: 1px;
            background: #d8dee8;
        }
        .qt-expert-modal-subtitle {
            margin: 0 0 28px;
            color: #6b7994;
            font-size: 15.5px;
            line-height: 1.6;
            max-width: 460px;
            margin-left: auto;
            margin-right: auto;
        }
        .qt-expert-modal-features {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 0;
            margin-bottom: 30px;
        }
        .qt-expert-modal-feature {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
            padding: 0 10px;
            border-left: 1px solid #e6ebf3;
            font-size: 12.5px;
            font-weight: 700;
            color: #17263f;
            line-height: 1.4;
        }
        .qt-expert-modal-feature:first-child {
            border-left: 0;
        }
        .qt-expert-modal-feature-icon {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: #edf1fb;
            color: #2952d1;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
        }
        .qt-expert-modal-feature-icon-whatsapp {
            color: #25D366;
        }
        .qt-expert-modal-actions {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
            margin-bottom: 22px;
        }
        .qt-expert-action {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            width: 100%;
            padding: 8px 15px;
            border: 2px solid #17263f;
            border-radius: 10px;
            background: #fff;
            color: #17263f;
            font-size: 13px;
            font-weight: 800;
            letter-spacing: .02em;
            text-transform: uppercase;
            text-decoration: none;
            cursor: pointer;
            transition: transform .15s ease, box-shadow .15s ease;
        }
        .qt-expert-action:hover {
            transform: translateY(-1px);
            box-shadow: 0 10px 22px rgba(23, 38, 63, .14);
            color: #17263f;
        }
        .qt-expert-action-icon {
            font-size: 18px;
            line-height: 1;
        }
        .qt-expert-action-whatsapp {
            background: linear-gradient(135deg, #29c063, #1fa851);
            border-color: #1fa851;
            color: #fff;
            justify-content: flex-start;
            padding-left: 16px;
            text-transform: none;
        }
        .qt-expert-action-whatsapp:hover {
            color: #fff;
            filter: brightness(1.04);
        }
        .qt-expert-action-icon-circle {
            flex: 0 0 auto;
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .qt-expert-action-whatsapp-text {
            display: flex;
            flex-direction: column;
            line-height: 1.3;
            text-align: left;
        }
        .qt-expert-action-whatsapp-text strong {
            font-size: 13px;
            letter-spacing: .02em;
            text-transform: uppercase;
            font-weight: 700;
        }
        .qt-expert-action-whatsapp-text small {
            font-size: 12px;
            font-weight: 600;
            opacity: .92;
            text-transform: none;
        }
        .qt-expert-modal-trust-row {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            flex-wrap: wrap;
            color: #17263f;
            font-size: 13.5px;
            font-weight: 600;
        }
        .qt-expert-modal-avatars {
            display: flex;
        }
        .qt-expert-modal-avatar {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            border: 2px solid #fff;
            margin-left: -8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            font-weight: 800;
        }
        .qt-expert-modal-avatar:first-child {
            margin-left: 0;
        }
        .qt-expert-modal-stars {
            color: #f0b429;
            letter-spacing: 2px;
            font-size: 15px;
        }
        @media (max-width: 820px) {
            .qt-expert-modal-grid {
                grid-template-columns: 1fr;
            }
            .qt-expert-modal-photo {
                border-radius: 24px 24px 0 0;
            }
            .qt-expert-modal-photo img {
                min-height: auto;
                display: none;
            }
            .qt-expert-modal-content {
                padding: 32px 24px 28px;
            }
            .qt-expert-modal-box #qt-expert-modal-title {
                font-size: 24px;
            }
            .qt-expert-modal-features {
                grid-template-columns: repeat(2, 1fr);
                row-gap: 20px;
                display: none;
            }
            .qt-expert-modal-feature:nth-child(3) {
                border-left: 0;
            }
        }
        @media (max-width: 600px) {
            .qt-expert-modal-overlay {
                padding: 12px;
            }
            .qt-expert-modal-box {
                border-radius: 16px;
            }
            .qt-expert-modal-photo {
                border-radius: 16px 16px 0 0;
            }
            .qt-expert-modal-content {
                padding: 26px 18px 22px;
            }
            .qt-expert-modal-actions {
                grid-template-columns: 1fr;
            }
            .qt-expert-action-whatsapp {
                justify-content: center;
            }
        }

        /* Contact Form 7 popup */
        .qt-cf7-modal-overlay {
            display: none;
            position: fixed;
            inset: 0;
            z-index: 99999;
            padding: 24px 16px;
            background: rgba(9, 20, 41, .55);
            overflow-y: auto;
        }
        .qt-cf7-modal-overlay.is-open {
            display: flex;
            align-items: flex-start;
            justify-content: center;
        }
        .qt-cf7-modal-box {
            position: relative;
            width: 100%;
            max-width: 1100px;
            margin: auto;
            background: #fff;
            border-radius: 28px;
            padding: 0px;
            box-shadow: 0 25px 70px rgba(9, 20, 41, .35);
            max-height: calc(100vh - 48px);
            overflow-y: auto;
            border: 8px solid #000;
        }
        #qt-cf7-modal-overlay .qt-cf7-modal-close {
            position: absolute;
            top: 14px;
            right: 16px;
            width: 34px;
            height: 34px;
            line-height: 1;
            border: 0;
            border-radius: 50%;
            background: #f1f4f9;
            color: #17263f;
            font-size: 22px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 1;
        }
        #qt-cf7-modal-overlay  .qt-cf7-modal-close:hover {
            background: #e2e8f0;
        }
        .qt-cf7-modal-box #qt-cf7-modal-title {
            margin: 0 0 20px;
            font-size: 24px;
            font-weight: 800;
            color: #17263f;
        }
        .qt-cf7-modal-form .wpcf7-form input[type="text"],
        .qt-cf7-modal-form .wpcf7-form input[type="email"],
        .qt-cf7-modal-form .wpcf7-form input[type="tel"],
        .qt-cf7-modal-form .wpcf7-form input[type="url"],
        .qt-cf7-modal-form .wpcf7-form input[type="number"],
        .qt-cf7-modal-form .wpcf7-form select,
        .qt-cf7-modal-form .wpcf7-form textarea {
            width: 100%;
            padding: 12px 14px;
            border: 1px solid #d8e2ee;
            border-radius: 8px;
            font-size: 14.5px;
            color: #17263f;
        }
        .qt-cf7-modal-form .wpcf7-form label {
            display: block;
            margin-bottom: 6px;
            font-weight: 700;
            color: #17263f;
            font-size: 14px;
        }
        .qt-cf7-modal-form .wpcf7-form input[type="submit"] {
            padding: 12px 26px;
            border: 0;
            border-radius: 8px;
            background: #17263f;
            color: #fff;
            font-weight: 800;
            letter-spacing: .02em;
            text-transform: uppercase;
            cursor: pointer;
        }
        .qt-cf7-modal-form .wpcf7-form input[type="submit"]:hover {
            background: #0f1a2e;
        }
        .qt-cf7-modal-form .wpcf7-response-output {
            margin-top: 14px !important;
            border-radius: 8px !important;
        }
        @media (max-width: 600px) {
            .qt-cf7-modal-overlay {
                padding: 12px;
            }
            .qt-cf7-modal-box {
                padding: 0px;
                border-radius: 12px;
            }
        }

/* ---- Block 9 (from: Tailor Made) ---- */
/* Same mobile layout Single Tour uses for its qt-deal-banner stats. */
        @media (max-width: 767px) {
         .tour-single-wrapper .qt-deal-banner .qt-deal-content .qt-deal-stat {
            display: grid !important;
            grid-template-columns: 12% 88%;
         }
        .tour-single-wrapper .qt-deal-banner .qt-deal-content .qt-deal-stat-text {
            flex-direction: row !important;
            gap: 10px;
            justify-content: space-between;
            align-items: center;
        }
        .tour-single-wrapper .qt-deal-banner .qt-deal-content .qt-deal-stat-label {
            font-weight: 600 !important;
            margin-bottom: 0px !important;
        }
        .tour-single-wrapper .qt-deal-banner .qt-deal-content .qt-deal-stat-value {
            font-size: 14px !important;
        }
        .tour-single-wrapper .qt-deal-banner .qt-deal-content .qt-deal-stat-price .qt-deal-stat-value {
            font-size: 16px !important;
        }
        .tour-single-wrapper .qt-hero-trust-row {
            row-gap: 0px !important;
        }
        }

/* ---- Block 10 (from: Tailor Made) ---- */
/* Anchor the banner's title/cities/stats content to the BOTTOM of the
   hero photo instead of the top. The site's stylesheet forces this
   section to min-height:680px !important with display:block, which is
   what leaves empty photo space below the content - so we override
   with a higher-specificity #tdtour-page selector rather than editing
   that external stylesheet directly. */
    #tdtour-page.tailor-made-wrapper .section-top-contents.qt-reference-hero-top.qt-deal-banner {
        display: flex !important;
        flex-direction: column !important;
        position: relative !important;
    }

    #tdtour-page.tailor-made-wrapper .section-top-contents.qt-reference-hero-top.qt-deal-banner > .tour-breadcrumb {
        position: absolute !important;
        top: 24px !important;
        left: 24px !important;
        right: 24px !important;
        z-index: 2 !important;
        margin-top: 90px !important;
        max-width: 85% !important;
    }

    #tdtour-page.tailor-made-wrapper .section-top-contents.qt-reference-hero-top.qt-deal-banner > .travdek-trip-summary.qt-deal-content {
        margin-top: auto !important;
        margin-bottom: 0 !important;
    }

/* ---- Block 11 (from: Single Deals Trip, Tailor Made) ---- */
.qt-faq-list{display:flex;flex-direction:column;gap:12px;margin-top:10px}
.qt-faq-item{border:1px solid #e2e8f0;border-radius:12px;overflow:hidden;background:#fff}
.qt-faq-item[open]{border-color:#cbd5e1}
.qt-faq-question{display:flex;align-items:center;justify-content:space-between;gap:16px;padding:16px 18px;cursor:pointer;font-weight:700;color:#17263f;font-size:15.5px;list-style:none}
.qt-faq-question::-webkit-details-marker{display:none}
.qt-faq-question::marker{content:""}
.qt-faq-toggle{position:relative;width:22px;height:22px;border-radius:50%;border:1.5px solid #cc3366;flex-shrink:0}
.qt-faq-toggle::before,.qt-faq-toggle::after{content:"";position:absolute;top:50%;left:50%;background:#cc3366;transform:translate(-50%,-50%)}
.qt-faq-toggle::before{width:10px;height:2px}
.qt-faq-toggle::after{width:2px;height:10px;transition:transform .2s ease,opacity .2s ease}
.qt-faq-item[open] .qt-faq-toggle::after{transform:translate(-50%,-50%) rotate(90deg);opacity:0}
.qt-faq-answer{padding:0 18px 18px;color:#475569;font-size:14.5px;line-height:1.7}
.qt-faq-answer p{margin:0 0 10px}
.qt-faq-answer p:last-child{margin-bottom:0}
.qt-faq-answer ul{margin:0 0 10px;padding-left:20px}
.qt-faq-answer ul li{margin-bottom:6px}


/* ---- Block 12 (from: Tailor Made) ---- */
/* Tailor Made extension tab layout aligned with Single Tour template */
.tour-single-wrapper .td-extension-tab .qt-stopover-list {
    width: 100%;
    margin: 22px 0 34px;
}

.tour-single-wrapper .td-extension-tab .qt-stopover-card {
    position: relative;
    display: grid;
    grid-template-columns: minmax(340px, 40%) minmax(0, 1fr);
    min-height: 270px;
    border-radius: 18px;
    box-shadow: none;
    border: 1px solid #d8e2ee;
    background: #fff;
    overflow: hidden;
}

.tour-single-wrapper .td-extension-tab .qt-stopover-card:hover {
    transform: none;
    box-shadow: 0 12px 30px rgba(0, 43, 92, 0.08);
}

.tour-single-wrapper .td-extension-tab .qt-stopover-card .tour-image {
    width: 100%;
    min-height: 270px;
    background: #dfe6ef;
}

.tour-single-wrapper .td-extension-tab .qt-stopover-card .tour-image img {
    width: 100%;
    height: 100%;
    min-height: 270px;
    object-fit: cover;
    display: block;
}

.tour-single-wrapper .td-extension-tab .qt-stopover-card .offer-badge {
    position: absolute;
    top: -5px;
    left: -10px;
    z-index: 5;
}

.tour-single-wrapper .td-extension-tab .qt-stopover-card .tour-content {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 210px;
    min-width: 0;
    background: #fff;
}

.tour-single-wrapper .td-extension-tab .qt-stopover-card .clstripscontents {
    position: relative;
    padding: 20px;
    border-right: 1px solid #d8e2ee;
    min-width: 0;
}

.tour-single-wrapper .td-extension-tab .qt-stopover-card .tour-type {
    display: inline-flex;
    width: fit-content;
    min-width: 190px;
    justify-content: center;
    padding: 8px 22px;
    margin-bottom: 16px;
    border-radius: 999px;
    background: #e7edf5;
    color: #002b5c;
    font-size: 14px;
    line-height: 1.2;
    font-weight: 800;
}

.tour-single-wrapper .td-extension-tab .qt-stopover-card .tour-content .tour-title {
    color: #002b5c !important;
    font-size: 22px !important;
    text-shadow: none !important;
    padding-left: 0px;
    margin-left: 0px !important;
}

.tour-single-wrapper .td-extension-tab .qt-stopover-card .tour-title a {
    color: #002b5c !important;
    text-decoration: none;
}

.tour-single-wrapper .td-extension-tab .qt-stopover-card .tour-meta,
.tour-single-wrapper .td-extension-tab .qt-stopover-card .tour-cities {
    color: #001f49;
    font-size: 16px;
    font-weight: 800;
    line-height: 1.55;
    margin-top: 8px;
}

.tour-single-wrapper .td-extension-tab .qt-stopover-card .tour-meta:before {
    content: "\f017";
    font-family: FontAwesome;
    margin-right: 10px;
    font-weight: normal;
}

.tour-single-wrapper .td-extension-tab .qt-stopover-card .tour-cities:before {
    content: "\f124";
    font-family: FontAwesome;
    margin-right: 10px;
    font-weight: normal;
}

.tour-single-wrapper .td-extension-tab .qt-stopover-card .more-content {
    display: none;
}

.tour-single-wrapper .td-extension-tab .qt-stopover-card .tourpluse {
    display: none;
    align-items: center;
    gap: 6px;
    margin-top: 10px;
    color: #002b5c;
    font-size: 14px;
    font-weight: 800;
}

.tour-single-wrapper .td-extension-tab .qt-stopover-card .wishlist-icon {
    position: absolute !important;
    top: 10px;
    right: 4px;
}

.tour-single-wrapper .td-extension-tab .qt-stopover-card .wishlist-btn {
    width: 34px !important;
    height: 34px !important;
}

.tour-single-wrapper .td-extension-tab .qt-stopover-card .clstripsbtn {
    justify-content: space-between;
}

.tour-single-wrapper .td-extension-tab .qt-stopover-card .airtrip {
    order: 2;
    color: #001f49;
    font-size: 15px;
    line-height: 1.4;
}

.tour-single-wrapper .td-extension-tab .qt-stopover-card .price {
    display: block;
    order: 1;
    margin: 0;
    color: #001f49;
    font-size: 16px;
    line-height: 1.25;
}

.tour-single-wrapper .td-extension-tab .qt-stopover-card .price strong {
    display: inline-block;
    margin-top: 5px;
    color: #002b5c;
    font-size: 24px;
    line-height: 1;
    font-weight: 700;
}

.tour-single-wrapper .td-extension-tab .qt-stopover-card .add-to-cart-btn {
    order: 3;
    width: 100%;
    max-width: 170px;
    min-height: 48px;
    border-radius: 8px;
    background: #123b73;
    color: #fff;
    font-size: 15px;
    font-weight: 800;
}

/* ---- Block 13 (from: Tailor Made) ---- */
/* Tailor-made trip summary dropdowns: match the single-tour summary dropdown design */
.tailor-made-wrapper .trip-summery-wrapper,
.tailor-made-wrapper .trip-summary,
.tailor-made-wrapper .trip-summary .qt-editable-trip-summary-list,
.tailor-made-wrapper .trip-summary .qt-editable-trip-summary-list li {
  overflow: visible !important;
}
.tailor-made-wrapper .trip-summary .qt-editable-trip-summary-list li {
  position: relative;
  gap: 10px;
  z-index: 1;
}
.tailor-made-wrapper .trip-summary .qt-editable-trip-summary-list li:has(.qt-summary-dropdown.is-open) {
  z-index: 10000;
}
.tailor-made-wrapper .trip-summary .qt-editable-trip-summary-list li.qt-summary-short-desc {
  display: block;
  margin-top: 4px;
  padding-top: 12px;
  border-top: 1px solid #e5eaf1;
  color: #45536b;
  font-size: 14px;
  line-height: 1.55;
}
.tailor-made-wrapper .trip-summary .qt-editable-trip-summary-list li.qt-summary-short-desc p {
  margin: 0 0 8px;
}
.tailor-made-wrapper .trip-summary .qt-editable-trip-summary-list li.qt-summary-short-desc p:last-child {
  margin-bottom: 0;
}
.tailor-made-wrapper .trip-summary .qt-editable-trip-summary-list li.qt-summary-note {
  display: block;
  padding-top: 6px;
  font-size: 12.5px;
  font-style: italic;
  color: #6b7994;
}
.tailor-made-wrapper .trip-summery-wrapper.qt-summary-accordion .qt-summary-accordion-header.qt-summary-accordion-header {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 12px !important;
  padding: 14px 18px !important;
  background-color: #112f5f !important;
  background-image: none !important;
  border-radius: 14px 14px 0 0 !important;
  cursor: pointer !important;
  border: 0px !important;
}
.tailor-made-wrapper .trip-summery-wrapper.qt-summary-accordion .qt-summary-accordion-header.qt-summary-accordion-header .title {
  color: #fff !important;
  opacity: 1 !important;
  font-weight: 700 !important;
  font-size: 16px !important;
}
.tailor-made-wrapper .qt-summary-accordion-toggle {
  position: relative;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .18);
  flex-shrink: 0;
}
.tailor-made-wrapper .qt-summary-accordion-toggle::before,
.tailor-made-wrapper .qt-summary-accordion-toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: #fff;
  transform: translate(-50%, -50%);
}
.tailor-made-wrapper .qt-summary-accordion-toggle::before {
  width: 11px;
  height: 2px;
}
.tailor-made-wrapper .qt-summary-accordion-toggle::after {
  width: 2px;
  height: 11px;
  opacity: 0;
  transition: opacity .2s ease;
}
.tailor-made-wrapper .qt-summary-accordion.is-collapsed .qt-summary-accordion-toggle::after {
  opacity: 1;
}
.tailor-made-wrapper .qt-summary-accordion.is-collapsed .trip-summary {
  display: none !important;
}
.tailor-made-wrapper .qt-google-reviews {
  margin: 0 0 16px;
  padding: 12px 14px;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  background: #fff;
}
.tailor-made-wrapper .qt-google-reviews-label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #112f5f;
  margin-bottom: 6px;
}
.tailor-made-wrapper .qt-google-reviews-stars {
  display: flex;
  align-items: center;
  gap: 2px;
}
.tailor-made-wrapper .qt-star {
  position: relative;
  display: inline-block;
  width: 30px;
  height: 30px;
  flex-shrink: 0;
}
.tailor-made-wrapper .qt-star-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  fill: #e2e8f0;
  display: block;
}
.tailor-made-wrapper .qt-star-fill {
  position: absolute;
  inset: 0;
  width: var(--fill);
  overflow: hidden;
}
.tailor-made-wrapper .qt-star-fill svg {
  width: 30px;
  height: 30px;
  fill: #f5a623;
  display: block;
}
.tailor-made-wrapper .qt-google-reviews-score {
  margin-left: 8px;
  font-size: 22px;
  font-weight: 800;
  color: #17263f;
}

/* Stopover block nested inside the Trip Summary panel (the "Add to Trip"
   cart). Placed as a sibling of #qt-trip-summary-panel rather than nested
   inside it, since that panel's innerHTML is fully replaced whenever a
   pricing/option selection changes - nesting it inside would wipe out any
   added stopovers on the next change. */
.tailor-made-wrapper .qt-summary-stopover {
  margin: 4px 18px 16px;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  overflow: hidden;
}
.tailor-made-wrapper .qt-summary-accordion.is-collapsed .qt-summary-stopover {
  display: none !important;
}
.tailor-made-wrapper .qt-summary-stopover-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 16px;
  background-color: #112f5f;
  cursor: pointer;
}
.tailor-made-wrapper .qt-summary-stopover-header .title {
  color: #fff;
  font-weight: 700;
  font-size: 14.5px;
}
.tailor-made-wrapper .qt-summary-stopover-toggle {
  position: relative;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .18);
  flex-shrink: 0;
}
.tailor-made-wrapper .qt-summary-stopover-toggle::before,
.tailor-made-wrapper .qt-summary-stopover-toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: #fff;
  transform: translate(-50%, -50%);
}
.tailor-made-wrapper .qt-summary-stopover-toggle::before {
  width: 10px;
  height: 2px;
}
.tailor-made-wrapper .qt-summary-stopover-toggle::after {
  width: 2px;
  height: 10px;
  opacity: 0;
  transition: opacity .2s ease;
}
.tailor-made-wrapper .qt-summary-stopover.is-collapsed .qt-summary-stopover-toggle::after {
  opacity: 1;
}
.tailor-made-wrapper .qt-summary-stopover.is-collapsed .qt-summary-stopover-list {
  display: none !important;
}
.tailor-made-wrapper .qt-summary-stopover-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 14px;
  background: #fff;
}
.tailor-made-wrapper .qt-summary-stopover-card {
  border: 1px solid #e6ebf3;
  border-radius: 12px;
  padding: 12px 14px 14px;
  background: #fbfcfe;
}
.tailor-made-wrapper .qt-summary-stopover-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}
.tailor-made-wrapper .qt-summary-stopover-card-title {
  margin: 0;
  font-size: 14px;
  font-weight: 800;
  color: #112f5f;
  line-height: 1.35;
}
.tailor-made-wrapper .qt-summary-stopover-card-remove {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #eef2f8;
  color: #6b7994;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  cursor: pointer;
  transition: background .15s ease, color .15s ease;
  padding: .2rem .5rem;
}
.tailor-made-wrapper .qt-summary-stopover-card-remove:hover {
  background: #fde2e2;
  color: #c0392b;
}
.tailor-made-wrapper .qt-summary-stopover-card-duration {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  background: #eef2f8;
  color: #112f5f;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 10px;
}
.tailor-made-wrapper .qt-summary-stopover-card-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: 13.5px;
  font-weight: 700;
  color: #112f5f;
}
.tailor-made-wrapper .qt-summary-stopover-card-price {
  font-size: 14.5px;
}

/* Tour Extensions: vertical deal cards shown in the sidebar */
.tailor-made-wrapper .qt-tour-extensions {
  margin: 0 0 16px;
  padding: 12px 12px;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
}
.tailor-made-wrapper .qt-tour-extensions-label {
  display: block;
  font-size: 18px;
  font-weight: 700;
  font-family: 'Poppins';
  color: #112f5f;
  margin-bottom: 10px;
}
.tailor-made-wrapper .qt-tour-extensions-list {
  display: grid;
  gap: 16px;
  /*flex-direction: column;*/
}
.tailor-made-wrapper .qt-ext-card {
    display: grid;
    align-items: end;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-decoration: none;
    box-shadow: 0 6px 18px rgba(17, 47, 95, .06);
    transition: transform .18s ease, box-shadow .18s ease;
    min-height: 400px;
}
.tailor-made-wrapper .qt-ext-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(17, 47, 95, .12);
}
.tailor-made-wrapper .qt-ext-card-body {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    color: #fff;
}
.tailor-made-wrapper .qt-ext-card-title {
  margin: 0 0 12px;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .01em;
  color: #fff;
  line-height: 1.35;
}
.tailor-made-wrapper .qt-ext-card-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.tailor-made-wrapper .qt-ext-card-location {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  font-weight: 600;
  color: #fff;
}
.tailor-made-wrapper .qt-ext-card-location i {
  color: #fff;
  font-size: 13px;
}
.tailor-made-wrapper .qt-ext-card-price {
  font-size: 18px;
  font-weight: 800;
  color: #d92b2b;
  white-space: nowrap;
}
.tailor-made-wrapper .qt-ext-card-divider {
  margin: 12px 0 10px;
  height: 1px;
  background: #e9edf4;
}
.tailor-made-wrapper .qt-ext-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.tailor-made-wrapper .qt-ext-card-footer-solo {
  justify-content: flex-end;
}
.tailor-made-wrapper .qt-ext-card-duration {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
}
.tailor-made-wrapper .qt-ext-card-view {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  font-weight: 800;
  color: #fff;
  white-space: nowrap;
}
.tailor-made-wrapper .qt-ext-card-view i {
  font-size: 12px;
  transition: transform .18s ease;
}
.tailor-made-wrapper .qt-ext-card:hover .qt-ext-card-view i {
  transform: translateX(3px);
}
.tailor-made-wrapper button.qt-ext-add-btn {
  background: transparent;
  padding: 4px 10px;
  cursor: pointer;
  font-family: inherit;
  border: 1px solid #fff;
  border-color: #fff !important;
  border-radius: 18px;
}
.tailor-made-wrapper button.qt-ext-add-btn.is-added {
  color: #8fe3ab;
  cursor: default;
}

.tailor-made-wrapper .trip-summary .qt-summary-select,
.tailor-made-wrapper .trip-summary select.qt-summary-select,
.tailor-made-wrapper .qt-summary-dropdown select,
.tailor-made-wrapper .trip-summary .qt-summary-dropdown > select {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  width: 0 !important;
  height: 0 !important;
  max-width: 0 !important;
  max-height: 0 !important;
  min-width: 0 !important;
  min-height: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  border: 0 !important;
  position: absolute !important;
  left: -99999px !important;
  top: auto !important;
  pointer-events: none !important;
  appearance: none !important;
  -webkit-appearance: none !important;
}
.tailor-made-wrapper .trip-summary .qt-summary-dropdown {
  position: relative;
  display: inline-flex;
  justify-content: flex-end;
  flex: 1 1 auto;
  min-width: 150px;
  max-width: 100%;
  text-align: right;
  z-index: 5;
}
.tailor-made-wrapper .trip-summary .qt-summary-dropdown.is-open {
  z-index: 10001;
}
.tailor-made-wrapper .trip-summary .qt-summary-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 7px;
  width: 100%;
  min-height: 30px;
  padding: 4px 0 4px 10px;
  border: 0 !important;
  outline: 0 !important;
  box-shadow: none !important;
  background: transparent !important;
  color: #001f4f;
  font-family: inherit;
  font-size: inherit;
  font-weight: 700;
  line-height: 1.2;
  text-align: right;
  cursor: pointer;
}
.tailor-made-wrapper .trip-summary .qt-summary-dropdown-toggle svg {
  width: 12px;
  height: 12px;
  flex: 0 0 auto;
  transition: transform .18s ease;
}
.tailor-made-wrapper .trip-summary .qt-summary-dropdown.is-open .qt-summary-dropdown-toggle svg {
  transform: rotate(180deg);
}
.tailor-made-wrapper .trip-summary .qt-summary-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 10002;
  min-width: 220px;
  width: max-content;
  max-width: min(280px, 82vw);
  max-height: 245px;
  overflow-y: auto;
  padding: 8px;
  border: 1px solid #d8e6f8;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(0,31,79,.16);
  display: none;
  text-align: left;
}
.tailor-made-wrapper .trip-summary .qt-summary-dropdown.is-open .qt-summary-dropdown-menu {
  display: block;
}
.tailor-made-wrapper .trip-summary .qt-summary-dropdown-menu::-webkit-scrollbar { width: 7px; }
.tailor-made-wrapper .trip-summary .qt-summary-dropdown-menu::-webkit-scrollbar-track { background: #f2f6fb; border-radius: 20px; }
.tailor-made-wrapper .trip-summary .qt-summary-dropdown-menu::-webkit-scrollbar-thumb { background: #8aa0bd; border-radius: 20px; }
.tailor-made-wrapper .trip-summary .qt-summary-dropdown-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  padding: 10px 12px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: #001f4f;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  text-align: left;
  cursor: pointer;
  white-space: nowrap;
}
.tailor-made-wrapper .trip-summary .qt-summary-dropdown-option:hover,
.tailor-made-wrapper .trip-summary .qt-summary-dropdown-option.is-selected {
  background: #eef6ff;
  color: #9b0013;
}
.tailor-made-wrapper .trip-summary .qt-summary-dropdown-check {
  opacity: 0;
  color: #0f9c9c;
  font-weight: 900;
}
.tailor-made-wrapper .trip-summary .qt-summary-dropdown-option.is-selected .qt-summary-dropdown-check {
  opacity: 1;
}
.tailor-made-wrapper .trip-summary .qt-summary-category-dropdown .qt-summary-dropdown-menu {
  min-width: 220px;
}
.tailor-made-wrapper .trip-summary .qt-summary-date-dropdown {
  min-width: 190px;
}


@media (max-width: 767px) {
    .tour-single-wrapper .trip-summery-wrapper.qt-summary-accordion .qt-summary-accordion-header.qt-summary-accordion-header .title {
        color: #000 !important;
    }
    .tour-single-wrapper .qt-summary-accordion-toggle {
        background: #172b50;
        right: 50px;
    }
    .tour-single-wrapper .qt-tour-extensions .qt-tour-extensions-list {
        display: grid;
        gap: 16px;
    }
    
}

/* ---- Block 14 (from: Tailor Made) ---- */
.tailor-made-wrapper .qt-custom-date-row{overflow:visible!important}
.tailor-made-wrapper .qt-custom-date-picker{
  position:relative;
  display:grid;
  grid-template-columns:42px minmax(0,1fr);
  align-items:center;
  width:100%;
  min-width:220px;
  min-height:36px
}
.tailor-made-wrapper .qt-custom-date-icon-btn {
  display:flex;
  align-items:center;
  justify-content:center;
  width:42px;
  height:36px;
  margin:0;
  padding:0;
  border:0;
  border-right:1px solid #d7dfeb;
  background:#eef4fb;
  color:#001f4f;
  cursor:pointer
}
.tailor-made-wrapper .qt-custom-date-icon-btn:hover,
.tailor-made-wrapper .qt-custom-date-icon-btn:focus {
  color: #b4001e;
  background: #ffffff;
  outline: none;
  border: 1px solid;
}
.tailor-made-wrapper .qt-custom-date-icon {
  width:19px;
  height:19px;
  fill:none;
  stroke:currentColor;
  stroke-width:1.8;
  stroke-linecap:round;
  stroke-linejoin:round;
  pointer-events:none
}
.tailor-made-wrapper .qt-custom-date-display {
  display:block;
  padding:4px 10px;
  color:#001f4f;
  font:inherit;
  font-weight:700;
  line-height:1.25;
  text-align:right;
  white-space:nowrap;
  pointer-events:none
}
.tailor-made-wrapper .qt-custom-date-input {
  position:absolute!important;
  left:0;
  bottom:0;
  width:1px!important;
  height:1px!important;
  margin:0!important;
  padding:0!important;
  border:0!important;
  opacity:.01!important;
  pointer-events:none!important
}
.tailor-made-wrapper .trip-summary li.qt-summary-edit-row.qt-custom-date-row {
    display: grid !important;
    grid-template-columns: 32% 65%;
}
@media(max-width:767px){
  .tailor-made-wrapper .qt-custom-date-picker{
    min-width:0;
    grid-template-columns:38px minmax(0,1fr)
  }
  .tailor-made-wrapper .qt-custom-date-icon-btn{
    width:38px
  }
  .tailor-made-wrapper .qt-custom-date-display{
    white-space:normal
  }
}

/* ---- Block 15 (from: Tailor Made) ---- */
.tailor-made-wrapper .qt-tailor-desktop-tabs-sticky-spacer {
    height: 0;
}
body .tour-single-wrapper.tailor-made-wrapper .trip-tabs .trip-tabs-outer > .tabs.qt-tailor-desktop-tabs-fixed {
    top: 0px !important;
    position: fixed !important;
    z-index: 999;
    background: #fff !important;
    box-shadow: 0 10px 24px rgba(15, 23, 42, .12);
    border-radius: 0 0 12px 12px !important;
    padding: 15px 0px 0px 0px;
    border: 0 !important;
}
.tailor-made-wrapper .trip-tabs .tabs .tab .qt-tab-icon {
    margin-right: 8px;
    font-size: .95em;
    vertical-align: -1px;
}

@media (max-width: 767px) {
    body .tour-single-wrapper.tailor-made-wrapper .trip-tabs .trip-tabs-outer > .tabs {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        gap: 8px !important;
        padding: 10px;
        margin-bottom: 0px !important;
    }
    body .tour-single-wrapper.tailor-made-wrapper .trip-tabs .trip-tabs-outer > .tabs::-webkit-scrollbar {
        display: none;
    }
    body .tour-single-wrapper.tailor-made-wrapper .trip-tabs .trip-tabs-outer > .tabs .tab {
        flex: 0 0 auto !important;
        white-space: nowrap;
    }
}

/* ---- Block 16 (from: Tailor Made) ---- */
/* Day-by-day itinerary accordion - mobile only, matching single-tour.php's
   design: title + chevron only when collapsed. Both the itinerary box AND
   the night-selector row collapse together, so nothing but the header row
   shows until a day is opened. Day 1 is open by default.
   Selectors repeat the "body .tour-single-wrapper.tailor-made-wrapper"
   prefix used by the shared plugin stylesheet's own high-specificity
   rules, so ours reliably wins regardless of source order. */
@media (max-width: 767px) {
    body .tour-single-wrapper.tailor-made-wrapper .daybydaycontent .day-accordion-toggle {
        display: flex !important;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
        cursor: pointer;
    }
    body .tour-single-wrapper.tailor-made-wrapper .daybydaycontent .day-accordion-icon i {
        transition: transform .2s ease;
    }
    body .tour-single-wrapper.tailor-made-wrapper .daybydaycontent.day-open .day-accordion-icon i {
        transform: rotate(180deg);
    }
    body .tour-single-wrapper.tailor-made-wrapper .daybydaycontent:not(.day-open) .itinerary-box,
    body .tour-single-wrapper.tailor-made-wrapper .daybydaycontent:not(.day-open) .qt-day-night-controls {
        display: none !important;
    }
}

/* The accordion card/chevron look for .day-accordion-toggle may come from
   the shared plugin stylesheet, which could style that class unconditionally
   (not mobile-gated). Force it back to plain, non-interactive text at
   tablet/desktop widths so nothing changes there - .itinerary-box and the
   night-selector row always stay visible on these sizes too. */
@media (min-width: 768px) {
    body .tour-single-wrapper.tailor-made-wrapper .daybydaycontent .day-accordion-toggle {
        display: block !important;
        cursor: default !important;
        pointer-events: none !important;
        background: none !important;
        border: 0 !important;
        box-shadow: none !important;
        padding: 0 !important;
        margin: 0 !important;
    }
    body .tour-single-wrapper.tailor-made-wrapper .daybydaycontent .day-accordion-icon {
        display: none !important;
    }
}

/* ---- Block 17 (from: Tailor Made) ---- */
body .tour-single-wrapper.tailor-made-wrapper .qt-inquire-modal-overlay.is-open,
body .tour-single-wrapper.tailor-made-wrapper .qt-expert-modal-overlay.is-open,
body .tour-single-wrapper.tailor-made-wrapper .qt-cf7-modal-overlay.is-open {
    z-index: 2147483647 !important;
    position: fixed !important;
    inset: 0 !important;
}

/* ---- Block 18 (from: Single Deals Trip) ---- */
.qt-inquire-modal-overlay {
        display: none;
        position: fixed;
        inset: 0;
        z-index: 99999;
        padding: 24px 16px;
        background: rgba(9, 20, 41, .55);
        overflow-y: auto;
    }
    .qt-inquire-modal-overlay.is-open {
        display: flex;
        align-items: flex-start;
        justify-content: center;
    }
    body.qt-modal-open {
        overflow: hidden;
    }
    .qt-inquire-modal-box {
        position: relative;
        width: 100%;
        max-width: 720px;
        margin: auto;
        background: #fff;
        border-radius: 16px;
        padding: 28px 24px 24px;
        box-shadow: 0 25px 70px rgba(9, 20, 41, .35);
        max-height: calc(100vh - 48px);
        overflow-y: auto;
        border: 8px solid #000;
    }
    .qt-inquire-modal-close {
        position: absolute;
        top: 14px;
        right: 16px;
        width: 34px !important;
        height: 34px;
        line-height: 1;
        border: 0;
        border-radius: 50% !important;
        background: #f1f4f9;
        color: #17263f;
        font-size: 22px;
        cursor: pointer;
        display: flex !important;
        align-items: center;
        justify-content: center;
        z-index:1;
    }
    .qt-inquire-modal-close:hover {
        background: #000;
    }
    @media (max-width: 600px) {
        .qt-inquire-modal-overlay {
            padding: 12px;
        }
        .qt-inquire-modal-box {
            padding: 24px 16px 18px;
            border-radius: 12px;
        }
    }

    /* Ask an Expert popup */
    .qt-expert-modal-overlay {
        display: none;
        position: fixed;
        inset: 0;
        z-index: 99999;
        padding: 24px 16px;
        background: rgba(9, 20, 41, .55);
        overflow-y: auto;
    }
    .qt-expert-modal-overlay.is-open {
        display: flex;
        align-items: flex-start;
        justify-content: center;
    }
    .qt-expert-modal-box {
        position: relative;
        width: 100%;
        max-width: 960px;
        margin: auto;
        background: #fff;
        border-radius: 24px;
        box-shadow: 0 25px 70px rgba(9, 20, 41, .35);
        max-height: calc(100vh - 48px);
        overflow-y: auto;
        border:8px solid #000;
    }
    .qt-expert-modal-close {
        position: absolute;
        top: 18px;
        right: 20px;
        width: 40px;
        height: 40px;
        line-height: 1;
        border: 0;
        border-radius: 50%;
        background: #fff;
        color: #17263f;
        font-size: 20px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 4px 14px rgba(9, 20, 41, .18);
        z-index: 2;
    }
    .qt-expert-modal-close:hover {
        background: #000;
    }
    
    .qt-expert-modal-grid {
        display: grid;
        grid-template-columns: 38% 62%;
        align-items: stretch;
    }
    .qt-expert-modal-photo {
        position: relative;
        min-height: 100%;
        border-radius: 14px 0 0 14px;
        overflow: hidden;
        background: #17263f;
    }
    .qt-expert-modal-photo img {
        width: 100%;
        height: 100%;
        min-height: 20px;
        object-fit: cover;
        display: block;
    }
    .qt-expert-modal-badge {
        position: absolute;
        left: 0;
        bottom: 0;
        display: flex;
        align-items: center;
        gap: 10px;
        max-width: 88%;
        padding: 18px 22px 20px 24px;
        background: linear-gradient(135deg, rgba(15, 26, 46, .92), rgba(15, 26, 46, .78));
        border-radius: 0 24px 0 0;
        width: 70%;
    }
    .qt-expert-modal-badge-icon {
        font-size: 26px;
        line-height: 1;
        color: #f0b429;
    }
    .qt-expert-modal-badge-icon img.emoji {
        width: 45px !important;
        height: 45px !important;
    }
    .qt-expert-modal-badge-text {
        display: flex;
        flex-direction: column;
        color: #fff;
        line-height: 1.35;
    }
    .qt-expert-modal-badge-text strong {
        font-size: 19px;
        color: #f0b429;
    }
    .qt-expert-modal-badge-text span {
        font-size: 14px;
        color: #e6ebf3;
    }
    .qt-expert-modal-content {
        padding: 44px 44px 36px;
        text-align: center;
    }
    .qt-expert-modal-box #qt-expert-modal-title {
        margin: 0 0 16px;
        font-family: Georgia, 'Times New Roman', serif;
        font-size: 30px;
        line-height: 1.28;
        font-weight: 700;
        color: #17263f;
    }
    .qt-expert-modal-highlight {
        color: #2952d1;
    }
    .qt-expert-modal-rule {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        margin: 0 0 20px;
        color: #d9a441;
    }
    .qt-expert-modal-rule span {
        display: block;
        width: 56px;
        height: 1px;
        background: #d8dee8;
    }
    .qt-expert-modal-subtitle {
        margin: 0 0 28px;
        color: #6b7994;
        font-size: 15.5px;
        line-height: 1.6;
        max-width: 460px;
        margin-left: auto;
        margin-right: auto;
    }
    .qt-expert-modal-features {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 0;
        margin-bottom: 30px;
    }
    .qt-expert-modal-feature {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        padding: 0 10px;
        border-left: 1px solid #e6ebf3;
        font-size: 12.5px;
        font-weight: 700;
        color: #17263f;
        line-height: 1.4;
    }
    .qt-expert-modal-feature:first-child {
        border-left: 0;
    }
    .qt-expert-modal-feature-icon {
        width: 48px;
        height: 48px;
        border-radius: 50%;
        background: #edf1fb;
        color: #2952d1;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
    }
    .qt-expert-modal-feature-icon-whatsapp {
        color: #25D366;
    }
    .qt-expert-modal-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
        margin-bottom: 22px;
    }
    .qt-expert-action {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        width: 100%;
        padding: 8px 15px;
        border: 2px solid #17263f;
        border-radius: 10px;
        background: #fff;
        color: #17263f;
        font-size: 13px;
        font-weight: 800;
        letter-spacing: .02em;
        text-transform: uppercase;
        text-decoration: none;
        cursor: pointer;
        transition: transform .15s ease, box-shadow .15s ease;
    }
    .qt-expert-action:hover {
        transform: translateY(-1px);
        box-shadow: 0 10px 22px rgba(23, 38, 63, .14);
        color: #17263f;
    }
    .qt-expert-action-icon {
        font-size: 18px;
        line-height: 1;
    }
    .qt-expert-action-whatsapp {
        background: linear-gradient(135deg, #29c063, #1fa851);
        border-color: #1fa851;
        color: #fff;
        justify-content: flex-start;
        padding-left: 16px;
        text-transform: none;
    }
    .qt-expert-action-whatsapp:hover {
        color: #fff;
        filter: brightness(1.04);
    }
    .qt-expert-action-icon-circle {
        flex: 0 0 auto;
        width: 32px;
        height: 32px;
        border-radius: 50%;
        background: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .qt-expert-action-whatsapp-text {
        display: flex;
        flex-direction: column;
        line-height: 1.3;
        text-align: left;
    }
    .qt-expert-action-whatsapp-text strong {
        font-size: 13px;
        letter-spacing: .02em;
        text-transform: uppercase;
        font-weight: 700;
    }
    .qt-expert-action-whatsapp-text small {
        font-size: 12px;
        font-weight: 600;
        opacity: .92;
        text-transform: none;
    }
    .qt-expert-modal-trust-row {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        flex-wrap: wrap;
        color: #17263f;
        font-size: 13.5px;
        font-weight: 600;
    }
    .qt-expert-modal-avatars {
        display: flex;
    }
    .qt-expert-modal-avatar {
        width: 30px;
        height: 30px;
        border-radius: 50%;
        border: 2px solid #fff;
        margin-left: -8px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 12px;
        font-weight: 800;
    }
    .qt-expert-modal-avatar:first-child {
        margin-left: 0;
    }
    .qt-expert-modal-stars {
        color: #f0b429;
        letter-spacing: 2px;
        font-size: 15px;
    }
    @media (max-width: 820px) {
        .qt-expert-modal-grid {
            grid-template-columns: 1fr;
        }
        .qt-expert-modal-photo {
            border-radius: 24px 24px 0 0;
        }
        .qt-expert-modal-photo img {
            min-height: auto;
            display: none;
        }
        .qt-expert-modal-content {
            padding: 32px 24px 28px;
        }
        .qt-expert-modal-box #qt-expert-modal-title {
            font-size: 24px;
        }
        .qt-expert-modal-features {
            grid-template-columns: repeat(2, 1fr);
            row-gap: 20px;
            display: none;
        }
        .qt-expert-modal-feature:nth-child(3) {
            border-left: 0;
        }
    }
    @media (max-width: 767px) {
        .qt-expert-modal-overlay {
            padding: 12px;
        }
        .qt-expert-modal-box {
            border-radius: 16px;
        }
        .qt-expert-modal-photo {
            border-radius: 16px 16px 0 0;
            display: none;
        }
        .qt-expert-modal-content {
            padding: 26px 18px 22px;
        }
        .qt-expert-modal-actions {
            grid-template-columns: 1fr;
        }
        .qt-expert-action-whatsapp {
            justify-content: center;
        }
        .qt-expert-modal-grid .qt-expert-modal-features {
            display: none;
        }
        .qt-expert-modal-grid .qt-expert-modal-actions {
            display: grid;
            grid-template-columns: 1fr;
        }
        button#qt-expert-modal-close {
            top: 4px;
            right: 6px;
            z-index: 3;
        }


    }

    /* Contact Form 7 popup */
    .qt-cf7-modal-overlay {
        display: none;
        position: fixed;
        inset: 0;
        z-index: 99999;
        padding: 24px 16px;
        background: rgba(9, 20, 41, .55);
        overflow-y: auto;
    }
    .qt-cf7-modal-overlay.is-open {
        display: flex;
        align-items: flex-start;
        justify-content: center;
    }
    .qt-cf7-modal-box {
        position: relative;
        width: 100%;
        max-width: 1100px;
        margin: auto;
        background: #fff;
        border-radius: 28px;
        padding: 0px;
        box-shadow: 0 25px 70px rgba(9, 20, 41, .35);
        max-height: calc(100vh - 48px);
        overflow-y: auto;
        border: 8px solid #000;
    }
    .qt-cf7-modal-close {
        position: absolute;
        top: 14px;
        right: 16px;
        width: 34px;
        height: 34px;
        line-height: 1;
        border: 0;
        border-radius: 50%;
        background: #f1f4f9;
        color: #17263f;
        font-size: 22px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 1;
    }
    .qt-cf7-modal-close:hover {
        background: #e2e8f0;
    }
    .qt-cf7-modal-box #qt-cf7-modal-title {
        margin: 0 0 20px;
        font-size: 24px;
        font-weight: 800;
        color: #17263f;
    }
    .qt-cf7-modal-form .wpcf7-form p {
        /*margin: 0 0 16px;*/
    }
    .qt-cf7-modal-form .wpcf7-form label {
        display: block;
        margin-bottom: 6px;
        font-weight: 700;
        color: #17263f;
        font-size: 14px;
    }
    .qt-cf7-modal-form .wpcf7-form input[type="text"],
    .qt-cf7-modal-form .wpcf7-form input[type="email"],
    .qt-cf7-modal-form .wpcf7-form input[type="tel"],
    .qt-cf7-modal-form .wpcf7-form input[type="url"],
    .qt-cf7-modal-form .wpcf7-form input[type="number"],
    .qt-cf7-modal-form .wpcf7-form select,
    .qt-cf7-modal-form .wpcf7-form textarea {
        width: 100%;
        padding: 12px 14px;
        border: 1px solid #d8e2ee;
        border-radius: 8px;
        font-size: 14.5px;
        color: #17263f;
    }
    .qt-cf7-modal-form .wpcf7-form input[type="submit"] {
        padding: 12px 26px;
        border: 0;
        border-radius: 8px;
        background: #17263f;
        color: #fff;
        font-weight: 800;
        letter-spacing: .02em;
        text-transform: uppercase;
        cursor: pointer;
    }
    .qt-cf7-modal-form .wpcf7-form input[type="submit"]:hover {
        background: #0f1a2e;
    }
    .qt-cf7-modal-form .wpcf7-response-output {
        margin-top: 14px !important;
        border-radius: 8px !important;
    }
    @media (max-width: 600px) {
        .qt-cf7-modal-overlay {
            padding: 12px;
        }
        .qt-cf7-modal-box {
            padding: 0px;
            border-radius: 12px;
        }
    }

/* ---- Block 19 (from: Single Deals Trip) ---- */
.tour-single-wrapper .trip-summary .qt-editable-trip-summary-list li {
  gap: 10px;
  overflow: visible;
}
.tour-single-wrapper .trip-summary .qt-editable-trip-summary-list li.qt-summary-short-desc {
  display: block;
  margin-top: 4px;
  padding-top: 12px;
  border-top: 1px solid #e5eaf1;
  color: #45536b;
  font-size: 14px;
  line-height: 1.55;
}
.tour-single-wrapper .trip-summary .qt-editable-trip-summary-list li.qt-summary-short-desc p {
  margin: 0 0 8px;
}
.tour-single-wrapper .trip-summary .qt-editable-trip-summary-list li.qt-summary-short-desc p:last-child {
  margin-bottom: 0;
}
.tour-single-wrapper .trip-summary .qt-editable-trip-summary-list li.qt-summary-note {
  display: block;
  padding-top: 6px;
  font-size: 12.5px;
  font-style: italic;
  color: #6b7994;
}
.tour-single-wrapper .trip-summery-wrapper.qt-summary-accordion .qt-summary-accordion-header.qt-summary-accordion-header {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 12px !important;
  padding: 14px 18px !important;
  background-color: #112f5f !important;
  background-image: none !important;
  border-radius: 14px 14px 0 0 !important;
  cursor: pointer !important;
  border: 0px !important;
}
.tour-single-wrapper .trip-summery-wrapper.qt-summary-accordion .qt-summary-accordion-header.qt-summary-accordion-header .title {
  color: #fff !important;
  opacity: 1 !important;
  font-weight: 700 !important;
  font-size: 16px !important;
}
.tour-single-wrapper .qt-summary-accordion-toggle {
  position: relative;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .18);
  flex-shrink: 0;
}
.tour-single-wrapper .qt-summary-accordion-toggle::before,
.tour-single-wrapper .qt-summary-accordion-toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: #fff;
  transform: translate(-50%, -50%);
}
.tour-single-wrapper .qt-summary-accordion-toggle::before {
  width: 11px;
  height: 2px;
}
.tour-single-wrapper .qt-summary-accordion-toggle::after {
  width: 2px;
  height: 11px;
  opacity: 0;
  transition: opacity .2s ease;
}
.tour-single-wrapper .qt-summary-accordion.is-collapsed .qt-summary-accordion-toggle::after {
  opacity: 1;
}
.tour-single-wrapper .qt-summary-accordion.is-collapsed .trip-summary {
  display: none !important;
}

/* Stopover block nested inside the Trip Summary panel */
.tour-single-wrapper .qt-summary-stopover {
  margin: 4px 18px 16px;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  overflow: hidden;
}
.tour-single-wrapper .qt-summary-stopover-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 16px;
  background-color: #112f5f;
  cursor: pointer;
}
.tour-single-wrapper .qt-summary-stopover-header .title {
  color: #fff;
  font-weight: 700;
  font-size: 14.5px;
}
.tour-single-wrapper .qt-summary-stopover-toggle {
  position: relative;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .18);
  flex-shrink: 0;
}
.tour-single-wrapper .qt-summary-stopover-toggle::before,
.tour-single-wrapper .qt-summary-stopover-toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: #fff;
  transform: translate(-50%, -50%);
}
.tour-single-wrapper .qt-summary-stopover-toggle::before {
  width: 10px;
  height: 2px;
}
.tour-single-wrapper .qt-summary-stopover-toggle::after {
  width: 2px;
  height: 10px;
  opacity: 0;
  transition: opacity .2s ease;
}
.tour-single-wrapper .qt-summary-stopover.is-collapsed .qt-summary-stopover-toggle::after {
  opacity: 1;
}
.tour-single-wrapper .qt-summary-stopover.is-collapsed .qt-summary-stopover-list {
  display: none !important;
}
.tour-single-wrapper .qt-summary-stopover-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 14px;
  background: #fff;
}
.tour-single-wrapper .qt-summary-stopover-card {
  border: 1px solid #e6ebf3;
  border-radius: 12px;
  padding: 12px 14px 14px;
  background: #fbfcfe;
}
.tour-single-wrapper .qt-summary-stopover-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}
.tour-single-wrapper .qt-summary-stopover-card-title {
  margin: 0;
  font-size: 14px;
  font-weight: 800;
  color: #112f5f;
  line-height: 1.35;
}
.tour-single-wrapper .qt-summary-stopover-card-remove {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #eef2f8;
  color: #6b7994;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  cursor: pointer;
  transition: background .15s ease, color .15s ease;
  padding: .2rem .5rem;
}
.tour-single-wrapper .qt-summary-stopover-card-remove:hover {
  background: #fde2e2;
  color: #c0392b;
}
.tour-single-wrapper .qt-summary-stopover-card-duration {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  background: #eef2f8;
  color: #112f5f;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 10px;
}
.tour-single-wrapper .qt-summary-stopover-card-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: 13.5px;
  font-weight: 700;
  color: #112f5f;
}
.tour-single-wrapper .qt-summary-stopover-card-price {
  font-size: 14.5px;
}

.tour-single-wrapper .qt-google-reviews {
  margin: 0 0 16px;
  padding: 12px 14px;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  background: #fff;
}
.tour-single-wrapper .qt-google-reviews-label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #112f5f;
  margin-bottom: 6px;
}
.tour-single-wrapper .qt-google-reviews-stars {
  display: flex;
  align-items: center;
  gap: 2px;
}
.tour-single-wrapper .qt-star {
  position: relative;
  display: inline-block;
  width: 30px;
  height: 30px;
  flex-shrink: 0;
}
.tour-single-wrapper .qt-star-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  fill: #e2e8f0;
  display: block;
}
.tour-single-wrapper .qt-star-fill {
  position: absolute;
  inset: 0;
  width: var(--fill);
  overflow: hidden;
}
.tour-single-wrapper .qt-star-fill svg {
  width: 30px;
  height: 30px;
  fill: #f5a623;
  display: block;
}
.tour-single-wrapper .qt-google-reviews-score {
  margin-left: 8px;
  font-size: 22px;
  font-weight: 800;
  color: #17263f;
}

/* Tour Extensions: vertical deal cards shown in the sidebar */
.tour-single-wrapper .qt-tour-extensions {
  margin: 0 0 16px;
  padding: 12px 12px;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
}
.tour-single-wrapper .qt-tour-extensions-label {
  display: block;
  font-size: 18px;
  font-weight: 700;
  font-family: 'Poppins';
  /*letter-spacing: .06em;*/
  /*text-transform: uppercase;*/
  color: #112f5f;
  margin-bottom: 10px;
}
.tour-single-wrapper .qt-tour-extensions-list {
  /*display: flex;*/
  /*flex-direction: column;*/
  gap: 16px;
}
.tour-single-wrapper .qt-ext-card {
  display: block;
  /*background: #fff;*/
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(17, 47, 95, .06);
  transition: transform .18s ease, box-shadow .18s ease;
}
.tour-single-wrapper .qt-ext-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(17, 47, 95, .12);
}
.tour-single-wrapper .qt-ext-card-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #eef2f8;
}
.tour-single-wrapper .qt-ext-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.tour-single-wrapper .qt-ext-card-body {
  padding: 16px 18px 14px;
}
.tour-single-wrapper .qt-ext-card-title {
  margin: 0 0 12px;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .01em;
  color: #fff;
  line-height: 1.35;
}
.tour-single-wrapper .qt-ext-card-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.tour-single-wrapper .qt-ext-card-location {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  font-weight: 600;
  color: #fff;
}
.tour-single-wrapper .qt-ext-card-location i {
  color: #fff;
  font-size: 13px;
}
.tour-single-wrapper .qt-ext-card-price {
  font-size: 18px;
  font-weight: 800;
  color: #d92b2b;
  white-space: nowrap;
}
.tour-single-wrapper .qt-ext-card-divider {
  margin: 12px 0 10px;
  height: 1px;
  background: #e9edf4;
}
.tour-single-wrapper .qt-ext-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.tour-single-wrapper .qt-ext-card-footer-solo {
  justify-content: flex-end;
}
.tour-single-wrapper .qt-ext-card-duration {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
}
.tour-single-wrapper .qt-ext-card-view {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  font-weight: 800;
  color: #fff;
  white-space: nowrap;
}
.tour-single-wrapper .qt-ext-card-view i {
  font-size: 12px;
  transition: transform .18s ease;
}
.tour-single-wrapper .qt-ext-card:hover .qt-ext-card-view i {
  transform: translateX(3px);
}
.tour-single-wrapper button.qt-ext-add-btn {
  background: transparent;
  padding: 4px 10px;
  cursor: pointer;
  font-family: inherit;
  border: 1px solid #fff;
  border-color: #fff !important;
  border-radius: 18px;
}
.tour-single-wrapper button.qt-ext-add-btn.is-added {
  color: #8fe3ab;
  cursor: default;
}

.qt-faq-tab-content button.qt-tab-step-btn.qt-tab-step-next {
    display: none !important;
}
.tour-single-wrapper .trip-summary .qt-summary-select,
.tour-single-wrapper .trip-summary select.qt-summary-select {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  position: absolute !important;
  width: 0 !important;
  height: 0 !important;
  pointer-events: none !important;
}
.tour-single-wrapper .trip-summary .qt-summary-dropdown {
  position: relative;
  display: inline-flex;
  justify-content: flex-end;
  min-width: 150px;
  max-width: 100%;
  z-index: 5;
}
.tour-single-wrapper .trip-summary .qt-summary-dropdown.is-open {
  z-index: 50;
}
.tour-single-wrapper .trip-summary .qt-summary-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 7px;
  width: 100%;
  min-height: 30px;
  padding: 4px 0 4px 10px;
  border: 0;
  background: transparent;
  color: #001f4f;
  font-weight: 600;
  font-size: inherit;
  line-height: 1.2;
  text-align: right;
  cursor: pointer;
  font-family: inherit;
}
.tour-single-wrapper .trip-summary .qt-summary-dropdown-toggle:focus,
.tour-single-wrapper .trip-summary .qt-summary-dropdown-toggle:focus {
    outline: none !important;
    border-color: transparent !important;
    box-shadow: none !important;
}
.tour-single-wrapper .trip-summary .qt-summary-dropdown-toggle svg {
  width: 12px;
  height: 12px;
  flex: 0 0 auto;
  transition: transform .18s ease;
}
.tour-single-wrapper .trip-summary .qt-summary-dropdown.is-open .qt-summary-dropdown-toggle svg {
  transform: rotate(180deg);
}
.tour-single-wrapper .trip-summary .qt-summary-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 220px;
  width: max-content;
  max-width: min(280px, 82vw);
  max-height: 245px;
  overflow-y: auto;
  padding: 8px;
  border: 1px solid #d8e6f8;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(0,31,79,.16);
  display: none;
}
.tour-single-wrapper .trip-summary .qt-summary-dropdown.is-open .qt-summary-dropdown-menu {
  display: block;
}
.tour-single-wrapper .trip-summary .qt-summary-dropdown-menu::-webkit-scrollbar {
  width: 7px;
}
.tour-single-wrapper .trip-summary .qt-summary-dropdown-menu::-webkit-scrollbar-track {
  background: #f2f6fb;
  border-radius: 20px;
}
.tour-single-wrapper .trip-summary .qt-summary-dropdown-menu::-webkit-scrollbar-thumb {
  background: #8aa0bd;
  border-radius: 20px;
}
.tour-single-wrapper .trip-summary .qt-summary-dropdown-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  padding: 10px 12px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: #001f4f;
  font: inherit;
  font-weight: 700;
  line-height: 1.2;
  text-align: right;
  cursor: pointer;
  white-space: nowrap;
}
.tour-single-wrapper .trip-summary .qt-summary-dropdown-option:hover,
.tour-single-wrapper .trip-summary .qt-summary-dropdown-option.is-selected {
  background: #eef6ff;
  color: #9b0013;
}
.tour-single-wrapper .trip-summary .qt-summary-dropdown-check {
  opacity: 0;
  color: #0f9c9c;
  font-weight: 900;
}
.tour-single-wrapper .trip-summary .qt-summary-dropdown-option.is-selected .qt-summary-dropdown-check {
  opacity: 1;
}
.tour-single-wrapper .trip-summary .qt-summary-date-dropdown {
    min-width: 190px;
    min-height: auto !important;
    height: 8px;
    border: none !important;
    padding: 0px !important;
    margin-top: -10px !important;
}
.tour-single-wrapper .trip-summary .qt-summary-category-dropdown {
    min-width: 120px;
    min-height: auto !important;
    height: 8px;
    border: none !important;
    padding: 0px !important;
    margin-top: -10px !important;
}
.qt-customize-trip-wrap.clsbottombtn {
    display: flex;
    align-items: end;
    gap: 15px;
    width: 50%
}
.qt-customize-trip-wrap.clsbottombtn button.qt-customize-trip-btn {
    padding: 0px 12px !important;
}
.qt-customize-trip-wrap.clsbottombtn button.qt-customize-trip-btn:hover {
    border-width: 3px !important;
    border-color: #8b0015 #16213f #16213f #8b0015 !important;
    background: #fff !important;
    box-shadow: 0 18px 30px rgba(17, 47, 95, .25) !important;
    color: var(--qt-navy) !important;
    transform: translateY(-1px) !important;
}

.qt-tour-extensions .qt-ext-card {
    position: relative;
    display: block;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    border-radius: 12px;
    width: 100%;
}
.qt-tour-extensions .qt-ext-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgb(0 0 0 / 93%) 0%,
        rgb(0 0 0 / 6%) 45%,
        rgba(0, 0, 0, 0.1) 100%
    );
}
.qt-tour-extensions .qt-ext-card-body {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    color: #fff;
}

/* ---- Block 20 (from: Single Deals Trip) ---- */
.activity-more p {
    padding: 0px;
    margin: 0px;
}

@media (max-width: 767px) {
 .tour-single-wrapper .qt-deal-banner .qt-deal-content .qt-deal-stat {
    display: grid !important;
    grid-template-columns: 12% 88%;
 }
.tour-single-wrapper .qt-deal-banner .qt-deal-content .qt-deal-stat-text {
    flex-direction: row !important;
    gap: 10px;
    justify-content: space-between;
    align-items: center;
}
.tour-single-wrapper .qt-deal-banner .qt-deal-content .qt-deal-stat-label {
    font-weight: 600 !important;
    margin-bottom: 0px !important;
}    
.tour-single-wrapper .qt-deal-banner .qt-deal-content .qt-deal-stat-value {
    font-size: 14px !important;
}
.tour-single-wrapper .qt-deal-banner .qt-deal-content .qt-deal-stat-price .qt-deal-stat-value,
.tour-single-wrapper .qt-deal-banner .qt-deal-content .qt-deal-stat-save .qt-deal-stat-value {
    font-size: 16px !important;
}
.tour-single-wrapper .trip-summery-wrapper.qt-summary-accordion .qt-summary-accordion-header.qt-summary-accordion-header .title {
    color: #000 !important;
}
.tour-single-wrapper .qt-summary-accordion-toggle {
    background: #172b50;
    right: 50px;
}
.tour-single-wrapper .day-title strong {
    font-weight: 700;
}

}

@media (min-width: 768px) and (max-width: 1450px) {

.tour-single-wrapper .qt-deal-banner .qt-deal-content .qt-deal-bar {
    padding: 16px 8px !important;
    gap: 8px !important;
}
.tour-single-wrapper .qt-deal-banner .qt-deal-content .qt-deal-stats {
    gap: 5px !important;
}
.tour-single-wrapper .qt-deal-banner .qt-deal-content .qt-deal-stat {
    gap: 5px !important;
    padding: 10px 5px !important;
}
.tour-single-wrapper .qt-deal-banner .qt-deal-content .qt-deal-stat > i {
    font-size: 15px !important;
}
.tour-single-wrapper .qt-deal-banner .qt-deal-content .qt-deal-stat-label {
    font-size: 9px !important;
}
.tour-single-wrapper .qt-deal-banner .qt-deal-content .qt-deal-stat-value {
    font-size: 12px !important;
}
.tour-single-wrapper .qt-deal-banner .qt-deal-content .qt-deal-actions {
    margin-left: 10px !important;
    gap: 8px !important;
}
.tour-single-wrapper .qt-deal-banner .qt-deal-content .qt-deal-btn {
    padding: 9px 14px !important;
    font-size: 11px !important;
}
.qt-deal-content .qt-deal-bar .qt-deal-actions button.qt-deal-btn.qt-deal-btn-secondary.qt-customize-trip-btn{
    height: 40px !important;
    min-height: 40px !important;
}
.qt-deal-btn {
    max-width: 250px;
}

}

/* ---- Block 21 (from: Single Deals Trip) ---- */
.qt-inquiry-success{
    margin:0 0 18px;
    padding:14px 16px;
    border-radius:12px;
    background:#ecfdf3;
    border:1px solid #b7efc5;
    color:#125c2f;
    font-weight:700;
}
.tour-single-wrapper .trip-layout .travdek-top-filter {
    box-shadow: 0 2px 10px rgba(0, 0, 0, .26) !important;
}

/* Stopover cards inside the Extensions tab: premium wide card layout matching the tour listing reference. */
.tour-single-wrapper .td-extension-tab .qt-stopover-list {
    width: 100%;
    margin: 22px 0 34px;
}

.tour-single-wrapper .td-extension-tab .qt-stopover-card {
    position: relative;
    display: grid;
    grid-template-columns: minmax(340px, 40%) minmax(0, 1fr);
    min-height: 270px;
    border-radius: 14px;
    box-shadow: none;
    border: 1px solid #d8e2ee;
    background: #fff;
    overflow: hidden;
}

.tour-single-wrapper .td-extension-tab .qt-stopover-card:hover {
    transform: none;
    box-shadow: 0 12px 30px rgba(0, 43, 92, 0.08);
}

.tour-single-wrapper .td-extension-tab .qt-stopover-card .tour-image {
    width: 100%;
    min-height: 270px;
    background: #dfe6ef;
}

.tour-single-wrapper .td-extension-tab .qt-stopover-card .tour-image img {
    width: 100%;
    height: 100%;
    min-height: 270px;
    object-fit: cover;
    display: block;
}

.tour-single-wrapper .td-extension-tab .qt-stopover-card .offer-badge {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 5;
}

.tour-single-wrapper .td-extension-tab .qt-stopover-card .tour-content {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 210px;
    min-width: 0;
    background: #fff;
}

.tour-single-wrapper .td-extension-tab .qt-stopover-card .clstripscontents {
    position: relative;
    padding: 20px;
    border-right: 1px solid #d8e2ee;
    min-width: 0;
}

.tour-single-wrapper .td-extension-tab .qt-stopover-card .tour-type {
    display: inline-flex;
    width: fit-content;
    min-width: 190px;
    justify-content: center;
    padding: 8px 22px;
    margin-bottom: 16px;
    border-radius: 999px;
    background: #e7edf5;
    color: #002b5c;
    font-size: 14px;
    line-height: 1.2;
    font-weight: 800;
}

.tour-single-wrapper .td-extension-tab .qt-stopover-card .tour-content .tour-title {
    color: #002b5c !important;
    font-size: 22px !important;
    text-shadow: none !important;
    padding-left: 0px;
    margin-left: 0px !important;
}

.tour-single-wrapper .td-extension-tab .qt-stopover-card .tour-title a {
    color: #002b5c !important;
    text-decoration: none;
}

.tour-single-wrapper .td-extension-tab .qt-stopover-card .tour-meta,
.tour-single-wrapper .td-extension-tab .qt-stopover-card .tour-cities {
    color: #001f49;
    font-size: 16px;
    font-weight: 800;
    line-height: 1.55;
    margin-top: 8px;
}

.tour-single-wrapper .td-extension-tab .qt-stopover-card .tour-meta:before {
    content: "\f017";
    font-family: FontAwesome;
    margin-right: 10px;
    font-weight: normal;
}

.tour-single-wrapper .td-extension-tab .qt-stopover-card .tour-cities:before {
    content: "\f124";
    font-family: FontAwesome;
    margin-right: 10px;
    font-weight: normal;
}

.tour-single-wrapper .td-extension-tab .qt-stopover-card .more-content {
    display: none;
}

.tour-single-wrapper .td-extension-tab .qt-stopover-card .tourpluse {
    display: none;
    align-items: center;
    gap: 6px;
    margin-top: 10px;
    color: #002b5c;
    font-size: 14px;
    font-weight: 800;
}

.tour-single-wrapper .td-extension-tab .qt-stopover-card .wishlist-icon {
    position: absolute !important;
    top: 15px;
    right: 24px;
}

.tour-single-wrapper .td-extension-tab .qt-stopover-card .clstripsbtn {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    padding: 28px 24px;
    background: #fff;
    text-align: center;
}

.tour-single-wrapper .td-extension-tab .qt-stopover-card .airtrip {
    order: 2;
    color: #001f49;
    font-size: 15px;
    line-height: 1.4;
}

.tour-single-wrapper .td-extension-tab .qt-stopover-card .price {
    display: block;
    order: 1;
    margin: 0;
    color: #001f49;
    font-size: 16px;
    line-height: 1.25;
}

.tour-single-wrapper .td-extension-tab .qt-stopover-card .price strong {
    display: inline-block;
    margin-top: 5px;
    color: #002b5c;
    font-size: 30px;
    line-height: 1;
    font-weight: 900;
}

.tour-single-wrapper .td-extension-tab .qt-stopover-card .add-to-cart-btn {
    order: 3;
    width: 100%;
    max-width: 170px;
    min-height: 48px;
    border-radius: 8px;
    background: #123b73;
    color: #fff;
    font-size: 15px;
    font-weight: 800;
}
/*.wishlist-icon button.wishlist-btn i.fa.fa-heart {*/
/*    color: #fff !important;*/
/*}*/
/*.wishlist-icon button.wishlist-btn i.fa.fa-heart:hover {*/
/*    color: #ccc !important;*/
/*}*/

@media (max-width: 1100px) {
    .tour-single-wrapper .td-extension-tab .qt-stopover-card {
        grid-template-columns: 1fr;
    }

    .tour-single-wrapper .td-extension-tab .qt-stopover-card .tour-content {
        grid-template-columns: 1fr;
    }

    .tour-single-wrapper .td-extension-tab .qt-stopover-card .clstripscontents {
        border-right: 0;
        padding-right: 78px;
    }

    .tour-single-wrapper .td-extension-tab .qt-stopover-card .clstripsbtn {
        border-top: 1px solid #d8e2ee;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        text-align: left;
    }
}

@media (max-width: 640px) {
    .tour-single-wrapper .td-extension-tab .qt-stopover-card .tour-image,
    .tour-single-wrapper .td-extension-tab .qt-stopover-card .tour-image img {
        min-height: 220px;
    }

    .tour-single-wrapper .td-extension-tab .qt-stopover-card .clstripscontents {
        padding: 22px 24px;
    }

    .tour-single-wrapper .td-extension-tab .qt-stopover-card .wishlist-icon {
        position: static;
        margin: 8px 0;
    }

    .tour-single-wrapper .td-extension-tab .qt-stopover-card .clstripsbtn {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }

    .tour-single-wrapper .td-extension-tab .qt-stopover-card .add-to-cart-btn {
        max-width: 100%;
    }
}

/* ---- Block 22 (from: Single Deals Trip) ---- */
.tour-single-wrapper:not(.tailor-made-wrapper) .qt-desktop-tabs-sticky-spacer {
    height: 0;
}
.tour-single-wrapper:not(.tailor-made-wrapper) .trip-tabs-outer > .tabs.qt-desktop-tabs-fixed,
.tour-single-wrapper .trip-tabs-outer > .tabs.qt-mobile-tabs-fixed {
    top: 0px !important;
    position: fixed !important;
    z-index: 999;
    background: #fff;
    box-shadow: 0 10px 24px rgba(15, 23, 42, .12);
    border-radius: 0 0 12px 12px;
    padding: 15px 0px 0px 0px;
}
.trip-tabs .tabs .tab .qt-tab-icon {
    margin-right: 8px;
    font-size: .95em;
    vertical-align: -1px;
}
/*.clstraveler.traveller-details {*/
/*    display: grid;*/
/*    grid-template-columns: repeat(2, minmax(0, 1fr));*/
/*    gap: 20px;*/
/*    margin-bottom: 20px;*/
/*}*/
.clstraveler.traveller-details .form-group {
    width: 100%;
}
.clstraveler.traveller-details .form-group input,
.clstraveler.traveller-details .form-group select {
    width: 100%;
    box-sizing: border-box;
}
.qt-inquire-modal-box > .form-group {
    width: 100%;
}
.ask-question-form .qt-inquire-modal-box button[type='submit'] {
    min-width: 50% !important;
}
    
@media (max-width: 768px) {
    .clstraveler.traveller-details {
        grid-template-columns: 1fr;
    }
    .tour-single-wrapper .trip-tabs-outer > .tabs.qt-mobile-tabs-fixed {
        width: 100% !important;
        margin-left: -15px;
        padding: 15px 10px 10px 10px !important;
    }
    .tour-single-wrapper .tabs {
        padding: 10px;
    }
    
    
}

/*****12-08-2026*******/
.qt-mobile-sticky-cta {
    display: none;
}

@media (max-width: 767px) {
    body.qt-has-mobile-sticky-cta {
        padding-bottom: 72px;
    }

    .qt-mobile-sticky-cta {
        display: flex;
        align-items: center;
        justify-content: center;
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 9999;
        background: #0b2447;
        padding: 12px 16px;
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.15);
    }
    

    .qt-mobile-sticky-cta .qt-mobile-sticky-book-btn {
        width: 100%;
        max-width: 420px;
        border-radius: 999px;
        font-size: 16px;
        font-weight: 700;
        padding: 8px 24px;
        cursor: pointer;
        text-align: center;
        color: #fff !important;
        background: linear-gradient(to right, #800000, #172B50) padding-box, linear-gradient(to right, #800000, #172B50) border-box !important;
        border-width: 2px !important;
        border-color: #8b0015 #fff #fff #8b0015 !important;
        box-shadow: 0 14px 24px rgba(17, 47, 95, .18) !important;
        border: 1px solid #000;
    }

    .qt-mobile-sticky-cta .qt-mobile-sticky-book-btn:hover,
    .qt-mobile-sticky-cta .qt-mobile-sticky-book-btn:focus {
        background: #911025;
    }
}

