/* Finance badge — matches Stylemix golden theme */
.mfa-finance-badge {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 14px 20px;
    border: 1px solid rgba(184, 145, 72, 0.4);
    background: rgba(184, 145, 72, 0.06);
    cursor: default;
    margin-bottom: 8px;
    transition: background 0.2s;
}

.mfa-finance-badge:hover {
    background: rgba(184, 145, 72, 0.12);
}

.mfa-label {
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #b89148;
    font-weight: 500;
    margin-bottom: 2px;
}

.mfa-value {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
}

/* Enqueue this in your plugin */

add_action('wp_enqueue_scripts', function() {
    if (is_singular('listings')) {
        wp_enqueue_style('mmf-style',
            plugin_dir_url(__FILE__) . 'motors-finance-add.css');
    }
});