/* ═══════════════════════════════════════
   VISTA-STYLE NAVBAR
   ═══════════════════════════════════════ */

.header--vista {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 1000;
    pointer-events: none;
    transform: none !important;
    transition: none !important;
}

.header--vista.is-menu-open {
    position: fixed !important;
    z-index: 3000;
    transform: none !important;
}

.header--vista.is-hidden {
    transform: none !important;
}

/* Menü açıkken tam ekran karartma (navbar dahil) */
.header--vista::after {
    content: '';
    position: fixed;
    inset: 0;
    background: rgba(17, 17, 17, 0.55);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
    z-index: 2985;
}

.header--vista.is-menu-open::after {
    opacity: 1;
    pointer-events: auto;
}

/* Shell */

.header--vista .header__shell {
    pointer-events: auto;
    position: relative;
    border-radius: 0;
}

/* Header — yükseklik/konum hiçbir durumda değişmesin */
.header--vista .header__shell {
    align-items: center;
    justify-content: space-between;
    height: 100px;
    background: transparent;
    border: none;
    box-shadow: none;
    transition: none;
}

.header--vista {
    transform: none !important;
}

.header--vista.is-hidden {
    transform: none !important;
}

.header--vista.header--inner .header__shell,
.header--vista.is-scrolled .header__shell,
.header--vista.is-menu-open .header__shell {
    height: 100px;
    transform: none !important;
}

/* ===============================
   HOME - Sayfa en üstte
================================= */

.header--over-hero .header__shell {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;

    margin-inline: 0;
    padding-inline: var(--container-padding);

    border-radius: 0;

    box-shadow: none;
}

/* ===============================
   HOME - Scroll
================================= */

.header--over-hero.is-scrolled .header__shell {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    padding-inline: var(--container-padding);
    border-radius: 0;
    box-shadow: none;
}


/* ===============================
   İç Sayfalar
================================= */

.header--inner .header__shell {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    padding-inline: var(--container-padding);
    border-radius: 0;
    box-shadow: none;
}

/* ==========================
   HOME (İLK AÇILIŞ)
========================== */

.header--vista.header--over-hero .header__shell {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: none;
    box-shadow: none;
}

/* ==========================
   HOME (SCROLL)
========================== */

.header--vista.header--over-hero.is-scrolled .header__shell {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    padding-inline: var(--container-padding);
    border-radius: 0;
    box-shadow: none;
}

/* ==========================
   INNER PAGE
========================== */

.header--vista.header--inner .header__shell {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    padding-inline: var(--container-padding);
    border-radius: 0;
    box-shadow: none;
}

/* ==========================
   INNER SCROLL
========================== */



/* Linkler */

.header--inner .header__link,
.header--inner.is-scrolled .header__link {
    color: var(--color-secondary);
}

.header--inner.is-scrolled .header__link:hover {
    color: var(--color-primary);
    opacity: .7;
}

/* Logo */

.header__logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    overflow: visible;
    z-index: 2;
    grid-column: 1;
    justify-self: start;
}

.header__logo-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: left center;
    transition: transform .25s ease;
}

.header__logo:hover .header__logo-image {
    transform: translateY(-1px);
}

/* Shell layout: logo | pills (ortada) | utils */
.header--vista .header__shell {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    column-gap: 1rem;
    position: relative;
}

