/*
 * Tourbin — homepage sections (Phase 1 wireframe, greybox only).
 *
 * Self-contained on purpose: assets/css/main.css's `:root` design tokens
 * have been in flux across several concurrent agents, so this file uses
 * plain literal greyscale values instead of depending on token names that
 * might not exist yet. It relies only on `.container` and `body.tourbin-body`
 * font stack from main.css (both stable, structural conventions), plus the
 * BEM class names each shared card component (tour, travel-secret,
 * hotel-offer, blog) already styles itself — this file only covers section
 * wrappers/layout that are unique to the home page.
 */

.tourbin-front-page > section {
    padding-block: 3.5rem;
    border-bottom: none;
}

.tourbin-front-page > section:first-child {
    padding-block-start: 0;
}

.tourbin-hero {
    border-bottom: none !important;
    padding-block: 0 !important;
    background: transparent;
    overflow: visible;
    position: relative;
    z-index: 1;
}

.home .tourbin-hero,
.tourbin-hero-block .tourbin-hero {
    margin-top: -20px;
    padding-bottom: 1.75rem;
    z-index: 6;
}

.tourbin-hero-block {
    position: relative;
    overflow: visible;
}

.tourbin-hero-page-backdrop {
    position: fixed;
    inset: 0;
    z-index: 52;
    background: rgba(255, 255, 255, 0.72);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.16s ease;
}

.tourbin-hero-page-backdrop.is-visible {
    opacity: 1;
}

.tourbin-single-tour .tourbin-hero,
.tourbin-single-post .tourbin-hero,
.tourbin-secret-single-page .tourbin-hero {
    margin-top: -20px;
    padding-bottom: 1.75rem;
    /* Below shell so sidebar/featured sit on the yellow band; raised on card focus */
    z-index: 5;
}

/* Full-page wash under header/sections; hero floats above */
.tourbin-hero.is-card-active {
    z-index: 53;
}

/* Single landings overlap the content shell — keep the yellow plate below it */
.tourbin-hero--single.is-card-active,
.tourbin-hero-block .tourbin-hero--single.is-card-active,
.tourbin-single-tour .tourbin-hero.is-card-active,
.tourbin-single-post .tourbin-hero.is-card-active,
.tourbin-secret-single-page .tourbin-hero.is-card-active {
    z-index: 5;
}

.tourbin-hero-front-layer {
    position: fixed;
    z-index: 53;
    pointer-events: none;
    container-type: inline-size;
}

.tourbin-hero-front-layer.tourbin-hero--single.is-card-active {
    z-index: 53;
}

.tourbin-hero-front-layer .tourbin-hero__lift > .tourbin-hero__card-unit {
    pointer-events: auto;
}

.tourbin-single-tour .tourbin-hero.is-card-active .tourbin-hero__cards,
.tourbin-single-post .tourbin-hero.is-card-active .tourbin-hero__cards,
.tourbin-secret-single-page .tourbin-hero.is-card-active .tourbin-hero__cards {
    z-index: auto;
}

.tourbin-hero.is-card-active .tourbin-hero__card-unit:not(.is-active) {
    z-index: 4;
}

/* Above spotlight: hovered card, title, character, and middle of the hero */
.tourbin-hero.is-card-active .tourbin-hero__mascot-wrap,
.tourbin-hero.is-card-active .tourbin-hero__wordmark,
.tourbin-hero.is-card-active .tourbin-hero__content,
.tourbin-hero.is-card-active .tourbin-hero__subheadline,
.tourbin-hero.is-card-active .tourbin-hero__search-form,
.tourbin-hero.is-card-active .tourbin-hero__crumbs,
.tourbin-hero.is-card-active .tourbin-hero__lift {
    z-index: 27;
}

.tourbin-hero__lift {
    position: absolute;
    inset: 0;
    z-index: 27;
    pointer-events: none;
}

.tourbin-hero__lift > .tourbin-hero__card-unit {
    pointer-events: auto;
}

