*, *::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: 13px;
        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: 13px;
    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);
        }
/* ─── HERO ─── */
.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-inner {
    max-width: var(--max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

@media (min-width: 768px) {
    .hero-inner {
        grid-template-columns: 1fr 1fr;
        gap: 64px;
    }
}

.hero-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,.5);
    margin-bottom: 14px;
}

.hero-title {
    font-size: clamp(32px, 8vw, 56px);
    font-weight: 600;
    letter-spacing: -0.03em;
    line-height: 1.03;
    color: var(--white);
    margin-bottom: 14px;
}

.hero-sub {
    font-size: 17px;
    color: rgba(255,255,255,.65);
    line-height: 1.55;
    max-width: 480px;
}
/* ─── FİLTRE ÇUBUĞU ─── */
#filtre {
    padding: 32px 24px;
    background: var(--white);
    border-bottom: 1px solid var(--gray-3);
    position: sticky;
    top: 52px;
    z-index: 50;
}

@media (min-width: 768px) {
    #filtre {
        padding: 24px 40px;
        top: 56px;
    }
}

.filtre-inner {
    max-width: var(--max);
    margin: 0 auto;
    display: flex;
    gap: 8px;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 2px;
}

    .filtre-inner::-webkit-scrollbar {
        display: none;
    }

.filtre-btn {
    flex-shrink: 0;
    padding: 8px 16px;
    border-radius: var(--radius-btn);
    font-size: 13px;
    font-weight: 500;
    font-family: var(--font);
    border: 1px solid var(--gray-3);
    background: var(--white);
    color: var(--black);
    cursor: pointer;
    transition: background 0.15s, color 0.15s, border-color 0.15s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

    .filtre-btn .material-symbols-outlined {
        font-size: 15px;
        font-variation-settings: 'FILL' 0,'wght' 400,'GRAD' 0,'opsz' 20;
    }

    .filtre-btn.active {
        background: var(--black);
        color: var(--white);
        border-color: var(--black);
    }

    .filtre-btn:not(.active):hover {
        border-color: var(--black);
    }

.filtre-divider {
    width: 1px;
    background: var(--gray-3);
    flex-shrink: 0;
    margin: 4px 4px;
}
/* ─── FİLTRE ─── */
#filtre {
    padding: 32px 24px 0;
    position: sticky;
    top: 56px;
    z-index: 90;
    background: var(--white);
}

@media (min-width: 768px) {
    #filtre {
        padding: 40px 40px 0;
    }
}

.filtre-inner {
    max-width: var(--max);
    margin: 0 auto;
}

.filtre-bar {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-bottom: 12px;
    border-bottom: none;
    min-width: 0;
    width: 100%;
}

.filtre-search {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #F5F5F7;
    border-radius: 12px;
    padding: 12px 16px;
    min-width: 0;
    width: 100%;
}

.filtre-search .material-symbols-outlined {
    font-size: 20px;
    color: var(--gray-2);
}

.filtre-search input {
    border: none;
    background: none;
    outline: none;
    font-size: 15px;
    width: 100%;
    min-width: 0;
    color: var(--black);
}

.filtre-search input::placeholder {
    color: var(--gray-2);
}

.filtre-chip-row {
    display: grid;
    grid-template-columns: auto 34px minmax(0, 1fr) 34px;
    align-items: center;
    gap: 8px;
    min-width: 0;
}

.filtre-chips {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0;
    min-width: 0;
}

.filtre-chips::-webkit-scrollbar { display: none; }

.filtre-chip-main {
    position: relative;
    z-index: 1;
}

.filtre-chip-arrow {
    width: 34px;
    height: 34px;
    border: 1px solid var(--gray-3);
    border-radius: 50%;
    background: var(--white);
    color: var(--black);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: opacity 0.15s, border-color 0.15s, background 0.15s;
}

.filtre-chip-arrow:hover {
    border-color: var(--black);
    background: var(--gray-1);
}

.filtre-chip-arrow .material-symbols-outlined {
    font-size: 20px;
}

.filtre-chip-arrow.chip-arrow-hidden {
    opacity: 0.32;
    pointer-events: none;
}

