/* =========================================================
   ENDE HOLIDAYS — TOUR DETAIL PAGE
   FINAL PREMIUM VERSION
   CLEAN / STRONG / RESPONSIVE
========================================================= */


/* =========================================================
   01. ROOT & RESET
========================================================= */

.tour-detail-page {

    --tour-gold: #E99F24;
    --tour-gold-light: #F0B84D;
    --tour-gold-dark: #C98213;

    --tour-dark: #1D1D1B;
    --tour-text: #383838;
    --tour-muted: #777777;

    --tour-light: #F7F7F5;
    --tour-border: #E1E1DD;

    --tour-white: #FFFFFF;

    --tour-radius-sm: 8px;
    --tour-radius-md: 14px;
    --tour-radius-lg: 20px;

    --tour-shadow-sm:
        0 4px 18px rgba(0, 0, 0, 0.06);

    --tour-shadow-md:
        0 12px 35px rgba(0, 0, 0, 0.09);

    --tour-shadow-lg:
        0 20px 55px rgba(0, 0, 0, 0.13);

    color: var(--tour-text);

    background: #FFFFFF;

    width: 100%;

    overflow: hidden;
}


.tour-detail-page *,
.tour-detail-page *::before,
.tour-detail-page *::after {

    box-sizing: border-box;
}


/* =========================================================
   02. CONTAINER
========================================================= */

.tour-detail-page > .container {

    width: 100%;

    max-width: 1240px;

    margin: 0 auto;

    padding-left: 24px;
    padding-right: 24px;
}


/* =========================================================
   03. BREADCRUMB
========================================================= */

.tour-detail-breadcrumb {

    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 8px;

    padding-top: 34px;
    padding-bottom: 22px;

    color: var(--tour-muted);

    font-size: 13px;

    line-height: 1.5;
}


.tour-detail-breadcrumb a {

    color: #666666;

    text-decoration: none;

    transition:
        color 0.25s ease;
}


.tour-detail-breadcrumb a:hover {

    color: var(--tour-gold-dark);
}


.tour-detail-breadcrumb > span {

    color: #B0B0B0;

    font-size: 16px;
}


.tour-detail-breadcrumb strong {

    color: var(--tour-dark);

    font-weight: 600;
}


/* =========================================================
   04. TOUR HEADER
========================================================= */

.tour-detail-header {

    position: relative;

    padding: 12px 0 34px;
}


.tour-detail-header-content {

    max-width: 950px;
}


.tour-detail-eyebrow {

    display: inline-block;

    margin-bottom: 12px;

    color: var(--tour-gold-dark);

    font-size: 11px;

    line-height: 1.4;

    font-weight: 700;

    letter-spacing: 0.18em;
}


.tour-detail-header h1 {

    max-width: 950px;

    margin: 0;

    color: var(--tour-dark);

    font-size: clamp(32px, 4vw, 52px);

    line-height: 1.08;

    font-weight: 700;

    letter-spacing: -0.025em;
}


/* HEADER META */

.tour-detail-header-meta {

    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 12px 18px;

    margin-top: 20px;
}


/* =========================================================
   05. DESTINATION
========================================================= */

.tour-detail-destinations {

    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 8px 14px;
}


.tour-detail-location {

    display: inline-flex;

    align-items: center;

    gap: 7px;

    color: #555555;

    font-size: 14px;

    font-weight: 500;
}


.tour-detail-location svg {

    flex: 0 0 auto;

    color: var(--tour-gold);
}


/* =========================================================
   06. BADGES
========================================================= */

.tour-detail-badges {

    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 7px;
}


.tour-detail-badges span {

    display: inline-flex;

    align-items: center;

    min-height: 28px;

    padding: 5px 11px;

    border: 1px solid rgba(233, 159, 36, 0.40);

    border-radius: 999px;

    background: #FFF7E9;

    color: var(--tour-gold-dark);

    font-size: 11px;

    line-height: 1.2;

    font-weight: 700;

    letter-spacing: 0.02em;
}


/* =========================================================
   07. MAIN IMAGE
========================================================= */

.tour-detail-image {

    position: relative;

    width: 100%;

    height: clamp(320px, 48vw, 570px);

    overflow: hidden;

    border-radius: var(--tour-radius-lg);

    background: #DDDDDD;

    box-shadow: var(--tour-shadow-md);
}


