{% sw_extends '@Storefront/storefront/base.html.twig' %}
{% block base_body_classes %}
{{ parent() }}
{% if app.request.query.get('appDeviceId') %}
is-bfmApp
{% endif %}
{% endblock %}
{% block base_body_inner %}
{% if app.request.query.get('appDeviceId') and (controllerName == "Register" or controllerName == "Checkout" ) %}
<div data-bfm-app="true"></div>
{% endif %}
<ff-communication
{{ page.extensions.factfinder.communication|default([])|filter(val => val)|map((val, key) => key ~ '="' ~ (val|e('html_attr')) ~ '"')|join(' ')|raw }}
only-search-params="true"
disable-single-hit-redirect="true"
currency-fields="basePrice,list_price"
parameter-whitelist="page"></ff-communication>
{{ parent() }}
{% endblock %}
{% block base_header %}
<header class="header-main">
{% block base_header_inner %}
{% block top_bar_action_banner %}
{% if "header.actionBannerText"|trans|sw_sanitize != ' ' %}
<div class="header-action-banner-wrapper">
<div class="header-action-banner-container d-flex">
<div class="header-action-banner-text container">
{{ "header.actionBannerText"|trans|sw_sanitize }}
</div>
{% sw_icon 'close' style {'pack' : 'globus_icons'} %}
</div>
</div>
{% endif %}
{% endblock %}
{% sw_include '@Storefront/storefront/layout/header/top-bar.html.twig' %}
<div class="header-main-inner header-main-inner-alphatecc">
<div class="container">
{% sw_include '@Storefront/storefront/layout/header/header.html.twig' %}
</div>
</div>
{% endblock %}
</header>
{% endblock %}
{% block base_footer %}
<footer class="footer-main">
<div class="footer-top-section">
<div class="footer-benefits d-flex flex-column flex-md-row align-items-md-center container">
<div class="footer-benefit">
{% sw_icon 'truck_retoure' style {'pack' : 'globus_icons'} %}
{{ "general.benefitText1"|trans|sw_sanitize }}
</div>
<div class="footer-benefit">
{% sw_icon 'check-circle' style {'pack' : 'globus_icons'} %}
{{ "general.benefitText2"|trans|sw_sanitize }}
</div>
<div class="footer-benefit">
{% sw_icon 'store_s' style {'pack' : 'globus_icons'} %}
{{ "general.benefitText3"|trans|sw_sanitize }}
</div>
</div>
</div>
{% block base_footer_inner %}
<div class="container pt-5 pb-4">
{% sw_include '@Storefront/storefront/layout/footer/footer.html.twig' %}
</div>
{% endblock %}
</footer>
{% endblock %}
{% block base_cookie_permission %}
{{ parent() }}
{% sw_include '@Storefront/storefront/component/store-locator/store-locator-offcanvas.html.twig' %}
{% sw_include '@Storefront/storefront/component/store-locator/my-store-offcanvas.html.twig' %}
{% sw_include '@Storefront/storefront/component/wishlist-offcanvas/wishlist-offcanvas.html.twig' %}
{% endblock %}