.header__pills {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    min-width: 0;
    justify-self: center;
    grid-column: 2;
    width: max-content;
    max-width: 100%;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.header__pills::-webkit-scrollbar {
    display: none;
}

.header__pill {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    flex-shrink: 0;
    min-height: 42px;
    padding: 0.45rem 0.95rem;
    border-radius: 999px;
    background: #ffffff;
    color: #2b2b2b;
    border: 1px solid rgba(17, 17, 17, 0.06);
    box-shadow: 0 4px 14px rgba(17, 17, 17, 0.06);
    font-size: 0.82rem;
    font-weight: 600;
    white-space: nowrap;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.header__pill:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 18px rgba(17, 17, 17, 0.1);
    background: #fffdf5;
}

.header__pill-icon {
    display: inline-flex;
    color: #3a3a3a;
}

.header__pill-label {
    line-height: 1;
}

.header__utils {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    flex-shrink: 0;
    z-index: 2;
    justify-self: end;
    grid-column: 3;
}

.header__login {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    min-height: 40px;
    padding: 0.35rem 0.55rem 0.35rem 0.9rem;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid rgba(17, 17, 17, 0.1);
    color: #2b2b2b;
    font-size: 0.82rem;
    font-weight: 600;
    white-space: nowrap;
    transition: background 0.25s ease, border-color 0.25s ease;
}

.header__login:hover {
    background: #fafafa;
    border-color: rgba(17, 17, 17, 0.16);
}

.header__login-icon {
    display: inline-flex;
    color: #6b6b6b;
}

/* Dropdown nav — desktop: beyaz panel sayfa üstünden, içerik aynı yerde */
.header__nav {
    position: absolute;
    top: 0;
    right: 0;
    left: auto;
    width: min(340px, calc(100% - 2rem));
    margin: 0;
    padding: 4.25rem 1.35rem 1.25rem;
    background: #ffffff;
    border-radius: 0 0 24px 24px;
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.14);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-14px);
    transition:
        transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.3s ease,
        visibility 0.3s;
    z-index: 2990;
}

.header__nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.header--vista.is-menu-open .header__utils,
.header--vista.is-menu-open .header__login,
.header--vista.is-menu-open .header__toggle {
    position: relative;
    z-index: 3002;
}

.header__menu {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.85rem;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
}

.header__link {
    font-size: 1.15rem;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-secondary);
    letter-spacing: 0.01em;
    transition: color var(--transition-fast);
}

.header__link:hover,
.header__link.is-active {
    color: var(--color-primary);
}

.header__nav-icons {
    display: none;
}

.header__nav-icon {
    display: none;
}

.header__nav-divider {
    width: 100%;
    height: 1px;
    margin: 1.25rem 0;
    background: rgba(17, 17, 17, 0.12);
}

.header__nav-pills {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.65rem;
}

.header__pill--nav {
    width: 100%;
    justify-content: flex-start;
}

.header__nav-email {
    display: block;
    font-size: 0.82rem;
    font-weight: 500;
    color: #6b6b6b;
    word-break: normal;
    overflow-wrap: anywhere;
    line-height: 1.4;
    transition: color 0.2s ease;
}

.header__nav-email:hover {
    color: var(--color-secondary);
}

.header__nav-footer {
    display: none;
}

.header__dealer-btn {
    display: none;
}

/* Yuvarlak menü toggle */
.header__toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 38px;
    height: 38px;
    padding: 0;
    background: #111111;
    border: none;
    border-radius: 50%;
    box-shadow: none;
    flex-shrink: 0;
    cursor: pointer;
    color: #ffffff;
    transition: background 0.25s ease, color 0.25s ease;
}

.header--inner .header__toggle,
.header--over-hero .header__toggle {
    background: #111111;
    color: #ffffff;
}

.header__toggle.is-active,
.header--vista.is-menu-open .header__toggle {
    background: var(--color-primary);
    color: #111111;
}

.header__toggle-icon {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 18px;
    height: 18px;
    transition: opacity 0.2s ease, transform 0.25s ease;
}

.header__toggle-icon--menu {
    opacity: 1;
    transform: scale(1);
}

.header__toggle-icon--close {
    opacity: 0;
    transform: scale(0.85) rotate(-45deg);
}

.header__toggle.is-active .header__toggle-icon--menu {
    opacity: 0;
    transform: scale(0.85) rotate(45deg);
}

.header__toggle.is-active .header__toggle-icon--close {
    opacity: 1;
    transform: scale(1) rotate(0deg);
}

/* Menü açık — scrollbar yerinde kalsın, sayfa sağa kaymasın */
html.nav-menu-open,
body.nav-menu-open {
    overflow: hidden;
    overscroll-behavior: none;
}

/* ═══════════════════════════════════════
   VISTA HERO — Full-bleed media
   ═══════════════════════════════════════ */

.hero--vista {
    position: relative;
    padding-top: calc(80px + 0.45rem);
    padding-bottom: clamp(1.75rem, 4vw, 2.35rem);
    background: var(--color-bg);
}

.hero__shell {
    position: relative;
}

