﻿body {
}
.vehicle-list-page {
    padding: 55px 0 80px;
}

.vehicle-list-heading {
    margin-bottom: 32px;
}

    .vehicle-list-heading span {
        color: var(--awax-red);
        font-size: 13px;
        font-weight: 900;
        letter-spacing: 2px;
    }

    .vehicle-list-heading h1 {
        margin: 8px 0 10px;
        font-size: 38px;
        font-weight: 900;
    }

    .vehicle-list-heading p {
        margin: 0;
        color: var(--awax-muted);
        font-size: 16px;
    }

.vehicle-list-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.vehicle-list-card {
    overflow: hidden;
    border: 1px solid var(--awax-border);
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(18, 24, 31, 0.06);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

    .vehicle-list-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 16px 38px rgba(18, 24, 31, 0.12);
    }

.vehicle-list-image {
    position: relative;
    display: block;
    height: 220px;
    overflow: hidden;
    background: #edf0f3;
}

    .vehicle-list-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }

.vehicle-list-card:hover .vehicle-list-image img {
    transform: scale(1.035);
}

.vehicle-list-placeholder {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 8px;
    color: #9299a2;
}

    .vehicle-list-placeholder i {
        font-size: 34px;
    }

.vehicle-featured-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 7px 11px;
    border-radius: 20px;
    background: var(--awax-red);
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
}

.vehicle-list-content {
    padding: 20px;
}

.vehicle-list-title h2 {
    margin: 0;
    font-size: 21px;
    font-weight: 900;
}

.vehicle-list-title p {
    margin: 6px 0 0;
    color: var(--awax-muted);
    font-size: 13px;
}

.vehicle-list-price {
    display: block;
    margin-top: 18px;
    color: var(--awax-red);
    font-size: 23px;
    font-weight: 900;
}

.vehicle-list-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 17px 0 20px;
}

    .vehicle-list-tags span {
        padding: 7px 10px;
        border-radius: 7px;
        background: #f0f2f4;
        color: #5e6670;
        font-size: 12px;
        font-weight: 700;
    }

.vehicle-detail-button {
    display: flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--awax-red);
    border-radius: 8px;
    color: var(--awax-red);
    font-size: 14px;
    font-weight: 800;
    transition: background-color 0.2s ease, color 0.2s ease;
}

    .vehicle-detail-button:hover {
        background: var(--awax-red);
        color: #ffffff;
    }

.vehicle-empty-state {
    padding: 70px 20px;
    border: 1px dashed var(--awax-border);
    border-radius: 14px;
    background: #ffffff;
    text-align: center;
}

    .vehicle-empty-state i {
        color: var(--awax-red);
        font-size: 42px;
    }

    .vehicle-empty-state h2 {
        margin: 16px 0 8px;
        font-size: 24px;
    }

    .vehicle-empty-state p {
        margin: 0;
        color: var(--awax-muted);
    }

@media (max-width: 576px) {
    .vehicle-list-page {
        padding: 34px 0 95px;
    }

    .vehicle-list-heading h1 {
        font-size: 30px;
    }

    .vehicle-list-grid {
        grid-template-columns: 1fr;
    }

    .vehicle-list-image {
        height: 205px;
    }
}
/* ARAÇ DETAY */

.vehicle-detail-page {
    padding: 32px 0 110px;
}

.vehicle-detail-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 25px;
    color: var(--awax-muted);
    font-size: 13px;
}

    .vehicle-detail-breadcrumb a:hover {
        color: var(--awax-red);
    }

    .vehicle-detail-breadcrumb strong {
        color: var(--awax-text);
    }

.vehicle-detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) minmax(320px, 0.8fr);
    gap: 28px;
    align-items: start;
}

.vehicle-gallery-section {
    min-width: 0;
}

.vehicle-detail-carousel {
    overflow: hidden;
    border-radius: 15px;
    background: #11161c;
    box-shadow: 0 14px 40px rgba(12, 17, 23, 0.12);
}

.vehicle-gallery-main-button {
    position: relative;
    display: block;
    width: 100%;
    height: 520px;
    padding: 0;
    border: 0;
    background: #11161c;
    cursor: zoom-in;
}