.tourbin-single-tour .tourbin-hero.is-card-active .tourbin-hero__mascot-glow {
    background: linear-gradient(180deg, rgba(255, 244, 40, 0) 0%, #fffcc3 100%);
    z-index: 99;
}
/* Figma 517:78 — landing slider proportions (1920×492) */
.tourbin-hero--single .tourbin-hero__stage {
    aspect-ratio: 1920 / 492;
    overflow: visible;
}

.tourbin-hero--single .tourbin-hero__cards {
    z-index: 4;
    pointer-events: none;
}

.tourbin-hero--single .tourbin-hero__card-unit {
    pointer-events: auto;
}

.tourbin-hero--single .tourbin-hero__search-form,
.tourbin-hero--single .tourbin-hero__content,
.tourbin-hero--single .tourbin-hero__subheadline {
    display: none;
}

/* Breadcrumbs — Figma top 512px in slider (68.29% of 492px stage) */
.tourbin-hero--single .tourbin-hero__crumbs {
    position: absolute;
    left: 50%;
    top: 68.29%;
    bottom: auto;
    transform: translateX(-50%);
    z-index: 7;
    margin: 0;
    width: max-content;
    max-width: calc(100% - 2rem);
}

.tourbin-hero__crumbs .tourbin-breadcrumbs__list {
    justify-content: center;
    color: #00000083;
    font-family: "Vazirmatn", var(--tourbin-font);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5625;
    text-align: right;
}
.tourbin-hero__crumbs .tourbin-breadcrumbs__list a:hover {
    color: #131313;
}

.tourbin-hero__crumbs .tourbin-breadcrumbs__item--current {
    color: #131313;
}

/*
 * Shell overlaps hero — Figma featured/sidebar top 563, slider bottom 668 (−105px
 * at 1920). Cap at that 105px and scale with viewport (105/1920) so browser zoom
 * and OS display-scaled monitors cannot bury breadcrumbs under the content panel.
 */
.tourbin-single-tour__shell,
.tourbin-single-post__shell,
.tourbin-secret-single__shell {
    position: relative;
    z-index: 10;
    margin-top: calc(-1 * min(6.5625rem, 5.46875vw));
    padding-block-start: 0;
    pointer-events: none;
}

.tourbin-single-tour__layout,
.tourbin-single-post__layout,
.tourbin-secret-single__layout {
    pointer-events: auto;
}

.tourbin-hero__stage {
    position: relative;
    width: 100%;
    max-width: 1920px;
    margin-inline: auto;
    aspect-ratio: 1920 / 539;
    container-type: inline-size;
    overflow: visible;
}

.tourbin-hero__bg {
    position: absolute;
    inset-inline: 0;
    top: 12.616%;
    height: 82.004%;
    background: #fff428;
    border-radius: 20px;
    z-index: 0;
}

.tourbin-hero__spotlight {
    position: absolute;
    inset: 0;
    z-index: 26;
    background: rgba(255, 255, 255, 0.72);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.16s ease;
}

.tourbin-hero.is-card-active .tourbin-hero__spotlight,
.tourbin-hero__stage.is-card-active .tourbin-hero__spotlight {
    opacity: 1;
}

.tourbin-hero__focus {
    z-index: 6;
}

.tourbin-hero__mascot-wrap {
    position: absolute;
    left: 36.3021%;
    top: -2.5%;
    width: 15.2964%;
    height: 53.7059%;
    z-index: 6;
    overflow: visible;
}

.tourbin-hero__mascot {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: top center;
}

.tourbin-hero__mascot-glow {
    position: absolute;
    left: 36.8229%;
    top: 43.5993%;
    width: 13.677%;
    height: 7.6067%;
    background: linear-gradient(180deg, rgba(255, 244, 40, 0) 0%, #fff428 100%);
    z-index: 7;
    transition: background 0.16s ease;
}

.tourbin-hero__wordmark {
    position: absolute;
    right: 36.7708%;
    top: 14.2857%;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    font-family: "Liana", var(--tourbin-font);
    font-weight: 700;
    font-size: 4.6875cqw;
    line-height: 1;
    color: #000;
    white-space: nowrap;
    z-index: 6;
}

.tourbin-hero__content {
    position: absolute;
    left: 39.5833%;
    top: 51.2059%;
    width: 23.3333%;
    z-index: 6;
}

.tourbin-hero__eyebrow {
    margin: 0;
    color: #000;
    font-family: "Liana", var(--tourbin-font);
    font-size: 0.9375cqw;
    font-weight: 600;
    line-height: 2.778;
    text-align: right;
    white-space: nowrap;
}

.tourbin-hero__headline {
    margin: 0;
    font-family: "Liana-soft-FD", "Liana", var(--tourbin-font);
    font-size: 2.0833cqw;
    line-height: 1.75;
    font-weight: 700;
    color: #000;
    text-align: right;
    white-space: nowrap;
}

.tourbin-hero__inline-copy {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.45em;
    flex-wrap: wrap;
}

.tourbin-hero__inline-copy-text {
    display: inline;
}

.tourbin-hero__inline-copy-image {
    display: inline-block;
    width: auto;
    height: 1.35em;
    max-height: 42px;
    object-fit: contain;
    vertical-align: middle;
    border-radius: 6px;
}

.tourbin-hero__subheadline.tourbin-hero__inline-copy {
    white-space: normal;
}

.tourbin-hero__subheadline {
    position: absolute;
    left: 43.1771%;
    top: 71.4286%;
    width: 19.8438%;
    margin: 0;
    color: #0f172a;
    font-family: "Vazirmatn", var(--tourbin-font);
    font-size: 0.6771cqw;
    font-weight: 400;
    line-height: 1.54;
    text-align: right;
    z-index: 6;
}

/* Decorative destination cards */

.tourbin-hero__cards {
    position: absolute;
    inset: 0;
    z-index: 5;
    pointer-events: none;
}

.tourbin-hero__card-unit {
    position: absolute;
    z-index: 1;
    cursor: pointer;
    pointer-events: auto;
    transform-style: preserve-3d;
    transform-origin: center center;
    transform: perspective(800px) rotateX(0deg) rotateY(0deg)
        translate3d(0, 0, 0) scale3d(1, 1, 1);
    will-change: transform;
    transition: opacity 0.28s ease;
}

.tourbin-hero__card {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    margin: 0;
    border-radius: 10px;
}

.tourbin-hero__card-maximize {
    display: none;
}

.tourbin-hero__card::after {
    content: "";
    position: absolute;
    inset: -0.3125cqw;
    border: 1px dashed rgba(0, 0, 0, 0.08);
    border-radius: 10px;
    pointer-events: none;
}

.tourbin-hero__card img {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    pointer-events: none;
}

.tourbin-hero__card--video {
    overflow: hidden;
}

.tourbin-hero__card--video .tourbin-video-chip {
    border-radius: 10px;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    pointer-events: auto;
}

.tourbin-hero__card-unit.is-active
    .tourbin-video-chip--hero
    .tourbin-video-chip__expand {
    opacity: 1;
}

.tourbin-hero__card-unit.is-active
    .tourbin-hero__card--video
    .tourbin-video-chip {
    box-shadow: 0 22px 44px rgba(0, 0, 0, 0.18);
    transition: box-shadow 0.28s ease;
}

.tourbin-hero.is-card-active .tourbin-hero__card-unit:not(.is-active) {
    opacity: 0.35;
}

.tourbin-hero__card-unit.is-active {
    z-index: 8;
    opacity: 1;
}

.tourbin-hero__card-unit.is-active .tourbin-hero__card img {
    box-shadow: 0 22px 44px rgba(0, 0, 0, 0.18);
    transition: box-shadow 0.28s ease;
}

.tourbin-hero__card-label {
    position: absolute;
    left: 50%;
    bottom: calc(100% + 0.45cqw);
    width: max-content;
    max-width: 160%;
    margin: 0;
    transform: translateX(-50%);
    color: #434343;
    font-family: "Vazirmatn", var(--tourbin-font);
    font-size: 0.625cqw;
    font-weight: 400;
    line-height: 1.583;
    text-align: center;
    white-space: nowrap;
    pointer-events: none;
    transition:
        color 0.28s ease,
        opacity 0.28s ease;
}

.tourbin-hero.is-card-active
    .tourbin-hero__card-unit:not(.is-active)
    .tourbin-hero__card-label,
.tourbin-hero__stage.is-card-active
    .tourbin-hero__card-unit:not(.is-active)
    .tourbin-hero__card-label {
    opacity: 0.35;
}

.tourbin-hero__card-unit.is-active .tourbin-hero__card-label {
    color: #111;
    opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
    .tourbin-hero__spotlight,
    .tourbin-hero-page-backdrop,
    .tourbin-hero__card-unit,
    .tourbin-hero__card-label {
        transition: none;
    }
}

/* Search form — Figma 526×58 */
.tourbin-hero__search-form {
    box-sizing: border-box;
    position: absolute;
    left: 36.3021%;
    top: 89.2394%;
    width: 27.3958%;
    height: 10.7607%;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.625cqw;
    background: #fff;
    border: 1px solid #f8f8f8;
    border-radius: 0.78125cqw;
    padding: 0.46875cqw 0.729167cqw 0.572917cqw 0.520833cqw;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.0823529);
    z-index: 3;
}

.tourbin-hero__search-btn {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 3px;
    flex: 0 0 19.0114%;
    width: 19.0114%;
    min-width: 100px;
    height: 1.979167cqw;
    min-height: 38px;
    background: #000;
    border: none;
    border-radius: 0.520833cqw;
    padding: 0;
    cursor: pointer;
    flex-shrink: 0;
    direction: ltr;
    transition: background-color var(--tourbin-duration, 200ms)
        var(--tourbin-ease, cubic-bezier(0.2, 0, 0, 1));
}

.tourbin-hero__search-btn:hover {
    background: #1a1a1a;
    box-shadow: var(--tourbin-shadow-cta, 0 8px 20px rgba(15, 15, 15, 0.12));
}

.tourbin-hero__search-btn:active {
    background: #0a0a0a;
}

.tourbin-hero__search-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.25cqw;
    height: 0.625cqw;
    flex-shrink: 0;
}

