: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-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 {
    display: none;
}

.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: 10px 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(2, minmax(0, 1fr));
    gap: 24px;
}

.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;
}

.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;
}

.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: 56px;
    padding: 20px;
    background: #fff;
}

.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: 48px;
    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: 430px;
    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: 48px !important;
    height: 48px !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-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: 0 !important;
}
.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;
    }
}
