{% sw_extends '@SwpProductOptionsSix/storefront/page/product-detail/index.html.twig' %}
{% block page_product_detail_cross_selling %}
{% endblock %}
{% block page_product_detail_tabs %}
{% endblock %}
{% block page_product_detail_media %}
<div class="col-lg-6 product-detail-media">
{% if page.product.media %}
{% sw_include '@Storefront/storefront/element/cms-element-image-gallery.html.twig' with {
'mediaItems': mediaItems,
'zoom': true,
'zoomModal': true,
'displayMode': 'contain',
'gutter': 5,
'minHeight': '430px',
'navigationArrows': 'inside',
'navigationDots': 'inside',
'galleryPosition': 'left',
'isProduct': true,
'fallbackImageTitle': page.product.translated.name,
'startIndexThumbnails': 1,
'startIndexSlider': 1,
'keepAspectRatioOnZoom': false
} %}
{% if config('core.cart.wishlistEnabled') %}
{% block page_product_detail_wishlist %}
{% sw_include '@Storefront/storefront/component/product/card/wishlist.html.twig' with {
showText: true,
size: '46px',
productId: page.product.id
} %}
{% endblock %}
{% endif %}
{% endif %}
</div>
{% endblock %}
{% block page_product_detail_buy %}
<div class="col-lg-6 product-detail-buy">
{% sw_include '@Storefront/storefront/page/product-detail/buy-widget.html.twig' %}
</div>
{% endblock %}
{% block page_product_detail_inner %}
{{ parent() }}
{{ block('page_product_detail_cross_selling', '@Storefront/storefront/page/product-detail/index.html.twig') }}
{{ block('page_product_detail_tabs', '@Storefront/storefront/page/product-detail/index.html.twig') }}
{% endblock %}