.tourbin-hero__search-icon svg {
    display: block;
    width: 0.625cqw;
    height: 0.625cqw;
}

.tourbin-hero__search-label {
    color: #fff428;
    font-family: "Vazirmatn", var(--tourbin-font);
    font-size: 0.677083cqw;
    font-weight: 700;
    line-height: 1.538461538;
    white-space: nowrap;
}

.tourbin-hero__search-input-wrapper {
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 0.3125cqw;
    flex: 1;
    height: 2.083333cqw;
    min-height: 40px;
    background: #f7f8fa;
    border-radius: 0.520833cqw;
    padding: 0.416667cqw 0.78125cqw;
    min-width: 0;
    direction: ltr;
}

.tourbin-hero__map-pin-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.25cqw;
    height: 0.885417cqw;
    color: #000;
    flex: none;
    flex-shrink: 0;
}

.tourbin-hero__map-pin-icon svg {
    display: block;
    width: 0.677083cqw;
    height: 0.833333cqw;
}

.tourbin-hero__search-input {
    flex: 1;
    border: none;
    background: transparent;
    font: inherit;
    font-family: "Vazirmatn", var(--tourbin-font);
    font-size: 0.677083cqw;
    font-weight: 400;
    line-height: 1.538461538;
    color: #0f172a;
    min-width: 0;
    direction: rtl;
    text-align: right;
}

.tourbin-hero__search-input::placeholder {
    color: #8b8b9e;
    opacity: 0.7;
}

