*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --white: #FFFFFF;
    --black: #1D1D1F;
    --gray-1: #F5F5F7;
    --gray-2: #86868B;
    --gray-3: #D2D2D7;
    --gray-4: #6E6E73;
    --font: -apple-system, BlinkMacSystemFont, "Inter", sans-serif;
    --max: 1200px;
    --radius-card: 18px;
    --radius-btn: 980px;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

    html::-webkit-scrollbar {
        display: none;
    }

html {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

body {
    font-family: var(--font);
    background: var(--white);
    color: var(--black);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
/* ─── NAV ─── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    background: rgba(255,255,255,0.82);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--gray-3);
}

.nav-logo {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.nav-links {
    display: none;
    list-style: none;
    gap: 28px;
}

    .nav-links a {
        font-size: 15px;
        font-weight: 500;
        color: var(--black);
        text-decoration: none;
        opacity: 0.75;
        transition: opacity 0.15s, color 0.15s;
    }

        .nav-links a:hover, .nav-links a.active {
            opacity: 1;
            color: #1D1D1F;
        }

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-phone {
    display: none;
    font-size: 15px;
    font-weight: 500;
    color: var(--black);
    text-decoration: none;
    gap: 4px;
    align-items: center;
}

.nav-whatsapp {
    display: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #25D366;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.nav-hamburger {
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    padding: 4px;
}

    .nav-hamburger span {
        display: block;
        width: 20px;
        height: 1.5px;
        background: var(--black);
        border-radius: 2px;
    }

@media (min-width: 1024px) {
    nav {
        padding: 0 40px;
        height: 56px;
    }

    .nav-links {
        display: flex;
    }

    .nav-phone {
        display: flex;
    }

    .nav-whatsapp {
        display: flex;
    }

    .nav-hamburger {
        display: none;
    }
}

.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 99;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(20px);
    padding: 80px 24px 120px;
    flex-direction: column;
}

    .mobile-menu.open {
        display: flex;
    }

    .mobile-menu a {
        font-size: 22px;
        font-weight: 500;
        color: var(--black);
        text-decoration: none;
        padding: 16px 0;
        border-bottom: 1px solid var(--gray-3);
        display: block;
    }

        .mobile-menu a:first-child {
            border-top: 1px solid var(--gray-3);
        }
/* ─── BUTONLAR ─── */
.btn-dark {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 11px 22px;
    border-radius: var(--radius-btn);
    background: var(--black);
    color: var(--white);
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    border: none;
    cursor: pointer;
    font-family: var(--font);
    transition: transform 0.2s, opacity 0.2s;
}

    .btn-dark:hover {
        transform: scale(1.02);
        opacity: 0.85;
    }

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 11px 22px;
    border-radius: var(--radius-btn);
    background: transparent;
    color: var(--black);
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    border: 1px solid var(--gray-3);
    font-family: var(--font);
    transition: transform 0.2s, border-color 0.2s;
    cursor: pointer;
}

    .btn-ghost:hover {
        transform: scale(1.02);
        border-color: var(--black);
    }
/* ─── HERO ─── */
/* ─── HERO PADDING FIX ─── */
.hero {
    margin-top: 52px;
    padding: 56px 24px 48px !important;
    background-color: #1D1D1F !important;
    color: #FFFFFF !important;
}

@media (min-width: 768px) {
    .hero {
        margin-top: 56px;
        padding: 64px 40px 56px !important;
        background-color: #1D1D1F !important;
        color: #FFFFFF !important;
    }
}

/* ─── SLIDER & CHIP FILTERS FOR BRAND PAGES ─── */
.chip-bar {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 8px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}
.chip-bar::-webkit-scrollbar {
    display: none;
}
.chip-btn {
    padding: 6px 16px;
    border-radius: 20px;
    border: 1px solid #D2D2D7;
    background: #FFFFFF;
    font-size: 15px;
    font-weight: 500;
    color: #1D1D1F;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.15s ease;
    user-select: none;
}
.chip-btn:hover {
    border-color: #0071E3;
    color: #0071E3;
}
.chip-btn.active {
    background: #1D1D1F;
    color: #FFFFFF;
    border-color: #1D1D1F;
}

/* ─── KAMPANYA SLIDER EQUAL HEIGHT & BOX FIX ─── */
.kampanya-scroll {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 8px 4px 16px;
    scrollbar-width: none;
    align-items: stretch;
    -webkit-overflow-scrolling: touch;
}

.kampanya-scroll::-webkit-scrollbar {
    display: none;
}

.kmp-kart-wrap {
    flex-shrink: 0;
    width: 290px;
    display: flex;
    flex-direction: column;
}

.kmp-kart-wrap .kmp-kart {
    height: 100%;
    display: flex;
    flex-direction: column;
    width: 100%;
    background: #fff;
    border: 1px solid #E5E5EA;
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.kmp-kart-wrap .kmp-kart:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.kmp-kart-wrap .kmp-kart-img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    background: #F2F2F7;
    display: block;
}

.kmp-kart-wrap .kmp-kart-body {
    padding: 14px 16px 14px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.kmp-kart-wrap .kmp-kart-baslik {
    font-size: 15px;
    font-weight: 700;
    color: #1D1D1F;
    margin-bottom: 4px;
    line-height: 1.3;
}

.kmp-kart-wrap .kmp-kart-alt {
    font-size: 14px;
    color: #6E6E73;
    margin-bottom: 6px;
    line-height: 1.35;
    flex: 1;
}

.kmp-kart-wrap .kmp-kart-fiyat {
    font-size: 15px;
    font-weight: 600;
    color: #1D1D1F;
    margin-bottom: 8px;
}

.kmp-kart-wrap .kmp-kart-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 12px;
    border-top: 1px solid #F2F2F7;
    margin-top: auto;
}

/* ─── FIRSAT SLIDER EQUAL HEIGHT ─── */
.firsat-scroll {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 8px 4px 16px;
    scrollbar-width: none;
    align-items: stretch;
    -webkit-overflow-scrolling: touch;
}

.firsat-scroll::-webkit-scrollbar {
    display: none;
}

.firsat-scroll .firsat-kart {
    flex-shrink: 0;
    width: 280px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.firsat-scroll .firsat-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 14px 16px 16px;
}

.firsat-scroll .firsat-alt {
    margin-top: auto !important;
    padding-top: 12px;
    border-top: 1px solid #F2F2F7;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    width: 100%;
}

.marka-firsat-wrap {
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}

.marka-firsat-scroll {
    max-width: none !important;
    margin: 0 !important;
    padding: 8px 0 20px !important;
    scroll-padding-left: 0;
}

.marka-firsat-scroll > a:first-child {
    margin-left: 0 !important;
}

.marka-firsat-wrap .inline-slider-prev {
    left: 0;
}

.marka-firsat-wrap .inline-slider-next {
    right: 0;
}

@media (max-width: 1240px) {
    .marka-firsat-wrap {
        margin-left: 24px;
        margin-right: 24px;
    }
}

@media (max-width: 600px) {
    .marka-firsat-wrap {
        margin-left: 16px;
        margin-right: 16px;
    }
}

.engelli-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    font-weight: 600;
    color: #0071E3;
    background: #E8F2FD;
    padding: 4px 8px;
    border-radius: 6px;
    white-space: nowrap;
}

