.topcar-featured-inventory {
    background: #f4efe7;
    padding: 90px 0;
}

.topcar-featured-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 40px;
    margin-bottom: 48px;
}

.topcar-intro-title {
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 8px;
    color: #a68200;
    margin-bottom: 22px;
}

.topcar-featured-title {
    max-width: 960px;
    font-size: clamp(54px, 6vw, 60px);
    line-height: 1.2;
    font-weight: 950;
    color: #111;
    margin: 0;
}

.topcar-view-all {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    min-width: 130px;
    height: 42px;
    border: 1px solid #111;
    color: #111;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    transition: .2s ease;
}

.topcar-view-all:hover {
    background: #111;
    color: #fff;
}

.topcar-view-all.mobile {
    display: none;
}

.topcar-featured-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    align-items: start;
}

.topcar-product-card {
    background: #fff;
    overflow: hidden;
}

.topcar-featured-grid .topcar-product-card:nth-child(2) {
    margin-top: 46px;
}

.topcar-card-image {
    position: relative;
    display: block;
    aspect-ratio: 1.55 / 1;
    overflow: hidden;
    background: #111;
}

.topcar-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .45s ease;
}

.topcar-product-card:hover .topcar-card-image img {
    transform: scale(1.04);
}

.topcar-card-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    color: #fff;
    background: rgba(0, 0, 0, .25);
    padding: 2.5px 14px;
    font-size: 10px;
    font-weight: 900;
    border: 1px solid #f7c60052;
}

.topcar-card-badge svg {
    width: 10px;
    height: 10px;
    color: #f7c600;
    margin-right: 2.5px;
}

.topcar-card-year {
    position: absolute;
    right: 10px;
    bottom: 10px;
    background: #111;
    color: #fff;
    padding: 2.5px 14px;
    font-size: 13px;
    font-weight: 900;
}

.topcar-card-body {
    padding: 28px;
}

.topcar-card-title-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
}

.topcar-card-title-row h3 {
    font-size: 25px;
    line-height: 1.1;
    font-weight: 950;
    margin: 0;
    color: #111;
}

.topcar-fav-btn {
    width: 34px;
    height: 34px;
    border: 0;
    background: transparent;
    color: #b38a00;
    cursor: pointer;
    flex: 0 0 auto;
}

.topcar-fav-btn svg {
    width: 24px;
    height: 24px;
    stroke-width: 2;
}

.topcar-card-km {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-top: 12px;
    color: #777;
    font-size: 15px;
    font-weight: 800;
}

.topcar-card-km svg {
    width: 17px;
    height: 17px;
}

.topcar-card-divider {
    height: 1px;
    background: #e6e6e6;
    margin: 26px 0 22px;
}

.topcar-card-price {
    font-size: 32px;
    line-height: 1;
    font-weight: 950;
    color: #111;
    margin-bottom: 12px;
}

.topcar-card-price .amount {
    color: #111;
}

.topcar-card-installment {
    display: flex;
    align-items: center;
    gap: 9px;
    color: #9b7a00;
    font-size: 15px;
    font-weight: 900;
    margin-bottom: 18px;
}

.topcar-card-installment svg {
    width: 17px;
    height: 17px;
}

.topcar-card-highlight {
    color: #666;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.55;
    min-height: 24px;
    margin-bottom: 26px;
}

.topcar-card-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 48px;
    background: #000;
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 900;
    transition: .2s ease;
}

.topcar-card-button:hover {
    background: #f7c600;
    color: #000;
}

@media (max-width: 991px) {
    .topcar-featured-inventory {
        padding: 64px 0;
    }

    .topcar-featured-head {
        display: block;
        margin-bottom: 28px;
    }

    .topcar-view-all.desktop {
        display: none;
    }

    .topcar-view-all.mobile {
        display: flex;
        width: 100%;
        height: 56px;
        margin-bottom: 48px;
        font-size: 18px;
    }

    .topcar-featured-grid .topcar-product-card:nth-child(2) {
        margin-top: 0;
    }

    .topcar-card-image {
        aspect-ratio: 1.45 / 1;
    }

        .topcar-featured-grid {
        grid-template-columns: 2fr 2fr;
        gap: 10px;
    }

    .topcar-card-title-row h3 {
        font-size: 20px;
        min-height: 66px;

    }

    .topcar-card-divider {
        margin: 10px 0;
    }


    .topcar-card-price {
        font-size: 20px;
    }

    .topcar-card-body {
        padding: 20px 20px 25px;
    }

    .topcar-card-installment {
        font-size: 14px;
        font-weight: 400;
    }

    .topcar-card-highlight {
        display: none;
    }

    .topcar-card-button {
        height: 35px;
    }

    .category-page-title .category-filtering {
        display: none;
    }

}

@media (max-width: 575px) {
    .topcar-featured-inventory {
        padding: 54px 0;
    }

    .topcar-intro-title {
        font-size: 12px;
        letter-spacing: 6px;
    }

    .topcar-featured-title {
        font-size: 42px;
    }
}