@media (max-width: 1280px) {
    .home .tourbin-hero,
    .tourbin-hero-block .tourbin-hero {
        margin-top: 0;
        padding-bottom: 1rem;
    }

    .tourbin-single-tour .tourbin-hero,
    .tourbin-single-post .tourbin-hero,
    .tourbin-secret-single-page .tourbin-hero {
        margin-top: 0;
        padding-bottom: 0.75rem;
    }

    .tourbin-single-tour__shell,
    .tourbin-single-post__shell,
    .tourbin-secret-single__shell {
        margin-top: 1rem;
    }

    /* Yellow plate stays behind stacked content — do not put empty bg in flex flow
       (width:auto + align-items:center collapses it to 0). */
    .tourbin-hero__bg {
        position: absolute;
        inset-inline: 0.75rem;
        top: 0.75rem;
        bottom: 0.75rem;
        width: auto;
        height: auto;
        min-height: 0;
        flex: none;
        border-radius: 20px;
        z-index: 0;
        pointer-events: none;
    }

    .tourbin-hero__stage {
        position: relative;
        aspect-ratio: auto;
        container-type: normal;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.85rem;
        padding: 1.75rem 1rem 1.25rem;
    }

    .tourbin-hero__mascot-wrap,
    .tourbin-hero__wordmark,
    .tourbin-hero__content,
    .tourbin-hero__subheadline,
    .tourbin-hero__search-form,
    .tourbin-hero__crumbs {
        position: static;
        inset: auto;
        width: auto;
        height: auto;
        z-index: 1;
    }

    /* Keep smart-search wrap as containing block; static wins over
       .tourbin-hero__search-form--smart { position:relative } and parks
       .iss-dropdown under the tall stage (off-screen on mobile). */
    .tourbin-hero__search-form--smart,
    .tourbin-hero__search-form.iss-search-wrap {
        position: relative;
        z-index: 30;
    }

    .tourbin-hero--single.is-card-active,
    .tourbin-hero-block .tourbin-hero--single.is-card-active,
    .tourbin-single-tour .tourbin-hero.is-card-active,
    .tourbin-single-post .tourbin-hero.is-card-active,
    .tourbin-secret-single-page .tourbin-hero.is-card-active {
        z-index: 53;
    }

    .tourbin-hero.is-card-active .tourbin-hero__mascot-wrap,
    .tourbin-hero.is-card-active .tourbin-hero__wordmark,
    .tourbin-hero.is-card-active .tourbin-hero__content,
    .tourbin-hero.is-card-active .tourbin-hero__subheadline,
    .tourbin-hero.is-card-active .tourbin-hero__search-form,
    .tourbin-hero.is-card-active .tourbin-hero__crumbs {
        /* relative so z-index beats the spotlight; inset/transform stay in the stacked layout */
        position: relative;
        inset: auto;
        transform: none;
        z-index: 27;
    }

    .tourbin-hero.is-card-active .tourbin-hero__card-unit.is-active {
        z-index: 27;
    }

    .tourbin-hero__mascot-wrap {
        width: 168px;
        height: 168px;
        order: 1;
    }

    .tourbin-hero__wordmark {
        order: 2;
        align-items: center;
        justify-content: center;
        text-align: center;
        font-size: 2rem;
    }

    .tourbin-hero__content {
        order: 3;
        text-align: center;
        max-width: 420px;
    }

    .tourbin-hero__eyebrow,
    .tourbin-hero__headline {
        font-size: revert;
        text-align: center;
        white-space: normal;
    }

    .tourbin-hero__eyebrow {
        font-size: 0.9375rem;
    }

    .tourbin-hero__headline {
        font-size: 1.5rem;
    }

    .tourbin-hero__subheadline {
        order: 4;
        max-width: 420px;
        text-align: center;
        font-size: 0.8125rem;
    }

    .tourbin-hero__spotlight {
        display: block;
    }

    .tourbin-hero__mascot-glow {
        display: none;
    }

    .tourbin-hero__lift {
        position: static;
        inset: auto;
        order: 7;
        display: contents;
    }

    .tourbin-hero__search-form {
        order: 5;
        width: 100%;
        max-width: 526px;
        margin-inline: auto;
        height: auto;
        min-height: 58px;
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 12px;
        padding: 9px 14px 11px 10px;
        background: #fff;
        border: 1px solid #f8f8f8;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.0823529);
    }

    .tourbin-hero__search-input-wrapper {
        flex: 1;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-end;
        gap: 6px;
        height: 40px;
        min-height: 40px;
        background: #f7f8fa;
        border-radius: 10px;
        padding: 8px 15px;
        min-width: 0;
        direction: ltr;
    }

    .tourbin-hero__search-btn {
        flex: 0 0 auto;
        width: auto;
        min-width: 88px;
        height: 38px;
        min-height: 38px;
        padding: 0 10px;
        gap: 8px;
        border-radius: 10px;
    }

    .tourbin-hero__search-icon {
        width: 12px;
        height: 12px;
    }

    .tourbin-hero__search-icon svg {
        width: 12px;
        height: 12px;
    }

    .tourbin-hero__map-pin-icon {
        width: 18px;
        height: 18px;
        flex-shrink: 0;
    }

    .tourbin-hero__map-pin-icon svg {
        display: block;
        width: 13px;
        height: 16px;
    }

    .tourbin-hero__search-label {
        font-size: 13px;
        font-weight: 700;
        line-height: 1.54;
    }

    .tourbin-hero__search-input {
        font-size: 13px;
        line-height: 1.54;
    }

    .tourbin-hero__crumbs {
        order: 6;
        max-width: 100%;
        transform: none;
    }

    .tourbin-hero__crumbs .tourbin-breadcrumbs__list {
        font-size: 0.85rem;
    }

    .tourbin-hero--single .tourbin-hero__crumbs {
        order: 3;
        position: static;
        top: auto;
        transform: none;
    }

    .tourbin-hero--single .tourbin-hero__cards {
        order: 4;
        z-index: 4;
    }

    /* Destination photos under search — 2-up grid, no horizontal scroll */
    .tourbin-hero__cards {
        position: static;
        inset: auto;
        order: 7;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        align-items: start;
        gap: 15px 15px;
        row-gap: 22px;
        width: 100%;
        max-width: 420px;
        margin-inline: auto;
        padding: 1.35rem 0.25rem 0.15rem;
        overflow: visible;
        pointer-events: auto;
        z-index: 5;
    }

    .tourbin-hero__card-unit {
        position: relative !important;
        left: auto !important;
        top: auto !important;
        width: 100% !important;
        height: auto !important;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 6px;
        aspect-ratio: auto;
        transform: none !important;
        will-change: auto;
        cursor: pointer;
        transition: opacity 0.28s ease;
    }

    .tourbin-hero__card-unit--video {
        cursor: default;
    }

    .tourbin-hero__card-unit.is-active {
        z-index: 5;
        transform: none !important;
    }

    .tourbin-hero__card-unit.is-active .tourbin-hero__card img {
        box-shadow: none;
    }

    .tourbin-hero__card {
        flex: 1 1 auto;
        width: 100%;
        aspect-ratio: 4 / 3;
        min-height: 0;
    }

    .tourbin-hero__card-maximize {
        position: absolute;
        top: 0.4rem;
        left: 0.4rem;
        z-index: 4;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 1.75rem;
        height: 1.75rem;
        padding: 0;
        border: none;
        border-radius: 0.5rem;
        background: rgba(255, 255, 255, 0.92);
        color: #1a1a1a;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;
    }

    .tourbin-hero__card-maximize:focus-visible {
        outline: 2px solid #1a1a1a;
        outline-offset: 2px;
    }

    .tourbin-hero__card-maximize-icon {
        display: block;
        width: 0.875rem;
        height: 0.875rem;
    }

    .tourbin-hero__card-unit--video .tourbin-video-chip__expand {
        display: none;
    }

    .tourbin-hero__card-label {
        position: static;
        left: auto;
        bottom: auto;
        width: 100%;
        max-width: none;
        transform: none;
        font-size: 11px;
        line-height: 1.3;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        text-align: center;
    }

    .tourbin-hero__card::after {
        display: none;
    }
}

