自定义WooCommerce 2.6循环

I'm new to wooCommerce and I want to be able to display a single featured product from a category with different HTML markup than is used in the featured products shortcode like so:

[featured_products per_page="1" columns="1"]

I want to be able to do something like follows:

<div class="pure-g">
    <div class="pure-u-2-3">
        <h1>Product Name</h1>
    </div>
    <div class="pure-u-1-1 pure-u-md-2-3">
        <p>Product Description</p>
        <div>Link to single product page</div>
        <hr/>
    </div>
    <div class="pure-u-1-3">
        <img of product/>
    </div>
</div>

I'm not sure how to use a WP query and loop to achieve this or if that's even possible.

I would appreciate any suggestions :)