.tour-detail-image img {

    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    object-position: center;

    transition:
        transform 0.7s ease;
}


.tour-detail-image:hover img {

    transform: scale(1.015);
}


/* IMAGE OVERLAY */

.tour-detail-image-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(0, 0, 0, 0.62) 0%,
            rgba(0, 0, 0, 0.22) 42%,
            rgba(0, 0, 0, 0.03) 72%,
            rgba(0, 0, 0, 0) 100%
        );

    pointer-events: none;
}


/* IMAGE CAPTION */

.tour-detail-image-caption {

    position: absolute;

    left: 32px;
    bottom: 28px;

    display: flex;

    flex-direction: column;

    gap: 5px;

    color: #FFFFFF;
}


.tour-detail-image-caption span {

    font-size: 10px;

    line-height: 1.4;

    font-weight: 700;

    letter-spacing: 0.18em;

    opacity: 0.85;
}


.tour-detail-image-caption strong {

    font-size: clamp(15px, 2vw, 21px);

    line-height: 1.3;

    font-weight: 500;
}


/* =========================================================
   08. MAIN LAYOUT
========================================================= */

.tour-detail-layout {

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        350px;

    gap: 58px;

    padding-top: 64px;
}


/* =========================================================
   09. CONTENT
========================================================= */

.tour-detail-content {

    min-width: 0;
}


/* DESCRIPTION */

.tour-detail-description {

    color: var(--tour-text);

    font-size: 16px;

    line-height: 1.85;
}


.tour-detail-description > *:first-child {

    margin-top: 0;
}


/* HEADINGS */

.tour-detail-description h2,
.tour-detail-description h3,
.tour-detail-description h4 {

    color: var(--tour-dark);

    line-height: 1.3;
}


.tour-detail-description h2 {

    margin-top: 42px;

    margin-bottom: 18px;

    font-size: 28px;
}


.tour-detail-description h3 {

    margin-top: 32px;

    margin-bottom: 14px;

    font-size: 22px;
}


.tour-detail-description h4 {

    margin-top: 26px;

    margin-bottom: 12px;

    font-size: 18px;
}


/* PARAGRAPH */

.tour-detail-description p {

    margin-top: 0;

    margin-bottom: 18px;
}


/* =========================================================
   10. DESCRIPTION LIST
========================================================= */

/*
   Reset default browser list style
*/

.tour-detail-description ul,
.tour-detail-description ol {

    margin: 20px 0 25px;

    padding-left: 0;

    list-style: none;
}


/* ---------------------------------------------------------
   UNORDERED LIST
--------------------------------------------------------- */

.tour-detail-description ul > li {

    position: relative;

    margin-bottom: 11px;

    padding-left: 29px;
}


.tour-detail-description ul > li::before {

    content: "";

    position: absolute;

    left: 4px;

    top: 0.72em;

    width: 7px;

    height: 7px;

    border-radius: 50%;

    background: var(--tour-gold);
}


/* ---------------------------------------------------------
   ORDERED LIST
--------------------------------------------------------- */

.tour-detail-description ol {

    counter-reset: tour-counter;
}


.tour-detail-description ol > li {

    position: relative;

    margin-bottom: 13px;

    padding-left: 37px;

    counter-increment: tour-counter;
}


.tour-detail-description ol > li::before {

    content: counter(tour-counter);

    position: absolute;

    left: 0;

    top: 1px;

    display: flex;

    align-items: center;

    justify-content: center;

    width: 25px;

    height: 25px;

    border-radius: 50%;

    background: #FFF0D2;

    color: var(--tour-gold-dark);

    font-size: 11px;

    font-weight: 800;
}


/* ---------------------------------------------------------
   NESTED LIST
--------------------------------------------------------- */

.tour-detail-description ul ul,
.tour-detail-description ol ul,
.tour-detail-description ul ol,
.tour-detail-description ol ol {

    margin-top: 10px;

    margin-bottom: 10px;
}


.tour-detail-description ul ul > li {

    padding-left: 25px;
}


.tour-detail-description ul ul > li::before {

    width: 5px;

    height: 5px;

    background: #999999;
}


/* =========================================================
   11. DESCRIPTION LINKS
========================================================= */

