Description
{% comment %}
This code checks if a description exists before trying to display it.
This prevents errors or empty spaces if a product has no description.
{% endcomment %}
{% if product.description != blank %}
<div class="product-description-rte">
{{ product.description }}
</div>
{% endif %}