.tl-car-products-wrap,
.tl-car-products-wrap * {
    box-sizing: border-box;
}

.tl-car-toolbar {
    background: #fff;
    border: 1px solid #e4e7ec;
    border-radius: 20px;
    padding: 14px;
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: center;
    margin-bottom: 18px;
    box-shadow: 0 7px 22px rgba(16, 24, 40, .08);
    flex-wrap: wrap;
}

.tl-filter-chips {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.tl-filter-chip {
    border: 1px solid #d0d5dd;
    background: #fff;
    border-radius: 999px;
    padding: 9px 13px;
    font-weight: 900;
    cursor: pointer;
    color: #344054;
    line-height: 1;
    min-height: 34px;
}

.tl-filter-chip:hover {
    border-color: #98a2b3;
}

.tl-filter-chip.active {
    background: #061a35;
    color: #fff;
    border-color: #061a35;
}

.tl-car-sort {
    min-width: 220px;
    border: 1px solid #d0d5dd;
    background: #fff;
    border-radius: 13px;
    color: #101828;
    outline: none;
}

.tl-car-grid {
    display: grid;
    gap: 18px;
}

.tl-car-columns-1 {
    grid-template-columns: 1fr;
}

.tl-car-columns-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.tl-car-columns-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.tl-car-columns-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.tl-car-message {
    background: #fff;
    border: 1px solid #e4e7ec;
    border-radius: 14px;
    padding: 16px;
    color: #344054;
}

.tl-car-card {
    background: #fff;
    border: 1px solid #e4e7ec;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 7px 22px rgba(16, 24, 40, .08);
    transition: .2s ease;
}

.tl-car-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 44px rgba(16, 24, 40, .12);
}

.tl-car-card.is-hidden {
    display: none !important;
}

.tl-car-image {
    position: relative;
    height: 178px;
    background: linear-gradient(150deg, #eef2f8, #fff);
    overflow: hidden;
}

.tl-car-brand {
    position: absolute;
    z-index: 4;
    top: 12px;
    left: 12px;
    border-radius: 999px;
    padding: 7px 10px;
    color: #fff;
    font-size: 12px;
    line-height: 1;
    font-weight: 900;
}

.tl-brand-mitsubishi {
    background: #d71920;
}

.tl-brand-vinfast {
    background: #0057c8;
}

.tl-brand-default {
    background: #061a35;
}

.tl-car-status {
    position: absolute;
    z-index: 4;
    top: 12px;
    right: 12px;
    border-radius: 999px;
    padding: 7px 10px;
    background: #e9fff5;
    color: #027a48;
    border: 1px solid #b7f7d7;
    font-size: 12px;
    line-height: 1;
    font-weight: 900;
}

.tl-car-thumb-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 0;
}

.tl-car-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tl-fake-car {
    position: absolute;
    left: 8%;
    right: 8%;
    bottom: 32px;
    height: 78px;
    display: block;
}

.tl-fake-car-body {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 14px;
    height: 58px;
    background: linear-gradient(135deg, #fff, #d8e2f0);
    border-radius: 34px 80px 18px 18px;
    box-shadow: 0 18px 36px rgba(16, 24, 40, .13);
}

.tl-fake-car-body::before {
    content: "";
    position: absolute;
    left: 21%;
    top: -34px;
    width: 44%;
    height: 44px;
    background: linear-gradient(135deg, #fff, #becad9);
    clip-path: polygon(10% 100%, 33% 8%, 76% 8%, 100% 100%);
    border-radius: 44px 60px 0 0;
}

.tl-fake-wheel {
    position: absolute;
    bottom: 0;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #101828;
    border: 7px solid #344054;
}

.tl-fake-wheel::after {
    content: "";
    position: absolute;
    inset: 5px;
    border-radius: 50%;
    background: #111827;
}

.tl-wheel-a {
    left: 18%;
}

.tl-wheel-b {
    right: 18%;
}

.tl-car-content {
    padding: 18px;
}

.tl-car-content h3 {
    margin: 0 0 5px;
    font-size: 22px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.tl-car-content h3 a {
    color: #000;
    text-decoration: none;
}

.tl-car-specs {
    color: #667085;
    font-size: 14px;
    margin-bottom: 12px;
}

.tl-car-benefits {
    display: grid;
    gap: 8px;
    margin-bottom: 15px;
}

.tl-car-benefits span {
    display: flex;
    gap: 8px;
    align-items: flex-start;
    color: #344054;
    font-size: 13px;
    line-height: 1.45;
    font-weight: 700;
}

.tl-car-benefits span::before {
    content: "✓";
    color: #027a48;
    font-weight: 900;
    flex: 0 0 auto;
}

.tl-car-price-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    border-top: 1px dashed #d0d5dd;
    padding-top: 14px;
    gap: 12px;
}

.tl-car-price-row small {
    display: block;
    color: #98a2b3;
    font-weight: 800;
}

.tl-car-price-row strong {
    display: block;
    font-size: 20px;
    color: #d71920;
    line-height: 1.2;
}

.tl-detail-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 98px;
    border-radius: 12px;
    padding: 10px 14px;
    background: #fff;
    color: #000;
    border: 1px solid #d0d5dd;
    font-weight: 900;
    text-decoration: none;
    white-space: nowrap;
}

.tl-detail-btn:hover {
    color: #000;
    border-color: #98a2b3;
}

.tl-car-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9px;
    margin-top: 13px;
}

.tl-car-actions a {
    text-align: center;
    border-radius: 12px;
    padding: 10px 8px;
    font-weight: 900;
    font-size: 13px;
    text-decoration: none;
}

.tl-quote-btn {
    background: #d71920;
    color: #fff;
}

.tl-quote-btn:hover {
    color: #fff;
    filter: brightness(.96);
}

.tl-finance-btn {
    background: #f2f4f7;
    color: #101828;
}

.tl-finance-btn:hover {
    color: #101828;
    background: #e8edf4;
}

@media (max-width: 1024px) {
    .tl-car-columns-3,
    .tl-car-columns-4 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 680px) {
    .tl-car-toolbar {
        display: block;
    }

    .tl-filter-chips {
        margin-bottom: 12px;
    }

    .tl-car-sort {
        width: 100%;
        min-width: 0;
    }

    .tl-car-grid,
    .tl-car-columns-1,
    .tl-car-columns-2,
    .tl-car-columns-3,
    .tl-car-columns-4 {
        grid-template-columns: 1fr;
    }

    .tl-car-image {
        height: 170px;
    }
}

.tl-car-more-wrap {
    display: flex;
    justify-content: center;
    margin-top: 22px;
}

.tl-car-more-wrap.is-hidden {
    display: none !important;
}

.tl-car-more-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    border-radius: 999px;
    padding: 12px 24px;
    background: #061a35;
    color: #fff;
    font-weight: 900;
    text-decoration: none;
    border: 1px solid #061a35;
    box-shadow: 0 7px 22px rgba(16, 24, 40, .08);
}

.tl-car-more-btn:hover {
    color: #fff;
    filter: brightness(.96);
}