*, *::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;
    --green-dark: #1a6b3a;
    --green-bg: #f0fdf4;
}

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: 400;
        color: var(--black);
        text-decoration: none;
        opacity: 0.8;
        transition: opacity 0.15s;
    }

        .nav-links a:hover, .nav-links a.active {
            opacity: 1;
            font-weight: 500;
        }

.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);
        }
/* ─── BUTONLAR ─── */
.btn-dark {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    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-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    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: border-color 0.2s;
    cursor: pointer;
}

    .btn-outline:hover {
        border-color: var(--black);
    }

.btn-wa {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 24px;
    border-radius: var(--radius-btn);
    background: #25D366;
    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-wa:hover {
        transform: scale(1.02);
        opacity: 0.9;
    }
/* ─── SECTIONS ─── */
.section-inner {
    max-width: var(--max);
    margin: 0 auto;
}

.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);
}
/* ─── 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-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,255,255,.5);
    margin-bottom: 16px;
}

.hero-title {
    font-size: clamp(44px, 7vw, 88px);
    font-weight: 600;
    letter-spacing: -0.04em;
    line-height: 1.0;
    color: var(--white);
    margin-bottom: 20px;
}

.hero-sub {
    font-size: 18px;
    color: rgba(255,255,255,.65);
    line-height: 1.6;
    max-width: 520px;
}

.hero .section-inner {
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 0;
    column-gap: 40px;
    align-items: center;
}

@media (min-width: 768px) {
    .hero .section-inner {
        grid-template-columns: minmax(0, 1fr) minmax(360px, 1fr);
        column-gap: 64px;
    }

    .hero-label,
    .hero-title,
    .hero-sub {
        grid-column: 1;
    }

    .hero-img-ph {
        grid-column: 2;
        grid-row: 1 / 4;
    }
}

.hero-img-ph {
    grid-column: 1;
    width: 100%;
    margin-top: 40px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.16);
    border-radius: 16px;
    background: #F5F5F7;
}

.hero-img-ph img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

@media (min-width: 768px) {
    .hero-img-ph {
        grid-column: 2;
        grid-row: 1 / 4;
        margin-top: 0;
    }
}

/* ─── GÜVEN BANTI ─── */
.guven-bant {
    background: var(--gray-1);
    padding: 32px 24px;
    border-bottom: 1px solid var(--gray-3);
}

@media (min-width: 768px) {
    .guven-bant {
        padding: 32px 40px;
    }
}

.guven-bant-inner {
    max-width: var(--max);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

@media (min-width: 640px) {
    .guven-bant-inner {
        flex-direction: row;
        align-items: center;
        gap: 0;
    }
}

.guven-item {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

@media (min-width: 640px) {
    .guven-item {
        padding: 0 28px;
        border-right: 1px solid var(--gray-3);
    }

        .guven-item:first-child {
            padding-left: 0;
        }

        .guven-item:last-child {
            border-right: none;
        }
}

.guven-icon {
    width: 40px;
    height: 40px;
    background: var(--white);
    border: 1px solid var(--gray-3);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .guven-icon .material-symbols-outlined {
        font-size: 20px;
        color: var(--black);
        font-variation-settings: 'FILL' 1,'wght' 400,'GRAD' 0,'opsz' 24;
    }

.guven-text strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--black);
    letter-spacing: -0.01em;
}

.guven-text span {
    font-size: 12px;
    color: var(--gray-2);
}
/* ─── FİLTRELER ─── */
.filtreler {
    padding: 28px 24px;
    border-bottom: 1px solid var(--gray-3);
    background: var(--white);
    position: sticky;
    top: 52px;
    z-index: 50;
}

@media (min-width: 768px) {
    .filtreler {
        padding: 20px 40px;
        top: 56px;
    }
}

.filtreler-wrapper {
    max-width: var(--max);
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
    width: 100%;
}

.filtreler-inner {
    display: flex;
    flex: 1 1 0px;
    gap: 8px;
    align-items: center;
    overflow-x: auto;
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
    -webkit-overflow-scrolling: touch;
    min-width: 0;
    padding: 2px 32px 2px 4px !important;
    scroll-padding-right: 32px;
    scroll-padding-left: 4px;
}

.filtreler-inner::-webkit-scrollbar {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
}

.filtre-arrow {
    width: 34px;
    height: 34px;
    min-width: 34px;
    min-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;
    flex-shrink: 0;
    transition: opacity 0.15s, border-color 0.15s, background 0.15s;
    padding: 0;
    margin: 0;
    align-self: center;
    box-sizing: border-box;
}

.filtre-arrow:hover {
    border-color: var(--black);
    background: var(--gray-1);
}

.filtre-arrow .material-symbols-outlined {
    font-size: 20px;
    line-height: 1;
    display: block;
}

.filtre-arrow.chip-arrow-hidden {
    opacity: 0.32;
    pointer-events: none;
}

.filtre-select {
    flex-shrink: 0;
    appearance: none;
    -webkit-appearance: none;
    height: 34px;
    padding: 7px 28px 7px 12px;
    border: 1px solid var(--gray-3);
    border-radius: 8px;
    background: var(--white);
    font-size: 13px;
    font-weight: 500;
    color: var(--black);
    font-family: var(--font);
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2386868B' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 8px center;
    transition: border-color 0.15s, box-shadow 0.15s;
    max-width: 180px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    box-sizing: border-box;
    line-height: 1.2;
}

.filtre-select:hover {
    border-color: var(--black);
}

.filtre-select:focus {
    outline: none;
    border-color: var(--black);
    box-shadow: 0 0 0 2px rgba(29, 29, 31, 0.12);
}

.filtre-select option {
    background-color: #FFFFFF;
    color: #1D1D1F;
    font-size: 13px;
    font-family: var(--font);
    padding: 8px 12px;
}

.filtre-temizle {
    flex-shrink: 0;
    margin-left: auto;
    font-size: 12px;
    font-weight: 500;
    color: var(--gray-2);
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font);
    padding: 6px 0;
    white-space: nowrap;
    transition: color 0.15s;
}

    .filtre-temizle:hover {
        color: var(--black);
    }
