/**
 * Safari Directory – Mosaic Template CSS (Redesign v2)
 * @package Safari_Directory
 */

@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800;900&family=Open+Sans:wght@300;400;500;600;700&display=swap");

/* The Queens – self-hosted variable font */

@font-face {
    font-family: "The Queens";
    src: url("../fonts/Queens_Variable.ttf") format("truetype");
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "The Queens";
    src: url("../fonts/Queens_Variable_Italic.ttf") format("truetype");
    font-weight: 100 900;
    font-style: italic;
    font-display: swap;
}


/* === Design Tokens === */

.sdr-template-mosaic {
    --vj-font-heading: "Playfair Display", Georgia, serif;
    --vj-font-body: "Open Sans", -apple-system, BlinkMacSystemFont, sans-serif;
    --vj-bg: transparent;
    --vj-bg-alt: transparent;
    --vj-text: #333333;
    --vj-text-muted: #777777;
    --vj-heading: #1a1a1a;
    --vj-accent: var(--sd-primary, #2c5b4b);
    --vj-accent-light: color-mix(in srgb, var(--sd-primary, #2c5b4b) 12%, transparent);
    --vj-border: #e8e5e0;
    --vj-dark: #2d2d2d;
    font-family: var(--vj-font-body);
    color: var(--vj-text);
    background: var(--vj-bg);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

.sdr-vj-kicker {
    margin: 0 0 0.5rem;
    font-family: var(--sd-body-font, var(--vj-font-body));
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--vj-text-muted);
}


/* ============================================================
   BREADCRUMBS
   ============================================================ */

.sdr-vj-breadcrumbs {
    padding: 20px 80px 0;
    font-size: 0.78rem;
    color: var(--vj-text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex-wrap: wrap;
}

.sdr-vj-breadcrumbs__link {
    color: var(--vj-text-muted);
    text-decoration: none;
}

.sdr-vj-breadcrumbs__link:hover {
    color: var(--vj-accent);
    text-decoration: underline;
}

.sdr-vj-breadcrumbs__sep {
    color: #ccc;
    font-size: 0.7rem;
}

.sdr-vj-breadcrumbs__current {
    color: var(--vj-heading);
    font-weight: 600;
}


/* ============================================================
   TITLE BLOCK
   ============================================================ */

.sdr-vj-title-block {
    padding: 32px 80px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.sdr-vj-title {
    font-family: "The Queens", var(--vj-font-heading);
    font-size: var(--sd-size-h2, clamp(2.4rem, 4vw, 3.6rem));
    font-weight: 400;
    color: var(--vj-heading);
    margin: 0 0 10px;
    line-height: 1.15;
}

.sdr-vj-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--vj-text-muted);
    font-weight: 500;
}

.sdr-vj-meta__dot {
    color: #ccc;
}


/* ============================================================
   HERO SLIDER – 760px height, px-80, white arrows, loop
   ============================================================ */

.sdr-vj-slider {
    position: relative;
    padding: 0 80px;
    margin-bottom: 48px;
}

.sdr-vj-slider__swiper {
    border-radius: 0;
    overflow: hidden;
    height: clamp(420px, 55vh, 760px);
}

.sdr-vj-slider__img {
    width: 100%;
    height: clamp(420px, 55vh, 760px);
    object-fit: cover;
    display: block;
}

.sdr-vj-slider--single .sdr-vj-slider__swiper,
.sdr-vj-slider--single .sdr-vj-slider__img {
    height: clamp(360px, 48vh, 620px);
}


/* Override Swiper's own button styles applied to custom prevEl/nextEl */

.sdr-vj-slider__arrow,
.sdr-vj-slider__arrow.swiper-button-prev,
.sdr-vj-slider__arrow.swiper-button-next,
.sdr-vj-slider__arrow.swiper-button-disabled {
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    z-index: 50 !important;
    width: 48px !important;
    height: 48px !important;
    border-radius: 50% !important;
    background: #ffffff !important;
    border: none !important;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12) !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #333 !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    transition: box-shadow 0.3s, transform 0.3s;
}


/* Hide Swiper's default ::after arrow characters */

.sdr-vj-slider__arrow::after,
.sdr-vj-slider__arrow.swiper-button-prev::after,
.sdr-vj-slider__arrow.swiper-button-next::after {
    display: none !important;
}

.sdr-vj-slider__arrow:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2) !important;
    transform: translateY(-50%) scale(1.05) !important;
}

.sdr-vj-slider__arrow--prev {
    left: 90px !important;
}

.sdr-vj-slider__arrow--next {
    right: 90px !important;
}


/* ============================================================
   TOUR OVERVIEW – Below hero slider
   ============================================================ */

.sdr-vj-tour-overview {
    padding: 48px 80px;
    margin-bottom: 0;
}

.sdr-vj-tour-overview__inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.sdr-vj-tour-overview__title {
    font-family: var(--sd-heading-font, "The Queens", var(--vj-font-heading));
    font-size: var(--sd-size-h3, clamp(1.5rem, 3vw, 2rem));
    font-weight: 400;
    color: var(--vj-heading);
    margin: 0 0 1.25rem;
    line-height: 1.15;
}

.sdr-vj-tour-overview__more {
    margin-top: 1rem;
    padding: 0;
    border: 0;
    background: none;
    font-family: var(--sd-body-font, var(--vj-font-body));
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--vj-accent);
    text-decoration: underline;
    cursor: pointer;
}