.vehicle-gallery-main-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.vehicle-image-expand {
    position: absolute;
    right: 17px;
    bottom: 17px;
    padding: 9px 13px;
    border-radius: 8px;
    background: rgba(12, 17, 23, 0.82);
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
}

.vehicle-gallery-thumbnails {
    display: flex;
    gap: 11px;
    overflow-x: auto;
    margin-top: 14px;
    padding-bottom: 5px;
}

.vehicle-gallery-thumbnail {
    width: 105px;
    height: 76px;
    flex: 0 0 auto;
    overflow: hidden;
    padding: 0;
    border: 2px solid transparent;
    border-radius: 9px;
    background: #e9ecef;
    cursor: pointer;
}

    .vehicle-gallery-thumbnail.active {
        border-color: var(--awax-red);
    }

    .vehicle-gallery-thumbnail img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.vehicle-detail-no-image {
    display: flex;
    min-height: 460px;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    background: #e9ecef;
    color: var(--awax-muted);
}

.vehicle-summary-card {
    position: sticky;
    top: 95px;
    padding: 28px;
    border: 1px solid var(--awax-border);
    border-radius: 15px;
    background: #ffffff;
    box-shadow: 0 14px 40px rgba(18, 24, 31, 0.08);
}

.vehicle-detail-featured {
    display: inline-flex;
    margin-bottom: 16px;
    padding: 7px 11px;
    border-radius: 20px;
    background: #fff0f1;
    color: var(--awax-red);
    font-size: 11px;
    font-weight: 900;
}

.vehicle-summary-card h1 {
    margin: 0;
    font-size: 30px;
    font-weight: 900;
}

.vehicle-detail-package {
    margin: 8px 0 0;
    color: var(--awax-muted);
}

.vehicle-detail-price {
    display: block;
    margin: 24px 0;
    color: var(--awax-red);
    font-size: 31px;
    font-weight: 900;
}

.vehicle-summary-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 24px;
}

    .vehicle-summary-features > div {
        padding: 13px;
        border-radius: 9px;
        background: #f3f5f7;
    }

    .vehicle-summary-features span,
    .vehicle-technical-item span,
    .vehicle-damage-details span,
    .vehicle-damage-header span {
        display: block;
        margin-bottom: 5px;
        color: var(--awax-muted);
        font-size: 11px;
        font-weight: 700;
    }

    .vehicle-summary-features strong {
        font-size: 13px;
    }

.vehicle-whatsapp-button {
    display: flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
    background: #18a947;
    color: #ffffff;
    font-size: 15px;
    font-weight: 900;
}

    .vehicle-whatsapp-button:hover {
        background: #128b3a;
        color: #ffffff;
    }

.vehicle-whatsapp-description {
    margin: 14px 0 0;
    color: var(--awax-muted);
    font-size: 12px;
    line-height: 1.6;
    text-align: center;
}

.vehicle-detail-section {
    margin-top: 35px;
    padding: 28px;
    border: 1px solid var(--awax-border);
    border-radius: 15px;
    background: #ffffff;
}

.vehicle-detail-section-heading {
    margin-bottom: 23px;
}

    .vehicle-detail-section-heading > span {
        color: var(--awax-red);
        font-size: 11px;
        font-weight: 900;
        letter-spacing: 1.7px;
    }

    .vehicle-detail-section-heading h2 {
        margin: 7px 0 0;
        font-size: 25px;
        font-weight: 900;
    }

.vehicle-description {
    color: #4f5660;
    line-height: 1.8;
}

.vehicle-technical-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 1px solid var(--awax-border);
    border-left: 1px solid var(--awax-border);
}

.vehicle-technical-item {
    min-width: 0;
    padding: 17px;
    border-right: 1px solid var(--awax-border);
    border-bottom: 1px solid var(--awax-border);
}

    .vehicle-technical-item strong {
        overflow-wrap: anywhere;
        font-size: 14px;
    }

.vehicle-feature-groups {
    display: grid;
    gap: 20px;
}

.vehicle-feature-group {
    padding: 20px;
    border: 1px solid var(--awax-border);
    border-radius: 11px;
}

    .vehicle-feature-group h3 {
        margin: 0 0 16px;
        font-size: 17px;
        font-weight: 900;
    }