.filtre-chip {
    flex-shrink: 0;
    padding: 8px 16px;
    border-radius: 20px;
    border: 1px solid var(--gray-3);
    background: var(--white);
    font-size: 13px;
    font-weight: 500;
    color: var(--black);
    cursor: pointer;
    transition: all 0.15s;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.filtre-chip:hover {
    border-color: var(--black);
}

.filtre-chip.active {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
}

.chip-count {
    font-size: 11px;
    opacity: 0.6;
}

.bos-uyari {
    text-align: center;
    padding: 80px 20px;
    color: var(--gray-2);
}

.bos-uyari p {
    margin-top: 12px;
    font-size: 15px;
}

/* ─── ARAÇ LİSTESİ ─── */
#liste {
    padding: 32px 24px 80px;
}

@media (min-width: 768px) {
    #liste {
        padding: 64px 40px 100px;
    }
}

.liste-inner {
    max-width: var(--max);
    margin: 0 auto;
}

.model-group {
    margin-bottom: 56px;
}

.model-group-header {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 24px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--gray-3);
}

.model-group-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--black);
    letter-spacing: -0.01em;
}

.model-group-count {
    font-size: 13px;
    color: var(--gray-2);
}

/* Arac slider wrapper — ok butonlarıyla kart kart ilerleyen slider */
.arac-slider-wrapper {
    position: relative;
}

.arac-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 16px;
    overflow: visible;
    scroll-snap-type: none;
    scrollbar-width: none;       /* Firefox */
    -ms-overflow-style: none;    /* IE/Edge */
    padding-bottom: 4px;
    min-width: 0;
    scroll-behavior: smooth;
}

.filtre-chips.dragging,
.arac-grid.dragging {
    cursor: grabbing;
    scroll-snap-type: none;
    user-select: none;
}

.arac-grid::-webkit-scrollbar {
    display: none;               /* Chrome/Safari */
}

.arac-grid > a {
    min-width: 0;
    scroll-snap-align: start;
}

@media (max-width: 767px) {
    .arac-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
    }

    .arac-grid > a {
        flex-grow: 0 !important;
        flex-shrink: 0 !important;
        flex-basis: 280px !important;
        width: 280px !important;
    }
}

.firsat-kart-link {
    display: block;
    color: inherit;
    text-decoration: none;
    min-width: 0;
}

/* Ok butonları */
.arac-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: var(--black, #111);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(0,0,0,0.18);
    transition: background 0.2s, opacity 0.18s, transform 0.2s, visibility 0.18s;
    opacity: 0.85;
}

.arac-slider-btn:hover {
    background: #333;
    opacity: 1;
    transform: translateY(-50%) scale(1.08);
}

.arac-slider-btn.slider-btn-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-50%) scale(0.8);
}

.arac-slider-btn .material-symbols-outlined {
    font-size: 26px;
    line-height: 1;
}

.arac-slider-prev {
    left: -22px;
}

.arac-slider-next {
    right: -22px;
}

/* Mobilde butonları içe çek */
@media (max-width: 600px) {
    .arac-slider-prev { left: 4px; }
    .arac-slider-next { right: 4px; }
    .arac-slider-btn {
        width: 36px;
        height: 36px;
        opacity: 0.9;
    }
    .arac-slider-btn .material-symbols-outlined {
        font-size: 22px;
    }
}


.arac-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    color: var(--black);
    border: 1px solid var(--gray-3);
    border-radius: var(--radius-card);
    overflow: hidden;
    transition: border-color 0.2s;
}

.arac-img {
    position: relative;
    aspect-ratio: 16/9;
    background: var(--gray-1);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 14px;
    border-bottom: 1px solid var(--gray-3);
}

.arac-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.arac-fav-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,.9);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 1px 4px rgba(0,0,0,.15);
    transition: transform 0.15s;
    z-index: 2;
}

    .arac-fav-btn:hover {
        transform: scale(1.08);
    }

    .arac-fav-btn .material-symbols-outlined {
        font-size: 18px;
        color: var(--gray-2);
        font-variation-settings: 'FILL' 0, 'wght' 500;
    }

    .arac-fav-btn.active .material-symbols-outlined {
        color: #E0245E;
        font-variation-settings: 'FILL' 1, 'wght' 500;
    }

    .arac-img .ph-icon {
        font-size: 20px;
        opacity: 0.3;
        margin-bottom: 6px;
    }

    .arac-img .ph-name {
        font-size: 10px;
        font-weight: 600;
        color: var(--black);
    }

    .arac-img .ph-dims {
        font-size: 9px;
        color: var(--gray-2);
        margin-top: 2px;
    }

    .arac-img .ph-folder {
        font-size: 9px;
        color: var(--gray-3);
        margin-top: 2px;
    }