.sdr-vj-tour-overview__more:hover {
    color: var(--sd-secondary, var(--vj-accent));
}

.sdr-vj-tour-overview__text {
    font-family: var(--vj-font-body);
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--vj-dark);
}

.sdr-vj-tour-overview__text p {
    margin: 0 0 16px;
}

.sdr-vj-tour-overview__text p:last-child {
    margin-bottom: 0;
}


/* ============================================================
   DESTINATIONS STRIP
   ============================================================ */

.sdr-vj-destinations {
    padding: 0 80px 56px;
}

.sdr-vj-destinations .sdr-vj-section-title {
    text-align: center;
    margin-bottom: 28px;
}

.sdr-vj-destinations__grid--compact {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    max-width: 960px;
    margin: 0 auto;
}

.sdr-vj-section-title {
    font-family: "The Queens", var(--vj-font-heading);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--vj-heading);
    margin: 0 0 24px;
}

.sdr-vj-destinations__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
}


/* Carousel wrapper for > 4 parks */

.sdr-vj-destinations__carousel {
    position: relative;
    padding: 0 48px;
}

.sdr-vj-destinations__swiper {
    overflow: hidden;
}

.sdr-vj-destinations__carousel .swiper-slide {
    height: auto;
}

.sdr-vj-destinations__carousel .sdr-vj-dest-card {
    height: 100%;
}

.sdr-vj-destinations__arrow,
.sdr-vj-destinations__arrow.swiper-button-prev,
.sdr-vj-destinations__arrow.swiper-button-next,
.sdr-vj-destinations__arrow.swiper-button-disabled {
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    z-index: 10 !important;
    width: 36px !important;
    height: 36px !important;
    border-radius: 50% !important;
    background: #fff !important;
    border: 1px solid var(--vj-border) !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08) !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #333 !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    transition: box-shadow 0.3s;
}

.sdr-vj-destinations__arrow::after {
    display: none !important;
}

.sdr-vj-destinations__arrow:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15) !important;
}

.sdr-vj-destinations__arrow--prev {
    left: 0 !important;
}

.sdr-vj-destinations__arrow--next {
    right: 0 !important;
}

.sdr-vj-dest-card {
    display: flex;
    align-items: stretch;
    height: 100px;
    border: 1px solid var(--vj-border);
    border-radius: 8px;
    overflow: hidden;
    background: var(--vj-bg);
    transition: box-shadow 0.3s;
}

.sdr-vj-dest-card:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.sdr-vj-dest-card__info {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 4px 12px;
    gap: 2px;
}

.sdr-vj-dest-card__day {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--vj-accent);
    white-space: nowrap;
    margin-bottom: 2px;
}

.sdr-vj-dest-card__name {
    font-family: var(--vj-font-body);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--vj-heading);
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sdr-vj-dest-card__photo {
    flex: 0 0 100px;
    width: 100px;
    height: 100px;
    display: flex;
    align-self: stretch;
}

.sdr-vj-dest-card__img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    display: block;
}

.sdr-vj-dest-card__placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--vj-accent-light), #c8d8cf);
}


/* ============================================================
   HIGHLIGHTS – Full-width beige, two-column numbered list
   ============================================================ */

.sdr-vj-highlights {
    background: transparent;
    padding: 48px 80px 56px;
    margin-bottom: 0;
}

.sdr-vj-highlights .sdr-vj-section-title {
    text-align: center;
    margin-bottom: 32px;
    padding: 0;
}

.sdr-vj-highlights__note {
    text-align: center;
    margin: -16px auto 28px;
    max-width: 520px;
    font-size: 0.92rem;
    color: var(--vj-text-muted);
}

.sdr-vj-highlights__list {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 900px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 24px;
}

.sdr-vj-highlights__item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border: 1px solid var(--vj-border);
    border-radius: 0;
    font-size: 0.92rem;
    color: var(--vj-text);
    margin-bottom: 12px;
    background: transparent;
}

.sdr-vj-highlights__check {
    color: var(--vj-accent);
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid #ede5d8;
    background: #f9f5ef;
    margin-right: 8px;
}


/* ============================================================
   NATIONAL PARKS CAROUSEL – Zigzag format
   ============================================================ */

.sdr-vj-parks {
    padding: 0 80px 56px;
}

.sdr-vj-parks__wrap {
    position: relative;
}

.sdr-vj-park-slide {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 220px;
    transition: transform 0.3s;
}


/* Zigzag: odd slides offset down */

.sdr-vj-park-slide--offset {
    transform: translateY(32px);
}

.sdr-vj-park-slide:hover {
    transform: translateY(-4px);
}

.sdr-vj-park-slide--offset:hover {
    transform: translateY(28px);
}

.sdr-vj-park-slide__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.sdr-vj-park-slide__placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #d4e2d6, #a8c4ad);
}

.sdr-vj-park-slide__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.5) 100%);
}

.sdr-vj-park-slide__name {
    position: absolute;
    bottom: 12px;
    left: 14px;
    right: 14px;
    color: #fff;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.sdr-vj-parks__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #fff;
    border: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
}

.sdr-vj-parks__arrow--prev {
    left: -18px;
}

.sdr-vj-parks__arrow--next {
    right: -18px;
}


/* ============================================================
   CTA BANNER – Dark gray, single row
   ============================================================ */

