How to access Woo Commerce products from within custom theme? [closed]

Yes you can – see here: https://docs.woocommerce.com/wc-apidocs/class-WC_Product.html

You’d use something like $myproduct = new WC_Product( $product_id );

Hope that helps