@php
$bgColor = theme_option('header_top_background_color', '#0e104b');
$textColor = theme_option('header_top_text_color', '#ffffff');
$customContainer ??= true;
$ecommerceActive = is_plugin_active('ecommerce');
@endphp
$ecommerceActive, $wrapperClass ?? null])
@style([
"--header-top-background-color: $bgColor" => $bgColor,
"--header-top-text-color: $textColor" => $textColor,
])
>
$customContainer])>
{!! dynamic_sidebar('header_top_start_sidebar') !!}
@if($ecommerceActive)
{!! Theme::partial('header.action-buttons.ecommerce-action-buttons') !!}
@else
{!! dynamic_sidebar('header_top_end_sidebar') !!}
@endif