.tour-detail-description a {

    color: var(--tour-gold-dark);

    text-decoration: underline;

    text-underline-offset: 3px;
}


/* =========================================================
   12. DESCRIPTION IMAGE
========================================================= */

.tour-detail-description img {

    display: block;

    max-width: 100%;

    height: auto;

    margin: 28px auto;

    border-radius: var(--tour-radius-md);
}


/* =========================================================
   13. BLOCKQUOTE
========================================================= */

.tour-detail-description blockquote {

    margin: 28px 0;

    padding: 20px 24px;

    border-left: 4px solid var(--tour-gold);

    border-radius:
        0
        var(--tour-radius-sm)
        var(--tour-radius-sm)
        0;

    background: #FAF9F5;

    color: #555555;
}


/* =========================================================
   14. SECTION HEADING
========================================================= */

.tour-section-heading {

    margin-bottom: 28px;
}


.tour-section-heading > span {

    display: block;

    margin-bottom: 8px;

    color: var(--tour-gold-dark);

    font-size: 11px;

    line-height: 1.4;

    font-weight: 700;

    letter-spacing: 0.16em;
}


.tour-section-heading h2 {

    margin: 0 0 10px;

    color: var(--tour-dark);

    font-size: clamp(25px, 3vw, 34px);

    line-height: 1.2;

    letter-spacing: -0.02em;
}


.tour-section-heading p {

    max-width: 650px;

    margin: 0;

    color: var(--tour-muted);

    font-size: 14px;

    line-height: 1.7;
}


/* =========================================================
   15. PRICE SECTION
========================================================= */

.tour-detail-prices {

    margin-top: 62px;

    padding-top: 46px;

    border-top: 1px solid #DCDCD6;
}


/* PRICE LIST */

.tour-price-list {

    display: flex;

    flex-direction: column;

    gap: 14px;
}


/* =========================================================
   PRICE CARD
========================================================= */

.tour-price-item {

    position: relative;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 25px;

    min-height: 108px;

    padding: 22px 25px;

    border: 1px solid #D4D4CE;

    border-left: 6px solid var(--tour-gold);

    border-radius: 14px;

    background: #FFFFFF;

    box-shadow:
        0 5px 18px rgba(0, 0, 0, 0.08);

    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}


.tour-price-item:hover {

    transform: translateY(-3px);

    border-color: var(--tour-gold);

    box-shadow:
        0 13px 30px rgba(0, 0, 0, 0.12);
}


/* PRICE LEFT */

.tour-price-item > div {

    display: flex;

    flex-direction: column;

    gap: 5px;

    min-width: 0;
}


.tour-price-item span {

    color: #222222;

    font-size: 15px;

    line-height: 1.4;

    font-weight: 750;
}


.tour-price-item small {

    color: #777777;

    font-size: 12px;

    line-height: 1.5;
}


/* =========================================================
   PRICE VALUE
========================================================= */

.tour-price-item strong {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    flex: 0 0 auto;

    min-height: 46px;

    padding: 9px 16px;

    border: 1px solid #E4B45F;

    border-radius: 9px;

    background: #FFF2D7;

    color: #A86305;

    font-size: 20px;

    line-height: 1.2;

    font-weight: 800;

    white-space: nowrap;

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.7);
}


/* =========================================================
   16. FAQ
========================================================= */

.tour-detail-faq {

    margin-top: 62px;

    padding-top: 46px;

    border-top: 1px solid var(--tour-border);
}


/* FAQ LIST */

.tour-faq-list {

    border-top: 1px solid var(--tour-border);
}


.tour-faq-item {

    border-bottom: 1px solid var(--tour-border);
}


/* =========================================================
   FAQ QUESTION
========================================================= */

.tour-faq-question {

    display: flex;

    align-items: center;

    justify-content: space-between;

    width: 100%;

    gap: 20px;

    padding: 20px 0;

    border: 0;

    background: transparent;

    color: var(--tour-dark);

    text-align: left;

    font-family: inherit;

    font-size: 15px;

    line-height: 1.5;

    font-weight: 650;

    cursor: pointer;
}


/* QUESTION TEXT */

.tour-faq-question > span:first-child {

    display: block;

    flex: 1 1 auto;

    min-width: 0;
}


