{% if product.gallery_images and product.gallery_images|length > 0 %}
{% if product.featured_image %}
{% endif %}
{% for img in product.gallery_images %}
{% endfor %}
{% endif %}
{% if product.video_url %}
🎬 Prezentare Video
{% if 'youtube.com' in product.video_url or 'youtu.be' in product.video_url %}
{% set yt_id = product.video_url.split('v=')[-1].split('&')[0].split('/')[-1] %}
{% else %}
{% endif %}
{% endif %}
{% if product.product_type == 'digital' %}
{{ t_shop('digital_badge', '⚡ Produs Digital') }}
{% else %}
{{ t_shop('physical_badge', '📦 Produs Fizic') }}
{% endif %}
{% if product.category_name %}
{{ product.category_name }}
{% endif %}
{% if post_header_meta_html %}
{{ post_header_meta_html|safe }}
{% endif %}
{{ product.title }}
{% set avg_int = rating_summary.average_rating|round|int %}
{% for i in range(1, 6) %}
{% if i <= avg_int %}★{% else %}☆{% endif %}
{% endfor %}