.hero-showcase {
    position: relative;
    min-height: clamp(340px, 46vw, 430px);
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.hero__backdrop {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero__bg-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0;
    transition: opacity 1.2s ease, transform 7s ease;
}

.hero__bg-image {
    background-size: cover;
    background-position: center;
    transform: scale(1.04);
}

.hero__bg-image.is-active {
    opacity: 1;
    transform: scale(1.08);
}

.hero__bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.48) 100%);
}

.hero__bg-overlay::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, transparent 42%);
    pointer-events: none;
}

.hero__content {
    position: absolute;
    inset: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(1.25rem, 3.2vw, 2rem);
    z-index: 1;
}

.hero-copy {
    width: min(920px, 100%);
}

.hero-copy--search-only {
    margin-inline: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-copy__text--search-only {
    margin-bottom: 1rem;
    text-align: center;
}

.hero-copy__slogan {
    margin-bottom: 0.9rem;
    padding: 0;
    font-family: var(--font-heading);
    font-size: clamp(1.35rem, 2.8vw, 2.15rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.015em;
    color: #fff;
    background: transparent;
}

.hero-copy__title {
    font-family: var(--font-heading);
    font-size: clamp(2.75rem, 6vw, 4.75rem);
    font-weight: 800;
    line-height: 1.06;
    letter-spacing: -0.04em;
    color: #fff;
    margin-bottom: 1.5rem;
}

.hero-copy__title em {
    font-style: normal;
    color: var(--color-primary);
}

.hero-copy__chip {
    display: inline-block;
    padding: 0.04em 0.22em 0.08em;
    background: var(--color-primary);
    color: var(--color-secondary);
    border-radius: 0.14em;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
}

.hero-copy__text {
    max-width: 620px;
    font-size: clamp(1rem, 1.6vw, 1.125rem);
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.78);
    margin-bottom: 2.25rem;
}

.hero-premium-search {
    width: min(900px, 100%);
    margin-top: 0;
    padding: 1.1rem;
    background: rgba(17, 17, 17, 0.38);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 22px;
    box-shadow: 0 20px 54px rgba(0, 0, 0, 0.26);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.hero-premium-search__tabs {
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    align-items: center;
    gap: 0.12rem;
    width: min(700px, 100%);
    padding: 0.18rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    margin-inline: auto;
    overflow: hidden;
}

.hero-tab {
    position: relative;
    z-index: 1;
    min-width: 0;
    height: 38px;
    padding: 0 0.75rem;
    border-radius: 999px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #fff;
    transition: color var(--transition-fast);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-tab.is-active {
    color: #111;
}

.hero-tab-indicator {
    position: absolute;
    top: 4px;
    left: 0;
    width: calc((100% - (0.12rem * 4) - 0.36rem) / 5);
    height: 38px;
    border-radius: 999px;
    background: #F3CC52;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), width 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-premium-search__form {
    margin-top: 1rem;
    display: grid;
    grid-template-columns: minmax(420px, 700px) auto;
    gap: 0.8rem;
    align-items: stretch;
    justify-content: center;
}

.hero-premium-search__input-wrap {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-height: 52px;
    padding: 0 1.05rem;
    border-radius: 20px;
    background: #fff;
    border: 1px solid rgba(255, 255, 255, 0.35);
    transition: box-shadow var(--transition-fast), transform var(--transition-fast);
}

.hero-premium-search__input-wrap:focus-within {
    box-shadow: none;
    transform: none;
}

.hero-premium-search__icon {
    color: #111;
    flex-shrink: 0;
}

.hero-premium-search__input {
    flex: 1;
    min-width: 0;
    border: none;
    outline: none;
    background: transparent;
    font-size: 0.9rem;
    color: #111;
    box-shadow: none;
}

.hero-premium-search__input:focus,
.hero-premium-search__input:focus-visible {
    outline: none;
    box-shadow: none;
}

.hero-premium-search__input::placeholder {
    color: rgba(17, 17, 17, 0.54);
}

.hero-suggestions {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    right: 0;
    display: grid;
    gap: 0.25rem;
    padding: 0.5rem;
    border-radius: 16px;
    background: #fff;
    border: 1px solid rgba(17, 17, 17, 0.08);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.16);
    z-index: 5;
}

.hero-suggestions[hidden] {
    display: none !important;
}

.hero-suggestions button {
    text-align: left;
    font-size: 0.875rem;
    padding: 0.55rem 0.65rem;
    border-radius: 10px;
    color: #111;
}

.hero-suggestions button:hover {
    background: #FCF7E8;
}

.hero-premium-filters {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.5rem;
    width: 170px;
}

.hero-filter {
    position: relative;
}

.hero-filter__trigger {
    width: 100%;
    min-height: 60px;
    padding: 0 0.85rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 0.82rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.25rem;
    transition: background var(--transition-fast), transform var(--transition-fast), border-color var(--transition-fast);
}

.hero-filter__trigger::after {
    content: '▾';
    opacity: 0.9;
}

.hero-filter__trigger:hover,
.hero-filter.is-open .hero-filter__trigger {
    background: rgba(255, 255, 255, 0.24);
    border-color: rgba(255, 255, 255, 0.32);
    transform: translateY(-1px);
}

.hero-filter__menu {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    right: 0;
    display: grid;
    gap: 0.2rem;
    padding: 0.4rem;
    border-radius: 14px;
    background: rgba(18, 18, 18, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.36);
    opacity: 0;
    transform: translateY(6px);
    animation: dropdownIn 0.24s ease forwards;
    z-index: 6;
}

.hero-filter__menu[hidden] {
    display: none !important;
}

.hero-filter__menu button {
    color: #fff;
    text-align: left;
    font-size: 0.8125rem;
    padding: 0.5rem 0.55rem;
    border-radius: 9px;
}

.hero-filter__menu button:hover {
    background: #F3CC52;
    color: #111;
}

.hero-premium-search__submit {
    min-height: 52px;
    padding: 0 1.2rem;
    width: 110px;
    border-radius: 20px;
    background: #F3CC52;
    color: #111;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    box-shadow: 0 16px 36px rgba(243, 204, 82, 0.34);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.hero-premium-search__submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 20px 42px rgba(243, 204, 82, 0.44);
}

.hero-popular {
    margin-top: 1.1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.hero-shortcuts {
    margin-top: clamp(1.4rem, 3vw, 2rem);
    padding-block: clamp(1rem, 2vw, 1.4rem);
    display: grid;
    grid-template-columns: repeat(6, minmax(88px, 104px));
    justify-content: center;
    gap: 0.4rem;
}

.hero-shortcut-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    padding: 0.45rem 0.25rem 0.55rem;
    border-radius: 14px;
    border: none;
    background: transparent;
    color: var(--color-secondary);
    transition: transform var(--transition-fast), color var(--transition-fast), background var(--transition-fast);
}

.hero-shortcut-item:hover {
    transform: translateY(-2px);
    color: #111;
    background: #F8DE85;
}

.hero-shortcut-item:hover .hero-shortcut-item__icon {
    background: transparent;
}

.hero-shortcut-item__icon {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    border: none;
    color: currentColor;
    background: rgba(255, 255, 255, 0.84);
}

.hero-shortcut-item__icon svg {
    width: 20px;
    height: 20px;
}

.hero-shortcut-item__label {
    font-size: 0.8125rem;
    font-weight: 500;
    text-align: center;
    line-height: 1.2;
}

.hero-chip {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 0.75rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 0.75rem;
    transition: transform var(--transition-fast), background var(--transition-fast), border-color var(--transition-fast);
}

.hero-chip:hover {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 0.22);
    border-color: rgba(255, 255, 255, 0.32);
}

.hero-live-stats {
    margin-top: 1rem;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.65rem;
}

.hero-live-stat {
    padding: 0.95rem 1rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-live-stat__value {
    display: block;
    font-family: var(--font-heading);
    font-size: clamp(1.22rem, 2vw, 1.55rem);
    line-height: 1;
    color: #fff;
}

.hero-live-stat__label {
    display: block;
    margin-top: 0.3rem;
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.74rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

@keyframes dropdownIn {
    from {
        opacity: 0;
        transform: translateY(6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Animations */
.hero-animate {
    opacity: 0;
}

body.is-ready .hero-animate--nav {
    animation: fadeDown 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.1s forwards;
}

body.is-ready .hero-animate--fade {
    animation: heroFadeIn 1s cubic-bezier(0.22, 1, 0.36, 1) 0.2s forwards;
}

body.is-ready .hero-animate--search {
    animation: heroSearchUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.5s forwards;
}

body.is-ready .hero-animate--scroll {
    animation: heroSearchUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.65s forwards;
}

@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroSearchUp {
    from {
        opacity: 0;
        transform: translateY(32px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translateY(-16px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-scroll-indicator {
    position: absolute;
    left: 50%;
    bottom: 0.95rem;
    transform: translateX(-50%);
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    color: rgba(255, 255, 255, 0.85);
    text-transform: uppercase;
    pointer-events: auto;
}

.hero-swipe-section {
    display: flex;
    justify-content: center;
    padding-top: 0.25rem;
}

.hero-scroll-indicator--section {
    position: static;
    transform: none;
    color: rgba(17, 17, 17, 0.9);
    width: 40px;
    height: 40px;
    border-radius: 999px;
    justify-content: center;
    background: #F3CC52;
    border: none;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    animation: swipeFollow 1.6s ease-in-out infinite;
}

.hero-scroll-indicator--section .hero-scroll-indicator__arrow {
    animation: none;
}

@keyframes swipeFollow {

    0%,
    100% {
        transform: translateY(0);
    }

    25% {
        transform: translateY(-2px);
    }

    75% {
        transform: translateY(2px);
    }
}

.hero-scroll-indicator__arrow {
    font-size: 1.25rem;
    line-height: 1;
    animation: bounceArrow 1.8s infinite;
}

@keyframes bounceArrow {

    0%,
    100% {
        transform: translateY(0);
        opacity: 0.75;
    }

    50% {
        transform: translateY(6px);
        opacity: 1;
    }
}

/* Inner page offset */
.page--inner .page-hero {
    padding-top: calc(72px + 1.5rem);
}

/* ═══════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════ */

@media (max-width: 1024px) {
    .hero--vista {
        padding-top: calc(68px + 0.75rem);
    }

    .hero-showcase {
        min-height: clamp(460px, 72vw, 560px);
    }

    .header--vista .header__shell {
        display: grid;
        grid-template-columns: 1fr auto 1fr;
        height: 100px;
        z-index: 3000;
        column-gap: 0.5rem;
    }

    .header__logo {
        width: 88px;
        height: 88px;
        flex-shrink: 0;
    }

    .header__pills {
        justify-content: center;
        gap: 0.4rem;
        mask-image: none;
    }

    .header__pill {
        min-height: 36px;
        padding: 0.35rem 0.7rem;
        font-size: 0.72rem;
    }

    .header__pill-label {
        max-width: 7.5rem;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .header__login span:first-child {
        display: none;
    }

    .header__login {
        padding: 0.3rem;
        min-height: 36px;
        width: 36px;
        justify-content: center;
    }

    .header__toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        position: relative;
        z-index: 3001;
        width: 36px;
        height: 36px;
        flex-shrink: 0;
        background: #111111 !important;
        border: none !important;
        border-radius: 50% !important;
        box-shadow: none !important;
        color: #ffffff;
    }

    .header__toggle.is-active {
        background: var(--color-primary) !important;
        color: #111111;
    }

    /* Menü açıkken navbar sabit kalsın — efekt/hareket yok */
    .header.is-menu-open .header__shell,
    .header--vista.is-menu-open .header__shell {
        background: transparent !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        height: 100px !important;
        transform: none !important;
        transition: none !important;
        padding-inline: var(--container-padding) !important;
    }

    .header--vista.is-menu-open {
        position: fixed !important;
        transform: none !important;
        transition: none !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        top: 0 !important;
    }

    .header__nav {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: auto;
        width: 60%;
        max-width: 60%;
        height: 100%;
        height: 100dvh;
        margin: 0;
        padding: 4rem 1.5rem 2rem;
        background: #ffffff;
        box-shadow: -12px 0 40px rgba(0, 0, 0, 0.12);
        border-radius: 0;
        opacity: 1;
        visibility: hidden;
        pointer-events: none;
        overflow: hidden;
        overscroll-behavior: none;
        transform: translateX(100%);
        transition:
            transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
            visibility 0.4s;
        z-index: 2990;
    }

    .header__nav.is-open {
        pointer-events: auto;
        transform: translateX(0);
        visibility: visible;
    }

    .header--vista.is-menu-open .header__pills--bar {
        visibility: hidden;
        pointer-events: none;
    }

    .header--vista.is-menu-open .header__utils,
    .header--vista.is-menu-open .header__login,
    .header--vista.is-menu-open .header__toggle {
        position: relative;
        z-index: 3002;
        visibility: visible;
        pointer-events: auto;
    }

    .header__menu {
        gap: 1.1rem;
        overflow: hidden;
        justify-content: flex-start;
        margin: 0;
    }

    .header__nav-icons,
    .header__nav-icon {
        display: none !important;
    }

    .header__nav-divider {
        margin: 1.35rem 0;
    }

    .header__nav-pills {
        gap: 0.7rem;
    }

    .header__pill--nav {
        min-height: 44px;
        font-size: 0.88rem;
    }

    .header__nav-email {
        font-size: 0.68rem;
        letter-spacing: -0.01em;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .hero-swipe-section {
        display: none;
    }

    .header__dealer-btn {
        display: none;
    }

    .header__link {
        font-size: 1.35rem;
        font-family: var(--font-heading);
        font-weight: 700;
        color: var(--color-secondary);
        padding: 0.15rem 0;
    }

    .header--inner .header__link {
        color: var(--color-secondary);
    }

    .hero-premium-search {
        width: min(94%, 760px);
        padding: 1.15rem;
        border-radius: 22px;
    }

    .hero-premium-search__tabs {
        width: auto;
    }

    .hero-premium-search__form {
        grid-template-columns: 1fr;
    }

    .hero-premium-filters {
        grid-template-columns: 1fr;
    }

    .hero-premium-search__submit {
        width: 100%;
    }

    .hero-live-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero-shortcuts {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .hero--vista {
        padding-top: calc(100px + 0.5rem);
    }

    .header__nav {
        top: 0;
        width: 60%;
        max-width: 60%;
        padding: 3.85rem 1.25rem 2rem;
    }

    .header__nav-email {
        font-size: 0.62rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .hero-showcase {
        min-height: clamp(480px, 108vw, 560px);
        border-radius: 20px;
    }

    .hero__content {
        padding: 1rem;
    }

    .hero-premium-search {
        width: 100%;
        margin-top: 0;
        padding: 1rem;
        border-radius: 20px;
    }

    .hero-tab {
        min-width: 78px;
        height: 36px;
        font-size: 0.75rem;
        padding: 0 0.55rem;
        line-height: 1;
    }

    .hero-tab-indicator {
        top: 0;
        height: 36px;
    }

    .hero-premium-search__tabs {
        gap: 0.08rem;
        padding: 0.12rem;
    }

    .hero-premium-search__form {
        gap: 0.65rem;
        margin-top: 0.85rem;
    }

    .hero-premium-search__input-wrap {
        min-height: 48px;
        padding: 0 0.85rem;
        border-radius: 16px;
    }

    .hero-premium-search__submit {
        width: 100%;
        min-height: 48px;
        padding: 0 0.9rem;
        font-size: 0.8rem;
        border-radius: 18px;
    }

    .hero-premium-search__input-wrap,
    .hero-filter__trigger,
    .hero-premium-search__submit {
        min-height: 48px;
    }

    .hero-premium-filters {
        grid-template-columns: 1fr;
    }

    .hero-live-stats {
        grid-template-columns: 1fr;
    }

    .hero-shortcuts {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 0.45rem;
    }

    .hero-popular {
        gap: 0.4rem;
    }

    .hero-chip {
        min-height: 30px;
        padding: 0 0.55rem;
        font-size: 0.7rem;
    }

    .hero-scroll-indicator__text {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero__bg-image {
        transition: none;
        opacity: 0;
        transform: none;
    }

    .hero__bg-image.is-active {
        opacity: 1;
    }

    .hero__bg-image--slide:not(:first-child) {
        display: none;
    }

    .hero-animate {
        opacity: 1;
        animation: none !important;
    }
}