/* =========================================================
   FAQ TOGGLE
========================================================= */

.tour-faq-toggle {

    display: flex;

    align-items: center;

    justify-content: center;

    width: 32px;

    height: 32px;

    min-width: 32px;

    min-height: 32px;

    flex: 0 0 32px;

    margin: 0;

    padding: 0;

    border: 1px solid #D4D4CE;

    border-radius: 50%;

    background: #FFFFFF;

    color: var(--tour-gold-dark);

    font-family: Arial, sans-serif;

    font-size: 20px;

    font-weight: 400;

    line-height: 1;

    text-align: center;

    transition:
        background 0.25s ease,
        border-color 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease;
}


/* FAQ HOVER */

.tour-faq-question:hover .tour-faq-toggle {

    border-color: var(--tour-gold);

    background: #FFF9EF;

    color: var(--tour-gold-dark);
}


/* FAQ ACTIVE */

.tour-faq-question[aria-expanded="true"]
.tour-faq-toggle {

    border-color: var(--tour-gold);

    background: var(--tour-gold);

    color: #FFFFFF;

    transform: rotate(180deg);
}


/* =========================================================
   FAQ ANSWER
========================================================= */

.tour-faq-answer {

    overflow: hidden;

    max-height: 0;

    transition:
        max-height 0.35s ease;
}


.tour-faq-answer-inner {

    padding: 0 52px 22px 0;

    color: var(--tour-muted);

    font-size: 14px;

    line-height: 1.8;
}


.tour-faq-answer-inner p:first-child {

    margin-top: 0;
}


.tour-faq-answer-inner p:last-child {

    margin-bottom: 0;
}


/* FAQ ANSWER LIST */

.tour-faq-answer-inner ul,
.tour-faq-answer-inner ol {

    margin: 16px 0 20px;

    padding-left: 22px;
}


.tour-faq-answer-inner ul {

    list-style: disc;
}


.tour-faq-answer-inner ol {

    list-style: decimal;
}


.tour-faq-answer-inner li {

    margin-bottom: 7px;
}


/* =========================================================
   17. SIDEBAR
========================================================= */

.tour-detail-sidebar {

    min-width: 0;
}


/* =========================================================
   BOOKING CARD
========================================================= */

.tour-detail-booking {

    position: sticky;

    top: 110px;

    padding: 30px;

    border: 1px solid #D4D4CE;

    border-top: 5px solid var(--tour-gold);

    border-radius: 16px;

    background: #FFFFFF;

    box-shadow:
        0 12px 35px rgba(0, 0, 0, 0.10);

    z-index: 5;
}


/* BOOKING LABEL */

.tour-booking-label {

    display: block;

    margin-bottom: 9px;

    color: #777777;

    font-size: 10px;

    line-height: 1.4;

    font-weight: 800;

    letter-spacing: 0.15em;
}


/* BOOKING PRICE */

.tour-booking-price {

    display: block;

    margin-bottom: 11px;

    color: var(--tour-dark);

    font-size: clamp(27px, 3vw, 36px);

    line-height: 1.15;

    font-weight: 800;

    letter-spacing: -0.025em;
}


/* BOOKING NOTE */

.tour-booking-note {

    display: block;

    margin-bottom: 23px;

    color: #777777;

    font-size: 12px;

    line-height: 1.65;
}


/* =========================================================
   18. BOOKING BUTTON
========================================================= */

.tour-detail-booking .btn-primary {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    width: 100%;

    min-height: 50px;

    padding: 13px 18px;

    border: 0;

    border-radius: 999px;

    background: var(--tour-gold);

    color: #FFFFFF;

    text-decoration: none;

    font-size: 14px;

    line-height: 1.3;

    font-weight: 700;

    transition:
        background 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}


.tour-detail-booking .btn-primary:hover {

    background: var(--tour-gold-dark);

    color: #FFFFFF;

    transform: translateY(-2px);

    box-shadow:
        0 8px 20px rgba(233, 159, 36, 0.25);
}


.tour-detail-booking .btn-primary span {

    font-size: 18px;

    line-height: 1;
}


/* =========================================================
   19. BOOKING DIVIDER
========================================================= */

.tour-booking-divider {

    width: 100%;

    height: 1px;

    margin: 24px 0;

    background: #E4E4DF;
}


