{# Product Tabs Components ======================= Tabbed content sections for product detail pages. Usage: {% from 'shared/macros/storefront/product-tabs.html' import product_tabs, tab_description, tab_specifications, tab_reviews %} #} {# Product Tabs ============ Tabbed container for product information sections. Parameters: - product_var: Alpine.js expression for product (default: 'product') - tabs: List of tab IDs to show (default: ['description', 'specifications', 'reviews']) - default_tab: Initially active tab (default: 'description') - tab_var: Alpine.js variable for active tab (default: 'activeProductTab') Usage: {{ product_tabs(tabs=['description', 'specifications', 'reviews', 'shipping']) }} #} {% macro product_tabs( product_var='product', tabs=['description', 'specifications', 'reviews'], default_tab='description', tab_var='activeProductTab' ) %} {% set tab_config = { 'description': {'label': 'Description', 'icon': 'document-text'}, 'specifications': {'label': 'Specifications', 'icon': 'clipboard-list'}, 'reviews': {'label': 'Reviews', 'icon': 'star'}, 'shipping': {'label': 'Shipping & Returns', 'icon': 'truck'}, 'warranty': {'label': 'Warranty', 'icon': 'shield-check'} } %}
{# Tab Navigation #}
{# Tab Panels #}
{% if 'description' in tabs %} {{ tab_description(product_var, tab_var) }} {% endif %} {% if 'specifications' in tabs %} {{ tab_specifications(product_var, tab_var) }} {% endif %} {% if 'reviews' in tabs %} {{ tab_reviews(product_var, tab_var) }} {% endif %} {% if 'shipping' in tabs %} {{ tab_shipping(tab_var) }} {% endif %} {% if 'warranty' in tabs %} {{ tab_warranty(product_var, tab_var) }} {% endif %}
{% endmacro %} {# Tab: Description ================ Product description content panel. #} {% macro tab_description(product_var='product', tab_var='activeProductTab') %}
>
{# Features List (if available) #}
{% endmacro %} {# Tab: Specifications =================== Product specifications table panel. #} {% macro tab_specifications(product_var='product', tab_var='activeProductTab') %}
{% endmacro %} {# Tab: Reviews ============ Product reviews list and summary panel. #} {% macro tab_reviews(product_var='product', tab_var='activeProductTab') %}
{# Reviews Summary #}
{# Overall Rating #}
reviews
{# Rating Distribution #}
{# Reviews List #} {# No Reviews #}
{% endmacro %} {# Review Card =========== Individual review display. #} {% macro review_card() %}
{# Header #}
{# Avatar #}
{# Rating #}
{# Title #} {# Content #}

{# Review Images #} {# Helpful Actions #}
{% endmacro %} {# Tab: Shipping & Returns ======================= Shipping and returns policy panel. #} {% macro tab_shipping(tab_var='activeProductTab') %}
{# Shipping Info #}

Shipping Information

  • Free standard shipping on orders over $50
  • Standard shipping (3-5 business days): $4.99
  • Express shipping (1-2 business days): $9.99
  • Same-day delivery available in select areas
{# Returns Info #}

Returns & Exchanges

  • 30-day return policy for unused items
  • Free returns on all orders
  • Items must be in original packaging
  • Refunds processed within 5-7 business days
{% endmacro %} {# Tab: Warranty ============= Product warranty information panel. #} {% macro tab_warranty(product_var='product', tab_var='activeProductTab') %}

Warranty Information

{% endmacro %}