.sdr-vj-cta-banner {
    background: #323e3b;
    padding: 0 80px;
    margin-bottom: 56px;
}

.sdr-vj-cta-banner__inner {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 28px 0;
    flex-wrap: wrap;
}

.sdr-vj-cta-banner__text {
    flex: 1;
    color: #fff;
    font-size: 0.95rem;
    line-height: 1.5;
}

.sdr-vj-cta-banner__text strong {
    display: inline;
    font-size: 1.05rem;
}

.sdr-vj-cta-banner__contact {
    flex-shrink: 0;
}

.sdr-vj-cta-banner__phone {
    color: #fff;
    font-family: var(--sd-body-font, var(--vj-font-body));
    font-size: 1rem;
    font-weight: 600;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.sdr-vj-cta-banner__btn {
    display: inline-block;
    background: var(--sd-secondary, #c8860a);
    color: #fff;
    font-family: var(--sd-body-font, var(--vj-font-body));
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border: none;
    border-radius: 0;
    padding: 0.85em 1.75em;
    margin-top: 0;
    box-shadow: none;
    transition: background 0.2s, opacity 0.2s;
    cursor: pointer;
    text-decoration: none;
}

.sdr-vj-cta-banner__btn:hover {
    background: color-mix(in srgb, var(--sd-secondary, #c8860a) 85%, #000);
    color: #fff;
}


/* ============================================================
   ITINERARY SECTION – Two-column layout
   ============================================================ */

.sdr-vj-itinerary-section {
    padding: 0 80px 56px;
}

.sdr-vj-itinerary-section__header {
    margin-bottom: 40px;
}

.sdr-vj-heading-bold {
    font-family: "The Queens", var(--vj-font-heading);
    font-size: var(--sd-size-h3, clamp(1.8rem, 3vw, 2.4rem));
    font-weight: 800;
    color: var(--vj-heading);
    margin: 0 0 12px;
}

.sdr-vj-itinerary-section__intro {
    font-size: 1rem;
    color: var(--vj-text-muted);
    max-width: 700px;
    margin: 0;
    line-height: 1.75;
}


/* ============================================================
   ITINERARY SECTION – Two Columns with Vertical Timeline
   ============================================================ */

.sdr-vj-itinerary-layout {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.sdr-vj-itinerary-layout__main {
    flex: 0 0 75%;
    max-width: 75%;
    position: relative;
}

.sdr-vj-itinerary-timeline {
    position: absolute;
    left: 24px;
    top: 0;
    bottom: 0;
    width: 0;
    border-left: 2px dashed var(--sd-secondary, #c8860a);
    z-index: 0;
}

.sdr-vj-day {
    display: flex;
    gap: 32px;
    position: relative;
    margin-bottom: 48px;
}

.sdr-vj-day__timeline-marker {
    position: absolute;
    left: 15px;
    top: 32px;
    width: 18px;
    height: 18px;
    background: #fff;
    border: 3px solid var(--sd-primary, var(--vj-accent));
    border-radius: 50%;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(179, 157, 221, 0.08);
}

.sdr-vj-day__content {
    flex: 1 1 auto;
    min-width: 0;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    padding: 32px 32px 24px 72px;
    position: relative;
    z-index: 1;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.sdr-vj-day__contacts {
    flex: 0 0 220px;
    max-width: 220px;
    background: transparent;
    border-radius: 10px;
    padding: 24px 18px;
    margin-left: 12px;
    box-shadow: 0 1px 6px rgba(44, 91, 75, 0.04);
    font-size: 0.98rem;
    color: var(--vj-text);
}

.sdr-vj-itinerary-layout__sidebar {
    flex: 0 0 25%;
    max-width: 25%;
    position: relative;
    align-self: stretch;
    z-index: 10;
}

.sdr-vj-itinerary-map-wrap {
    position: relative;
    height: 100%;
    min-height: 300px;
}

.sdr-vj-itinerary-map {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(44, 91, 75, 0.06);
}

.sdr-vj-itinerary-map-inner {
    width: 100%;
}


/* Leaflet interactive map overrides */

.sdr-vj-itinerary-map--leaflet {
    box-shadow: 0 2px 12px rgba(44, 91, 75, 0.06);
    overflow: hidden;
    z-index: 5;
}

.sdr-vj-itinerary-map--leaflet .leaflet-control-attribution {
    font-size: 10px;
}


/* Custom numbered map markers */

.sdr-map-marker {
    background: none !important;
    border: none !important;
}

.sdr-map-marker__pin {
    width: 30px;
    height: 30px;
    border-radius: 50% 50% 50% 0;
    background: var(--vj-accent, #2c5b4b);
    color: #fff;
    font-family: var(--sd-body-font, "Open Sans", sans-serif);
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(-45deg);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.sdr-map-marker__pin>* {
    transform: rotate(45deg);
}

@media (max-width: 900px) {
    .sdr-vj-itinerary-layout {
        flex-direction: column;
        gap: 0;
    }
    .sdr-vj-itinerary-layout__main,
    .sdr-vj-itinerary-layout__sidebar {
        max-width: 100%;
        flex: 1 1 100%;
    }
    .sdr-vj-day {
        flex-direction: column;
        gap: 18px;
    }
    .sdr-vj-day__contacts {
        max-width: 100%;
        margin-left: 0;
        margin-top: 12px;
    }
}


/* ============================================================
   DAY CARD
   ============================================================ */

.sdr-vj-day {
    background: transparent;
    border: none;
    border-radius: 0;
    overflow: visible;
}

.sdr-vj-day__img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
}

.sdr-vj-day__header {
    padding: 24px 28px 0;
}

.sdr-vj-day__label {
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--vj-accent);
    display: block;
    margin-bottom: 4px;
}

.sdr-vj-day__title {
    font-family: "The Queens", var(--vj-font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--vj-heading);
    margin: 0 0 6px;
    line-height: 1.3;
}

.sdr-vj-day__location {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.82rem;
    color: var(--vj-text-muted);
}

.sdr-vj-day__desc {
    padding: 14px 28px 0;
    font-size: 0.92rem;
    line-height: 1.8;
    color: var(--vj-text);
    overflow-wrap: break-word;
    word-wrap: break-word;
    word-break: break-word;
}

.sdr-vj-day__desc p {
    margin: 0 0 0.8rem;
}

.sdr-vj-day__readmore {
    display: inline-block;
    background: none;
    border: none;
    color: var(--vj-accent);
    font-family: var(--vj-font-body);
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    padding: 6px 0;
    margin-top: 4px;
    transition: color 0.2s;
}

.sdr-vj-day__readmore:hover {
    color: #1f4639;
    text-decoration: underline;
}


/* DayDetails shared component override inside day */

.sdr-vj-day .sdr-day-details {
    padding: 10px 20px;
}

.sdr-template-mosaic .sdr-day-details__meals {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: center;
}

.sdr-template-mosaic .sdr-day-details__meals .sdr-meal-badge {
    font-size: 0.72rem;
    padding: 3px 10px;
}

.sdr-template-mosaic .sdr-day-details__meals::before {
    content: "Meals & Drinks:";
    font-weight: 700;
    font-size: 0.78rem;
    color: var(--vj-heading);
    margin-right: 6px;
    white-space: nowrap;
}


/* Accommodation section title – Open Sans uppercase */

.sdr-template-mosaic .sdr-accommodations .sdr-section__title {
    font-family: var(--sd-body-font, "Open Sans", sans-serif) !important;
    text-transform: uppercase;
}


/* Hide accommodation tier cards – we show our own */

.sdr-template-mosaic .sdr-day-details__accom-tiers,
.sdr-template-mosaic .sdr-accom-card {
    display: none !important;
}


/* ---- Accommodation mini-card ---- */

.sdr-vj-day__accom {
    padding: 20px 28px 24px;
    border-top: 1px solid var(--vj-border);
    margin-top: 16px;
}

.sdr-vj-day__accom-label {
    display: block;
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--vj-text-muted);
    font-weight: 600;
    margin-bottom: 10px;
}

.sdr-vj-day__accom-card {
    display: flex;
    gap: 14px;
    align-items: center;
    cursor: pointer;
    padding: 10px;
    margin: -10px;
    border-radius: 6px;
    transition: background 0.3s;
}

.sdr-vj-day__accom-card:hover {
    background: var(--vj-bg-alt);
}

.sdr-vj-day__accom-img {
    width: 64px;
    height: 64px;
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0;
}

.sdr-vj-day__accom-name {
    font-family: "The Queens", var(--vj-font-heading);
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 2px;
    color: var(--vj-heading);
}

.sdr-vj-day__accom-type {
    font-size: 0.78rem;
    color: var(--vj-text-muted);
}


/* ============================================================
   SIDEBAR
   ============================================================ */

.sdr-vj-sidebar__card {
    background: transparent;
    border: 1px solid var(--vj-border);
    border-radius: 0;
    padding: 24px;
    margin-bottom: 20px;
}

.sdr-vj-sidebar__heading {
    font-family: "The Queens", var(--vj-font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--vj-heading);
    margin: 0 0 16px;
}

.sdr-vj-sidebar__facts {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sdr-vj-sidebar__facts li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--vj-border);
    font-size: 0.85rem;
}

.sdr-vj-sidebar__facts li:last-child {
    border-bottom: none;
}

.sdr-vj-sidebar__fact-label {
    font-weight: 600;
    color: var(--vj-text);
}

.sdr-vj-sidebar__fact-value {
    color: var(--vj-text-muted);
    text-align: right;
}


/* ============================================================
   INCLUSIONS / EXCLUSIONS – Modern redesign
   ============================================================ */

.sdr-vj-incl-section {
    padding: 64px 80px;
    background: #faf8f5;
}

.sdr-vj-incl-section__header {
    text-align: center;
    margin-bottom: 48px;
}

.sdr-vj-incl-section__subtitle {
    font-family: var(--vj-font-body);
    font-size: 1.05rem;
    color: var(--vj-text-muted);
    margin: 8px 0 0;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}


/* Desktop grid */

.sdr-vj-incl__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}


/* Mobile tabs - hidden on desktop */

.sdr-vj-incl__tabs {
    display: none;
}

.sdr-vj-incl__tab-content {
    display: none;
}


/* Cards */

.sdr-vj-incl__card {
    background: transparent;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e8e5e0;
    transition: box-shadow 0.3s;
}

.sdr-vj-incl__card:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}


/* Card header */

.sdr-vj-incl__card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 28px;
    border-bottom: 1px solid #f0ede8;
}

.sdr-vj-incl__card-header--yes {
    background: linear-gradient(135deg, #f0faf4 0%, #e8f5ec 100%);
}

.sdr-vj-incl__card-header--no {
    background: linear-gradient(135deg, #fef5f3 0%, #fdecea 100%);
}

.sdr-vj-incl__card-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 700;
    flex-shrink: 0;
}

.sdr-vj-incl__card-icon--yes {
    background: var(--vj-accent);
    color: #fff;
}

.sdr-vj-incl__card-icon--no {
    background: #e74c3c;
    color: #fff;
}

.sdr-vj-incl__card-title {
    font-family: var(--vj-font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--vj-heading);
    margin: 0;
    flex: 1;
}

.sdr-vj-incl__card-count {
    font-family: var(--vj-font-body);
    font-size: 0.82rem;
    color: var(--vj-text-muted);
    background: rgba(0, 0, 0, 0.04);
    padding: 4px 12px;
    border-radius: 20px;
    white-space: nowrap;
}


/* List items */

.sdr-vj-incl__list {
    list-style: none;
    padding: 8px 0;
    margin: 0;
}

.sdr-vj-incl__item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 28px;
    transition: background 0.15s;
}

.sdr-vj-incl__item:hover {
    background: rgba(0, 0, 0, 0.015);
}

.sdr-vj-incl__item+.sdr-vj-incl__item {
    border-top: 1px solid #f5f3ef;
}

.sdr-vj-incl__icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
}

.sdr-vj-incl__icon--yes {
    background: rgba(44, 91, 75, 0.1);
    color: var(--vj-accent);
}

.sdr-vj-incl__icon--no {
    background: rgba(231, 76, 60, 0.08);
    color: #e74c3c;
}

.sdr-vj-incl__text {
    font-family: var(--vj-font-body);
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--vj-text);
}


