Convert Featured products loop into Recent products loop?

Try this:

$args = array(
    'post_type' => 'product',
    'posts_per_page' => 25,
    'orderby' => 'date',
    'order' => 'DESC',
);

$loop = new WP_Query( $args );