.engelli-badge .material-symbols-outlined {
    font-size: 14px;
}

.hero-inner {
    max-width: var(--max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: start;
}

@media (min-width: 768px) {
    .hero-inner {
        grid-template-columns: 1fr 1fr;
        gap: 64px;
        align-items: start;
    }
}

.hero-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.65);
    margin-bottom: 14px;
}

.hero-title {
    font-size: clamp(36px, 6vw, 64px);
    font-weight: 600;
    letter-spacing: -0.03em;
    line-height: 1.05;
    color: var(--white);
    margin-bottom: 14px;
}

.hero-sub {
    font-size: 17px;
    color: rgba(255,255,255,0.68);
    line-height: 1.55;
}

.hero-img-ph {
    background: var(--white);
    border: 1px solid var(--gray-3);
    border-radius: 16px;
    aspect-ratio: 2/1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 24px;
}

    .hero-img-ph .ph-icon {
        font-size: 28px;
        opacity: 0.35;
        margin-bottom: 10px;
    }

    .hero-img-ph .ph-name {
        font-size: 14px;
        font-weight: 600;
        color: var(--black);
    }

    .hero-img-ph .ph-dims {
        font-size: 10px;
        color: var(--gray-2);
        margin-top: 3px;
    }

    .hero-img-ph .ph-folder {
        font-size: 9px;
        color: var(--gray-3);
        margin-top: 3px;
    }
