{%- if childlink.object and childlink.object.products_count == 0 -%}
{%- continue -%}
{%- endif -%}
{%- if grandchildlink.object and grandchildlink.object.products_count == 0 -%}
{%- continue -%}
{%- endif -%}
{%- for childlink in link.links -%}
{%- if childlink.object and childlink.object.products_count == 0 -%}
{%- continue -%}
{%- endif -%}
<li>
<a
id="HeaderMenu-{{ link.handle }}-{{ childlink.handle }}"
href="{{ childlink.url }}"
class="mega-menu__link mega-menu__link--level-2 link{% if childlink.current %} mega-menu__link--active{% endif %}"
{% if childlink.current %}
aria-current="page"
{% endif %}
>
{{ childlink.title | escape }}
</a>
{%- if childlink.links != blank -%}
<ul class="list-unstyled" role="list">
{%- for grandchildlink in childlink.links -%}
{%- if grandchildlink.object and grandchildlink.object.products_count == 0 -%}
{%- continue -%}
{%- endif -%}
<li>
<a
id="HeaderMenu-{{ link.handle }}-{{ childlink.handle }}-{{ grandchildlink.handle }}"
href="{{ grandchildlink.url }}"
class="mega-menu__link link{% if grandchildlink.current %} mega-menu__link--active{% endif %}"
{% if grandchildlink.current %}
aria-current="page"
{% endif %}
>
{{ grandchildlink.title | escape }}
</a>
</li>
{%- endfor -%}
</ul>
{%- endif -%}