.vehicle-feature-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
    gap: 11px;
}

.vehicle-feature-item {
    display: flex;
    align-items: center;
    gap: 9px;
    color: #4f5660;
    font-size: 13px;
}

.vehicle-feature-check {
    display: inline-flex;
    width: 23px;
    height: 23px;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    border-radius: 50%;
    background: #fff0f1;
    color: var(--awax-red);
    font-weight: 900;
}

.vehicle-no-damage {
    padding: 19px;
    border: 1px solid #bce6ca;
    border-radius: 10px;
    background: #effaf3;
    color: #18763a;
    font-size: 14px;
    font-weight: 700;
}

.vehicle-damage-list {
    display: grid;
    gap: 16px;
}

.vehicle-damage-card {
    padding: 20px;
    border: 1px solid var(--awax-border);
    border-radius: 11px;
    background: #fafbfc;
}

.vehicle-damage-header,
.vehicle-damage-details {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.vehicle-damage-amount {
    color: var(--awax-red);
}

.vehicle-damage-details {
    margin-top: 17px;
    padding-top: 17px;
    border-top: 1px solid var(--awax-border);
}

    .vehicle-damage-details > div {
        flex: 1;
    }

.vehicle-damage-card p {
    margin: 17px 0 0;
    color: var(--awax-muted);
    line-height: 1.6;
}

.vehicle-image-modal-content {
    position: relative;
    overflow: hidden;
    border: 0;
    border-radius: 13px;
    background: #090d11;
}

    .vehicle-image-modal-content img {
        width: 100%;
        max-height: 86vh;
        object-fit: contain;
    }

.vehicle-image-modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    color: #111820;
    font-size: 25px;
    cursor: pointer;
}

.vehicle-mobile-contact {
    display: none;
}

@media (max-width: 991px) {
    .vehicle-detail-layout {
        grid-template-columns: 1fr;
    }

    .vehicle-summary-card {
        position: static;
    }

    .vehicle-gallery-main-button {
        height: 430px;
    }

    .vehicle-technical-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 576px) {
    .vehicle-detail-page {
        padding: 22px 0 105px;
    }

    .vehicle-gallery-main-button {
        height: 285px;
    }

    .vehicle-image-expand {
        display: none;
    }

    .vehicle-gallery-thumbnail {
        width: 83px;
        height: 62px;
    }

    .vehicle-summary-card,
    .vehicle-detail-section {
        padding: 20px;
        border-radius: 12px;
    }

        .vehicle-summary-card h1 {
            font-size: 25px;
        }

    .vehicle-detail-price {
        font-size: 26px;
    }

    .vehicle-technical-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .vehicle-damage-header,
    .vehicle-damage-details {
        flex-direction: column;
    }

    .vehicle-mobile-contact {
        position: fixed;
        right: 0;
        bottom: 61px;
        left: 0;
        z-index: 990;
        display: block;
        padding: 9px 14px;
        background: rgba(255, 255, 255, 0.96);
        box-shadow: 0 -5px 20px rgba(12, 17, 23, 0.12);
        backdrop-filter: blur(8px);
    }

        .vehicle-mobile-contact a {
            display: flex;
            width: 100%;
            min-height: 49px;
            align-items: center;
            justify-content: center;
            border-radius: 10px;
            background: #18a947;
            color: #ffffff;
            font-size: 14px;
            font-weight: 900;
            text-decoration: none;
            transition: background-color .2s ease, transform .2s ease;
        }

            .vehicle-mobile-contact a:hover {
                background: #15913d;
            }

            .vehicle-mobile-contact a:active {
                transform: scale(.98);
            }

  
}
/* ARAÇ FİLTRELERİ */

.vehicle-filter-form {
    margin-bottom: 30px;
    padding: 22px;
    border: 1px solid var(--awax-border);
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(18, 24, 31, 0.05);
}