.arac-body {
    padding: 14px 16px 16px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.arac-detaylar {
    margin-bottom: 8px;
}
/* Etiketler */
.arac-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 10px;
}

.tag {
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 3px 7px;
    border-radius: 4px;
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 3px;
}

    .tag .material-symbols-outlined {
        font-size: 12px;
        font-variation-settings: 'FILL' 0,'wght' 400,'GRAD' 0,'opsz' 20;
        color: #fff;
    }

    .tag.green {
        background: #1a6b3a;
    }

    .tag.dark {
        background: #1D1D1F;
    }

    .tag.navy {
        background: #1a3a6b;
    }

    .tag.darkgray {
        background: #3a3a3a;
    }

.arac-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 4px;
    letter-spacing: -0.01em;
    line-height: 1.25;
}

.arac-detay {
    font-size: 11px;
    color: var(--gray-2);
    margin-bottom: 10px;
    line-height: 1.5;
}



.opsiyon-satir {
    display: block;
    font-size: 11px;
    color: var(--gray-2);
    line-height: 1.6;
}

.opsiyon-gizli {
    display: none;
}

.opsiyon-gizli.acik {
    display: block;
}

.opsiyon-toggle {
    display: inline-flex;
    align-items: center;
    margin-top: 6px;
    padding: 3px 10px;
    border-radius: 20px;
    border: 1px solid var(--gray-3);
    background: var(--gray-1);
    color: var(--black);
    font-size: 11px;
    font-weight: 500;
    cursor: pointer;
    font-family: var(--font);
    transition: background 0.15s, border-color 0.15s;
}

.opsiyon-toggle:hover {
    background: var(--gray-3);
    border-color: var(--black);
}

.arac-fiyat-row {
    margin-top: auto;
    padding-top: 10px;
    margin-bottom: 0;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 10px;
    border-top: 1px solid #E5E5EA;
}
.arac-fiyat-blok {
    display: flex;
    flex-direction: column;
    min-width: 0;
}
.arac-fiyat-liste {
    font-size: 13px;
    font-weight: 500;
    color: #86868B;
    text-decoration: line-through;
}
.arac-fiyat {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: -0.015em;
    color: var(--black);
}
.arac-fiyat-indirimli {
    color: #E8000D;
}
.arac-fiyat-liste + .arac-fiyat {
    padding-top: 2px;
}

/* Engelli/ÖTV muafiyet rozeti + hover tooltip */
.engelli-ikon {
    position: relative;
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: help;
    flex-shrink: 0;
}
.engelli-ikon .material-symbols-outlined {
    font-size: 26px;
    color: #2F5BFF;
}
.engelli-ikon-text {
    font-size: 10px;
    line-height: 1.25;
    font-weight: 500;
    color: #2F5BFF;
}
.engelli-tooltip {
    position: absolute;
    bottom: 100%;
    right: 0;
    margin-bottom: 8px;
    background: var(--white);
    border: 1px solid var(--gray-3);
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 12px;
    line-height: 1.4;
    white-space: nowrap;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(4px);
    transition: opacity 0.15s, transform 0.15s;
    z-index: 20;
}
.engelli-tooltip strong {
    display: block;
    color: var(--black);
}
.engelli-tooltip span {
    color: var(--gray-2);
}
.engelli-ikon:hover .engelli-tooltip,
.engelli-ikon:focus-visible .engelli-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.arac-iletisim-btn {
    width: 100%;
    padding: 11px;
    border-radius: 10px;
    background: var(--black);
    color: var(--white);
    font-size: 13px;
    font-weight: 500;
    border: none;
    cursor: pointer;
    font-family: var(--font);
    transition: opacity 0.15s, transform 0.15s;
    margin-bottom: 4px;
}

.arac-iletisim-btn:hover {
    opacity: 0.85;
    transform: scale(1.01);
}

