{% if product_status != blank %}{{ product_status }}{% endif %}
{{ product.name }}
{% if product.variable_pricing %}
{{ product.min_price | money: theme.money_format }} - {{ product.max_price | money: theme.money_format }}
{% else %}
{{ product.default_price | money: theme.money_format }}
{% endif %}
{% if product.description != blank %}
{% endif %}
{% if product.has_default_option %}
{{ product.option | hidden_option_input }}
{% else %}
{% if product.has_option_groups %}
{{ product.description | paragraphs }}
{% endif %}
{% if product.status == 'active' %}
{% if theme.show_inventory_bars %}
Availability
{% for option_group in product.option_groups %}
{% else %}
Select {{ option_group.name }}
{% for value in option_group.values %}
{{ value.name }}
{% endfor %}
{% endfor %}
Select option
{% for option in product.options %}
{{ option.name }} {% if option.sold_out %} (Sold out){% endif %}
{% endfor %}
{% endif %}
{% endif %}
Add to Cart
{{ store | instant_checkout_button: 'dark', '44px' }}
{% if product.has_option_groups %}
{% endif %}
{% endif %}
{% if theme.show_facebook or theme.show_twitter or theme.show_pinterest %} {% endif %}