/* ─── FİLTRE ─── */
#filtre {
    padding: 16px 24px 16px !important;
    background: #FFFFFF !important;
    border-bottom: none !important;
    position: relative !important;
    top: auto !important;
    box-shadow: none !important;
}

@media (min-width: 768px) {
    #filtre {
        padding: 20px 40px 16px !important;
        border-bottom: none !important;
    }
}

.filtre-inner {
    max-width: var(--max);
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 8px;
    padding-bottom: 0;
}

.filtre-btn {
    padding: 9px 20px;
    border-radius: var(--radius-btn, 980px);
    font-size: 14px;
    font-weight: 500;
    font-family: var(--font);
    border: 1px solid var(--gray-3, #D2D2D7);
    background: transparent;
    color: var(--black, #1D1D1F);
    cursor: pointer;
    transition: background 0.15s, color 0.15s, border-color 0.15s;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    outline: none;
}

    .filtre-btn.active {
        background: var(--black, #1D1D1F) !important;
        color: var(--white, #FFFFFF) !important;
        border-color: var(--black, #1D1D1F) !important;
    }

    .filtre-btn:not(.active):hover {
        border-color: var(--black, #1D1D1F);
    }
/* ─── MODEL GRID ─── */
#modeller {
    padding: 24px 24px 80px !important;
}

@media (min-width: 768px) {
    #modeller {
        padding: 28px 40px 100px !important;
    }
}

.modeller-inner {
    max-width: var(--max);
    margin: 0 auto;
}

.marka-group {
    margin-bottom: 48px;
}

.marka-group:first-child {
    margin-top: 0 !important;
}

.marka-group-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--gray-3);
}

.marka-group-title {
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--gray-2);
}

.marka-group-count {
    font-size: 14px;
    color: var(--gray-3);
}

.model-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

@media (max-width: 767px) {
    .model-grid {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }
}

@media (min-width: 1200px) {
    .model-grid {
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 20px;
    }
}

@media (min-width: 900px) and (max-width: 1199px) {
    .model-grid {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}

.model-grid .model-card {
    display: flex !important;
    flex-direction: column !important;
    text-decoration: none;
    color: var(--black);
    border: 1px solid var(--gray-3);
    border-radius: var(--radius-card);
    overflow: hidden;
    transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    flex: none !important;
    box-sizing: border-box !important;
}

.model-grid .model-card:hover {
    border-color: var(--black);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.10);
}

.model-card-img {
    width: 100%;
}

.img-ph {
    aspect-ratio: 2/1;
    background: var(--gray-1);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    color: var(--gray-2);
    border-bottom: 1px solid var(--gray-3);
}

.img-ph-inner .ph-icon {
    font-size: 22px;
    opacity: 0.35;
    margin-bottom: 8px;
}

.img-ph-inner .ph-name {
    font-size: 11px;
    font-weight: 600;
    color: var(--black);
}

.img-ph-inner .ph-dims {
    font-size: 9px;
    color: var(--gray-2);
    margin-top: 2px;
}

.img-ph-inner .ph-folder {
    font-size: 9px;
    color: var(--gray-3);
    margin-top: 2px;
}

/* ─── HERO PADDING & THEME FIX ─── */
.hero {
    margin-top: 52px;
    padding: 56px 24px 48px !important;
    background-color: #1D1D1F !important;
    color: #FFFFFF !important;
}

@media (min-width: 768px) {
    .hero {
        margin-top: 56px;
        padding: 64px 40px 56px !important;
        background-color: #1D1D1F !important;
        color: #FFFFFF !important;
    }
}

.hero-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    color: #86868B;
    letter-spacing: 0.08em;
    margin-bottom: 8px;
}

