{% extends "@Storefront/storefront/component/product/listing.html.twig" %}
{% block element_product_listing_pagination_nav_actions %}
{% endblock %}
{% block element_product_listing_col %}
{% set categoryId = page.header.navigation.active.customFields.custom_listing_banner_category %}
{% set imgMediaId = page.header.navigation.active.customFields.custom_category_info_listing_banner %}
{% for product in searchResult %}
<div class="cms-listing-col {{ listingColumns }} {% if loop.index == "5" and isBannerDisplay %} banner-box d-none d-xl-block {% endif %}">
{% if loop.index == "5" and categoryId and imgMediaId %}
{% sw_include '@Storefront/storefront/component/product/card/banner.html.twig' %}
{% else %}
{% block element_product_listing_box %}
{% sw_include '@Storefront/storefront/component/product/card/box.html.twig' with {
'layout': boxLayout,
'displayMode': displayMode
} %}
{% endblock %}
{% endif %}
</div>
{% endfor %}
{% endblock %}