.vehicle-filter-search {
    display: flex;
    gap: 10px;
    margin-bottom: 18px;
}

    .vehicle-filter-search input {
        flex: 1;
        min-width: 0;
        height: 47px;
        padding: 0 14px;
        border: 1px solid var(--awax-border);
        border-radius: 8px;
        outline: none;
    }

        .vehicle-filter-search input:focus,
        .vehicle-filter-group select:focus,
        .vehicle-filter-group input:focus {
            border-color: var(--awax-red);
            box-shadow: 0 0 0 3px rgba(229, 9, 20, 0.08);
        }

    .vehicle-filter-search button {
        min-width: 105px;
        border: 0;
        border-radius: 8px;
        background: var(--awax-red);
        color: #ffffff;
        font-weight: 800;
        cursor: pointer;
    }

.vehicle-filter-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.vehicle-filter-group {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

    .vehicle-filter-group label {
        font-size: 12px;
        font-weight: 800;
    }

    .vehicle-filter-group select,
    .vehicle-filter-group input {
        width: 100%;
        height: 44px;
        padding: 0 12px;
        border: 1px solid var(--awax-border);
        border-radius: 8px;
        background: #ffffff;
        outline: none;
        font-size: 13px;
    }

.vehicle-filter-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 20px;
}

.vehicle-filter-submit,
.vehicle-filter-clear {
    display: inline-flex;
    min-height: 43px;
    align-items: center;
    justify-content: center;
    padding: 0 18px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 800;
}

.vehicle-filter-submit {
    border: 1px solid var(--awax-red);
    background: var(--awax-red);
    color: #ffffff;
    cursor: pointer;
}

.vehicle-filter-clear {
    border: 1px solid var(--awax-border);
    background: #ffffff;
    color: var(--awax-text);
}

    .vehicle-filter-clear:hover {
        border-color: var(--awax-red);
        color: var(--awax-red);
    }

@media (max-width: 767px) {
    .vehicle-filter-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .vehicle-filter-form {
        padding: 16px;
    }

    .vehicle-filter-search {
        flex-direction: column;
    }

        .vehicle-filter-search button {
            min-height: 44px;
        }

    .vehicle-filter-grid {
        grid-template-columns: 1fr;
    }

    .vehicle-filter-actions {
        flex-direction: column;
    }

    .vehicle-filter-submit,
    .vehicle-filter-clear {
        width: 100%;
    }
}
.vehicle-detail-carousel,
.vehicle-gallery-main-button,
.vehicle-gallery-main-image {
    touch-action: pan-y;
}

.vehicle-detail-carousel {
    user-select: none;
    -webkit-user-select: none;
}

.vehicle-gallery-main-image {
    pointer-events: none;
    -webkit-user-drag: none;
}

@media (max-width: 576px) {
    .vehicle-detail-carousel .carousel-control-prev,
    .vehicle-detail-carousel .carousel-control-next {
        width: 16%;
    }

    .vehicle-gallery-thumbnails {
        scroll-snap-type: x proximity;
        -webkit-overflow-scrolling: touch;
    }

    .vehicle-gallery-thumbnail {
        scroll-snap-align: center;
    }
}
/* PREMIUM DETAY EKLERİ */

.vehicle-summary-topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 15px;
}

.vehicle-listing-number {
    color: var(--awax-muted);
    font-size: 11px;
    font-weight: 700;
}

.vehicle-summary-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 9px;
    margin-bottom: 20px;
}

    .vehicle-summary-metrics > div {
        padding: 12px 8px;
        border: 1px solid var(--awax-border);
        border-radius: 9px;
        text-align: center;
    }

    .vehicle-summary-metrics strong {
        display: block;
        color: var(--awax-red);
        font-size: 19px;
        font-weight: 900;
    }

    .vehicle-summary-metrics span {
        display: block;
        margin-top: 3px;
        color: var(--awax-muted);
        font-size: 10px;
        font-weight: 700;
    }
.vehicle-contact-actions {
    display: block;
}

.vehicle-phone-button {
    display: flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--awax-red);
    border-radius: 9px;
    background: #ffffff;
    color: var(--awax-red);
    font-size: 14px;
    font-weight: 900;
}

    .vehicle-phone-button:hover {
        background: var(--awax-red);
        color: #ffffff;
    }

.vehicle-listing-date {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid var(--awax-border);
    color: var(--awax-muted);
    font-size: 11px;
}

    .vehicle-listing-date strong {
        color: var(--awax-text);
    }