.hero-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    letter-spacing: -0.025em;
    color: #FFFFFF;
    margin-bottom: 12px;
}

.hero-sub {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.55;
    max-width: 600px;
}

/* ─── MODEL CARD FIX ─── */
.model-card-body {
    padding: 18px 48px 20px 20px;
    position: relative;
    background: #FFFFFF;
}

.model-card-brand {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #86868B;
    margin-bottom: 4px;
}

.model-card-name {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.015em;
    color: #1D1D1F;
    margin-bottom: 6px;
}

.model-card-price {
    font-size: 15px;
    color: #86868B;
    margin-bottom: 0;
    line-height: 1.4;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.model-card-price strong {
    font-size: 15px;
    font-weight: 700;
    color: #1D1D1F;
}

.card-arrow-abs {
    position: absolute;
    right: 16px;
    bottom: 20px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #F5F5F7;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1D1D1F;
    transition: background 0.15s, color 0.15s;
}

.model-card:hover .card-arrow-abs {
    background: #1D1D1F;
    color: #FFFFFF;
}

@media (max-width: 767px) {
    .model-card-body {
        padding: 16px 44px 16px 16px !important;
        position: relative;
    }
    .model-card-name {
        font-size: 17px !important;
        margin-bottom: 4px !important;
    }
    .model-card-price {
        font-size: 15px !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
    }
    .model-card-price strong {
        font-size: 15px !important;
    }
    .card-arrow-abs,
    .card-arrow {
        display: flex !important;
        right: 14px !important;
        bottom: 16px !important;
        width: 28px !important;
        height: 28px !important;
    }
}
/* ─── SSS ─── */
#sss {
    background: var(--gray-1);
    padding: 80px 24px;
}

@media (min-width: 768px) {
    #sss {
        padding: 96px 40px;
    }
}

.sss-inner {
    max-width: var(--max);
    margin: 0 auto;
}

.sss-header {
    margin-bottom: 48px;
}

.section-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gray-2);
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 600;
    letter-spacing: -0.025em;
    line-height: 1.1;
    color: var(--black);
}

.accordion {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.accordion-item {
    border-top: 1px solid var(--gray-3);
}

    .accordion-item:last-child {
        border-bottom: 1px solid var(--gray-3);
    }

.accordion-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 22px 0;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font);
    text-align: left;
}

.accordion-q {
    font-size: 16px;
    font-weight: 500;
    color: var(--black);
    line-height: 1.35;
}

