{% include 'booking/_pagination.html.twig' with { 'current_step': 2 } %}
{# Summary - hidden on mobile, visible on desktop #}
{% include 'booking/_summary.html.twig' with {
'bookingDto': bookingCreateContext.bookingDto,
'summaryData': bookingCreateContext.summaryData
} %}
{# Form area - full width mobile, 3 cols desktop #}
{# Pagination - desktop only (fixed above scrollable content) #}
{% include 'booking/_pagination.html.twig' with { 'current_step': 2 } %}
{# Flash messages - must be inside main-content for HTMX swap to display them #}
{% include '_partials/_flashes.html.twig' %}
{% include 'booking/_participant_form.html.twig' with {
'bookingCreateContext': bookingCreateContext,
'bookingDto': bookingCreateContext.bookingDto,
'summaryData': bookingCreateContext.summaryData
} %}