/* =========================================================
   20. BOOKING INFO
========================================================= */

.tour-booking-info {

    display: flex;

    flex-direction: column;

    gap: 13px;
}


.tour-booking-info > div {

    display: flex;

    align-items: flex-start;

    gap: 10px;

    color: #555555;

    font-size: 12px;

    line-height: 1.5;
}


.tour-booking-info-icon {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    width: 19px;

    height: 19px;

    min-width: 19px;

    flex: 0 0 19px;

    border-radius: 50%;

    background: #FFF1D5;

    color: var(--tour-gold-dark);

    font-size: 11px;

    font-weight: 800;
}


/* =========================================================
   21. TAXONOMY
========================================================= */

.tour-detail-taxonomy {

    margin-top: 22px;

    padding: 24px;

    border: 1px solid #DDDDD7;

    border-radius: var(--tour-radius-md);

    background: #F8F8F5;
}


/* GROUP */

.tour-taxonomy-group + .tour-taxonomy-group {

    margin-top: 22px;

    padding-top: 22px;

    border-top: 1px solid #E2E2DD;
}


/* LABEL */

.tour-taxonomy-label {

    display: block;

    margin-bottom: 11px;

    color: var(--tour-dark);

    font-size: 10px;

    line-height: 1.4;

    font-weight: 750;

    letter-spacing: 0.14em;
}


/* LIST */

.tour-category-list,
.tour-tag-list {

    display: flex;

    flex-wrap: wrap;

    gap: 7px;
}


/* LINKS */

.tour-category-list a,
.tour-tag-list a {

    display: inline-flex;

    align-items: center;

    min-height: 29px;

    padding: 5px 10px;

    border: 1px solid #DCDCD7;

    border-radius: 999px;

    background: #FFFFFF;

    color: #555555;

    font-size: 11px;

    line-height: 1.3;

    text-decoration: none;

    transition:
        color 0.25s ease,
        border-color 0.25s ease,
        background 0.25s ease;
}


.tour-category-list a:hover,
.tour-tag-list a:hover {

    border-color: rgba(233, 159, 36, 0.55);

    background: #FFF7E9;

    color: var(--tour-gold-dark);
}


/* =========================================================
   22. RELATED TOUR
========================================================= */

.tour-related {

    margin-top: 88px;

    padding-top: 58px;

    border-top: 1px solid var(--tour-border);
}


/* HEADING */

.tour-related-heading,
.tour-related-blog-heading {

    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 30px;

    margin-bottom: 30px;
}


.tour-related-heading h2,
.tour-related-blog-heading h2 {

    margin: 6px 0 0;

    color: var(--tour-dark);

    font-size: clamp(25px, 3vw, 34px);

    line-height: 1.2;

    letter-spacing: -0.02em;
}


/* SECTION EYEBROW */

.section-eyebrow {

    display: block;

    color: var(--tour-gold-dark);

    font-size: 10px;

    line-height: 1.4;

    font-weight: 750;

    letter-spacing: 0.16em;
}


/* ALL LINK */

.tour-related-all,
.tour-related-blog-all {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    flex: 0 0 auto;

    color: var(--tour-dark);

    font-size: 13px;

    font-weight: 650;

    text-decoration: none;

    transition:
        color 0.25s ease,
        gap 0.25s ease;
}


.tour-related-all:hover,
.tour-related-blog-all:hover {

    color: var(--tour-gold-dark);

    gap: 13px;
}


/* GRID */

.tour-related-grid {

    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 22px;
}


/* =========================================================
   23. RELATED TOUR CARD
========================================================= */

.tour-related-card {

    overflow: hidden;

    border: 1px solid var(--tour-border);

    border-radius: var(--tour-radius-md);

    background: #FFFFFF;

    box-shadow: var(--tour-shadow-sm);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}


.tour-related-card:hover {

    transform: translateY(-5px);

    border-color: rgba(233, 159, 36, 0.3);

    box-shadow: var(--tour-shadow-md);
}


/* IMAGE */

.tour-related-image {

    display: block;

    position: relative;

    width: 100%;

    height: 220px;

    overflow: hidden;

    background: #EEEEEE;
}


.tour-related-image img {

    display: block;

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition:
        transform 0.55s ease;
}