.accordion-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid var(--gray-3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

    .accordion-icon .material-symbols-outlined {
        font-size: 16px;
        color: var(--black);
        font-variation-settings: 'FILL' 0,'wght' 400,'GRAD' 0,'opsz' 20;
        transition: transform 0.2s;
    }

.accordion-item.open .accordion-icon {
    background: var(--black);
    border-color: var(--black);
}

    .accordion-item.open .accordion-icon .material-symbols-outlined {
        color: var(--white);
        transform: rotate(45deg);
    }

.accordion-body {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.3s ease-out;
}

.accordion-body-inner {
    padding: 0 0 22px;
    font-size: 15px;
    color: var(--gray-2);
    line-height: 1.7;
    max-width: 680px;
}
/* ─── FOOTER ─── */
footer {
    background: #1D1D1F;
    border-top: 1px solid #333;
    padding: 64px 24px 32px;
    color: rgba(255,255,255,0.6);
}

@media (min-width: 768px) {
    footer {
        padding: 80px 40px 40px;
    }
}

.footer-inner {
    max-width: var(--max);
    margin: 0 auto;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    margin-bottom: 56px;
    padding-bottom: 56px;
    border-bottom: 1px solid #333;
}

@media (min-width: 600px) {
    .footer-top {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 900px) {
    .footer-top {
        grid-template-columns: 2fr 1fr 1fr 1fr;
        gap: 40px;
    }
}

.footer-brand .logo {
    font-size: 18px;
    font-weight: 600;
    color: #FFFFFF;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}

.footer-brand p {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255,255,255,0.45);
}

.footer-brand .contact-info {
    margin-top: 20px;
}

    .footer-brand .contact-info a {
        display: block;
        font-size: 15px;
        color: rgba(255,255,255,0.6);
        text-decoration: none;
        margin-bottom: 6px;
        transition: color 0.15s;
    }

        .footer-brand .contact-info a:hover {
            color: #FFFFFF;
        }

.footer-col h4 {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    margin-bottom: 16px;
}

.footer-col ul {
    list-style: none;
}

    .footer-col ul li {
        margin-bottom: 10px;
    }

        .footer-col ul li a {
            font-size: 15px;
            color: rgba(255,255,255,0.6);
            text-decoration: none;
            transition: color 0.15s;
        }

            .footer-col ul li a:hover {
                color: #FFFFFF;
            }

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

.footer-copy {
    font-size: 14px;
    color: rgba(255,255,255,0.3);
}

.footer-legal {
    display: flex;
    gap: 16px;
}

    .footer-legal a {
        font-size: 14px;
        color: rgba(255,255,255,0.3);
        text-decoration: none;
        transition: color 0.15s;
    }

        .footer-legal a:hover {
            color: rgba(255,255,255,0.7);
        }

.footer-hours {
    padding: 24px;
    background: #2a2a2a;
    border: 1px solid #3a3a3a;
    border-radius: 12px;
    margin-bottom: 40px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.footer-hours-item h5 {
    font-size: 11px;
    font-weight: 500;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 8px;
}

.footer-hours-item p {
    font-size: 15px;
    color: rgba(255,255,255,0.65);
    line-height: 1.6;
}
/* ─── STICKY ALT CTA ─── */
.sticky-cta {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 90;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--gray-3);
    padding: 12px 16px calc(16px + env(safe-area-inset-bottom, 0px));
    gap: 8px;
}

@media (min-width: 768px) {
    .sticky-cta {
        display: none;
    }
}

.sticky-cta-btn {
    flex: 1;
    padding: 12px 8px;
    border-radius: 12px;
    border: 1px solid var(--gray-3);
    background: transparent;
    color: var(--black);
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    font-family: var(--font);
}

    .sticky-cta-btn.wa {
        background: #25D366;
        border-color: #25D366;
        color: #FFFFFF;
        flex: 0 0 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .sticky-cta-btn.primary-m {
        background: var(--black);
        color: var(--white);
        border-color: var(--black);
    }

.chatbot-fab {
    position: fixed;
    bottom: 80px;
    right: 20px;
    z-index: 89;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--black);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
    transition: transform 0.2s;
    text-decoration: none;
}

    .chatbot-fab:hover {
        transform: scale(1.08);
    }

@media (min-width: 768px) {
    .chatbot-fab {
        bottom: 32px;
        right: 32px;
    }
}

.fade-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease-out, transform 0.4s ease-out;
}

    .fade-up.visible {
        opacity: 1;
        transform: translateY(0);
    }
/* hidden for filter */
.model-card.hidden {
    display: none;
}

.marka-group.hidden {
    display: none;
}
/* ─── MOBILE ≤480px ─── */
@media (max-width: 480px) {
    .hero {
        padding: 56px 16px;
    }

    #filtre {
        padding: 32px 16px 24px;
    }

    #modeller {
        padding: 0 16px 64px;
    }

    .model-grid {
        gap: 10px;
    }

    .model-card-body {
        padding: 14px 14px 18px;
    }

    .model-card-name {
        font-size: 15px;
    }

    .model-card-price {
        font-size: 14px;
    }

        .model-card-price strong {
            font-size: 15px;
        }

    .footer-hours {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .filtre-inner {
        gap: 6px;
    }

    .filtre-btn {
        padding: 8px 14px;
        font-size: 15px;
    }
}

@media (max-width: 899px) {
    .model-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .model-card {
        min-width: 0;
        border-radius: 14px;
    }

    .model-card-body {
        min-width: 0;
    }

    .model-card-name,
    .model-card-price {
        overflow-wrap: anywhere;
    }
}

