{# Widget Boutique - Catalogue de produits intégré #}
{# Header avec filtres et recherche #} {% if config.showFilters or config.showSearch %}
{# Filtres de catégories #} {% if config.showFilters and categories|length > 0 %}
{% for category in categories %} {% endfor %}
{% endif %} {# Barre de recherche #} {% if config.showSearch %} {% endif %}
{% endif %} {# Grille de produits #}
{% if products|length == 0 %}

Aucun produit disponible

{% if selectedCategory %}Cette catégorie ne contient pas encore de produits.{% else %}La boutique est en cours de préparation.{% endif %}

{% else %} {% for product in products %}
{# Image du produit #}
{% if product.image %} {{ product.name }} {% else %}
{% endif %} {# Badge stock #} {% if config.showStock %} {% if product.isInStock %} En stock {% else %} Épuisé {% endif %} {% endif %} {# Quick view button #} {% if config.enableQuickView %} {% endif %}
{# Informations produit #}
{# Catégorie #} {% if product.category %} {{ product.category.name }} {% endif %} {# Nom du produit #}

{{ product.name }}

{# Description courte #} {% if product.description %}

{{ product.description|length > 100 ? product.description|slice(0, 100) ~ '...' : product.description }}

{% endif %} {# Prix et actions #}
{% endfor %} {% endif %}