{% set headerTitle = 'FIRE Comedy Club' %}
{% if order is defined %}
{% set firstItem = order.items|first %}
{% if firstItem is not null %}
{% set variant = firstItem.variant ?? null %}
{% if variant is not null and variant.product is not null %}
{% set headerTitle = variant.product.name|default(headerTitle) %}
{% elseif firstItem.productName is defined and firstItem.productName is not empty %}
{% set headerTitle = firstItem.productName %}
{% endif %}
{% endif %}
{% endif %}