/* Responsive: mobile tabs */

@media (max-width: 768px) {
    .sdr-vj-incl-section {
        padding: 40px 24px;
    }
    .sdr-vj-incl__grid {
        display: none;
    }
    .sdr-vj-incl__tabs {
        display: flex;
        gap: 8px;
        margin-bottom: 24px;
        justify-content: center;
    }
    .sdr-vj-incl__tab {
        padding: 10px 24px;
        border: 1px solid #e8e5e0;
        border-radius: 24px;
        background: #fff;
        font-family: var(--vj-font-body);
        font-size: 0.88rem;
        font-weight: 600;
        color: var(--vj-text-muted);
        cursor: pointer;
        transition: all 0.2s;
    }
    .sdr-vj-incl__tab--active {
        background: var(--vj-accent);
        color: #fff;
        border-color: var(--vj-accent);
    }
    .sdr-vj-incl__tab-content {
        display: block;
        background: transparent;
        border-radius: 16px;
        border: 1px solid #e8e5e0;
        overflow: hidden;
    }
    .sdr-vj-incl__item {
        padding: 12px 20px;
    }
}


/* ============================================================
   DAY SCROLL BAR – Fixed bottom bar (boxed, floating)
   ============================================================ */

.sdr-vj-day-bar {
    position: fixed;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    width: calc(100% - 48px);
    max-width: 900px;
    background: rgba(45, 45, 45, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 0;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.22), 0 0 0 1px rgba(255, 255, 255, 0.06);
    animation: sdr-slide-up 0.3s ease-out;
}

