<h3><i class="fas fa-sliders-h"></i>{{ 'detail.productEquipmentHeading'|trans }}</h3>
{{ product.customFields.custom_product_bulletpoints|raw }}
<br/>
<table class="bullet-points">
<tbody>
<tr>
<td>{{ 'detail.productNumber'|trans }}</td>
<td>{{ product.productNumber }}</td>
</tr>
<tr>
<td>{{ 'general.deliveryShippingTimeLabel'|trans }}</td>
<td>{{ 'general.deliveryShippingTime'|trans }}</td>
</tr>
{% set equipment = product.properties.filterByGroupId(theme_config('sw-equipment-property')).first %}
{% if equipment %}
<tr>
<td>{{ 'detail.equipment'|trans }}</td>
<td>{{ equipment.name }}</td>
</tr>
{% endif %}
</tbody>
</table>
<br/>
{% set condition = product.properties.filterByGroupId(theme_config('sw-condition-property')).first %}
<table class="bullet-points">
<tbody>
{% if condition.name %}
<tr>
<td>{{ 'detail.condition'|trans }}</td>
<td title="{{ condition.name }}">
{% sw_include '@Storefront/storefront/component/condition.html.twig' %}
</td>
</tr>
{% endif %}
</tbody>
</table>
<div class="mt-2">
{% set klarnaPrice = page.product.calculatedPrice.unitPrice * 100 %}
{% if page.product.calculatedPrices|length == 1 %}
{% set klarnaPrice = page.product.calculatedPrices.first.unitPrice * 100%}
{% endif %}
<klarna-placement data-key="credit-promotion-badge" data-locale="de-DE" data-purchase-amount="{{ klarnaPrice }}"></klarna-placement>
</div>
{% set co2 = page.extensions.savings.get('co2') %}
{% set water = page.extensions.savings.get('water') %}
{% if co2 > 0 and water > 0 %}
<div class="product-detail-environment-savings">
<img src="{{ asset('bundles/esmcomputer/assets/images/esm-ressourcen-sparen.png')|sw_encode_url }}" width="80" alt="Recycling"/>
<p>
<span>{{ "detail.saving_text"|trans({'{{water}}': water, '{{co2}}': co2})|raw }}</span>
<i class="fas fa-info-circle" title="{{ "detail.saving_tooltip"|trans|raw }}"></i>
</p>
</div>
{% endif %}