.vehicle-highlight-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 35px;
}

.vehicle-highlight-card {
    padding: 22px;
    border: 1px solid var(--awax-border);
    border-radius: 13px;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(18, 24, 31, 0.05);
}

    .vehicle-highlight-card > span {
        color: var(--awax-red);
        font-size: 10px;
        font-weight: 900;
        letter-spacing: 1.3px;
        text-transform: uppercase;
    }

    .vehicle-highlight-card strong {
        display: block;
        margin-top: 8px;
        font-size: 17px;
        font-weight: 900;
    }

    .vehicle-highlight-card p {
        margin: 8px 0 0;
        color: var(--awax-muted);
        font-size: 12px;
        line-height: 1.6;
    }

.vehicle-similar-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.vehicle-similar-card {
    overflow: hidden;
    border: 1px solid var(--awax-border);
    border-radius: 12px;
    background: #ffffff;
}

.vehicle-similar-image {
    display: block;
    height: 180px;
    overflow: hidden;
    background: #edf0f3;
}

    .vehicle-similar-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.25s ease;
    }

.vehicle-similar-card:hover .vehicle-similar-image img {
    transform: scale(1.035);
}

.vehicle-similar-placeholder {
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: center;
    color: var(--awax-muted);
}

.vehicle-similar-content {
    padding: 17px;
}

    .vehicle-similar-content h3 {
        margin: 0;
        font-size: 17px;
        font-weight: 900;
    }

    .vehicle-similar-content p {
        margin: 7px 0 12px;
        color: var(--awax-muted);
        font-size: 11px;
    }

    .vehicle-similar-content strong {
        display: block;
        color: var(--awax-red);
        font-size: 17px;
    }

    .vehicle-similar-content > a {
        display: inline-flex;
        margin-top: 14px;
        color: var(--awax-red);
        font-size: 12px;
        font-weight: 800;
    }

@media (max-width: 991px) {
    .vehicle-highlight-grid {
        grid-template-columns: 1fr;
    }

    .vehicle-similar-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 576px) {
    .vehicle-summary-topline {
        align-items: flex-start;
        flex-direction: column;
    }

    .vehicle-summary-metrics {
        grid-template-columns: repeat(3, 1fr);
    }

    .vehicle-contact-actions {
        grid-template-columns: 1fr;
    }

    .vehicle-highlight-grid {
        gap: 12px;
        margin-top: 22px;
    }

    .vehicle-similar-grid {
        grid-template-columns: 1fr;
    }
    .vehicle-mobile-contact {
        display: block;
    }

        .vehicle-mobile-contact a {
            display: flex;
            min-height: 48px;
            align-items: center;
            justify-content: center;
            border-radius: 9px;
            color: #ffffff;
            font-size: 14px;
            font-weight: 900;
        }

    .vehicle-mobile-whatsapp {
        background: #18a947;
    }

    .vehicle-mobile-phone {
        background: var(--awax-red);
    }
}
/* TAM EKRAN FOTOĞRAF GALERİSİ */

.vehicle-gallery-main-button {
    cursor: zoom-in;
}

.vehicle-zoom-modal {
    position: relative;
    overflow: hidden;
    border: 0;
    background: rgba(3, 6, 9, 0.985);
}

.vehicle-zoom-close {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 50;
    display: inline-flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    background: rgba(17, 22, 28, 0.82);
    color: #ffffff;
    font-size: 20px;
    cursor: pointer;
    backdrop-filter: blur(10px);
    transition: background-color 0.2s ease, transform 0.2s ease;
}

    .vehicle-zoom-close:hover {
        background: var(--awax-red);
        transform: scale(1.05);
    }

.vehicle-zoom-toolbar {
    position: absolute;
    top: 18px;
    left: 50%;
    z-index: 45;
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 7px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 28px;
    background: rgba(11, 16, 22, 0.78);
    color: #ffffff;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(-7px);
    backdrop-filter: blur(10px);
    transition: opacity 0.22s ease, visibility 0.22s ease, transform 0.22s ease;
}

