/**
 * Favorite Button Component Styling
 * Location: /var/www/saafee/public/css/favorite-button.css
 * Used by the favorite-button.php component
 */

.btn-favorite {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    border: 1.5px solid #E0E0E0;
    border-radius: 8px;
    padding: 0.5rem 1rem;
    cursor: pointer;
    color: #555;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s ease;
    min-height: 44px;
}

.btn-favorite:hover {
    border-color: #E44335;
    color: #E44335;
}

.btn-favorite.active {
    background: #E44335;
    border-color: #E44335;
    color: white;
}

.btn-favorite svg {
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.btn-favorite:hover svg {
    stroke: #E44335;
}

.btn-favorite.active svg {
    stroke: white;
}

html[dir="rtl"] .btn-favorite {
    flex-direction: row-reverse;
}