/* -----------------------------------------------------------------------
 * Shared section heading treatment
 * ---------------------------------------------------------------------- */

/* -----------------------------------------------------------------------
 * Mascot CTA banner (Figma intro below stories)
 * ---------------------------------------------------------------------- */

.tourbin-mascot-cta {
    background: #fff;
    padding-block: 0 3.5rem;
}

.tourbin-mascot-cta__divider {
    height: 1px;
    background: rgba(234, 234, 234, 0.5);
    margin-bottom: 2.5rem;
}

.tourbin-mascot-cta__inner {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 2rem;
}

.tourbin-mascot-cta__content {
    max-width: 420px;
}

.tourbin-mascot-cta__heading {
    margin: 0 0 1rem;
    font-family: "Liana", var(--tourbin-font);
    font-weight: 700;
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    line-height: 1.75;
    color: #000;
}

.tourbin-mascot-cta__text {
    margin: 0 0 1.5rem;
    font-size: 0.8125rem;
    line-height: 1.54;
    color: #000;
    max-width: 38ch;
}

.tourbin-mascot-cta__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.125rem;
    background: #fff428;
    box-shadow: 0 4px 8px rgba(255, 207, 1, 0.2);
    border-radius: 12px;
    color: #000;
    font-weight: 600;
    font-size: 0.9375rem;
    text-decoration: none;
    transition:
        transform var(--tourbin-duration, 200ms)
            var(--tourbin-ease, cubic-bezier(0.2, 0, 0, 1)),
        box-shadow var(--tourbin-duration, 200ms)
            var(--tourbin-ease, cubic-bezier(0.2, 0, 0, 1)),
        background-color var(--tourbin-duration, 200ms)
            var(--tourbin-ease, cubic-bezier(0.2, 0, 0, 1));
}

.tourbin-mascot-cta__btn:hover {
    transform: translateY(-1px);
    box-shadow: var(
        --tourbin-shadow-cta-yellow,
        0 8px 20px rgba(255, 207, 1, 0.35)
    );
    background: #ffe600;
}

.tourbin-mascot-cta__btn:active {
    transform: translateY(0);
    box-shadow: 0 4px 8px rgba(255, 207, 1, 0.2);
}

.tourbin-mascot-cta__btn-arrow {
    display: block;
    width: 16px;
    height: 7px;
    flex-shrink: 0;
    transition: transform var(--tourbin-duration-micro, 120ms)
        var(--tourbin-ease, cubic-bezier(0.2, 0, 0, 1));
}

.tourbin-mascot-cta__btn:hover .tourbin-mascot-cta__btn-arrow {
    transform: translateX(2px);
}

.tourbin-mascot-cta__mascot-wrap {
    flex-shrink: 0;
    width: min(250px, 35vw);
}

