{% extends "base.html" %} {% block content %}

{{ t_shop('title', '🛒 Magazin Club') }}

{{ t_shop('subtitle', 'Produse exclusive, echipamente de drum și plugin-uri digitale pentru comunitate.') }}

{% if categories %}
{{ t_shop('all_products', 'Toate produsele') }} {% for cat in categories %} {{ cat.icon }} {{ cat.name }} {% endfor %}
{% endif %} {% if products %}
{% for p in products %}
{% if p.old_price and p.old_price > p.price %} {% set discount = ((p.old_price - p.price) / p.old_price * 100)|round|int %} 🔥 -{{ discount }}% {{ t_shop('discount_label', 'REDUCERE') }} {% elif p.price == 0 %} {{ t_shop('free_badge', '🎁 GRATUIT') }} {% endif %} {% if p.category_name %} {{ p.category_name }} {% endif %}
{% if p.featured_image %} {{ p.title }} {% else %}
📦
{% endif %}
{{ p.title }}

{{ p.short_description or p.short_description_display or 'Descoperă detaliile acestui produs exclusiv din magazinul nostru.' }}

{% if p.old_price and p.old_price > p.price %}
{{ "%.2f"|format(p.old_price) }} {{ p.currency }}
{% if p.price > 0 %} {{ "%.2f"|format(p.price) }} {{ p.currency }} {% else %} {{ t_shop('free_badge', '🎁 GRATUIT') }} {% endif %}
{% elif p.price > 0 %} {{ "%.2f"|format(p.price) }} {{ p.currency }} {% else %} {{ t_shop('free_badge', '🎁 GRATUIT') }} {% endif %}
{{ t_shop('view_details', 'Vezi Detalii →') }}
{% endfor %}
{% else %}
📦

Momentan nu există produse în această categorie

Revin-o curând pentru noi produse și echipamente!

Vezi toate produsele
{% endif %}
{% endblock %}