<section class="product-list ">
<div class="container">
<div class="product-list__content">
{% if title %}
<div class="product-list__heading section-heading">
<div class="container">
<h3 class="h4 section-title"> {{ title|default|raw }} </h3>
</div>
</div>
{% endif %}
<div class="product-list__items {{ display_variant is defined and display_variant ? display_variant }}">
{% for product in choice_products %}
{% if product %}
{{ render_product_card(product) }}
{% endif %}
{% endfor %}
</div>
</div>
</div>
</section>