{% sw_extends '@CrehlerMojeBambinoEngine/storefront/component/product/card/action.html.twig' %}
{% block component_product_box_action_inner %}
{% set id = product.id %}
{% set isArrangementOrInspiration = (product.extensions.arrangement is not null) or (product.extensions.inspiration is not null) %}
{% if config("core.listing.allowBuyInListing") %}
<div class="product-action-container">
<div class="product-action {% if isArrangementOrInspiration %}is-arrangement-inspiration{% endif %}">
{% set isVariant = product.parentId is not null %}
{% set isParent = product.childCount > 0 %}
{% set isAvailable = not product.isCloseout or (product.availableStock >= product.minPurchase) %}
{% block component_product_box_action_buy %}
{% if isArrangementOrInspiration %}
{# TODO#}
{# <a href="{{ seoUrl('frontend.detail.page', {'productId': id}) }}"#}
{# title="{{ "bambino.productBox.showProductDetails"|trans|raw }}"#}
{# class="btn btn-light btn-quickview">#}
{# {% sw_icon 'eye-open' %}#}
{# <span class="label">{{ "bambino.productBox.showProductDetails"|trans|raw }}</span>#}
{# </a>#}
{% else %}
{{ parent() }}
{% endif %}
{% endblock %}
</div>
</div>
{% endif %}
{% endblock %}