{% sw_extends '@Storefront/storefront/page/content/detail.html.twig' %}
{# Added category background image #}
{% block page_content_section %}
{% if section.name == "category-landing-page-header" or section.name == "category-page-header" %}
{% set category = page.header.navigation.active %}
{% if category.media %}
{% set categoryBg = "background-image: url('" ~ category.media.url ~ "'), linear-gradient(180deg, #FFFFFF 0%, #F1F1F1 100%); background-repeat: no-repeat; background-position-y: 45px; background-position-x: 80%" %}
{% else %}
{% set categoryBg = "background-image: linear-gradient(180deg, #FFFFFF 0%, #F1F1F1 100%); background-repeat: repeat-x; background-position-y: 45px;" %}
{% endif %}
<div class="cms-section {{ sectionClasses|join(' ') }}"
style="{% if sectionBgColor %}background-color: {{ sectionBgColor }};{% endif %}{% if categoryBg %}{{ categoryBg }}{% endif %}">
{% sw_include "@Storefront/storefront/section/cms-section-" ~ section.type ~ ".html.twig" %}
</div>
{% else %}
<div class="cms-section {{ sectionClasses|join(' ') }}"
style="{% if sectionBgColor %}background-color: {{ sectionBgColor }};{% endif %}{% if sectionBgImg %}background-image: url({{ sectionBgImg }});background-size: {{ section.backgroundMediaMode }};{% endif %}">
{% sw_include "@Storefront/storefront/section/cms-section-" ~ section.type ~ ".html.twig" %}
</div>
{% endif %}
{% endblock %}