Thank you

{% layout 'theme' %} {% if first_time_access %}

Thank you for your purchase, {{ customer.first_name }}!

Your order has been successfully processed. We appreciate your business!

{% else %}

Thank you for your order!

Your order #{{ checkout.order_number }} has been successfully placed.

{% endif %}

We are processing your order and will notify you once it ships. You can view your order details below:

Order Summary

    {% for line_item in checkout.line_items %}
  • {{ line_item.quantity }} x {{ line_item.title }} {% if line_item.variant.title != 'Default Title' %}

    Option: {{ line_item.variant.title }}

    {% endif %}

    Price: {{ line_item.final_line_price | money }}

  • {% endfor %}

Shipping Address:

  • {{ checkout.shipping_address.name }}
  • {{ checkout.shipping_address.address1 }}
  • {{ checkout.shipping_address.address2 }}
  • {{ checkout.shipping_address.city }}, {{ checkout.shipping_address.province }} {{ checkout.shipping_address.zip }}
  • {{ checkout.shipping_address.country }}
{% if checkout.additional_notes %}

Notes from You:

{{ checkout.additional_notes }}

{% endif %}

We will send a confirmation email with your order details shortly. If you have any questions or need assistance, feel free to contact our customer support team.

Continue Shopping

Visit Our Store