{% trans_default_domain 'store' %}
<!-- START OF FOOTER -->
<footer class="footer">
<div class="container">
<!-- START SECTION VISIBLE FROM TABLET TO FULL HD -->
<div class="columns is-multiline is-hidden-mobile is-centered">
<div class="column column-first is-one-fifth-desktop is-two-fifths-tablet">
<div class="title is-5 is-bold">{{ 'contact_with_us'|trans }}</div>
<div class="level" style="margin-top:-10px;">
<div class="level-left">
<div class="level-item">
<p class="is-size-7">
{% if helplineHours[0] is defined and helplineHours[0] %}
<strong>{{ helplineHours[0].shortName|capitalize }};</strong>
{% endif %}
{% if helplineHours[4] is defined and helplineHours[4] %}
<strong>{{ helplineHours[4].shortName|capitalize }}</strong>
{% endif %}
<br/>
{% if helplineHours[0] is defined and helplineHours[0] %}
{{ helplineHours[0].name }}
{% endif %}
</p>
</div>
</div>
<div class="level-right">
<div class="level-item">
<p class="is-size-7">
{% if helplineHours[1] is defined and helplineHours[1] %}
<strong>{{ helplineHours[1].shortName|capitalize }};</strong>
{% endif %}
{% if helplineHours[2] is defined and helplineHours[2] %}
<strong>{{ helplineHours[2].shortName|capitalize }};</strong>
{% endif %}
{% if helplineHours[3] is defined and helplineHours[3] %}
<strong>{{ helplineHours[3].shortName|capitalize }};</strong>
{% endif %}
<br>
{% if helplineHours[2] is defined and helplineHours[2] %}
{{ helplineHours[2].name }}
{% endif %}
</p>
</div>
</div>
</div>
{% if language.helpline %}
<span class="is-size-7"><i class="fas fa-phone"></i> {{ language.helpline }}</span>
{% endif %}
{% if language.phone %}
<br>
<span class="is-size-7"><i class="fas fa-phone"></i> {{ language.phone }}</span>
{% endif %}
<br>
<span class="is-size-7"> @ <a class="has-text-danger" style="text-decoration: underline" href="mailto:{{ language.email }}">{{ 'send_email'|trans }}</a></span>
<br>
<br>
{% if app.request.locale != 'pl' %}
<div class="title is-5 is-bold">{{ 'our_address'|trans }}</div>
<div class="media">
<div class="media-left">
{% set url = 'https://www.google.com/maps/place/Dru%C5%BEstevn%C3%AD+294,+Star%C3%A9+M%C4%9Bsto,+739+61+T%C5%99inec/@49.6845901,18.6674223,17z/data=!3m1!4b1!4m5!3m4!1s0x4714053e0290ffc1:0x40e8e6967e9970e6!8m2!3d49.6845866!4d18.669611?hl=cs' %}
{% if app.request.locale == 'pl' %}
{% set url = 'https://www.google.com/maps/place/CentrumKrzesel.pl/@52.305145,21.05143,15z/data=!4m2!3m1!1s0x0:0x61ca6fce95035d9e?sa=X&ved=2ahUKEwj4r6iKydnhAhVjkIsKHWU2AKoQ_BIwGXoECAYQCA' %}
{% endif %}
<span><a target="_blank" href="{{ url }}"><i class="fas fa-map-marker-alt has-text-danger"></i></a></span>
</div>
<div class="media-content" style="margin-top:-2px;">
<span class="is-size-7" style="font-weight: 500">{{ language.shopName }}</span>
<div class="is-size-7" style="margin-top:-15px;">
{{ language.address|raw }}
</div>
</div>
</div>
{% endif %}
</div>
<div class="column column-first is-two-fifths-desktop is-three-fifths-tablet">
<div class="title is-5 is-bold" style="margin-bottom: 20px;">
<a href="{{ path('news_store') }}" class="" style="margin-left:0px!important;">
{{ 'news'|trans }} <i class="fa fa-link"></i>
</a>
</div>
{% for row in news|slice(0,4) %}
<!-- START OF MEDIA OBJECT -->
<article class="media">
<div class="media-left">
<i class="far fa-file has-text-danger"></i>
</div>
<div class="media-content">
<div class="content" style="margin-top:-4px;">
<a href="{{ path('single_news', {'id':row.id, 'slug':row.slug}) }}">
<span class="is-size-7" style="font-weight: 800">{{ row.title }}</span>
</a>
<br>
<small class="is-size-7" style="font-weight:100;">{{ row.createdAt|date('Y-m-d') }}</small>
<br>
<p class="is-size-7">{{ row.content|striptags|slice(0,90) }}...</p>
</div>
</div>
</article>
<!-- END OF MEDIA OBJECT -->
{% endfor %}
</div>
<div class="column is-two-fifths-desktop is-three-fifths-tablet spacer-footer spacer-footer-disable-desktop">
<div class="title is-5 is-bold">{{ 'on_the_blog'|trans }}</div>
<div class="columns is-multiline">
{% for entry in blogs|slice(0,3) %}
<div class="column is-one-third">
<div class="content">
<article class="media">
<div class="media-left"><i class="far fa-file has-text-danger"></i></div>
<div class="media-content">
<div class="content" style="margin-top:-3px;">
<a href="{{ path('blog_entry', {'id':entry.id, 'slug':entry.slug}) }}">
<span class="is-size-7" style="font-weight: 800">{{ entry.title }}</span></a> <br>
<small class="is-size-7" style="font-weight: 100">{{ entry.createdAt|date('Y-m-d') }}</small>
<br>
<p class="is-size-7">{{ entry.content|striptags|slice(0,100)|raw }}...</p></div>
</div>
</article>
</div>
</div>
{% endfor %}
</div>
{% if getCurrentUrl() == '/' %}
<div id="js_cat-desc-content" class="hide-tablet">
<div class="cat-desc-excerpt ellipsis">
<div class="title is-5 is-bold">{{ 'about_us'|trans }}</div>
<p class="is-size-7">
{{ 'footer_seo_text_1'|trans|raw }}
</p>
</div>
<a class="dotted-link read-more" style="margin-top:-10px; float:left; font-size:13px; text-decoration: underline; font-weight:500" data-target="js_cat-desc-content" role="button">{{ 'read_more'|trans }}...</a>
</div>
{% endif %}
</div>
<div class="column is-one-fifth spacer-footer">
<div class="title is-5 is-bold">{{ 'footer_links'|trans }}</div>
<div class="columns is-multiline">
<div class="column">
<div class="content">
<ul class="is-size-7 footer-list footer-list-mobile">
{% for article in articles %}
{% if article.footer %}
<li>
<a href="{{ path('single_article', {'id':article.id, 'slug':article.slug}) }}">
{{ article.title }}
</a>
</li>
{% endif %}
{% endfor %}
<li>
<a href="{{ path('product_return_generator') }}">{{ 'product_return_form'|trans }}</a>
</li>
<li>
<a href="{{ path('product_complaint_generator') }}">{{ 'product_complaint_form'|trans }}</a>
</li>
<li>
<a href="{{ path('blog') }}">{{ 'blog'|trans }}</a>
</li>
<li>
<a href="{{ path('contact') }}">{{ 'contact'|trans }}</a>
</li>
{% if app.user is defined and app.user and app.user.id %}
<li>
<a href="{{ path('fos_user_security_logout') }}">
{{ 'logout'|trans }}
</a>
</li>
{% else %}
<li>
<a href="{{ path('fos_user_security_login_extension') }}">
{{ 'login'|trans }}
</a>
</li>
{% endif %}
</ul>
{% if app.request.locale == 'ro' %}
<img src="/images/ro/visa_master_new.png" style="width:160px; margin-left:20px;">
{% endif %}
</div>
</div>
</div>
</div>
<div class="column is-three-fifths is-hidden-touch spacer-footer column-first">
<div class="title is-5 is-bold">{{ 'shortcut'|trans }}</div>
<div class="columns is-multiline">
<div class="column is-one-third">
<div class="content">
<ul class="is-size-7 footer-list">
{% for category in shortcutCategories|slice(0,6) %}
<li>
<a href="{{ path('category', {'id':category.id, 'slug':category.slug}) }}">
{{ category.name }}
</a>
</li>
{% endfor %}
</ul>
</div>
</div>
<div class="column is-one-third">
<div class="content">
<ul class="is-size-7 footer-list">
{% for category in shortcutCategories|slice(6,7) %}
<li>
<a href="{{ path('category', {'id':category.id, 'slug':category.slug}) }}">
{{ category.name }}
</a>
</li>
{% endfor %}
</ul>
</div>
</div>
<div class="column is-one-third">
<div class="content">
<ul class="is-size-7 footer-list">
{% for category in shortcutCategories|slice(13,6) %}
<li>
<a href="{{ path('category', {'id':category.id, 'slug':category.slug}) }}">
{{ category.name }}
</a>
</li>
{% endfor %}
</ul>
</div>
</div>
</div>
</div>
{% if language.facebook or language.youtube %}
<div class="column is-one-fifth spacer-footer">
<div class="title is-5 is-bold">Social media</div>
<div class="level is-mobile has-text-grey-light">
{% if language.youtube %}
<div class="level-left">
<div class="level-item">
<a target="_blank" href="{{ language.youtube }}">
<span class="icon"><i class="fab fa-youtube"></i></span>
</a>
</div>
</div>
{% endif %}
{% if language.facebook %}
<div class="level-item" style="margin-left:30px;">
<div class="level-item">
<a target="_blank" href="{{ language.facebook }}">
<span class="icon"><i class="fab fa-facebook-f"></i></span>
</a>
</div>
</div>
{% endif %}
{% if language.instagram %}
<div class="level-item">
<div class="level-item">
<a target="_blank" href="{{ language.instagram }}">
<span class="icon"><i class="fab fa-instagram"></i></span>
</a>
</div>
</div>
{% endif %}
</div>
<div style="clear:both;">
<div style="margin-top:30px;">
<div style="font-weight: 500; font-size:13px;">
{% if app.request.locale == 'cz' or app.request.locale == 'sk' or app.request.locale == 'ro' %}
<a target="_blank" href="https://www.centrumkrzesel.pl/">
<img src="/graph/pl.png" style="width:22px;"> CentrumKrzesel.pl
</a>
{% endif %}
{% if app.request.locale == 'ro' or app.request.locale == 'sk' or app.request.locale == 'pl' %}
<br/>
<a target="_blank" href="https://www.ezidle.cz/">
<img src="/graph/cz.png" style="width:22px;"> eZidle.cz
</a>
{% endif %}
{% if app.request.locale == 'ro' or app.request.locale == 'cz' or app.request.locale == 'pl' %}
<br/>
<a target="_blank" href="https://www.stolicky24.sk/">
<img src="/graph/sk.png" style="width:22px;"> stolicky24.sk
</a>
{% endif %}
{% if app.request.locale == 'cz' or app.request.locale == 'sk' or app.request.locale == 'pl' %}
<br/>
<a target="_blank" href="https://www.mobila24.ro">
<img src="/graph/ro.png" style="width:22px;"> mobila24.ro
</a>
{% endif %}
{% if app.request.locale == 'ro' %}
<br/>
<br/>
<a target="_blank" href="https://ec.europa.eu/consumers/odr/main/index.cfm?event=main.home2.show&lng=RO">
<img src="/web/uploads/SOL.png" style="max-width: 105px;"/>
</a>
<a target="_blank" href="https://anpc.ro/ce-este-sal/">
<img src="/web/uploads/SAL.png" style="max-width:105px;"/>
</a>
{% endif %}
</div>
</div>
</div>
</div>
{% else %}
<div class="column is-one-fifth spacer-footer">
<div style="margin-top:50px;">
{% if app.request.locale == 'sk' %}
<a target="_blank" href="https://www.centrumkrzesel.pl/">
<img src="/graph/pl.png" style="width:22px;"> CentrumKrzesel.pl
</a>
<br/>
<a target="_blank" href="https://www.ezidle.cz/">
<img src="/graph/cz.png" style="width:22px;"> eZidle.cz
</a>
<br/>
<a target="_blank" href="https://www.mobila24.ro">
<img src="/graph/ro.png" style="width:22px;"> mobila24.ro
</a>
{% endif %}
{% if app.request.locale == 'cz' %}
<a target="_blank" href="https://www.centrumkrzesel.pl/">
<img src="/graph/pl.png" style="width:22px;"> CentrumKrzesel.pl
</a>
<br/>
<a target="_blank" href="https://www.stolicky24.sk/">
<img src="/graph/sk.png" style="width:22px;"> stolicky24.sk
</a>
<br/>
<a target="_blank" href="https://www.mobila24.ro">
<img src="/graph/ro.png" style="width:22px;"> mobila24.ro
</a>
{% endif %}
{% if app.request.locale == 'ro' %}
<a target="_blank" href="https://www.centrumkrzesel.pl/">
<img src="/graph/pl.png" style="width:22px;"> CentrumKrzesel.pl
</a>
<br/>
<a target="_blank" href="https://www.stolicky24.sk/">
<img src="/graph/sk.png" style="width:22px;"> stolicky24.sk
</a>
<br/>
<a target="_blank" href="https://www.ezidle.cz/">
<img src="/graph/cz.png" style="width:22px;"> eZidle.cz
</a>
<br/>
<br/>
<a target="_blank" href="https://ec.europa.eu/consumers/odr/main/index.cfm?event=main.home2.show&lng=RO">
<img src="/web/uploads/SOL.png" style="max-width: 105px;"/>
</a>
<a target="_blank" href="https://anpc.ro/ce-este-sal/">
<img src="/web/uploads/SAL.png" style="max-width:105px;"/>
</a>
{% endif %}
</div>
</div>
{% endif %}
{#
<div class="column has-text-centered full-height-content">
<img src="/v2/ico/footer_logo.png" class="has-text-centered" alt="logos"/>
</div>
#}
</div>
<!-- END SECTION VISIBLE FROM TABLET TO FULL HD -->
<!-- START SECTION VISIBLE FOR MOBILE ONLY -->
<div class="container is-hidden-tablet">
{% for article in articles %}
{% if article.footer %}
<div class="title has-text-centered">
<a href="{{ path('single_article', {'id':article.id, 'slug':article.slug}) }}">
{{ article.title }}
</a>
</div>
{% endif %}
{% endfor %}
<div class="title has-text-centered">
<a href="{{ path('blog') }}">
{{ 'blog'|trans }}
</a>
</div>
<div class="title has-text-centered">
<a href="{{ path('contact') }}">
{{ 'contact'|trans }}
</a>
</div>
{% if app.user is defined and app.user and app.user.id %}
<div class="title has-text-centered">
<a href="{{ path('fos_user_security_logout') }}">
{{ 'logout'|trans }}
</a>
</div>
{% else %}
<div class="title has-text-centered">
<a href="{{ path('fos_user_security_login_extension') }}">
{{ 'login'|trans }}
</a>
</div>
{% endif %}
<div class="column">
<div class="level is-mobile has-text-grey-light">
{% if language.youtube %}
<div class="level-item">
<a target="_blank" href="{{ language.youtube }}">
<span class="icon"><i class="fab fa-youtube"></i></span>
</a>
</div>
{% endif %}
{% if language.facebook %}
<div class="level-item">
<a target="_blank" href="{{ language.facebook }}">
<span class="icon"><i class="fab fa-facebook-f"></i></span>
</a>
</div>
{% endif %}
{% if language.instagram %}
<div class="level-item">
<a target="_blank" href="{{ language.instagram }}">
<span class="icon"><i class="fab fa-instagram"></i></span>
</a>
</div>
{% endif %}
</div>
</div>
{% if app.request.locale == 'ro' %}
<br/>
<br/>
<div style="text-align: center">
<a target="_blank" href="https://ec.europa.eu/consumers/odr/main/index.cfm?event=main.home2.show&lng=RO">
<img src="/web/uploads/SOL.png" style="max-width: 105px;"/>
</a>
<a target="_blank" href="https://anpc.ro/ce-este-sal/">
<img src="/web/uploads/SAL.png" style="max-width:105px;"/>
</a>
</div>
{% endif %}
</div>
<!-- END SECTION VISIBLE FOR MOBILE ONLY -->
</div>
</footer>
<!-- END OF FOOTER -->
<!-- START OF BOTTOM HERO-->
<section class="hero">
<div class="hero-body">
<div class="container">
<div class="level">
<div class="level-left">
{#
<div class="level-item is-hidden-tablet">
<figure class="image is-48x48">
<img src="https://bulma.io/images/placeholders/48x48.png" alt="">
</figure>
</div>
#}
<div class="level-item is-size-7" style="color:#6f6f6f!important;">
{{ 'all_rights_reserved'|trans|raw }}
</div>
</div>
{% if app.request.locale == 'pl' %}
<div class="level-right has-text-centered">
<img alt="CentrumKrzesel.pl logo" src="/v2/ico/ck_logo_footer.svg"/>
</div>
{% endif %}
</div>
{% if language.helpline %}
<div class="has-text-centered is-hidden-tablet" style="margin-top:30px;">
<span style="font-weight: 100"> {{ 'call_us'|trans }}</span>
{% if app.request.locale == 'ro' %}
<a href="https://wa.me/40745599121">
<img src="/images/ico/whatsapp_black.svg" class="phone-ico" style="max-height: 30px!important; width:14px; height:14px;"/>
</a>
<span style="font-weight: 500"><i class="fas fa-phone"></i> <a href="https://wa.me/40745599121">{{ language.helpline }}</a></span>
{% else %}
<span style="font-weight: 500"><i class="fas fa-phone"></i> {{ language.helpline }}</span>
{% endif %}
</div>
{% endif %}
</div>
</div>
</section>
<!-- END OF BOTTOM HERO -->