<div id="product_box">
<div id="inner_pro_info_box">
<div id="my_cart">
{if $msg != "" }<div id="msg_box">{$msg}</div>{/if}
{if $total_products !=0}
<table width="100%" border="0" cellpadding="3" cellspacing="1" bgcolor="#C4E1FF">
<tr>
<td width="65%" height="27" bgcolor="#C4E1FF"><strong>Product</strong></td>
<td width="10%"><strong>Price</strong></td>
<td width="10%"><strong>Subtotal</strong></td>
</tr>
{section name=cart_product_list loop=$cart_product_list}
<tr>
<td bgcolor="#FFFFFF"><img src="../product_images/{$cart_product_list[cart_product_list].product_image}" align="left" width="100" ><strong><a href="product.php?product_id={$cart_product_list[cart_product_list].product_id}&product_name={$cart_product_list[cart_product_list].product_name}">{$cart_product_list[cart_product_list].product_name}</a></strong><br />
{$cart_product_list[cart_product_list].product_description|truncate:145:"..."}
<div style="padding:3px; background-color:#FFFFCA">{$cart_product_list[cart_product_list].product_variant_details}</div></td>
<td bgcolor="#FFFFFF">${$cart_product_list[cart_product_list].product_price}</td>
<td bgcolor="#FFFFFF">${$cart_product_list[cart_product_list].total}</td>
</tr>
{/section}
</table>
<table width="100%" cellpadding="5" cellspacing="0">
<tr>
<td height="40" bgcolor="#FFFFFF"> </td>
<td bgcolor="#FFFFFF"> </td>
<td width="10%" align="center" bgcolor="#C4E1FF"><strong>Shipping</strong></td>
<td width="10%" bgcolor="#C4E1FF"><strong>?</strong></td>
</tr>
<tr>
<td height="40" bgcolor="#FFFFFF"> </td>
<td bgcolor="#FFFFFF"> </td>
<td width="10%" align="center" bgcolor="#C4E1FF"><strong>GST:</strong></td>
<td width="10%" bgcolor="#C4E1FF"></td>
</tr>
<tr>
<td height="40" bgcolor="#FFFFFF"> </td>
<td bgcolor="#FFFFFF"> </td>
<td width="10%" align="center" bgcolor="#C4E1FF"><strong>Ex GST</strong></td>
<td width="10%" bgcolor="#C4E1FF"><strong>${$grand_total}</strong></td>
</tr>
<tr>
<td height="40" bgcolor="#FFFFFF"> </td>
<td bgcolor="#FFFFFF"> </td>
<td width="10%" align="center" bgcolor="#C4E1FF"><strong>Subtotal</strong></td>
<td width="10%" bgcolor="#C4E1FF"><strong>${$grand_total}</strong></td>
</tr>
</table>
<div align="right"><a href="shipping.php"><img src="images/btns/proceed_shipping_btn.jpg" alt="» Shipping" border="0" /></a></div>
<div id="cart_msg1">we accept all major payment methods</div>
<div id="cart_msg2">Save and Secure shopping</div>
{else}
<em>Your cart is empty</em>
{/if}
</div>
</div>
</div>