.elementor-39100 .elementor-element.elementor-element-7a412d2{margin-top:4em;margin-bottom:4em;}/* Start custom CSS for html, class: .elementor-element-3fd8ac9 *//* =========================
   GLOBAL PAGE
========================= */
.car-page {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    font-family: 'Poppins', sans-serif;
}

/* =========================
   HEADER
========================= */
.car-header {
    text-align: center;
    margin-bottom: 30px;
}

.car-header h1 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 5px;
}

.car-header p {
    color: #666;
}

/* =========================
   FILTER
========================= */
.car-filter-container {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    margin-bottom: 30px;
}

/* CENTER FILTER */
.auto-listings-search .row {
    justify-content: center;
}

/* =========================
   RESULTS TOP
========================= */
.results-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.results-count {
    font-weight: 500;
}

/* =========================
   GRID
========================= */
.car-grid .auto-listings-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* =========================
   CARD
========================= */
.auto-listings-items li.auto-listing {
    list-style: none;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
    transition: 0.25s;
    display: flex;
    flex-direction: column;
}

.auto-listings-items li.auto-listing:hover {
    transform: translateY(-5px);
}

/* IMAGE */
.auto-listings-items .image {
    height: 200px;
    overflow: hidden;
}

.auto-listings-items .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* CONTENT */
.auto-listings-items .summary {
    padding: 15px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

/* TITLE */
.auto-listings-items .title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 6px;
}

/* PRICE */
.auto-listings-items .price {
    font-size: 18px;
    font-weight: 700;
    color: #cead0a;
    margin-bottom: 10px;
}

/* SPECS */
.auto-listings-items .at-a-glance ul {
    display: flex;
    gap: 10px;
    font-size: 13px;
    color: #666;
    margin-bottom: 10px;
    padding: 0;
    list-style: none;
}

/* DESCRIPTION */
.auto-listings-items .description {
    font-size: 13px;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.4;

    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* BOTTOM */
.auto-listings-items .bottom-wrap {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* BUTTON */
.auto-listings-items .al-button {
    background: #cead0a;
    color: #fff;
    padding: 8px 14px;
    border-radius: 6px;
    text-decoration: none;
}

.auto-listings-items .al-button:hover {
    background: #b89a08;
}

/* =========================
   SUMO SELECT FIX
========================= */
.SumoSelect > .CaptionCont {
    height: 44px;
    border-radius: 8px;
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    padding: 0 12px;
}

.SumoSelect.open > .CaptionCont {
    border-color: #cead0a;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1024px) {
    .car-grid .auto-listings-items {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .car-grid .auto-listings-items {
        grid-template-columns: 1fr;
    }
}/* End custom CSS */