<?php
/**
 * Main cart template
 */


$widget_settings = [
	'triggerType'  => ( 'yes' === $settings['show_cart_list'] ) ? $settings['trigger_type'] : 'none',
];

$classes = [
    'lakit-cart',
    'lakit-cart--' . $settings['layout_type'] . '-layout',
];

$class_string = implode( ' ', $classes );

?><div class="<?php echo esc_attr($class_string); ?>" data-settings="<?php echo esc_attr( wp_json_encode( $widget_settings ) ); ?>">
	<div class="lakit-cart__heading"><?php
		include $this->_get_global_template( 'cart-link' );
	?></div>

	<?php if ( 'yes' === $settings['show_cart_list'] ) {
		include $this->_get_global_template( 'cart-list' );
	} ?>
    <div class="lakit-cart__overlay"></div>
</div>