.favorite-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 64px;
    padding: 0 24px;
    font-size: 1rem;
    font-weight: 600;
    background: rgba(109, 109, 110, 0.7);
    color: #fff;
    border: none;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.2s ease;

    &:hover {
        background: rgba(109, 109, 110, 0.5);
    }

    &--active {
        background: rgba(229, 9, 20, 0.8);

        &:hover {
            background: rgba(229, 9, 20, 0.6);
        }
    }

    mat-icon {
        font-size: 24px;
        width: 24px;
        height: 24px;
    }
}