/* ─── SONUÇ BAŞLIĞI ─── */
.sonuc-baslik {
    padding: 24px 24px 0;
}

@media (min-width: 768px) {
    .sonuc-baslik {
        padding: 32px 40px 0;
    }
}

.sonuc-baslik-inner {
    max-width: var(--max);
    margin: 0 auto;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
}

.sonuc-sayi {
    font-size: 13px;
    color: var(--gray-2);
}

    .sonuc-sayi strong {
        color: var(--black);
        font-weight: 600;
    }

.siralama-select {
    appearance: none;
    -webkit-appearance: none;
    font-size: 12px;
    font-weight: 500;
    color: var(--gray-2);
    background: none;
    border: none;
    font-family: var(--font);
    cursor: pointer;
    padding-right: 16px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%2386868B' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0 center;
}

    .siralama-select:focus {
        outline: none;
    }
/* ─── ARAÇ KARTLARI ─── */
.araclar {
    padding: 20px 24px 80px;
}

@media (min-width: 768px) {
    .araclar {
        padding: 24px 40px 96px;
    }
}

.araclar-grid {
    max-width: var(--max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

@media (min-width: 900px) {
    .araclar-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 18px;
    }
}

.arac-kart {
    display: flex;
    flex-direction: column;
    border: 1px solid var(--gray-3);
    border-radius: var(--radius-card);
    overflow: hidden;
    background: var(--white);
    transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
    text-decoration: none;
    color: var(--black);
}

    .arac-kart:hover {
        border-color: var(--black);
        transform: translateY(-4px);
        box-shadow: 0 12px 32px rgba(0,0,0,0.10);
    }
/* Görsel */
.arac-gorsel {
    position: relative;
    aspect-ratio: 4/3;
    background: var(--gray-1);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-bottom: 1px solid var(--gray-3);
}

    .arac-gorsel img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

.ph-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    text-align: center;
    padding: 16px;
    width: 100%;
    height: 100%;
    background: #F5F5F7;
}

    .ph-placeholder .ph-icon {
        font-size: 22px;
        opacity: 0.25;
    }

    .ph-placeholder .ph-path {
        font-size: 9px;
        font-family: monospace;
        color: var(--gray-4);
        line-height: 1.4;
        word-break: break-all;
    }
/* Etiketler */
.arac-etiketler {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: flex-start;
}

.etiket {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    line-height: 1;
}

    .etiket .material-symbols-outlined {
        font-size: 11px;
        font-variation-settings: 'FILL' 1,'wght' 500,'GRAD' 0,'opsz' 20;
    }