@keyframes sdr-slide-up {
    from {
        transform: translateX(-50%) translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
}

.sdr-vj-day-bar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    gap: 16px;
}


/* Hamburger menu button */

.sdr-vj-day-bar__menu-btn {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    cursor: pointer;
    padding: 0;
    transition: background 0.2s;
}

.sdr-vj-day-bar__menu-btn:hover,
.sdr-vj-day-bar__menu-btn--active {
    background: rgba(255, 255, 255, 0.16);
}

.sdr-vj-day-bar__menu-icon {
    display: block;
    width: 16px;
    height: 2px;
    background: #fff;
    border-radius: 1px;
    transition: transform 0.2s, opacity 0.2s;
}

.sdr-vj-day-bar__info {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
    flex: 1 1 auto;
}

.sdr-vj-day-bar__label {
    font-family: var(--sd-body-font, "Open Sans", sans-serif);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #f4a261;
    white-space: nowrap;
}

.sdr-vj-day-bar__separator {
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.9rem;
}

.sdr-vj-day-bar__title {
    font-family: var(--sd-body-font, "Open Sans", sans-serif);
    font-size: 1.1rem;
    font-weight: 400;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sdr-vj-day-bar__btn {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    padding: 10px 28px;
    font-family: var(--sd-body-font, "Open Sans", sans-serif);
    font-size: 0.92rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #fff;
    background: var(--sd-secondary, #c8860a);
    border: none;
    border-radius: 0;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
}

.sdr-vj-day-bar__btn:hover {
    background: color-mix(in srgb, var(--sd-secondary, #c8860a) 85%, #000);
    transform: translateY(-1px);
    color: #fff;
}


/* Days dropdown menu */

.sdr-vj-day-bar__dropdown {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 12px 12px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    max-height: 280px;
    overflow-y: auto;
    animation: sdr-menu-fade 0.2s ease-out;
}

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

.sdr-vj-day-bar__dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    background: transparent;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    text-align: left;
    transition: background 0.15s;
    width: 100%;
}

.sdr-vj-day-bar__dropdown-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

.sdr-vj-day-bar__dropdown-item--active {
    background: rgba(244, 162, 97, 0.15);
}

.sdr-vj-day-bar__dropdown-day {
    font-family: var(--sd-body-font, "Open Sans", sans-serif);
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #f4a261;
    white-space: nowrap;
    min-width: 50px;
}

.sdr-vj-day-bar__dropdown-title {
    font-family: var(--sd-body-font, "Open Sans", sans-serif);
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}


/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1024px) {
    .sdr-vj-breadcrumbs,
    .sdr-vj-title-block,
    .sdr-vj-slider,
    .sdr-vj-destinations,
    .sdr-vj-parks,
    .sdr-vj-cta-banner,
    .sdr-vj-itinerary-section {
        padding-left: 32px;
        padding-right: 32px;
    }
    .sdr-vj-highlights {
        padding: 48px 32px;
    }
    .sdr-vj-highlights .sdr-vj-section-title,
    .sdr-vj-highlights__list {
        padding-left: 32px;
        padding-right: 32px;
    }
    .sdr-vj-slider__arrow--prev {
        left: 42px !important;
    }
    .sdr-vj-slider__arrow--next {
        right: 42px !important;
    }
    /* Stack the two-column itinerary layout into a single column */
    .sdr-vj-itinerary-layout {
        flex-direction: column;
        gap: 32px;
    }
    .sdr-vj-itinerary-layout__main {
        flex: 1 1 100%;
        max-width: 100%;
    }
    .sdr-vj-itinerary-layout__sidebar {
        position: static;
        flex: 1 1 100%;
        max-width: 100%;
    }
    /* Give the map a sensible fixed height on tablet */
    .sdr-vj-itinerary-map-wrap {
        min-height: 420px;
    }
    .sdr-vj-itinerary-map--leaflet {
        height: 420px !important;
    }
}

@media (max-width: 768px) {
    .sdr-vj-breadcrumbs,
    .sdr-vj-title-block,
    .sdr-vj-slider,
    .sdr-vj-destinations,
    .sdr-vj-parks,
    .sdr-vj-cta-banner,
    .sdr-vj-itinerary-section {
        padding-left: 16px;
        padding-right: 16px;
    }
    .sdr-vj-highlights .sdr-vj-section-title,
    .sdr-vj-highlights__list {
        padding-left: 16px;
        padding-right: 16px;
    }
    .sdr-vj-title {
        font-size: 2rem;
    }
    .sdr-vj-highlights__list {
        grid-template-columns: 1fr;
    }
    .sdr-vj-slider__arrow {
        width: 36px !important;
        height: 36px !important;
    }
    .sdr-vj-slider__arrow--prev {
        left: 24px !important;
    }
    .sdr-vj-slider__arrow--next {
        right: 24px !important;
    }
    .sdr-vj-destinations__grid {
        grid-template-columns: 1fr;
    }
    .sdr-vj-park-slide {
        height: 160px;
    }
    .sdr-vj-park-slide--offset {
        transform: translateY(20px);
    }
    .sdr-vj-park-slide--offset:hover {
        transform: translateY(16px);
    }
    .sdr-vj-cta-banner__inner {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    .sdr-vj-day__img {
        height: 220px;
    }
    .sdr-vj-day__header,
    .sdr-vj-day__desc,
    .sdr-vj-day .sdr-day-details,
    .sdr-vj-day__accom {
        padding-left: 16px;
        padding-right: 16px;
    }
    /* Reduce timeline left-padding further on phone screens */
    .sdr-vj-day__content {
        padding: 16px 12px 16px 40px;
    }
    /* Map fills full width on mobile */
    .sdr-vj-itinerary-map-wrap {
        min-height: 360px;
    }
    .sdr-vj-itinerary-map--leaflet {
        height: 360px !important;
    }
}

.sdr-vj-cta-banner {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.sdr-vj-cta-banner__title {
    display: block;
    font-family: var(--sd-heading-font, "The Queens", Georgia, serif);
    font-size: 2.2rem;
    font-weight: 700;
    color: #fffde7;
    margin-bottom: 0.5rem;
    line-height: 1.1;
}

.sdr-vj-cta-banner__subtitle {
    display: block;
    font-family: var(--vj-font-body);
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.3;
}

.sdr-vj-day__row {
    display: flex;
    gap: 32px;
    margin-bottom: 32px;
}

.sdr-vj-day__col {
    flex: 1 1 0;
}

.sdr-vj-day__col--label {
    max-width: 220px;
    flex: 0 0 220px;
}

.sdr-vj-day__col--desc {
    flex: 1 1 0;
    min-width: 0;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.sdr-vj-day__img-full {
    width: 100%;
    height: 400px !important;
    max-height: 400px;
    min-height: 400px;
    object-fit: cover;
    border-radius: 0;
    margin-bottom: 32px;
    box-shadow: 0 2px 12px rgba(44, 91, 75, 0.06);
}

.sdr-vj-day__accom-carousel {
    margin-bottom: 32px;
}

.sdr-vj-day__accom-cards {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    padding-bottom: 8px;
}

.sdr-vj-day__accom-heading {
    font-family: var(--vj-font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--vj-heading);
    margin: 0 0 14px;
}

.sdr-vj-day__accom-card-portrait {
    background: transparent;
    border-radius: 10px;
    border: 1px solid var(--vj-border);
    box-shadow: 0 2px 8px rgba(44, 91, 75, 0.06);
    width: 180px;
    min-width: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 16px 12px 12px;
    text-align: center;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.sdr-vj-day__accom-card-portrait:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(44, 91, 75, 0.14);
}

.sdr-vj-day__accom-img-portrait {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 10px;
}

.sdr-vj-day__accom-park {
    font-size: 0.85rem;
    color: var(--vj-text-muted);
    margin-bottom: 2px;
}

.sdr-vj-day__accom-name {
    font-family: "The Queens", var(--vj-font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--vj-heading);
}

.sdr-vj-day__activities {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    padding-top: 24px;
    margin-top: 24px;
    margin-bottom: 32px;
}

.sdr-vj-day__activity-card {
    background: transparent;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(44, 91, 75, 0.06);
    min-width: 320px;
    display: flex;
    align-items: center;
    padding: 14px 18px;
    gap: 18px;
}

.sdr-vj-day__activity-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
}

.sdr-vj-day__activity-info {
    flex: 1 1 0;
}

.sdr-vj-day__activity-name {
    font-family: "The Queens", var(--vj-font-heading);
    font-size: 1.08rem;
    font-weight: 600;
    color: var(--vj-heading);
    margin-bottom: 4px;
}

.sdr-vj-day__activity-desc {
    font-size: 0.95rem;
    color: var(--vj-text);
}

@media (max-width: 900px) {
    .sdr-vj-day__row {
        flex-direction: column;
        gap: 12px;
    }
    .sdr-vj-day__col--label {
        max-width: 100%;
        flex: 0 0 auto;
    }
    /* CRITICAL: prevent description column from collapsing to 0 height
       when the row switches to column direction */
    .sdr-vj-day__col--desc {
        flex: 1 1 auto;
        max-width: 100%;
    }
    .sdr-vj-day__content {
        padding: 16px 12px 16px 48px;
    }
    .sdr-vj-day__img-full {
        height: 200px;
    }
    .sdr-vj-day__accom-card-portrait {
        width: 140px;
        min-width: 140px;
    }
    .sdr-vj-day__activity-card {
        min-width: 220px;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    .sdr-vj-day__activity-img {
        width: 60px;
        height: 60px;
    }
    .sdr-vj-day-bar__inner {
        padding: 10px 14px;
        gap: 10px;
    }
    .sdr-vj-day-bar__title {
        font-size: 0.9rem;
    }
    .sdr-vj-day-bar__btn {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
    .sdr-vj-day-bar {
        width: calc(100% - 24px);
        bottom: 12px;
    }
    .sdr-vj-day-bar__menu-btn {
        width: 32px;
        height: 32px;
    }
}


/* ============================================================
   SVG & EMOJI SIZE CONSTRAINTS – Prevent icon bloat on deploy
   ============================================================ */

.sdr-template-mosaic .sd-icon {
    width: auto;
    height: auto;
    max-width: 1.2em;
    max-height: 1.2em;
    flex-shrink: 0;
    vertical-align: middle;
}

.sdr-template-mosaic svg.sd-icon {
    display: inline-block;
    overflow: visible;
}


/* Constrain all SVGs inside the mosaic template */

.sdr-template-mosaic svg {
    max-width: 100%;
    height: auto;
}


/* CTA banner – phone icon sizing */

.sdr-vj-cta-banner__phone {
    font-size: 1rem;
}


/* Meal badge emoji sizing */

.sdr-template-mosaic .sdr-meal-badge {
    font-size: 0.75rem !important;
    line-height: 1.4;
}

.sdr-template-mosaic .sdr-meal-badge svg,
.sdr-template-mosaic .sdr-day-details svg.sd-icon {
    width: 14px !important;
    height: 14px !important;
    max-width: 14px;
    max-height: 14px;
}


/* Inclusions icons */

.sdr-template-mosaic .sdr-vj-incl__icon {
    font-size: 0.85rem;
    width: 20px;
    height: 20px;
    min-width: 20px;
    min-height: 20px;
    max-width: 20px;
    max-height: 20px;
    line-height: 20px;
}

.sdr-template-mosaic .sdr-vj-incl__card-icon {
    font-size: 1rem;
    width: 28px;
    height: 28px;
    min-width: 28px;
    min-height: 28px;
    max-width: 28px;
    max-height: 28px;
    line-height: 28px;
}


/* Day details label icons */

.sdr-template-mosaic .sdr-day-details__label .sd-icon {
    width: 14px !important;
    height: 14px !important;
}


/* Activity/park pill icons */

.sdr-template-mosaic .sdr-pill {
    font-size: 0.72rem;
    line-height: 1.3;
}


/* Day bar menu icon constraint */

.sdr-vj-day-bar__menu-icon {
    width: 18px;
    height: 2px;
    max-width: 18px;
    max-height: 2px;
}


/* Navigation arrow icons */

.sdr-template-mosaic .sdr-hero__nav-btn svg,
.sdr-template-mosaic .sdr-dest-strip__nav svg,
.sdr-template-mosaic .sdr-vj-parks-carousel__nav svg {
    width: 20px !important;
    height: 20px !important;
}


/* Map pin icon in day location */

.sdr-template-mosaic .sdr-vj-day__location .sd-icon {
    width: 14px !important;
    height: 14px !important;
}


/* ============================================================
   TRIP FACTS STRIP
   ============================================================ */

.sdr-vj-trip-facts {
    padding: 0 80px 40px;
}

.sdr-vj-trip-facts__inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0;
    max-width: 960px;
    margin: 0 auto;
    border: 1px solid var(--vj-border);
    border-radius: 0;
}

.sdr-vj-trip-facts__item {
    flex: 1 1 140px;
    min-width: 140px;
    padding: 16px 20px;
    text-align: center;
    border-right: 1px solid var(--vj-border);
}

.sdr-vj-trip-facts__item:last-child {
    border-right: 0;
}

.sdr-vj-trip-facts__label {
    display: block;
    font-family: var(--sd-body-font, var(--vj-font-body));
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--vj-text-muted);
    margin-bottom: 4px;
}

.sdr-vj-trip-facts__value {
    display: block;
    font-family: var(--sd-body-font, var(--vj-font-body));
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--vj-heading);
    line-height: 1.35;
}


/* ============================================================
   ITINERARY DAY JUMP NAV
   ============================================================ */

.sdr-vj-itin-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 36px;
}

.sdr-vj-itin-nav__btn {
    flex: 1 1 180px;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 14px 16px;
    border: 1px solid var(--vj-border);
    border-radius: 0;
    background: #fff;
    cursor: pointer;
    text-align: left;
    transition: border-color 0.2s, background 0.2s;
}

.sdr-vj-itin-nav__btn:hover,
.sdr-vj-itin-nav__btn--active {
    border-color: var(--sd-primary, var(--vj-accent));
    background: var(--vj-accent-light);
}

.sdr-vj-itin-nav__num {
    font-family: var(--sd-body-font, var(--vj-font-body));
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--vj-text-muted);
}

.sdr-vj-itin-nav__label {
    font-family: var(--sd-heading-font, var(--vj-font-heading));
    font-size: 0.95rem;
    line-height: 1.3;
    color: var(--vj-heading);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}


/* ============================================================
   RELATED TOURS
   ============================================================ */

.sdr-vj-related {
    padding: 56px clamp(20px, 3vw, 48px) 72px;
}

.sdr-vj-related__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    text-align: center;
    margin: 0 auto 32px;
    max-width: 1400px;
}