.tourbin-mascot-cta__mascot {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* -----------------------------------------------------------------------
 * Tour carousel — Figma full-width slider (340×360 cards + promo)
 * ---------------------------------------------------------------------- */

.tourbin-tour-carousel {
    padding-block: 3rem 2.5rem;
    overflow: hidden;
}

.tourbin-tour-carousel__inner {
    width: 100%;
    max-width: 1920px;
    margin-inline: auto;
}

.tourbin-tour-carousel__filters {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    padding-inline: clamp(1rem, calc((100vw - 1084px) / 2 + 1rem), 18.4896vw);
    margin-bottom: 2.5rem;
}

.tourbin-tour-carousel__chip {
    box-sizing: border-box;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 36px;
    padding: 0 18px;
    border: none;
    border-radius: 999px;
    background: #f9fafb;
    color: #000;
    font-family: "Vazirmatn", var(--tourbin-font);
    font-size: 13px;
    font-weight: 500;
    line-height: 20px;
    cursor: pointer;
    white-space: nowrap;
    transition:
        background 0.2s ease,
        font-weight 0.2s ease;
}

.tourbin-tour-carousel__chip.is-active {
    background: #fff428;
    font-weight: 700;
}

.tourbin-tour-carousel__viewport {
    overflow: visible;
}

.tourbin-tour-carousel__track {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 31px;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-inline: clamp(1rem, calc((100vw - 1084px) / 2 + 1rem), 18.4896vw);
    padding-bottom: 0.25rem;
    direction: ltr;
    cursor: grab;
    /* pan-x: native horizontal swipe on touch; pan-y: page scroll still works */
    touch-action: pan-x pan-y pinch-zoom;
}

.tourbin-tour-carousel__track.is-dragging {
    cursor: grabbing;
    scroll-snap-type: none;
    user-select: none;
}

.tourbin-tour-carousel__track::-webkit-scrollbar {
    display: none;
}

.tourbin-tour-carousel__item {
    flex: 0 0 340px;
    width: 340px;
    scroll-snap-align: center;
}

.tourbin-tour-carousel__item[hidden],
.tourbin-tour-carousel__item.is-filter-hidden {
    display: none !important;
}

.tourbin-tour-carousel__empty {
    margin: 0;
    padding-inline: clamp(1rem, calc((100vw - 1084px) / 2 + 1rem), 18.4896vw);
    color: #4b5563;
    font-family: "Vazirmatn", var(--tourbin-font);
    font-size: 14px;
    font-weight: 500;
    line-height: 24px;
    text-align: center;
}

.tourbin-tour-slide {
    position: relative;
    display: block;
    width: 340px;
    height: 360px;
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    direction: rtl;
}

.tourbin-tour-slide__media {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.tourbin-tour-slide__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tourbin-tour-slide__shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        0.71deg,
        rgba(0, 0, 0, 0.41) 1.26%,
        rgba(0, 0, 0, 0) 38.88%
    );
}

.tourbin-tour-slide__logo {
    position: absolute;
    top: 21px;
    left: 50%;
    transform: translateX(-50%);
    width: 68.35px;
    height: auto;
    z-index: 2;
}

.tourbin-tour-slide__body {
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 61px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.tourbin-tour-slide__title-badge {
    box-sizing: border-box;
    width: min(252px, 100%);
    margin: 0 0 -21px;
    padding: 6px 16px;
    background: #fff428;
    border-radius: 10px;
    font-family: "Liana", "Liana-soft-FD", var(--tourbin-font);
    font-size: 20px;
    font-weight: 600;
    line-height: 30px;
    text-align: right;
    color: #000;
    position: relative;
    z-index: 2;
}

.tourbin-tour-slide__description {
    box-sizing: border-box;
    width: 100%;
    max-width: 312px;
    margin: 0;
    padding: 25px 20px 20px;
    background: linear-gradient(
        94.58deg,
        rgba(0, 0, 0, 0.265) 0%,
        rgba(167, 167, 167, 0.34) 99.08%
    );
    backdrop-filter: blur(11.85px);
    -webkit-backdrop-filter: blur(11.85px);
    border-radius: 20px;
    font-family: "Vazirmatn", var(--tourbin-font);
    font-size: 12px;
    font-weight: 400;
    line-height: 20px;
    text-align: right;
    color: #fff;
}

.tourbin-tour-slide__location {
    position: absolute;
    inset-inline: 14px;
    bottom: 16px;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 6px;
    z-index: 2;
}

.tourbin-tour-slide__pin {
    display: inline-flex;
    width: 9px;
    height: 9px;
    color: #fff;
    flex-shrink: 0;
}

.tourbin-tour-slide__pin svg {
    display: block;
    width: 9px;
    height: 9px;
}

.tourbin-tour-slide__location-text {
    font-family: "Vazirmatn", var(--tourbin-font);
    font-size: 11px;
    font-weight: 400;
    line-height: 17px;
    color: #fff;
    text-align: right;
}

/* Promo slide — full artwork */
.tourbin-tour-slide--promo {
    direction: ltr;
    background: #fff428;
}

.tourbin-tour-slide__promo-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tourbin-tour-carousel__controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-inline: clamp(1rem, calc((100vw - 1084px) / 2 + 1rem), 18.4896vw);
    margin-top: 1.75rem;
    direction: ltr;
}

.tourbin-tour-carousel__dots {
    display: flex;
    align-items: center;
    gap: 5px;
    min-height: 12px;
}

.tourbin-tour-carousel__dot {
    flex: 0 0 12px;
    width: 12px;
    height: 12px;
    padding: 0;
    border: none;
    border-radius: 999px;
    background: #d9d9d9;
    cursor: pointer;
    transition:
        width 0.2s ease,
        background 0.2s ease;
}

.tourbin-tour-carousel__dot.is-active {
    flex-basis: 27px;
    width: 27px;
    height: 11px;
    background: #000;
}

.tourbin-tour-carousel__arrows {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 11px;
    margin-inline-start: auto;
    direction: ltr;
}

.tourbin-tour-carousel__arrow {
    box-sizing: border-box;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 15px;
    background: #fff;
    box-shadow: none;
    color: #1c1c1e;
    cursor: pointer;
    transition:
        color 0.2s ease,
        background 0.2s ease,
        opacity 0.2s ease;
}

.tourbin-tour-carousel__arrow--prev,
.tourbin-tour-carousel__arrow--next {
    color: #1c1c1e;
}