.vehicle-zoom-modal:hover .vehicle-zoom-toolbar {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.vehicle-zoom-toolbar button {
    display: inline-flex;
    width: 36px;
    height: 36px;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 50%;
    background: transparent;
    color: #ffffff;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

    .vehicle-zoom-toolbar button:hover {
        background: rgba(255, 255, 255, 0.14);
    }

.vehicle-zoom-toolbar span {
    min-width: 54px;
    text-align: center;
    font-size: 12px;
    font-weight: 800;
}

.vehicle-zoom-stage {
    position: relative;
    display: flex;
    width: 100%;
    height: 100vh;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    cursor: zoom-in;
    touch-action: none;
}

    .vehicle-zoom-stage.is-zoomed {
        cursor: grab;
    }

    .vehicle-zoom-stage.is-dragging {
        cursor: grabbing;
    }

    .vehicle-zoom-stage img {
        display: block;
        max-width: 94vw;
        max-height: 88vh;
        object-fit: contain;
        transform-origin: center center;
        user-select: none;
        -webkit-user-select: none;
        -webkit-user-drag: none;
        will-change: transform, opacity;
        transition: transform 0.08s linear, opacity 0.12s ease;
    }

        .vehicle-zoom-stage img.is-changing {
            opacity: 0;
        }

        .vehicle-zoom-stage img.is-entering-right {
            animation: vehicleImageEnterRight 0.22s ease;
        }

        .vehicle-zoom-stage img.is-entering-left {
            animation: vehicleImageEnterLeft 0.22s ease;
        }

@keyframes vehicleImageEnterRight {
    from {
        opacity: 0;
        transform: translate3d(24px, 0, 0) scale(1);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0) scale(1);
    }
}

@keyframes vehicleImageEnterLeft {
    from {
        opacity: 0;
        transform: translate3d(-24px, 0, 0) scale(1);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0) scale(1);
    }
}

.vehicle-zoom-navigation {
    position: absolute;
    top: 50%;
    z-index: 40;
    display: flex;
    width: 52px;
    height: 52px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 50%;
    background: rgba(11, 16, 22, 0.74);
    color: #ffffff;
    font-size: 22px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-50%) scale(0.92);
    cursor: pointer;
    backdrop-filter: blur(9px);
    transition: opacity 0.22s ease, visibility 0.22s ease, transform 0.22s ease, background-color 0.2s ease;
}

.vehicle-zoom-modal:hover
.vehicle-zoom-navigation {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) scale(1);
}

.vehicle-zoom-navigation:hover {
    background: var(--awax-red);
}

.vehicle-zoom-previous {
    left: 22px;
}

.vehicle-zoom-next {
    right: 22px;
}

.vehicle-zoom-counter {
    position: absolute;
    bottom: 48px;
    left: 50%;
    z-index: 35;
    padding: 6px 12px;
    border-radius: 20px;
    background: rgba(11, 16, 22, 0.72);
    color: rgba(255, 255, 255, 0.88);
    font-size: 12px;
    font-weight: 800;
    transform: translateX(-50%);
    backdrop-filter: blur(8px);
}

.vehicle-zoom-help {
    position: absolute;
    right: 0;
    bottom: 18px;
    left: 0;
    z-index: 30;
    color: rgba(255, 255, 255, 0.58);
    font-size: 11px;
    text-align: center;
    pointer-events: none;
}

.vehicle-zoom-help-mobile {
    display: none;
}

