/** Shopify CDN: Minification failed

Line 16:0 Unexpected "<"
Line 22:2 Expected identifier but found "%"
Line 24:1 Unexpected "<"
Line 33:3 Expected identifier but found "%"
Line 34:3 Unexpected "<"
Line 39:3 Expected identifier but found "%"
Line 41:2 Unexpected "<"
Line 42:4 Unexpected "{"
Line 42:16 Expected ":"
Line 43:3 Unexpected "{"
... and 96 more hidden warnings

**/
<!doctype html>
<html
	class="no-js"
	lang="{{ request.locale.iso_code }}"
	dir="ltr"
>
	{% render 'video-intro' %}

	<head>
		<meta charset="utf-8">
		<meta name="viewport" content="width=device-width, initial-scale=1">
		<meta name="theme-color" content="{{ settings.header_background }}">
		<meta
			name="facebook-domain-verification"
			content="dc61h9zrn800wooh0nngpa1p7clwd1"
		>

		{%- unless settings.type_header_font.system? and settings.type_body_font.system? -%}
			<link
				rel="preconnect"
				href="/cdn/fonts"
				crossorigin
			>
		{%- endunless -%}

		<title>
			{{ page_title }}
			{%- if current_tags %}
				&ndash; tagged "{{ current_tags | join: ', ' }}"
			{%- endif -%}
			{%- if current_page != 1 %}
				&ndash; Page {{ current_page -}}
			{%- endif -%}
			{%- unless page_title contains shop.name %}
				&ndash; {{ shop.name -}}
			{%- endunless -%}
		</title>

		<link rel="canonical" href="{{ canonical_url }}">

		{%- if settings.favicon -%}
			<link
				rel="shortcut icon"
				href="{{ settings.favicon | image_url: width: 96 }}"
			>
			<link
				rel="apple-touch-icon"
				href="{{ settings.favicon | image_url: width: 180 }}"
			>
		{%- endif -%}

		{%- unless settings.heading_font.system? -%}
			<link
				rel="preload"
				href="{{ settings.heading_font | font_url }}"
				as="font"
				type="font/woff2"
				crossorigin
			>
		{%- endunless -%}

		{%- unless settings.text_font.system? -%}
			<link
				rel="preload"
				href="{{ settings.text_font | font_url }}"
				as="font"
				type="font/woff2"
				crossorigin
			>
		{%- endunless -%}

		{%- render 'meta-tags' -%}
		{%- render 'css-variables' -%}
		{%- render 'js-variables' -%}
		{% render 'fonts' %}

		<script
			type="module"
			src="{{ 'theme.js' | asset_url }}"
		></script>

		<script
			type="module"
			src="{{ 'sections.js' | asset_url }}"
		></script>

		{% if settings.disable_cart %}
			<script>
				// Redirect users from the cart page when cart functionality is disabled.
				if (window.location.pathname.indexOf('/cart') === 0) {
					window.location.href = '/'
				}
			</script>
		{% endif %}

		{{ content_for_header }}

		{{- 'theme.css' | asset_url | stylesheet_tag: preload: true -}}
		{{- 'lt-4-0-brand-identity.css' | asset_url | stylesheet_tag -}}
		{{- 'lt-4-0-components.css' | asset_url | stylesheet_tag -}}

		{% if template == 'product' %}
			{{- 'product.css' | asset_url | stylesheet_tag: preload: true -}}
		{% endif %}
	</head>

	<body>
		{%- render 'shadow-dom-templates' -%}

		<a
			href="#main"
			class="skip-to-content sr-only"
		>
			{{ 'general.accessibility.skip_to_content' | t }}
		</a>

		{%- if request.page_type != 'password' -%}
			{%- sections 'header-group' -%}
			{%- sections 'overlay-group' -%}

			{%- if settings.cart_type == 'popover' -%}
				<cart-notification-drawer
					open-from="bottom"
					class="quick-buy-drawer drawer"
				></cart-notification-drawer>
			{%- endif -%}
		{%- endif -%}

		{%- if request.page_type == 'customers/account'
			or request.page_type == 'customers/order'
			or request.page_type == 'customers/addresses'
		-%}
			{%- section 'account-banner' -%}
		{%- endif -%}

		<main
			role="main"
			id="main"
		>
			{{ content_for_layout }}

			{%- if request.page_type != 'password' -%}
				{%- sections 'footer-group' -%}
			{%- endif -%}
		</main>
	</body>
</html>