.sdr-vj-related__header .sdr-vj-kicker {
    margin: 0;
}

.sdr-vj-related__header .sdr-vj-heading-bold {
    margin: 0;
}

.sdr-vj-related__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
}

.sdr-vj-related__grid--compact {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.sdr-vj-related-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    color: inherit;
    border: 1px solid var(--vj-border);
    border-radius: 0;
    overflow: hidden;
    transition: box-shadow 0.2s, transform 0.2s;
}

.sdr-vj-related-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.sdr-vj-related-card__media {
    position: relative;
    flex-shrink: 0;
    width: 100%;
    height: 260px;
    background: var(--vj-border);
    overflow: hidden;
}

.sdr-vj-related-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}

.sdr-vj-related-card__placeholder {
    width: 100%;
    height: 100%;
    min-height: 260px;
    background: linear-gradient(135deg, var(--vj-accent-light), var(--vj-border));
}

.sdr-vj-related-card__badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 4px 10px;
    background: rgba(0, 0, 0, 0.72);
    color: #fff;
    font-family: var(--sd-body-font, var(--vj-font-body));
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.sdr-vj-related-card__body {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    padding: 18px 20px 22px;
}

.sdr-vj-related-card__title {
    margin: 0 0 8px;
    font-family: var(--sd-heading-font, var(--vj-font-heading));
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.25;
    color: var(--vj-heading);
}

