{% extends _layout %} {% block content %} {% import 'mobile_new/product_listing.html' as product_listing %}

{{ product.name }}

{% if product.sku %}

{{ 'Ref.:'|trans({'en':'SKU'}) }} {{ product.sku }}

{% endif %}
    {% for image in product.images %}
  • {{ image.alt }}
  • {% endfor %}
{% if product.images|length > 1 %}
{% endif %}
{% if product.excerpt %}

{{ product.excerpt|nl2br }}

{% endif %}
{{ wishlist_button('  '~'Lista de Desejo'|trans({'en':'Wishlist'}), product, '', true) }}
{% if product.lookable %} {% include 'mobile_new/_look.html' %} {% else %} {{ form_open('cart/add_to_cart', 'class="form-horizontal buy-btn-form"') }}
{{ variation_select(product, {button_selects: 'true'}) }}
{% if product.options|count > 0 %}
    {% for option in product.options %}
  • {{ 'Selecione a opção para'|trans({'en':'Select a option for'}) }} {{option.name}}:
      {% for value in option.values %} {% if value.color %}
    • {% else %}
    • {% endif %} {% endfor %}
  • {% endfor %}
{% for option in options %} {% if option.id in product.available_options %} {% if option.type == 'textarea' %} {% elseif option.type == 'textfield' %} {% endif %} {% endif %} {% endfor %}
{% endif %}
{% if product.price > 0 %}
{% if product.saleprice > 0 %} {{ product.price|format_currency }} {{ product.saleprice|format_currency }} {% else %} {{ product.price|format_currency }} {% endif %} {% set product_price = product.saleprice > 0 ? product.saleprice : product.price %} {% if product.installments > 1 %} {{ 'Em até '|trans({'en':'or '}) }}{{ product.installments }}x {{ 'de'|trans({'en':'of'}) }} {{ (product_price/product.installments)|format_currency }} {{ 'sem juros '|trans({'en':''}) }} {% endif %}

Escolha uma opção

Produto indisponível
{% if product.track_stock == 1 and product.quantity <= 0 %} {% endif %}
{% endif %}
{{ form_open('contact/remind_me', 'class="remindme-form hide form-horizontal"', {'redirect': site_url(uri_string()), 'variant_id': '', 'product_id': product.id}) }}
{{ form_close() }}
Indique este produto:
{% if current_lang() == 'portugues' %} {{ shipping_widget() }} {% endif %}
{% if product.description or product.properties|count > 0 or testimonials|count > 0 %}
{% if product.description %}
{{ product.description|raw }}
{% endif %} {% if product.properties|count > 0 %}
{% for prop in product.properties %} {% if properties_flatten[prop.id].image is not empty %} {% else %}
{{ properties_flatten[prop.id].name }}
{% endif %}

{{ properties_flatten[prop.id].description }}

{% endfor %}
{% endif %} {% if testimonials|count > 0 %}
{{ testimonials_widget() }}
{% endif %}
{% endif %}
{% if related|count > 0 %}

{{ 'Aproveite Também'|trans({'en':'Related Products'}) }}

{% for related_product in related|slice(0,3) %}
{{ product_listing.item(related_product, category, 12) }}
{% endfor %}
{% endif %}
{% endif %}
{% endblock %}