.tourbin-tour-carousel__arrow:disabled,
.tourbin-tour-carousel__arrow.is-disabled {
    color: #c4c4c4;
    opacity: 0.45;
    cursor: not-allowed;
}

.tourbin-tour-carousel__arrow--prev svg,
.tourbin-tour-carousel__arrow--next svg {
    transform: none;
}

@media (max-width: 768px) {
    .tourbin-tour-carousel__filters {
        justify-content: center;
        padding-inline: 1rem;
    }

    .tourbin-tour-carousel__track,
    .tourbin-tour-carousel__controls {
        padding-inline: 1rem;
    }

    .tourbin-tour-carousel__item,
    .tourbin-tour-slide {
        flex-basis: min(300px, 85vw);
        width: min(300px, 85vw);
        height: 320px;
    }

    .tourbin-tour-slide__title-badge {
        font-size: 17px;
        line-height: 26px;
    }
}

/* -----------------------------------------------------------------------
 * Hotel offers — layout lives in hotel-offers-section.css;
 * slider reuses .tourbin-tour-carousel__* above.
 * Travel secrets row — layout lives in travel-secrets-section.css;
 * cards in travel-secret.css.
 * ---------------------------------------------------------------------- */

.tourbin-secrets-row__empty {
    color: var(--tourbin-text-muted);
    padding: 2rem 0;
    text-align: center;
}

/* -----------------------------------------------------------------------
 * Home mid-carousel — wide promo slides between tour + discover
 * ---------------------------------------------------------------------- */

.tourbin-home-mid-carousel {
    padding-block: 2.5rem 3rem;
    background: #fff;
}

.tourbin-home-mid-carousel .tourbin-tour-carousel__item,
.tourbin-home-mid-carousel__item {
    flex: 0 0 min(540px, calc(100vw - 3rem));
    width: min(540px, calc(100vw - 3rem));
    scroll-snap-align: center;
}

.tourbin-home-mid-carousel .tourbin-banner-card,
.tourbin-home-mid-carousel .tourbin-banner-image {
    height: 100%;
    min-height: 220px;
    border-radius: 20px;
    overflow: hidden;
    background: #000;
}

.tourbin-home-mid-carousel .tourbin-banner-image__media-link {
    display: block;
    height: 100%;
}

.tourbin-home-mid-carousel .tourbin-banner-image__image,
.tourbin-home-mid-carousel .tourbin-banner-image__image--placeholder {
    display: block;
    width: 100%;
    height: 220px;
    aspect-ratio: auto;
    object-fit: cover;
    background: var(--tourbin-bg-tint-strong, #ececec);
}

.tourbin-home-mid-carousel .tourbin-banner-image__overlay {
    inset: 0;
    max-width: none;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 8px;
    padding: 24px 28px;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.08) 0%,
        rgba(0, 0, 0, 0.68) 100%
    );
}

.tourbin-home-mid-carousel .tourbin-banner-image__heading {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 800;
    line-height: 1.35;
    color: #fff;
}

.tourbin-home-mid-carousel .tourbin-banner-image__subtext {
    margin: 0;
    font-size: 0.875rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.88);
}

.tourbin-home-mid-carousel .tourbin-banner-image__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    margin-top: 4px;
    padding: 0.625rem 1.125rem;
    border: none;
    border-radius: 12px;
    background: #fff428;
    box-shadow: 0 4px 8px rgba(255, 207, 1, 0.2);
    color: #000;
    font-size: 0.9375rem;
    font-weight: 600;
    text-decoration: none;
    transition:
        transform var(--tourbin-duration, 200ms)
            var(--tourbin-ease, cubic-bezier(0.2, 0, 0, 1)),
        box-shadow var(--tourbin-duration, 200ms)
            var(--tourbin-ease, cubic-bezier(0.2, 0, 0, 1)),
        background-color var(--tourbin-duration, 200ms)
            var(--tourbin-ease, cubic-bezier(0.2, 0, 0, 1));
}

.tourbin-home-mid-carousel .tourbin-banner-image__cta:hover {
    transform: translateY(-1px);
    box-shadow: var(
        --tourbin-shadow-cta-yellow,
        0 8px 20px rgba(255, 207, 1, 0.35)
    );
    background: #ffe600;
}

.tourbin-home-mid-carousel .tourbin-banner-image__cta:active {
    transform: translateY(0);
    box-shadow: 0 4px 8px rgba(255, 207, 1, 0.2);
}

@media (max-width: 768px) {
    .tourbin-home-mid-carousel .tourbin-tour-carousel__item,
    .tourbin-home-mid-carousel__item {
        flex-basis: min(320px, calc(100vw - 2rem));
        width: min(320px, calc(100vw - 2rem));
    }

    .tourbin-home-mid-carousel .tourbin-banner-image,
    .tourbin-home-mid-carousel .tourbin-banner-card {
        min-height: 200px;
    }

    .tourbin-home-mid-carousel .tourbin-banner-image__image,
    .tourbin-home-mid-carousel .tourbin-banner-image__image--placeholder {
        height: 200px;
    }

    .tourbin-home-mid-carousel .tourbin-banner-image__overlay {
        padding: 18px 20px;
    }

    .tourbin-home-mid-carousel .tourbin-banner-image__heading {
        font-size: 1.125rem;
    }
}

/* -----------------------------------------------------------------------
 * Promo banner slider (Antalya-style, after hotel-offers)
 * ---------------------------------------------------------------------- */

.tourbin-home-promo-banner {
    background: #ffffff;
    padding-block: clamp(1.5rem, 3vw, 2.5rem) clamp(2rem, 4vw, 3.5rem);
}