.sdr-vj-related-card__excerpt {
    margin: 0 0 10px;
    font-size: 0.88rem;
    line-height: 1.55;
    color: var(--vj-text-muted);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.sdr-vj-related-card__price {
    font-family: var(--sd-body-font, var(--vj-font-body));
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--sd-primary, var(--vj-accent));
}


/* Mosaic pricing + booking bar theming */

.sdr-template-mosaic .sdr-pricing__card,
.sdr-template-mosaic .sdr-booking-bar {
    border-radius: 0;
}

.sdr-template-mosaic .sdr-btn--primary {
    background: var(--sd-primary, var(--vj-accent));
    border-radius: 0;
}


/* Polish responsive additions */

@media (max-width: 1024px) {
    .sdr-vj-trip-facts,
    .sdr-vj-related,
    .sdr-vj-tour-overview {
        padding-left: 32px;
        padding-right: 32px;
    }

    .sdr-vj-trip-facts__item {
        flex: 1 1 45%;
        border-right: 0;
        border-bottom: 1px solid var(--vj-border);
    }

    .sdr-vj-trip-facts__inner {
        border-bottom: 0;
    }

    .sdr-vj-related__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .sdr-vj-trip-facts,
    .sdr-vj-related,
    .sdr-vj-tour-overview {
        padding-left: 16px;
        padding-right: 16px;
    }

    .sdr-vj-highlights {
        padding-left: 16px;
        padding-right: 16px;
    }

    .sdr-vj-trip-facts__item {
        flex: 1 1 100%;
    }

    .sdr-vj-itin-nav__btn {
        flex: 1 1 100%;
    }

    .sdr-vj-related__grid {
        grid-template-columns: 1fr;
    }

    .sdr-vj-related-card__media {
        height: 220px;
    }

    .sdr-vj-related-card__placeholder {
        min-height: 220px;
    }

    .sdr-vj-cta-banner__inner {
        justify-content: center;
    }
}