If you are looking to load the default WooCommerce styling file instead of the dynamic WooCommerce styling version which uses the same default WooCommerce CSS file but loads your site primary color instead of the default WooCommerce primary color, then you can add this code snippet into functions.php file in your child theme:
add_filter( 'pixfort_load_woo_style', 'custom_woo_style_filter', 40, 1 );
function custom_woo_style_filter($load) {
return false;
}