/* Car Listings Styles */

.car-listing-box {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.car-listing-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.car-listing-box .car-image {
    display: block;
    overflow: hidden;
}

.car-listing-box .car-image img {
    width: 100%;
    padding:20px;
    height: 220px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.car-listing-box:hover .car-image img {
    transform: scale(1.05);
}

.car-listing-box .car-content {
    padding: 20px 24px 24px;
}

.car-listing-box .car-content a {
    text-decoration: none;
}

.car-listing-box .car-title {
    font-family: "Poppins", sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #1c1c1e;
    margin: 0 0 5px;
    line-height: 1.3;
}

.car-listing-box .car-subtitle {
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    color: #6d6d6d;
    margin: 0 0 15px;
}

.car-listing-box .car-price {
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    color: #1c1c1e;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e4e4e4;
}

.car-listing-box .car-price strong {
    font-size: 20px;
    font-weight: 700;
    color: #181818;
}

.car-listing-box .car-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.car-listing-box .car-features li {
    font-family: "Poppins", sans-serif;
    font-size: 13px;
    color: #5c6368;
    padding: 6px 0;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    padding-left: 20px;
}

.car-listing-box .car-features li:last-child {
    border-bottom: none;
}

.car-listing-box .car-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #1563df;
    font-weight: bold;
}

.car-listing-box .tf-btn.primary {
    padding: 14px 55px;
    background-color: #212121;
    color: #ffffff;
    text-decoration: none;
    border-radius: 60px;
    border: 1px solid #434343;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.car-listing-box .tf-btn.primary:hover {
    background-color: #0d4db3;
    transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .car-listing-box .car-image img {
        height: 250px;
    }
}

@media (max-width: 767px) {
    .car-listing-box {
        margin-bottom: 20px;
    }
    
    .car-listing-box .car-content {
        padding: 16px 20px 20px;
    }
    
    .car-listing-box .car-title {
        font-size: 18px;
    }
    
    .car-listing-box .car-price strong {
        font-size: 18px;
    }
}
