{% sw_extends '@Storefront/storefront/base.html.twig' %}
{% block base_html %}
<html lang="{{ app.request.locale }}"
itemscope="itemscope"
itemtype="https://schema.org/WebPage">
{% endblock %}
{% block base_head %}
{% sw_include '@Storefront/storefront/layout/meta.html.twig' %}
{% endblock %}
{% block base_body %}
<body
class="{% block base_body_classes %}is-ctl-{{ controllerName|lower }} is-act-{{ controllerAction|lower }}{% endblock %}">
{% block base_body_inner %}
{% block base_noscript %}
{{ parent() }}
{% endblock %}
{% block base_header %}
{% block layout_header_search %}
<div class="header-search-col">
<div class="row">
<div class="col">
{% sw_include 'storefront/layout/header/search.html.twig' %}
</div>
</div>
</div>
{% endblock %}
{{ parent() }}
{% endblock %}
{% block base_navigation %}
{# <div class="nav-main"> #}
{# {% block base_navigation_inner %} #}
{# {% sw_include '@Storefront/storefront/layout/navigation/navigation.html.twig' %} #}
{# {% endblock %} #}
{# </div> #}
{% endblock %}
{% block base_offcanvas_navigation %}
{% if page.header.navigation %}
<div class="d-none js-navigation-offcanvas-initial-content{% if context.salesChannel.navigationCategoryId == page.header.navigation.active.id %} is-root{% endif %}">
{% block base_offcanvas_navigation_inner %}
{% sw_include '@Storefront/storefront/layout/navigation/offcanvas/navigation.html.twig' with { navigation: page.header.navigation } %}
{% endblock %}
</div>
{% endif %}
{% endblock %}
{% block base_main %}
{{ parent() }}
{% endblock %}
{% block base_footer %}
{{ parent() }}
{% endblock %}
{% endblock %}
{% block base_scroll_up %}
{{ parent() }}
{% endblock %}
{% block base_cookie_permission %}
{{ parent() }}
{% endblock %}
{% block base_pseudo_modal %}
{{ parent() }}
{% endblock %}
{% block base_body_script %}
{{ parent() }}
{% endblock %}
</body>
{% endblock %}