@media (max-width: 600px) {
    .hero {
        padding: 28px 16px 36px;
    }

    .hero-inner {
        gap: 22px;
    }

    .hero-title {
        font-size: 34px;
        line-height: 1.06;
        letter-spacing: -0.025em;
    }

    .hero-sub {
        font-size: 14px;
        line-height: 1.5;
    }

    .hero-img-ph,
    .hero-img-ph img {
        border-radius: 12px !important;
    }

    .filtre-inner {
        overflow-x: auto;
        padding-bottom: 2px;
        scrollbar-width: none;
    }

    .filtre-inner::-webkit-scrollbar {
        display: none;
    }

    .filtre-btn {
        flex: 0 0 auto;
    }

    .marka-group {
        margin-bottom: 36px;
    }

    .marka-group-header {
        margin-bottom: 18px;
    }

    #gchat-root {
        bottom: 86px !important;
        right: 14px !important;
        max-width: calc(100vw - 28px) !important;
    }

    #gchat-pill {
        width: 56px !important;
        height: 56px !important;
        padding: 6px !important;
        justify-content: center !important;
    }

    #gchat-pill .gchat-pill-text,
    #gchat-pill-text,
    #gchat-pill-close {
        display: none !important;
    }

    .chatbot-fab {
        display: none !important;
    }
}

@media (max-width: 380px) {
    .model-grid {
        grid-template-columns: 1fr;
    }
}

/* ─── SLIDER & CHIP FILTERS FOR BRAND PAGES ─── */
.chip-bar {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 8px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}
.chip-bar::-webkit-scrollbar {
    display: none;
}
.chip-btn {
    padding: 6px 16px;
    border-radius: 20px;
    border: 1px solid #D2D2D7;
    background: #FFFFFF;
    font-size: 15px;
    font-weight: 500;
    color: #1D1D1F;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.15s ease;
    user-select: none;
}
.chip-btn:hover {
    border-color: #0071E3;
    color: #0071E3;
}
.chip-btn.active {
    background: #1D1D1F;
    color: #FFFFFF;
    border-color: #1D1D1F;
}

.kampanya-scroll {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 4px 0 12px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}
.kampanya-scroll::-webkit-scrollbar {
    display: none;
}
.kmp-kart-wrap {
    flex-shrink: 0;
    width: 290px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}
.firsat-scroll .firsat-kart {
    flex-shrink: 0;
    width: 280px;
}

/* ─── KAMPANYALAR STYLE TAB BAR ─── */
.kmp-tab-bar {
    background: #ffffff;
    border-bottom: 0.5px solid #E5E5EA;
    position: sticky;
    top: 52px;
    z-index: 30 !important;
    padding: 0 24px;
    margin-bottom: 0 !important;
    width: 100%;
    box-sizing: border-box;
}
.kmp-tab-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 0;
    justify-content: space-between;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}
.kmp-tab-inner::-webkit-scrollbar {
    display: none;
}
.kmp-tab-btn {
    flex: 1 1 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 7px;
    padding: 16px 12px;
    font-size: 14px;
    font-weight: 500;
    color: #86868B;
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    cursor: pointer;
    white-space: nowrap;
    text-decoration: none !important;
    font-family: inherit;
    transition: color 0.15s, border-color 0.15s;
    box-sizing: border-box;
}
.kmp-tab-btn:hover {
    color: #1D1D1F;
}
.kmp-tab-btn.active {
    color: #1D1D1F;
    border-bottom-color: #1D1D1F;
    font-weight: 600;
}

@media (max-width: 767px) {
    .kmp-tab-bar {
        position: sticky;
        top: 52px;
        padding: 0;
        z-index: 30 !important;
        background: #ffffff;
    }
    .kmp-tab-inner {
        width: 100%;
        gap: 0;
        justify-content: space-between;
    }
    .kmp-tab-btn {
        flex: 1 1 0px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 12px 4px;
        font-size: 14px;
        gap: 4px;
    }
}

/* ─────────────────────────────────────────────
   ÖNE ÇIKAN FIRSAT ARAÇLARI
───────────────────────────────────────────── */

