If I have understood your question well, you wish to disable the CSS Styles defined by Woocommerce.
Just add the following line of code to achieve this objective,
add_filter( 'woocommerce_enqueue_styles', '__return_false' );
For more info, visit
https://docs.woocommerce.com/document/disable-the-default-stylesheet/