.tourbin-home-promo-banner__inner {
    width: min(100% - 2.5rem, 1100px);
    margin-inline: auto;
}

.tourbin-home-promo-banner__slider {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
}

.tourbin-home-promo-banner__viewport {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 20px;
}

.tourbin-home-promo-banner__track {
    position: relative;
    width: 100%;
}

.tourbin-home-promo-banner__slide {
    display: block;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
        opacity 0.45s ease,
        visibility 0.45s ease;
    text-decoration: none;
    color: inherit;
}

.tourbin-home-promo-banner__slide.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.tourbin-home-promo-banner__slide:not(.is-active) {
    position: absolute;
    inset: 0;
}

.tourbin-home-promo-banner__image {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 20px;
    vertical-align: middle;
}

.tourbin-home-promo-banner__image--placeholder {
    aspect-ratio: 2164 / 794;
    background: #fff428;
}

.tourbin-home-promo-banner__dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 12px;
}

.tourbin-home-promo-banner__dot {
    flex: 0 0 10px;
    width: 10px;
    height: 10px;
    padding: 0;
    border: none;
    border-radius: 999px;
    background: #d9d9d9;
    cursor: pointer;
    transition:
        width 0.2s ease,
        background 0.2s ease;
}

.tourbin-home-promo-banner__dot.is-active {
    flex-basis: 28px;
    width: 28px;
    height: 10px;
    background: #000;
}

@media (max-width: 720px) {
    .tourbin-home-promo-banner__inner {
        width: calc(100% - 2rem);
    }

    .tourbin-home-promo-banner__viewport,
    .tourbin-home-promo-banner__image {
        border-radius: 14px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .tourbin-home-promo-banner__slide {
        transition: none;
    }
}

/* -----------------------------------------------------------------------
 * Dual bottom CTA banner — unified card + body + button treatment
 * ---------------------------------------------------------------------- */

.tourbin-dual-cta__inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

.tourbin-dual-cta__panel {
    min-height: 260px;
    border-radius: var(--tourbin-card-radius-lg);
    overflow: hidden;
}

.tourbin-dual-cta__panel .tourbin-banner-card,
.tourbin-dual-cta__panel .tourbin-banner-image-text {
    height: 100%;
    min-height: 260px;
}

.tourbin-dual-cta .tourbin-banner-image-text {
    padding: 0;
    background: #000;
    color: #fff;
}

.tourbin-dual-cta .tourbin-banner-image-text__media::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.12) 0%,
        rgba(0, 0, 0, 0.62) 100%
    );
    pointer-events: none;
}

.tourbin-dual-cta .tourbin-banner-image-text__image,
.tourbin-dual-cta .tourbin-banner-image-text__image--placeholder {
    opacity: 1;
}

.tourbin-dual-cta .tourbin-banner-image-text__body {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 10px;
    max-width: none;
    padding: 28px 32px;
    background: none;
    border-radius: 0;
    backdrop-filter: none;
}

.tourbin-dual-cta .tourbin-banner-image-text__heading {
    margin: 0;
    font-size: 1.375rem;
    font-weight: 800;
    line-height: 1.35;
    color: #fff;
}

.tourbin-dual-cta .tourbin-banner-image-text__subtext {
    margin: 0;
    font-size: 0.875rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.88);
}

.tourbin-dual-cta .tourbin-banner-image-text__actions {
    margin-top: 4px;
}

.tourbin-dual-cta .tourbin-banner-image-text__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.625rem 1.125rem;
    border: none;
    border-radius: 12px;
    background: #fff428;
    box-shadow: 0 4px 8px rgba(255, 207, 1, 0.2);
    color: #000;
    font-size: 0.9375rem;
    font-weight: 600;
    text-decoration: none;
    transition:
        transform var(--tourbin-duration, 200ms)
            var(--tourbin-ease, cubic-bezier(0.2, 0, 0, 1)),
        box-shadow var(--tourbin-duration, 200ms)
            var(--tourbin-ease, cubic-bezier(0.2, 0, 0, 1)),
        background-color var(--tourbin-duration, 200ms)
            var(--tourbin-ease, cubic-bezier(0.2, 0, 0, 1));
}

.tourbin-dual-cta .tourbin-banner-image-text__cta:hover {
    transform: translateY(-1px);
    box-shadow: var(
        --tourbin-shadow-cta-yellow,
        0 8px 20px rgba(255, 207, 1, 0.35)
    );
    background: #ffe600;
}

.tourbin-dual-cta .tourbin-banner-image-text__cta:active {
    transform: translateY(0);
    box-shadow: 0 4px 8px rgba(255, 207, 1, 0.2);
}

@media (min-width: 720px) {
    .tourbin-dual-cta__inner {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .tourbin-dual-cta .tourbin-banner-image-text__body {
        padding: 22px 20px;
    }

    .tourbin-dual-cta .tourbin-banner-image-text__heading {
        font-size: 1.2rem;
    }
}

/* Homepage blog section styles: assets/css/blog-section.css */

/* -----------------------------------------------------------------------
 * Responsive scale-down (non-hero sections)
 * ---------------------------------------------------------------------- */

@media (max-width: 640px) {
    .tourbin-front-page > section {
        padding-block: 1.75rem;
    }

    .tourbin-mascot-cta__inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .tourbin-mascot-cta__content {
        max-width: none;
    }

    .tourbin-mascot-cta__text {
        max-width: none;
    }

    .tourbin-mascot-cta__mascot-wrap {
        width: 180px;
        margin-inline: auto;
        order: -1;
    }
}
