.vehicle-topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.badge {
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
}

.badge-available {
    background: #dcfce7;
    color: #166534;
}

.badge-reserved {
    background: #fef3c7;
    color: #92400e;
}

.badge-sold {
    background: #fee2e2;
    color: #991b1b;
}

.vehicle-specs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    padding: 0;
    margin: 18px 0;
    list-style: none;
    color: var(--muted);
}