.etiket-gri {
    background: #3A3A3C;
    color: #FFFFFF;
}

.etiket-yesil {
    background: var(--green-dark);
    color: #FFFFFF;
}
/* Kart içi */
.arac-body {
    padding: 14px 16px 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.arac-marka {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gray-2);
}

.arac-model {
    font-size: 15px;
    font-weight: 600;
    color: var(--black);
    letter-spacing: -0.015em;
    line-height: 1.2;
}

.arac-donanim {
    font-size: 12px;
    color: var(--gray-2);
    margin-top: 1px;
}

.arac-detaylar {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.arac-detay {
    display: flex;
    align-items: center;
    gap: 3px;
    font-size: 11px;
    color: var(--gray-4);
}

    .arac-detay .material-symbols-outlined {
        font-size: 13px;
        font-variation-settings: 'FILL' 0,'wght' 400,'GRAD' 0,'opsz' 20;
    }

.arac-detay-sep {
    font-size: 11px;
    color: var(--gray-3);
}

.arac-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid var(--gray-3);
    position: relative;
}

.arac-fiyat {
    font-size: 17px;
    font-weight: 600;
    color: var(--black);
    letter-spacing: -0.02em;
}

.arac-fiyat-label {
    font-size: 10px;
    color: var(--gray-2);
    font-weight: 400;
    display: block;
}

.arac-footer .card-arrow,
.card-arrow {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid #D2D2D7;
    background: #F5F5F7;
    color: #1D1D1F;
    display: flex !important;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, color 0.2s, transform 0.2s;
}

.arac-footer .card-arrow .material-symbols-outlined,
.card-arrow .material-symbols-outlined {
    font-size: 16px;
}

.arac-kart:hover .card-arrow {
    background: #1D1D1F;
    color: #FFFFFF;
    border-color: #1D1D1F;
    transform: translateX(2px);
}

.btn-incele {
    flex-shrink: 0;
    padding: 8px 16px;
    border-radius: 8px;
    background: var(--black);
    color: var(--white);
    font-size: 12px;
    font-weight: 500;
    text-decoration: none;
    border: none;
    cursor: pointer;
    font-family: var(--font);
    transition: opacity 0.15s;
    white-space: nowrap;
}

    .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 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);
    }
/* ─── ANİMASYON ─── */
.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);
    }
/* ─── BOŞ SONUÇ ─── */
.bos-sonuc {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 24px;
    gap: 12px;
    max-width: var(--max);
    margin: 0 auto;
}

    .bos-sonuc.visible {
        display: flex;
    }

    .bos-sonuc .material-symbols-outlined {
        font-size: 40px;
        color: var(--gray-3);
        font-variation-settings: 'FILL' 0,'wght' 300,'GRAD' 0,'opsz' 40;
    }

.bos-sonuc p {
        font-size: 15px;
        color: var(--gray-2);
    }

@media (max-width: 600px) {
    .hero {
        padding: 44px 16px 40px;
    }

    .hero-title {
        font-size: 38px;
        line-height: 1.05;
        letter-spacing: -0.025em;
        margin-bottom: 14px;
    }

    .hero-sub {
        font-size: 14px;
        line-height: 1.55;
    }

    .guven-bant {
        padding: 20px 16px;
    }

    .guven-bant-inner {
        gap: 14px;
    }

    .guven-item {
        min-width: 0;
    }

    .guven-text span {
        display: block;
        line-height: 1.35;
    }

    .filtreler {
        padding: 12px 16px;
    }

    .filtreler-inner {
        align-items: center;
        gap: 8px;
        padding: 2px 28px 2px 4px !important;
        scroll-padding-right: 28px;
    }

    .filtre-select {
        max-width: 140px;
        padding: 7px 22px 7px 10px;
        height: 34px;
    }

    .filtre-temizle {
        margin-left: 0;
        padding-right: 12px;
    }

    .sonuc-baslik {
        padding: 20px 16px 0;
    }

    .sonuc-baslik-inner {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }

    .araclar {
        padding: 16px 16px 72px;
    }

    .araclar-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .arac-kart {
        border-radius: 14px;
    }

    .arac-body {
        padding: 14px;
    }

    .arac-footer {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: space-between !important;
    }

    .arac-fiyat {
        font-size: 18px;
    }

    .btn-incele {
        width: 100%;
        text-align: center;
    }
}
