{% if global.recentlyWatchedProducts(product is defined ? product.id : null)|length %}
<div class="section__item section__item--md">
<h2 class="product-add__title">Недавно просмотренные товары</h2>
<div class="product-carousel swiper a-carousel-product nav-right">
<div class="swiper-wrapper">
{% for p in global.recentlyWatchedProducts(product is defined ? product.id : null) %}
<div class="swiper-slide">
{{ include('application/catalog/product-block.html.twig', {product: p}) }}
</div>
{% endfor %}
</div>
{% if global.recentlyWatchedProducts(product is defined ? product.id : null)|length > 1 %}
<div class="btn-prev"><svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M10.854 12.867a.536.536 0 0 1-.708 0l-5-4.546a.426.426 0 0 1 0-.642l5-4.546a.536.536 0 0 1 .708 0 .426.426 0 0 1 0 .643L6.207 8l4.647 4.224a.426.426 0 0 1 0 .643z"/></svg></div>
<div class="btn-next"><svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M5.146 3.133a.536.536 0 0 1 .708 0l5 4.546a.426.426 0 0 1 0 .642l-5 4.546a.536.536 0 0 1-.708 0 .426.426 0 0 1 0-.643L9.793 8 5.146 3.776a.426.426 0 0 1 0-.643z"/></svg></div>
{% endif %}
</div>
</div>
{% endif %}