add_action( 'wp_footer', 'hide_cart' );
function hide_cart(){
if ( WC()->cart->get_cart_contents_count() == 0 ) {
?>
<style>.cart{display: none;}</style>
<?php
}
}
$('body').on('added_to_cart',function(){
// Callback -> product added
$('.cart').css('display','block');
});