@media (max-width: 768px) {
    .vehicle-zoom-navigation {
        display: none;
    }

    .vehicle-zoom-toolbar {
        top: 13px;
        left: 13px;
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    .vehicle-zoom-modal:hover
    .vehicle-zoom-toolbar {
        transform: none;
    }

    .vehicle-zoom-close {
        top: 13px;
        right: 13px;
    }

    .vehicle-zoom-stage img {
        max-width: 100vw;
        max-height: 84vh;
    }

    .vehicle-zoom-counter {
        bottom: 45px;
    }

    .vehicle-zoom-help-desktop {
        display: none;
    }

    .vehicle-zoom-help-mobile {
        display: inline;
    }
}
/* VEHICLE DETAIL - SON MOBİL RÖTUŞLAR */

@media (max-width: 576px) {

    .vehicle-detail-page {
        padding-top: 16px;
    }

    .vehicle-detail-breadcrumb {
        margin-bottom: 15px;
        font-size: 11px;
    }

    .vehicle-detail-layout {
        gap: 18px;
    }

    .vehicle-gallery-main-button {
        height: 270px;
        border-radius: 12px;
    }

    .vehicle-detail-carousel {
        border-radius: 12px;
    }

    .vehicle-gallery-thumbnails {
        gap: 8px;
        margin-top: 10px;
    }

    .vehicle-gallery-thumbnail {
        width: 75px;
        height: 56px;
        border-radius: 7px;
    }

    .vehicle-summary-card {
        padding: 20px;
    }

        .vehicle-summary-card h1 {
            font-size: 25px;
            line-height: 1.2;
        }

    .vehicle-detail-package {
        font-size: 13px;
    }

    .vehicle-detail-price {
        margin: 17px 0;
        font-size: 27px;
    }

    .vehicle-summary-metrics {
        gap: 7px;
        margin-bottom: 16px;
    }

        .vehicle-summary-metrics > div {
            padding: 10px 5px;
        }

        .vehicle-summary-metrics strong {
            font-size: 17px;
        }

    .vehicle-summary-features {
        gap: 8px;
        margin-bottom: 18px;
    }

        .vehicle-summary-features > div {
            padding: 11px;
        }

    .vehicle-whatsapp-button {
        min-height: 50px;
    }

    .vehicle-detail-section {
        margin-top: 18px;
        padding: 20px;
    }

    .vehicle-detail-section-heading {
        margin-bottom: 17px;
    }

        .vehicle-detail-section-heading h2 {
            font-size: 21px;
        }

    .vehicle-technical-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .vehicle-technical-item {
        padding: 13px;
    }

    .vehicle-feature-group {
        padding: 16px;
    }

    .vehicle-feature-list {
        grid-template-columns: 1fr;
    }

    .vehicle-damage-card {
        padding: 16px;
    }

    .vehicle-similar-image {
        height: 200px;
    }
}
/* ARAÇ LİSTESİ - MOBİL SON RÖTUŞLAR */

@media (max-width: 576px) {

    .vehicle-list-page {
        padding: 28px 0 95px;
    }

    .vehicle-list-heading {
        margin-bottom: 22px;
    }

        .vehicle-list-heading h1 {
            margin-top: 6px;
            font-size: 29px;
            line-height: 1.15;
        }

        .vehicle-list-heading p {
            font-size: 14px;
            line-height: 1.6;
        }

    /* Filtre alanı */
    .vehicle-filter-form {
        margin-bottom: 22px;
        padding: 15px;
        border-radius: 12px;
    }

    .vehicle-filter-search {
        gap: 8px;
        margin-bottom: 14px;
    }

        .vehicle-filter-search input {
            height: 46px;
            font-size: 14px;
        }

        .vehicle-filter-search button {
            min-height: 45px;
            width: 100%;
        }

    .vehicle-filter-grid {
        grid-template-columns: 1fr;
        gap: 11px;
    }

    .vehicle-filter-group {
        gap: 5px;
    }

        .vehicle-filter-group select,
        .vehicle-filter-group input {
            height: 45px;
            font-size: 14px;
        }

    .vehicle-filter-actions {
        gap: 8px;
        margin-top: 15px;
    }

    .vehicle-filter-submit,
    .vehicle-filter-clear {
        min-height: 45px;
    }

    /* Araç kartları */
    .vehicle-list-grid {
        gap: 17px;
    }

    .vehicle-list-card {
        border-radius: 12px;
    }

    .vehicle-list-image {
        height: 225px;
    }

    .vehicle-list-content {
        padding: 17px;
    }

    .vehicle-list-title h2 {
        font-size: 20px;
    }

    .vehicle-list-title p {
        font-size: 12px;
    }

    .vehicle-list-price {
        margin-top: 14px;
        font-size: 22px;
    }

    .vehicle-list-tags {
        gap: 6px;
        margin: 13px 0 16px;
    }

        .vehicle-list-tags span {
            padding: 6px 8px;
            font-size: 11px;
        }

    .vehicle-detail-button {
        min-height: 46px;
    }
}