<!DOCTYPE html>
<html lang="{{ app.request.locale|slice(0, 2) }}">
<head>
<style>
a {
color: #111111;
text-decoration: none;
outline: none;
transition: all 0.3s ease;
}
header .part-bottom>.wrap:nth-of-type(2)>ul>li>a {
padding: 1.1428571429rem 1.4285714286rem;
padding-left: clamp(0.5714285714rem, 1.5vw, 1.4285714286rem);
padding-right: clamp(0.5714285714rem, 1.5vw, 1.4285714286rem);
position: relative;
}
/* --- critical layout (pre-stylesheet first paint) --- */
*, *::before, *::after { box-sizing: border-box; }
html { margin: 0; padding: 0; font: normal 400 14px/1.429em "Karla", Arial, sans-serif; font-size: 14px; color: #111111; }
body { margin: 0; padding: 0; background-color: white; }
img { max-width: 100%; }
ul { margin: 0; padding: 0; list-style: none; }
#window header > div, #window > div:not(.wrap), #window > div > div:not(.wrap), #window footer {
display: flex; flex-direction: column; align-items: center;
}
#window header > div > .wrap, #window > div:not(.wrap) > .wrap, #window > div > div:not(.wrap) > .wrap, #window footer > .wrap {
width: 100%; padding: 0 32px; min-width: 1088px; max-width: 1464px;
}
header .special-top-line { padding: 0.5714285714rem 4.2857142857rem; background-color: #78abab; color: white; font-size: 0.8571428571rem; font-weight: 700; text-align: center; }
header .special-top-line p { margin: 0; }
header .part-top, header .part-bottom { background-color: whitesmoke; }
header .part-bottom { background-color: white; }
header .part-bottom > .wrap > div { padding: 1.7142857143rem 0; display: flex; align-items: center; }
header .part-bottom > .wrap > div:nth-of-type(1) { flex-grow: 1; }
header .part-bottom .logo { width: 10rem; min-width: 10rem; height: 1.7142857143rem; }
header .part-top > div > ul, header .part-bottom > div > ul { margin: 0; padding: 0; list-style: none; display: flex; align-items: stretch; }
header .part-top > div > ul > li, header .part-bottom > div > ul > li { margin: 0 3.2142857143rem 0 0; display: inline-flex; align-items: center; position: relative; }
header .part-top > div > ul > li:last-of-type, header .part-bottom > div > ul > li:last-of-type { margin-right: 0; }
header .part-bottom > .wrap:nth-of-type(2) > ul { width: 100%; border-top: 1px solid #d5d5d5; }
header .part-bottom > .wrap:nth-of-type(2) > ul > li > a { padding: 1.1428571429rem 1.4285714286rem; }
header .part-bottom .search form { padding: 0.4285714286rem 0.7857142857rem; border: 1px solid #d5d5d5; display: flex; align-items: center; }
.cont-block { margin: 1rem 0; }
.cont-block:first-child { margin-top: 0; }
.cb-product-cat-list .item-list, .cb-top-post-list .item-list, .cb-text-icon-list .item-list { margin: 1rem -1rem; display: flex; flex-wrap: wrap; }
.cb-product-cat-list .item-list > .item, .cb-top-post-list .item-list > .item, .cb-text-icon-list .item-list > .item { margin: 1rem; }
.cb-product-cat-list .item-list > .item, .cb-top-post-list .item-list > .item { width: calc(25% - 2rem); border-radius: 0.5714285714rem; overflow: hidden; }
.cb-product-cat-list .item::before, .cb-top-post-list .item::before { display: block; content: ""; padding-top: 102.1276595745%; }
.cb-text-icon-list .item-list > .item { width: calc(33.333% - 1.7142857143rem); }
.cb-text-icon-list .item .info { display: flex; }
.cb-contact-options.full-width .box { padding: 1.7142857143rem 4.5714285714rem; width: 100%; background-color: whitesmoke; }
.cb-newsletter-form { margin: 5rem 0 0; padding: 3rem 0; background-color: whitesmoke; }
.cb-newsletter-form .cols-wrap { display: flex; }
.cb-newsletter-form .cols-wrap > .left { margin: 0 9.2857142857rem 0 0; flex-grow: 1; }
.cb-newsletter-form .cols-wrap > .right { width: 48.92%; }
footer { background-color: #111111; color: white; }
footer a { color: white; }
footer .cols-wrap { display: flex; flex-wrap: wrap; justify-content: space-between; }
footer .cols-wrap > div { padding: 2.8571428571rem 0 2.2857142857rem; width: calc(25% - 1.5rem); }
footer .block-title { margin: 0 0 1.1428571429rem; font-size: 1.1428571429rem; font-weight: 700; color: white; }
footer .part-bottom .cols-wrap > div { width: calc(50% - 1.5rem); }
footer .part-bottom .cols-wrap > div:nth-of-type(2) { text-align: right; }
footer ul.socials > li, footer ul.payments > li { display: inline-block; }
{% if hide_price() %}
.price, .price-old, .price-avg {
display: none !important;
}
.sub-total-sum .value {
display: none !important;
}
.sub-total-sum .value {
display: none !important;
}
.show-subtotal-value {
display: none !important;
}
.order-item .sum .color-grey, .order-item .sum font {
display: none !important;
}
.discount-subtotal .sum .value {
display: none !important;
}
.show-shipping-value, .show-total-value, .show-tax-value {
display: none !important;
}
.main-part .full-values-grey-wrap {
display: none !important;
}
.prod-info-wrap .full-values-grey-wrap {
display: none !important;
}
.sticker.sale {
display: none !important;
}
{% endif %}
</style>
<script>
function onceLoaded(cb) {
document.addEventListener("DOMContentLoaded", event => cb(event));
}
function onceJqLoaded(cb) {
const ncb = (event) => {
if (typeof $ === 'undefined') {
setTimeout(() => ncb(event), 10);
return;
}
cb(event);
};
onceLoaded((event) => ncb(event));
}
</script>
<script>
var Tawk_API = Tawk_API || {},
Tawk_LoadStart = new Date();
</script>
<script id="mcjs">!function(c,h,i,m,p){m=c.createElement(h),p=c.getElementsByTagName(h)[0],m.async=1,m.src=i,p.parentNode.insertBefore(m,p)}(document,"script","https://chimpstatic.com/mcjs-connected/js/users/ba2daf40009c2f83e8b44a30e/4baa522871f891b58006ad787.js");</script>
<script defer crossorigin="*" charset="UTF-8" src="https://embed.tawk.to/630735a554f06e12d890a94e/1gba2j3r9"></script>
<script>
onceJqLoaded(() => {
$.get('{{ url('homepage_status', {_locale: app.request.locale, _language: app.request.locale|slice(0, 2)}) }}', data => {
if (data.status === 'OK') {
if (data.hasCartItems) {
$('header .icn-bag').addClass('active');
}
if (data.hasWishlistItems) {
$('header .icn-fav').addClass('active');
}
if (data.isLoggedIn) {
$('.user-login-btn').hide();
$('.my-account-btn').show();
} else {
$('.my-account-btn').hide();
$('.user-login-btn').show();
}
if (data.preferencesTop) {
$('.pref-container .pointer').html($(data.preferencesTop).html());
}
if (data.preferencesMobile) {
$('.mobile-pref').html($(data.preferencesMobile).html());
}
if (data.flagMobile) {
let newflag = $(data.flagMobile);
let oldflag = $('.mobile-pref-flag');
oldflag.html(newflag.html());
oldflag.prop('class', newflag.prop('class'));
}
// todo: currency, country (prefs)
}
});
$.get('{{ url('cart_summary_html', {_locale: app.request.locale, _language: app.request.locale|slice(0, 2)}) }}', data => {
$('#cart-modal').html($(data).html());
});
});
</script>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
{# <title>{% block title %}{{ sylius.channel.name }}{% endblock %}</title>#}
{%- block title -%}
{{- sylius_template_event('dedi_sylius_seo_plugin.title', { resource: resource ?? product ?? taxon ?? sylius.channel }) -}}
{%- endblock -%}
<meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1, maximum-scale=1">
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
<link rel="canonical" href="{{ canonical_url(app.request) }}">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
<link rel="manifest" href="/site.webmanifest">
<link rel="mask-icon" href="/safari-pinned-tab.svg" color="#5bbad5">
<link rel="shortcut icon" href="/favicon.ico">
<meta name="msapplication-TileColor" content="#da532c">
<meta name="msapplication-config" content="/browserconfig.xml">
<meta name="theme-color" content="#ffffff">
{% block metatags %}
{{ sylius_template_event('dedi_sylius_seo_plugin.metatags', { resource: resource ?? product ?? taxon ?? sylius.channel }) }}
{{ sylius_template_event('dedi_sylius_seo_plugin.rich_snippets') }}
{% endblock %}
{% block stylesheets %}
{{ sylius_template_event('sylius.shop.layout.stylesheets') }}
{% endblock %}
{% block linktags %}
{% set url = get_url_for_language('en') %}
{% if url ends with '.com/en' %}
{% set url = "https://" ~ sylius.channel.hostname %}
{# {% else %}#}
{# {% set url = app.request.uri %}#}
{% endif %}
<link rel="alternate" hreflang="x-default" href="{{ canonical_url_str(url) }}"/>
{% for language, url in get_urls_for_all_languages() %}
{% if url is not empty %}
<link rel="alternate" hreflang="{{ language }}" href="{{ canonical_url_str(url) }}"/>
{% endif %}
{% endfor %}
{% endblock %}
{% block schema %}
{% endblock %}
{{ sylius_template_event('sylius.shop.layout.head') }}
<meta name="google-site-verification" content="6nZZELc6OaY2J1MrilI4H9cjvVkiNr0acnphnqK0WgM" />
<meta name="facebook-domain-verification" content="7lde28yi3who6jajfks49t8n4tqezm" />
<!-- TrustBox script -->
<script type="text/javascript" src="//widget.trustpilot.com/bootstrap/v5/tp.widget.bootstrap.min.js" async></script>
<!-- End TrustBox script -->
</head>
<body class="{% block body_class %}{% endblock %}">
<div id="window">
{% block header %}
<header>
{{ sylius_template_event('sylius.shop.layout.header') }}
{% block modals %}
<div id="modal-general-inquiry" class="modal-window medium" style="display: none" data-url="{{ path('show_general_inquiry') }}">
<div class="inner ui form loading"></div>
</div>
{# {{ render(controller('App\\Controller\\InquiryController::showGeneralInquiry')) }}#}
{% endblock %}
</header>
{% endblock %}
{# {{ sylius_template_event('sylius.shop.layout.before_body') }}#}
<div id="main" class="{% block main_class %}{% endblock %}">
{# {{ sylius_template_event('sylius.shop.layout.before_top_menu') }}#}
{# {% block top %}#}
{# <div id="menu" class="ui large sticky inverted stackable menu">#}
{# {{ sylius_template_event('sylius.shop.layout.topbar') }}#}
{# </div>#}
{# {% endblock %}#}
{# <div class="ui container">#}
{% include '@SyliusShop/_flashes.html.twig' %}
{{ sylius_template_event('sylius.shop.layout.before_content') }}
{% block content %}
{% endblock %}
{{ sylius_template_event('sylius.shop.layout.after_content') }}
{# </div>#}
</div>
{% block footer %}
{{ render(controller('App\\Controller\\Homepage\\IndexController::renderFooter', {_locale: app.request.locale, _language: app.request.locale|slice(0, 2)}, {_locale: app.request.locale, _language: app.request.locale|slice(0, 2)})) }}
{# {% include '@SyliusShop/_footer.html.twig' %}#}
{% endblock %}
{% block withdrawal_modal %}
{% include '@SyliusShop/Layout/Modal/_withdrawal.html.twig' %}
{% endblock %}
{% block javascripts %}
{{ sylius_template_event('sylius.shop.layout.javascripts') }}
{% endblock %}
{{ sylius_template_event('sylius.shop.layout.after_body') }}
{# <!--Start of Tawk.to Script-->#}
<script>
{# (function() {#}
{# var s1 = document.createElement("script"),#}
{# s0 = document.getElementsByTagName("script")[0];#}
{# s1.async = true;#}
{# s1.src = 'https://embed.tawk.to/630735a554f06e12d890a94e/1gba2j3r9';#}
{# s1.charset = 'UTF-8';#}
{# s1.setAttribute('crossorigin', '*');#}
{# s0.parentNode.insertBefore(s1, s0);#}
{# })();#}
{% if app.session.get('dataLayerActions') is not empty %}
{% for action in app.session.remove('dataLayerActions') %}
dataLayer.push({{ action|raw }})
{% endfor %}
{% endif %}
</script>
{# <!--End of Tawk.to Script-->#}
<script defer src=https://app.termshub.io/2994413a-3fdd-4930-83ba-cdbdac4b2d01/termshub-cookie-consent.js site="UAB_4LZ"></script>
</div>
</body>
</html>