.btn-incele {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 8px 16px;
    border-radius: var(--radius-btn);
    background: var(--black);
    color: var(--white);
    font-size: 12px;
    font-weight: 500;
    font-family: var(--font);
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: opacity 0.2s;
}

    .btn-incele:hover {
        opacity: 0.8;
    }
/* ─── 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: 13px;
    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: 13px;
        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: 12px;
    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: 13px;
            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: 12px;
    color: rgba(255,255,255,0.3);
}

.footer-legal {
    display: flex;
    gap: 16px;
}

    .footer-legal a {
        font-size: 12px;
        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: 13px;
    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: 12px;
    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);
    }


.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);
    }
/* Kart tıklanabilir */
.arac-card {
    cursor: pointer;
}

.arac-card-body {
    position: relative;
}
/* ─── MOBILE ≤480px ─── */
@media (max-width: 480px) {
    .hero {
        padding: 56px 16px 48px;
    }

    #filtre {
        padding: 24px 16px;
    }

    .filtre-inner {
        gap: 6px;
    }

    .filtre-btn {
        padding: 7px 12px;
        font-size: 12px;
    }

    .filtre-chip-row {
        grid-template-columns: auto 30px minmax(0, 1fr) 30px;
        gap: 6px;
    }

    .filtre-chip-arrow {
        width: 30px;
        height: 30px;
    }

    #liste {
        padding: 40px 16px 64px;
    }

    .arac-grid {
        gap: 10px;
    }

    .arac-body {
        padding: 10px 12px 14px;
    }

    .arac-name {
        font-size: 13px;
    }

    .arac-detay {
        font-size: 10px;
        margin-bottom: 6px;
    }

    .arac-fiyat {
        font-size: 14px;
        margin-bottom: 8px;
    }

    .footer-hours {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}


/* ─── DÜZENLEME VURGUSU ─── */
#duzenleme {
    padding: 40px 24px 60px;
    background: transparent;
}

@media (min-width: 768px) {
    #duzenleme {
        padding: 56px 40px 80px;
    }
}

.duzenleme-inner {
    max-width: var(--max);
    margin: 32px auto 48px;
    padding: 0 24px;
}

.duzenleme-kutu {
    background: #1a6b3a;
    border-radius: 16px;
    padding: 28px 32px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 24px;
}

.duzenleme-icon {
    font-size: 28px;
    flex-shrink: 0;
    margin-top: 2px;
}

.duzenleme-text h3 {
    font-size: 18px;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 6px;
    letter-spacing: -0.015em;
}

.duzenleme-text p {
    font-size: 15px;
    color: rgba(255,255,255,0.75);
    line-height: 1.6;
}

.duzenleme-text .tarih {
    display: inline-block;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    margin-bottom: 8px;
}


/* Sadece hero-sag sınıfı verilen hero */
.hero.hero-sag .hero-content {
    display: flex;
    justify-content: flex-end;
}

.hero.hero-bina .hero-sub {
    margin-left: auto;
    text-align: right;
}

.hero.hero-sag .hero-content-inner {
    width: 100%;
    max-width: 560px;
    text-align: right;
}

.hero.hero-sag .hero-ctas {
    justify-content: flex-end;
}
@media (max-width: 767px) {
    .hero.hero-sag .hero-content {
        justify-content: flex-start;
    }

    .hero.hero-sag .hero-content-inner {
        text-align: left;
    }

    .hero.hero-sag .hero-ctas {
        justify-content: flex-start;
    }
    .hero.hero-bina .hero-sub {
        margin-left: 0;
        text-align: left;
    }
}

.hero.hero-sag .hero-overlay {
    background: linear-gradient( to left, rgba(0, 0, 0, 0.66) 0%, rgba(0, 0, 0, 0.36) 50%, rgba(0, 0, 0, 0.08) 100% );
}

/* Yalnızca ana sayfadaki bina hero görseli */
/* Sadece ana sayfadaki bina hero */
.hero.hero-bina .hero-media .hero-bina-img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    /* Ana bina ve önündeki alanı kadrajın ortasında tutar */
    object-position: 50% 27% !important;
}

/* Dar ekranlarda yatay odağı ana binaya çeker */
@media (max-width: 767px) {
    .hero.hero-bina .hero-media .hero-bina-img {
        object-position: 24% 27% !important;
    }
}