/* Container: Mobile 2 columns */
.bt-car-container-compact {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding: 12px;
    max-width: 1200px;
    margin: 0 auto;
    font-family: 'Poppins', sans-serif;
}

/* Card Styling */
.bt-compact-item {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: transform 0.2s;
}

.bt-compact-item:active {
    transform: scale(0.98);
}

/* Image Section - उंची वाढवली आहे (Large Image) */
.bt-media-large {
    position: relative;
    height: 130px; /* मोबाईलवर मोठी इमेज */
    background: #f8f8f8;
}

.bt-media-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Badges */
.bt-pop-mini {
    position: absolute; top: 8px; left: 0;
    background: #f1c40f; color: #000; font-size: 9px;
    padding: 3px 8px; font-weight: bold; border-radius: 0 4px 4px 0;
    z-index: 2;
}

.bt-rate-mini {
    position: absolute; bottom: 8px; right: 8px;
    background: rgba(0,0,0,0.75); color: #fff;
    padding: 2px 6px; border-radius: 4px; font-size: 10px;
    font-weight: 600;
}

/* Info Section */
.bt-content-box {
    padding: 8px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.bt-brand-text {
    font-size: 8px; color: #999; text-transform: uppercase;
    display: block; letter-spacing: 0.5px;
}

.bt-car-name {
    font-size: 14px; margin: 2px 0; color: #222; font-weight: 700;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.bt-specs-line {
    display: flex; 
    /* Space-between mule ek left la ani dusra right la jail */
    justify-content: space-between; 
    align-items: center;
    font-size: 10px; 
    color: #666; 
    margin: 4px 0 10px;
    width: 100%; /* Full width aslyas antar vyavasthit disel */
}

.bt-specs-line i { color: #3f449b; }

/* Buttons */
.bt-action-mini {
    display: flex; gap: 4px;
}

.btn-c {
    flex: 1; height: 34px; display: flex; align-items: center;
    justify-content: center; border-radius: 6px; text-decoration: none;
    font-size: 11px; font-weight: 600; transition: 0.3s;
}

.btn-c i {
    margin-right: 6px; /* Icon chya ujwi kade thodi jagga sodli */
}

.btn-call-m { background: #3f449b; color: white; }
.btn-wa-m { background: #2ecc71; color: white; }

/* Empty state */
.bt-empty { grid-column: 1/-1; text-align: center; padding: 40px; color: #888; }

/* Desktop View (Grid 3 or 4 columns) */
@media (min-width: 768px) {
    .bt-car-container-compact { grid-template-columns: repeat(3, 1fr); gap: 20px; }
    .bt-media-large { height: 200px; } /* डेस्कटॉपवर अधिक मोठी इमेज */
    .bt-car-name { font-size: 18px; }
    .btn-c { font-size: 13px; height: 40px; }
}

@media (min-width: 1024px) {
    .bt-car-container-compact { grid-template-columns: repeat(4, 1fr); }
}