Blocksy employs a very nice product gallery, which can be customised further using the Customiser. If you wish to return to WooCommerce’s default gallery for whatever reason, feel free to use the snippet below.
add_filter('blocksy:woocommerce:product-view:use-default', function ($current_value) {
// Use WooCommerce built in gallery
return true;
});