.single-car__breadcrumb {
    height: 140px;
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: end;
    border-bottom: 1px solid #ffffff1e !important;
    padding-bottom: 10px;
}

.single-car__breadcrumb span {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.06em;
    color: #a0a0a0;
}

.single-car__breadcrumb span a {
    color: #a0a0a0;
    text-decoration: none;
}

.single-car__breadcrumb span:last-child {
    color: #ffffff;
}

/* Hero container  */
.single-car__hero {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
    padding-top: 40px;
    padding-bottom: 40px;
}

@media only screen and (min-width:1024px) {
    .single-car__hero {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* ── Gallery ─────────────────────────────────────────── */
.car-gallery {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Main image wrapper */
.car-gallery__main {
    position: relative;
    overflow: hidden;
    cursor: zoom-in;
    aspect-ratio: 16 / 10;
    border-radius: 4px;
}

.car-gallery__main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
    transition: transform 0.7s ease;
}

.car-gallery__main:hover img {
    transform: scale(1.05);
}

/* Gradient overlay */
.car-gallery__main::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent 50%);
    pointer-events: none;
}

/* Counter badge */
.car-gallery__counter {
    position: absolute;
    top: 14px;
    right: 14px;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(4px);
    color: #fff;
    font-size: 11px;
    letter-spacing: 0.12em;
    padding: 5px 10px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    z-index: 2;
    pointer-events: none;
}

/* Zoom icon */
.car-gallery__zoom {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.car-gallery__main:hover .car-gallery__zoom {
    opacity: 1;
}

.car-gallery__zoom-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(4px);
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Thumbnails row */
.car-gallery__thumbs {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
    flex-wrap: wrap;
}

.car-gallery__thumbs::-webkit-scrollbar {
    display: none;
}

.car-gallery__thumb {
    flex-shrink: 0;
    width: 65px;
    height: 45px;
    object-fit: cover;
    overflow: hidden;
    border: 2px solid transparent;
    border-radius: 3px;
    padding: 0;
    background: none;
    cursor: pointer;
    transition: border-color 0.25s ease;
}

@media only screen and (min-width:576px) {
    .car-gallery__thumb {
        width: 96px;
        height: 64px;
    }
}

.car-gallery__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
}

.car-gallery__thumb:hover {
    border-color: rgba(255, 255, 255, 0.25);
}

.car-gallery__thumb.is-active {
    border-color: #ED7D37;
}

/* ── Lightbox ─────────────────────────────────────────── */
.car-lightbox {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.car-lightbox.is-open {
    visibility: visible;
    opacity: 1;
}

.car-lightbox__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    cursor: pointer;
}

.car-lightbox__wrap {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 60px 80px;
    box-sizing: border-box;
}

.car-lightbox__wrap img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 3px;
    display: block;
}

.car-lightbox__close {
    position: absolute;
    top: 20px;
    right: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: transparent !important;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease;
    z-index: 2;
    padding: 7px;
    transition: all 0.3s;
}

@media only screen and (min-width:992px) {
    .car-lightbox__close {
        padding: 10px;
        top: 30px;
        right: 30px;
    }
}

.car-lightbox__close svg {
    fill: #ffffff;
    width: 30px;
    height: 30px;
}

.car-lightbox__close:hover svg {
    fill: #ED7D37;

}

.car-lightbox__close:hover {
    border-color: #ED7D37;
}

.car-lightbox__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent !important;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease;
    z-index: 2;
    transition: all 0.3s;
}

.car-lightbox__arrow:hover {
    border-color: #ED7D37;
}

.car-lightbox__arrow svg {
    fill: #ffffff;
    transition: all 0.3s;
}

.car-lightbox__arrow:hover svg {
    fill: #ED7D37;
}

@media only screen and (min-width:992px) {
    .car-lightbox__arrow {
        padding: 15px;
    }
}

.car-lightbox__arrow--prev {
    left: 20px;
}

@media only screen and (min-width:992px) {
    .car-lightbox__arrow--prev {
        left: 30px;
    }
}

.car-lightbox__arrow--next {
    right: 20px;
}

@media only screen and (min-width:992px) {
    .car-lightbox__arrow--next {
        right: 30px;
    }
}