.tour-related-card:hover
.tour-related-image img {

    transform: scale(1.05);
}


/* CONTENT */

.tour-related-content {

    padding: 20px;
}


.tour-related-content h3 {

    margin: 0 0 10px;

    font-size: 18px;

    line-height: 1.35;

    font-weight: 700;
}


.tour-related-content h3 a {

    color: var(--tour-dark);

    text-decoration: none;

    transition:
        color 0.25s ease;
}


.tour-related-content h3 a:hover {

    color: var(--tour-gold-dark);
}


.tour-related-content p {

    margin: 0 0 17px;

    color: var(--tour-muted);

    font-size: 13px;

    line-height: 1.7;
}


/* LINK */

.tour-related-link {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    color: var(--tour-gold-dark);

    font-size: 12px;

    font-weight: 700;

    text-decoration: none;

    transition:
        gap 0.25s ease;
}


.tour-related-link:hover {

    gap: 12px;
}


/* =========================================================
   24. RELATED BLOG
========================================================= */

.tour-related-blog {

    margin-top: 82px;

    padding-top: 58px;

    border-top: 1px solid var(--tour-border);
}


.tour-related-blog-grid {

    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 22px;
}


/* BLOG CARD */

.tour-related-blog-card {

    overflow: hidden;

    border: 1px solid var(--tour-border);

    border-radius: var(--tour-radius-md);

    background: #FFFFFF;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}


.tour-related-blog-card:hover {

    transform: translateY(-5px);

    border-color: rgba(233, 159, 36, 0.3);

    box-shadow: var(--tour-shadow-md);
}


/* BLOG IMAGE */

.tour-related-blog-image {

    display: block;

    width: 100%;

    height: 210px;

    overflow: hidden;

    background: #EEEEEE;
}


.tour-related-blog-image img {

    display: block;

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition:
        transform 0.55s ease;
}


.tour-related-blog-card:hover
.tour-related-blog-image img {

    transform: scale(1.05);
}


/* BLOG CONTENT */

.tour-related-blog-content {

    padding: 20px;
}


.tour-related-blog-content h3 {

    margin: 0 0 10px;

    font-size: 18px;

    line-height: 1.35;

    font-weight: 700;
}


.tour-related-blog-content h3 a {

    color: var(--tour-dark);

    text-decoration: none;

    transition:
        color 0.25s ease;
}


.tour-related-blog-content h3 a:hover {

    color: var(--tour-gold-dark);
}


.tour-related-blog-content p {

    margin: 0 0 17px;

    color: var(--tour-muted);

    font-size: 13px;

    line-height: 1.7;
}


/* BLOG LINK */

.tour-related-blog-link {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    color: var(--tour-gold-dark);

    font-size: 12px;

    font-weight: 700;

    text-decoration: none;

    transition:
        gap 0.25s ease;
}


.tour-related-blog-link:hover {

    gap: 12px;
}


/* =========================================================
   25. FINAL CTA
========================================================= */

.tour-detail-cta {

    margin-top: 88px;

    margin-bottom: 40px;

    overflow: hidden;

    border-radius: var(--tour-radius-lg);

    background:
        linear-gradient(
            135deg,
            #222222 0%,
            #181818 100%
        );

    box-shadow: var(--tour-shadow-lg);
}


.tour-detail-cta-inner {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 50px;

    padding: 50px 55px;
}


.tour-detail-cta-content {

    max-width: 700px;
}


.tour-detail-cta-content .section-eyebrow {

    margin-bottom: 10px;
}


.tour-detail-cta-content h2 {

    margin: 0 0 14px;

    color: #FFFFFF;

    font-size: clamp(28px, 4vw, 44px);

    line-height: 1.15;

    letter-spacing: -0.025em;
}


.tour-detail-cta-content h2 em {

    color: var(--tour-gold-light);

    font-style: normal;
}


.tour-detail-cta-content p {

    max-width: 650px;

    margin: 0;

    color: rgba(255, 255, 255, 0.72);

    font-size: 14px;

    line-height: 1.75;
}


/* CTA BUTTON */

.tour-detail-cta-button {

    display: inline-flex;

    align-items: center;

    justify-content: space-between;

    gap: 22px;

    min-width: 220px;

    min-height: 58px;

    padding: 12px 18px 12px 22px;

    flex: 0 0 auto;

    border: 1px solid rgba(255, 255, 255, 0.15);

    border-radius: 999px;

    background: var(--tour-gold);

    color: #FFFFFF;

    text-decoration: none;

    font-size: 13px;

    font-weight: 700;

    transition:
        background 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}


.tour-detail-cta-button:hover {

    background: var(--tour-gold-dark);

    color: #FFFFFF;

    transform: translateY(-2px);

    box-shadow:
        0 10px 25px rgba(0, 0, 0, 0.2);
}


.tour-detail-cta-button strong {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    width: 34px;

    height: 34px;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.15);

    font-size: 18px;

    font-weight: 400;
}