#one-cikan-firsatlar {
    background: #F5F5F7;
    padding: 72px 24px 80px;
}

    #one-cikan-firsatlar .featured-opportunities-inner {
        max-width: 1200px;
        margin: 0 auto;
    }

    /* Başlık ve buton */
    #one-cikan-firsatlar .model-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: nowrap;
        gap: 32px;
        margin-bottom: 32px;
    }

    #one-cikan-firsatlar .section-label {
        margin-bottom: 8px;
        font-size: 11px;
        font-weight: 600;
        line-height: 1.2;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: #86868B;
    }

    #one-cikan-firsatlar .section-title {
        margin: 0;
        max-width: 800px;
        font-size: clamp(32px, 4vw, 44px);
        font-weight: 600;
        line-height: 1.08;
        letter-spacing: -0.03em;
        color: #1D1D1F;
    }

    #one-cikan-firsatlar .btn-ghost {
        flex: 0 0 auto;
        white-space: nowrap;
    }

    /* Slider taşıyıcısı */
    #one-cikan-firsatlar .scroll-fade-wrap {
        position: relative;
        width: 100%;
    }

    #one-cikan-firsatlar .firsat-scroll {
        display: flex !important;
        flex-wrap: nowrap !important;
        align-items: stretch;
        justify-content: flex-start !important;
        gap: 20px !important;
        width: 100%;
        margin: 0 !important;
        padding: 8px 2px 20px !important;
        overflow-x: auto;
        overflow-y: visible;
        scroll-behavior: smooth;
        scroll-snap-type: x proximity;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }

        #one-cikan-firsatlar .firsat-scroll::-webkit-scrollbar {
            display: none;
        }

        /*
   Asıl düzeltme:
   Flex elemanı kart değil, kartı saran <a> etiketidir.
*/
        #one-cikan-firsatlar .firsat-scroll > a.firsat-kart-link {
            display: flex;
            flex: 0 0 280px !important;
            width: 280px !important;
            min-width: 280px !important;
            max-width: 280px !important;
            height: auto;
            color: inherit;
            text-decoration: none;
            scroll-snap-align: start;
        }

            /* İç kart bağlantının tamamını doldursun */
            #one-cikan-firsatlar
            .firsat-scroll > a.firsat-kart-link > .firsat-kart {
                display: flex;
                flex-direction: column;
                width: 100% !important;
                min-width: 0 !important;
                height: 100%;
                margin: 0 !important;
            }

/* Hover sırasında diğer kartlara taşmasın */
@media (hover: hover) {
    #one-cikan-firsatlar
    .firsat-scroll > a.firsat-kart-link:hover > .firsat-kart {
        transform: translateY(-3px);
    }
}

/* Tablet */
@media (max-width: 1024px) {
    #one-cikan-firsatlar {
        padding: 60px 24px 68px;
    }

        #one-cikan-firsatlar .model-header {
            margin-bottom: 28px;
        }

        #one-cikan-firsatlar .firsat-scroll {
            gap: 16px !important;
        }
}

/* Mobil */
@media (max-width: 767px) {
    #one-cikan-firsatlar {
        padding: 44px 16px 50px;
    }

        #one-cikan-firsatlar .model-header {
            flex-direction: column;
            align-items: flex-start;
            justify-content: flex-start;
            gap: 14px;
            margin-bottom: 24px;
        }

        #one-cikan-firsatlar .section-title {
            font-size: 28px;
            line-height: 1.12;
        }

        #one-cikan-firsatlar .btn-ghost {
            padding: 9px 18px;
            font-size: 13px;
        }

        #one-cikan-firsatlar .scroll-fade-wrap {
            width: auto;
            margin-right: -16px;
        }

        #one-cikan-firsatlar .firsat-scroll {
            gap: 12px !important;
            padding: 4px 16px 18px 0 !important;
            scroll-padding-left: 0;
        }

            #one-cikan-firsatlar .firsat-scroll > a.firsat-kart-link {
                flex: 0 0 min(78vw, 310px) !important;
                width: min(78vw, 310px) !important;
                min-width: min(78vw, 310px) !important;
                max-width: min(78vw, 310px) !important;
            }
}