.car-lightbox__counter {
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    color: #ffffff;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    padding: 0.5rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* right side */

.single-car__hero_info_wrap {
    display: flex;
    flex-direction: column;
    gap: 20px;
}


.single-car__badge {
    background: #ed7d37;
    color: #000;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    padding: 4px 12px;
    display: inline-block;
    margin-bottom: 15px;
}

.single-car__title {
    color: #ffffff;
    font-size: 35px;
    font-weight: 900;
    margin-bottom: 8px;
    line-height: 1.1em;
}

@media only screen and (min-width:768px) {
    .single-car__title {
        color: #ffffff;
        font-size: 48px;
    }
}

.single-car__year_color {
    font-size: 15px;
    color: #A0A0A0;
    display: flex;
    align-items: center;
}

.single-car__price_wrap {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 10px;
}

.single-car__price {
    font-size: 35px;
    color: var(--e-global-color-primary);
    font-weight: 900;
    line-height: 1.1em;
}

@media only screen and (min-width: 768px) {
    .single-car__price {
        font-size: 48px;
    }
}

.single-car__carrency {
    font-size: 14px;
    color: #A0A0A0;
}

.single-car__meta_grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

@media only screen and (min-width: 640px) {
    .single-car__meta_grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.single-car__meta_card {
    background: #141414;
    border: 1px solid #ffffff0d;
    padding: 16px;
    display: flex;
    gap: 4px;
    flex-direction: column;
}

.single-car__meta_card .meta_title {
    font-size: 12px;
    color: #A0A0A0;
    letter-spacing: .1em;
}

.single-car__meta_card .meta_des {
    font-size: 14px;
    color: #ffffff;
    font-weight: 600;
}

.single-car__desc p {
    font-size: 18px;
    color: rgb(160 160 160);
    line-height: 1.7rem;
}

.single-car__buttons {
    display: grid;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    grid-template-columns: repeat(1, 1fr);
}

@media only screen and (min-width:576px) {
    .single-car__buttons {
        grid-template-columns: repeat(2, 1fr);
    }
}

.single-car__query_btn {
    width: 100%;
    background-color: #ed7d37;
    color: #000000;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.15em;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 1px solid var(--e-global-color-primary);
    padding: 14px;
}

@media only screen and (min-width:576px) {
    .single-car__query_btn {
        padding: 18px;
    }
}

.single-car__query_btn:hover {
    background-color: #ff9a5c;
    color: #000000;
}

.single-car__whatsapp {
    white-space: nowrap;
    flex: 1;
    border: 1px solid rgba(37, 211, 102, 0.4);
    background-color: transparent;
    color: #25D366;
    font-size: 15px;
    letter-spacing: 0.15em;
    padding: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

@media only screen and (min-width:576px) {
    .single-car__whatsapp {
        padding: 18px;
    }
}

.single-car__whatsapp svg {
    transition: all 0.3s ease;
}

.single-car__whatsapp:hover svg {
    fill: white !important;
    transition: all 0.3s ease;
}

.single-car__whatsapp:hover {
    background-color: #25D366;
    color: #ffffff;
}

.single-car__meta_flex {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    margin-top: 10px;
}

@media only screen and (min-width: 576px) {
    .single-car__meta_flex {
        gap: 15px;
    }
}

.dot_divider {
    width: 4px;
    height: 4px;
    border-radius: 100px;
    background: #ffffff33;
    display: block;
}

.single-car__meta_flex_card {
    display: flex;
    gap: 6px;
    align-items: center;
    color: #A0A0A0;
    font-size: 14px;
    font-weight: 400;
}

.single-car__meta_flex_card svg {
    width: 13px !important;
    height: 13px !important;
}

/* Features Section __________________________ */
.single-car__feature_conntainer {
    background: #111111;
    border-top-width: 1px;
    border-bottom-width: 1px;
    border-color: #ffffff0d;
    padding: 60px 0;
}

.single-car__heading_container {
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

@media only screen and (min-width:768px) {
    .single-car__heading_container {
        margin-bottom: 40px;
        gap: 5px;
    }
}

.single-car__feature_subheading {
    justify-content: center;
}

.single-car__heading {
    color: #ffffff;
    font-weight: 900;
    font-size: 35px;
    text-align: center;
    line-height: 1.2em;
}

@media only screen and (min-width:768px) {
    .single-car__heading {
        font-size: 48px;
    }
}

.single-car__features {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    column-gap: 32px;
    row-gap: 8px;
}

@media only screen and (min-width:768px) {
    .single-car__features {
        row-gap: 16px;
    }
}

@media only screen and (min-width:640px) {
    .single-car__features {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 16px;
    }
}

@media only screen and (min-width:1024px) {
    .single-car__features {
        grid-template-columns: repeat(3, 1fr);
    }
}

.single-car__feature {
    display: flex;
    gap: 10px;
    align-items: center;
    border-bottom: 1px solid #ffffff0d;
    padding-bottom: 12px;
    transition-property: transform;
    transition-duration: .15s;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
}

.single-car__feature:hover svg {
    transform: scale(1.1);
}

.single-car__option {
    color: #ffffffcc;
    font-size: 15px;
    font-weight: 400;
    transition: color 0.3s;
}

.single-car__option:hover {
    color: #ffffff;
}

/* Similar Vehicles Start */
.single-car__similar_conntainer {
    background: #0A0A0A;
    border-top-width: 1px;
    border-bottom-width: 1px;
    border-color: #ffffff0d;
    padding: 60px 0;
}