<div class="product-card mb-3 shadow-unset">
<div class="product-head">
<div class="rating-stars">
{# {% for i in 1..5 %} #}
{# <i class="mdi mdi-star {{ i <= suggestion.rating ? 'active' }}"></i> #}
{# {% endfor %} #}
</div>
{# {% if product.discount %} #}
{# <div class="discount"><span>{{ product.discount }}%</span></div> #}
{# {% endif %} #}
</div>
<a class="product-thumb" href="{{ path('app_shop_site_product' , {'urlSlug' : product.urlSlug}) }}">
{% if product.productImages|length > 0 %}
<img src="{{ product.productImages[0].imageUrl }}" alt="">
{% elseif product.imageUrl is defined and product.imageUrl is not null %}
<img src="{{ product.imageUrl }}" alt="">
{% else %}
<img src="/default.jpg" alt="">
{% endif %}
</a>
<div class="product-card-body">
<h5 class="product-title">
<a style="font-size: 0.8rem;
line-height: 1.2rem;" href="{{ path('app_shop_site_product' , {'urlSlug' : product.urlSlug}) }}">
{{ product.name|length > 50 ? product.name|slice(0, 50) ~ '...' : product.name }}
</a>
</h5>
{% set firstCategory = product.productCategories|first %}
{% if firstCategory %}
<a class="product-meta" href="#">{{ firstCategory.name }}</a>
{% endif %}
<span class="product-price">{{ product.displayPrice|number_format }} تومان</span>
</div>
</div>