/* =========================================================
   26. LARGE TABLET
========================================================= */

@media (max-width: 1100px) {

    .tour-detail-layout {

        grid-template-columns:
            minmax(0, 1fr)
            310px;

        gap: 38px;
    }


    .tour-detail-image {

        height: 500px;
    }


    .tour-detail-cta-inner {

        padding: 42px;
    }

}


/* =========================================================
   27. TABLET
========================================================= */

@media (max-width: 900px) {

    .tour-detail-page > .container {

        padding-left: 20px;

        padding-right: 20px;
    }


    .tour-detail-layout {

        grid-template-columns: 1fr;

        gap: 42px;
    }


    .tour-detail-sidebar {

        order: -1;
    }


    .tour-detail-booking {

        position: relative;

        top: auto;
    }


    .tour-detail-taxonomy {

        margin-top: 18px;
    }


    .tour-related-grid,
    .tour-related-blog-grid {

        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }


    .tour-detail-cta-inner {

        align-items: flex-start;

        flex-direction: column;

        gap: 28px;
    }


    .tour-detail-cta-button {

        min-width: 240px;
    }

}


/* =========================================================
   28. MOBILE
========================================================= */

@media (max-width: 640px) {

    .tour-detail-page > .container {

        padding-left: 16px;

        padding-right: 16px;
    }


    /* -----------------------------------------
       BREADCRUMB
    ----------------------------------------- */

    .tour-detail-breadcrumb {

        padding-top: 22px;

        padding-bottom: 16px;

        gap: 5px 7px;

        font-size: 11px;
    }


    .tour-detail-breadcrumb > span {

        font-size: 13px;
    }


    .tour-detail-breadcrumb strong {

        max-width: 100%;

        overflow: hidden;

        text-overflow: ellipsis;

        white-space: nowrap;
    }


    /* -----------------------------------------
       HEADER
    ----------------------------------------- */

    .tour-detail-header {

        padding-top: 8px;

        padding-bottom: 24px;
    }


    .tour-detail-eyebrow {

        margin-bottom: 9px;

        font-size: 9px;

        letter-spacing: 0.14em;
    }


    .tour-detail-header h1 {

        font-size: clamp(28px, 8vw, 38px);

        line-height: 1.12;
    }


    .tour-detail-header-meta {

        align-items: flex-start;

        flex-direction: column;

        gap: 9px;

        margin-top: 16px;
    }


    .tour-detail-location {

        font-size: 13px;
    }


    .tour-detail-badges {

        gap: 5px;
    }


    .tour-detail-badges span {

        min-height: 26px;

        padding: 4px 9px;

        font-size: 10px;
    }


    /* -----------------------------------------
       IMAGE
    ----------------------------------------- */

    .tour-detail-image {

        height: 330px;

        border-radius: 14px;
    }


    .tour-detail-image-caption {

        left: 20px;

        bottom: 20px;
    }


    .tour-detail-image-caption strong {

        font-size: 15px;
    }


    /* -----------------------------------------
       LAYOUT
    ----------------------------------------- */

    .tour-detail-layout {

        padding-top: 42px;

        gap: 38px;
    }


    /* -----------------------------------------
       DESCRIPTION
    ----------------------------------------- */

    .tour-detail-description {

        font-size: 15px;

        line-height: 1.8;
    }


    .tour-detail-description h2 {

        font-size: 24px;
    }


    .tour-detail-description h3 {

        font-size: 20px;
    }


    .tour-detail-description ul > li {

        padding-left: 26px;
    }


    .tour-detail-description ol > li {

        padding-left: 35px;
    }


    /* -----------------------------------------
       BOOKING
    ----------------------------------------- */

    .tour-detail-booking {

        padding: 22px;

        border-radius: 15px;
    }


    .tour-booking-price {

        font-size: 29px;
    }


    /* -----------------------------------------
       SECTION HEADING
    ----------------------------------------- */

    .tour-section-heading {

        margin-bottom: 22px;
    }


    .tour-section-heading h2 {

        font-size: 25px;
    }


    /* -----------------------------------------
       PRICE
    ----------------------------------------- */

    .tour-detail-prices {

        margin-top: 46px;

        padding-top: 36px;
    }


    .tour-price-item {

        align-items: flex-start;

        flex-direction: column;

        gap: 12px;

        min-height: auto;

        padding: 18px;
    }


    .tour-price-item strong {

        width: 100%;

        min-height: 44px;

        font-size: 19px;

        text-align: center;
    }


    /* -----------------------------------------
       FAQ
    ----------------------------------------- */

    .tour-detail-faq {

        margin-top: 46px;

        padding-top: 36px;
    }


    .tour-faq-question {

        align-items: center;

        gap: 12px;

        padding: 17px 0;

        font-size: 14px;

        line-height: 1.5;
    }


    .tour-faq-toggle {

        width: 30px;

        height: 30px;

        min-width: 30px;

        min-height: 30px;

        flex-basis: 30px;

        font-size: 18px;
    }


    .tour-faq-answer-inner {

        padding-right: 42px;

        padding-bottom: 18px;

        font-size: 13px;

        line-height: 1.75;
    }


    /* -----------------------------------------
       RELATED TOUR
    ----------------------------------------- */

    .tour-related {

        margin-top: 62px;

        padding-top: 42px;
    }


    .tour-related-heading,
    .tour-related-blog-heading {

        align-items: flex-start;

        flex-direction: column;

        gap: 15px;

        margin-bottom: 22px;
    }


    .tour-related-heading h2,
    .tour-related-blog-heading h2 {

        font-size: 25px;
    }


    .tour-related-all,
    .tour-related-blog-all {

        font-size: 12px;
    }


    .tour-related-grid,
    .tour-related-blog-grid {

        grid-template-columns: 1fr;

        gap: 18px;
    }


    .tour-related-image {

        height: 220px;
    }


    .tour-related-blog-image {

        height: 210px;
    }


    /* -----------------------------------------
       RELATED BLOG
    ----------------------------------------- */

    .tour-related-blog {

        margin-top: 62px;

        padding-top: 42px;
    }


    /* -----------------------------------------
       CTA
    ----------------------------------------- */

    .tour-detail-cta {

        margin-top: 62px;

        margin-bottom: 24px;

        border-radius: 15px;
    }


    .tour-detail-cta-inner {

        padding: 32px 22px;

        gap: 25px;
    }


    .tour-detail-cta-content h2 {

        font-size: 29px;
    }


    .tour-detail-cta-content p {

        font-size: 13px;

        line-height: 1.7;
    }


    .tour-detail-cta-button {

        width: 100%;

        min-width: 0;

        min-height: 54px;
    }

}


/* =========================================================
   29. SMALL MOBILE
========================================================= */

@media (max-width: 400px) {

    .tour-detail-header h1 {

        font-size: 27px;
    }


    .tour-detail-image {

        height: 285px;
    }


    .tour-detail-booking {

        padding: 19px;
    }


    .tour-booking-price {

        font-size: 26px;
    }


    .tour-detail-cta-inner {

        padding: 28px 18px;
    }


    .tour-detail-cta-content h2 {

        font-size: 26px;
    }

}


/* =========================================================
   30. ACCESSIBILITY
========================================================= */

.tour-detail-page a:focus-visible,
.tour-detail-page button:focus-visible {

    outline: 3px solid rgba(233, 159, 36, 0.35);

    outline-offset: 3px;
}


/* =========================================================
   31. REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .tour-detail-page *,
    .tour-detail-page *::before,
    .tour-detail-page *::after {

        scroll-behavior: auto !important;

        transition-duration: 0.01ms !important;

        animation-duration: 0.01ms !important;

        animation-iteration-count: 1 !important;
    }

}