service( 'template_handler' )->get_template_part( 'shop/checkout/order-review', '', '', array(
'cart' => $cart,
'url_checkout' => $url_checkout,
'items' => $items,
'subtotal' => $subtotal,
'total' => $total
) );
?>
service( 'template_handler' )->get_template_part( 'shop/checkout/payment', '', '', array(
'cart' => $cart,
'url_checkout' => $url_checkout
) );
?>
service( 'template_handler' )->get_template_part( 'shop/checkout/submit-button', '', '', array(
'cart' => $cart,
'url_checkout' => $url_checkout
) );
?>