﻿.favorite-btn-detail {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    background-color: transparent;
    border: 2px solid var(--secondary-color);
    border-radius: 30px;
    font-size: 16px;
    color: var(--secondary-color);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.favorite-icon {
    font-size: 20px;
    margin-right: 8px;
    transition: transform 0.3s ease;
}

.favorite-text {
    font-size: 16px;
    transition: color 0.3s ease;
}

.favorite-btn-detail:hover {
    background-color: #007bff;
    color: white;
}

    .favorite-btn-detail:hover .favorite-icon {
        transform: scale(1.2);       
    }

    .favorite-btn-detail:hover .favorite-text {
        color: #fff;       
    }

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

    .favorite-btn-detail.active .favorite-icon {
        color: white;
    }

@media (max-width: 600px) {
    .favorite-btn-detail {
        font-size: 14px;
        padding: 8px 16px;
    }

    .favorite-icon {
        font-size: 18px;
    }
}
