Advanced custom fields Post Object image field not displaying in custom post type single.php

If you don’t pass a post ID to get_field, it defaults to using the global $post. You need to pass the ID of each of the available_products posts:

$image = get_field( 'product_icon', $post_object->ID );