:root {
	--al-bg: #f6fbff;
	--al-ink: #06172f;
	--al-muted: #617089;
	--al-blue: #5bb6e8;
	--al-blue-dark: #0877b9;
	--al-gold: #f5c451;
	--al-card: #ffffff;
	--al-border: rgba( 6, 23, 47, 0.1 );
	--al-shadow: 0 24px 80px rgba( 8, 119, 185, 0.16 );
	--al-radius: 28px;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var( --al-bg );
	color: var( --al-ink );
	font-family: Manrope, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	line-height: 1.6;
}

body::before {
	background:
		radial-gradient( circle at top left, rgba( 91, 182, 232, 0.32 ), transparent 32rem ),
		radial-gradient( circle at top right, rgba( 245, 196, 81, 0.24 ), transparent 28rem );
	content: "";
	inset: 0;
	pointer-events: none;
	position: fixed;
	z-index: -1;
}

a {
	color: inherit;
	text-decoration: none;
}

img {
	display: block;
	height: auto;
	max-width: 100%;
}

.al-container {
	margin: 0 auto;
	max-width: 1120px;
	padding: 0 24px;
	width: 100%;
}

.al-header {
	backdrop-filter: blur( 18px );
	background: rgba( 246, 251, 255, 0.78 );
	border-bottom: 1px solid rgba( 255, 255, 255, 0.7 );
	position: sticky;
	top: 0;
	z-index: 20;
}

.al-header__inner {
	align-items: center;
	display: flex;
	gap: 24px;
	justify-content: space-between;
	min-height: 76px;
}

.al-logo {
	align-items: center;
	display: inline-flex;
	font-weight: 800;
	gap: 10px;
	letter-spacing: -0.04em;
}

.al-logo__mark {
	align-items: center;
	background: linear-gradient( 135deg, var( --al-blue ), var( --al-blue-dark ) );
	border-radius: 15px;
	color: #fff;
	display: inline-flex;
	height: 38px;
	justify-content: center;
	width: 38px;
}

.al-nav {
	align-items: center;
	display: flex;
	gap: 22px;
	color: var( --al-muted );
	font-size: 0.95rem;
	font-weight: 600;
}

.al-header__cta,
.al-button,
.single_add_to_cart_button,
.al-secondary-link {
	align-items: center;
	border: 0;
	border-radius: 999px;
	cursor: pointer;
	display: inline-flex;
	font-weight: 800;
	justify-content: center;
	line-height: 1;
	min-height: 52px;
	padding: 0 24px;
	transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.al-button i,
.al-secondary-link i {
	font-size: 1.05em;
	margin-right: 8px;
}

.al-header__cta,
.al-button,
.single_add_to_cart_button {
	background: linear-gradient( 135deg, var( --al-blue-dark ), var( --al-blue ) );
	box-shadow: 0 16px 34px rgba( 8, 119, 185, 0.24 );
	color: #fff;
}

.al-header__cta:hover,
.al-button:hover,
.single_add_to_cart_button:hover,
.al-secondary-link:hover {
	transform: translateY( -2px );
}

.al-hero {
	padding: 64px 0 44px;
}

.al-hero__grid {
	display: grid;
	gap: 44px;
	grid-template-columns: minmax( 0, 0.92fr ) minmax( 380px, 0.98fr );
}

.al-kicker {
	color: var( --al-blue-dark );
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.16em;
	margin: 0 0 14px;
	text-transform: uppercase;
}

h1,
h2 {
	letter-spacing: -0.055em;
	line-height: 1.02;
	margin: 0;
}

h1 {
	font-size: clamp( 2.25rem, 3.8vw, 3.8rem );
	max-width: 14ch;
}

h2 {
	font-size: clamp( 2rem, 3.6vw, 3.35rem );
	max-width: 13ch;
}

.al-hero__subtitle,
.al-copy,
.al-final-cta p,
.al-empty-state p {
	color: var( --al-muted );
	font-size: 1rem;
	max-width: 580px;
}

.al-price-row {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin: 24px 0 18px;
}

.al-price {
	font-size: 1.72rem;
	font-weight: 800;
	letter-spacing: -0.04em;
}

.al-price del {
	color: var( --al-muted );
	font-size: 1.15rem;
	margin-right: 8px;
}

.al-price ins {
	text-decoration: none;
}

.al-stock {
	align-items: center;
	border-radius: 999px;
	display: inline-flex;
	font-size: 0.84rem;
	font-weight: 800;
	gap: 7px;
	padding: 8px 12px;
}

.al-stock--in {
	background: rgba( 45, 176, 113, 0.14 );
	color: #137944;
}

.al-stock--out {
	background: rgba( 221, 61, 61, 0.12 );
	color: #a72727;
}

.al-benefit-list {
	display: grid;
	gap: 10px;
	list-style: none;
	margin: 0 0 28px;
	padding: 0;
}

.al-benefit-list li {
	align-items: center;
	color: #243651;
	display: flex;
	font-weight: 700;
	gap: 10px;
}

.al-benefit-list i {
	color: var( --al-gold );
	font-size: 1rem;
}

.al-product-card form.cart {
	align-items: stretch;
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin: 0;
	max-width: 560px;
}

.al-product-card .quantity {
	align-items: center;
	background: #fff;
	border: 1px solid var( --al-border );
	border-radius: 999px;
	box-shadow: 0 10px 26px rgba( 6, 23, 47, 0.06 );
	display: flex;
	overflow: hidden;
}

.al-product-card .qty {
	appearance: textfield;
	background: transparent;
	border: 0;
	color: var( --al-ink );
	font: inherit;
	font-weight: 800;
	min-height: 52px;
	text-align: center;
	width: 54px;
}

.al-product-card .qty::-webkit-inner-spin-button,
.al-product-card .qty::-webkit-outer-spin-button {
	appearance: none;
	margin: 0;
}

.al-qty-btn {
	align-items: center;
	background: transparent;
	border: 0;
	color: var( --al-blue-dark );
	cursor: pointer;
	display: inline-flex;
	font-size: 1.25rem;
	font-weight: 900;
	height: 52px;
	justify-content: center;
	width: 42px;
}

.al-qty-btn:hover {
	background: rgba( 91, 182, 232, 0.12 );
}

.single_add_to_cart_button {
	font-size: 1rem;
	min-width: 190px;
}

.al-secondary-link {
	background: #fff;
	border: 1px solid var( --al-border );
	color: var( --al-blue-dark );
	box-shadow: 0 12px 28px rgba( 6, 23, 47, 0.08 );
	margin-top: 0;
	min-width: 190px;
}

.al-cta-note {
	color: var( --al-muted );
	font-size: 0.94rem;
	margin: 18px 0 0;
}

.al-hero__media {
	margin-left: auto;
	max-width: 470px;
	position: relative;
	width: 100%;
}

.al-hero__media::before {
	background: linear-gradient( 135deg, rgba( 91, 182, 232, 0.45 ), rgba( 255, 255, 255, 0.1 ) );
	border-radius: 36px;
	content: "";
	inset: 34px -18px -18px 34px;
	position: absolute;
	z-index: -1;
}

.al-gallery {
	background: rgba( 255, 255, 255, 0.74 );
	border: 1px solid rgba( 255, 255, 255, 0.9 );
	border-radius: 36px;
	box-shadow: var( --al-shadow );
	overflow: hidden;
	padding: 14px;
}

.al-gallery__main {
	aspect-ratio: 1;
	background: linear-gradient( 145deg, #e7f6ff, #fff );
	border-radius: 28px;
	overflow: hidden;
	position: relative;
}

.al-gallery__main img,
.al-gallery--placeholder img {
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.al-gallery__thumbs {
	margin-top: 10px;
	overflow: hidden;
	padding: 2px;
}

.al-gallery__thumbs .swiper-wrapper {
	align-items: center;
	display: flex;
}

.al-gallery__thumb {
	aspect-ratio: 1;
	background: #fff;
	border: 2px solid transparent;
	border-radius: 14px;
	cursor: pointer;
	flex: 0 0 66px;
	height: 66px;
	overflow: hidden;
	padding: 0;
	width: 66px !important;
}

.al-gallery__thumb.swiper-slide-thumb-active {
	border-color: var( --al-blue-dark );
}

.al-gallery__thumb img {
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.al-gallery__nav {
	align-items: center;
	background: rgba( 255, 255, 255, 0.86 );
	border: 1px solid rgba( 255, 255, 255, 0.96 );
	border-radius: 999px;
	box-shadow: 0 14px 30px rgba( 6, 23, 47, 0.14 );
	color: var( --al-blue-dark );
	cursor: pointer;
	display: flex;
	height: 42px;
	justify-content: center;
	position: absolute;
	top: 50%;
	transform: translateY( -50% );
	width: 42px;
	z-index: 3;
}

.al-gallery__nav::before {
	content: "";
	border: solid currentColor;
	border-width: 0 3px 3px 0;
	display: inline-block;
	height: 9px;
	width: 9px;
}

.al-gallery__nav--prev {
	left: 12px;
}

.al-gallery__nav--prev::before {
	transform: rotate( 135deg );
}

.al-gallery__nav--next {
	right: 12px;
}

.al-gallery__nav--next::before {
	transform: rotate( -45deg );
}

.al-strip {
	padding: 22px 0;
}

.al-mini-cta {
	padding: 22px 0 8px;
}

.al-mini-cta__inner {
	align-items: center;
	background: linear-gradient( 135deg, rgba( 255, 255, 255, 0.9 ), rgba( 231, 246, 255, 0.82 ) );
	border: 1px solid rgba( 255, 255, 255, 0.95 );
	border-radius: var( --al-radius );
	box-shadow: 0 18px 54px rgba( 6, 23, 47, 0.08 );
	display: flex;
	gap: 20px;
	justify-content: space-between;
	padding-bottom: 20px;
	padding-top: 20px;
}

.al-mini-cta strong,
.al-mini-cta span {
	display: block;
}

.al-mini-cta strong {
	font-size: 1.15rem;
	letter-spacing: -0.03em;
}

.al-mini-cta span {
	color: var( --al-muted );
	font-size: 0.95rem;
	margin-top: 4px;
}

.al-strip__grid {
	display: grid;
	gap: 14px;
	grid-template-columns: repeat( 3, 1fr );
}

.al-strip__grid > div,
.al-spec-card,
.al-faq,
.al-empty-state .al-container {
	background: rgba( 255, 255, 255, 0.82 );
	border: 1px solid rgba( 255, 255, 255, 0.9 );
	border-radius: var( --al-radius );
	box-shadow: 0 16px 50px rgba( 6, 23, 47, 0.07 );
}

.al-strip__grid > div {
	padding: 22px;
}

.al-strip strong,
.al-strip span {
	display: block;
}

.al-strip strong {
	align-items: center;
	display: flex;
	gap: 9px;
}

.al-strip strong i {
	align-items: center;
	background: rgba( 91, 182, 232, 0.14 );
	border-radius: 12px;
	color: var( --al-blue-dark );
	display: inline-flex;
	height: 34px;
	justify-content: center;
	width: 34px;
}

.al-strip span {
	color: var( --al-muted );
	font-size: 0.94rem;
	margin-top: 6px;
}

.al-section {
	padding: 74px 0;
}

.al-section--soft {
	background: rgba( 255, 255, 255, 0.52 );
}

.al-two-col {
	align-items: start;
	display: grid;
	gap: 46px;
	grid-template-columns: minmax( 0, 0.9fr ) minmax( 320px, 1fr );
}

.al-spec-card {
	display: grid;
	gap: 14px;
	padding: 28px;
}

.al-spec {
	align-items: center;
	border-bottom: 1px solid var( --al-border );
	display: flex;
	gap: 18px;
	justify-content: space-between;
	padding-bottom: 14px;
}

.al-spec:last-child {
	border-bottom: 0;
	padding-bottom: 0;
}

.al-spec span {
	color: var( --al-muted );
}

.al-spec strong {
	text-align: right;
}

.al-section__heading {
	margin-bottom: 32px;
}

.al-section-cta {
	display: flex;
	justify-content: center;
	margin-top: 28px;
}

.al-photo-grid {
	display: grid;
	gap: 16px;
	grid-template-columns: repeat( 3, 1fr );
}

.al-photo-grid figure {
	aspect-ratio: 1;
	background: #dff3ff;
	border-radius: 28px;
	margin: 0;
	overflow: hidden;
}

.al-photo-grid img {
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.al-faqs {
	display: grid;
	gap: 12px;
}

.al-faq {
	overflow: hidden;
}

.al-faq__question {
	align-items: center;
	background: transparent;
	border: 0;
	color: var( --al-ink );
	cursor: pointer;
	display: flex;
	font: inherit;
	font-weight: 800;
	gap: 16px;
	justify-content: space-between;
	padding: 20px 22px;
	text-align: left;
	width: 100%;
}

.al-faq__icon {
	background: linear-gradient( 135deg, var( --al-blue-dark ), var( --al-blue ) );
	border-radius: 50%;
	flex: 0 0 32px;
	height: 32px;
	position: relative;
	transition: transform 180ms ease;
	width: 32px;
}

.al-faq__icon::before,
.al-faq__icon::after {
	background: #fff;
	border-radius: 999px;
	content: "";
	left: 50%;
	position: absolute;
	top: 50%;
	transform: translate( -50%, -50% );
}

.al-faq__icon::before {
	height: 2px;
	width: 13px;
}

.al-faq__icon::after {
	height: 13px;
	transition: transform 180ms ease;
	width: 2px;
}

.al-faq.is-open .al-faq__icon {
	transform: rotate( 180deg );
}

.al-faq.is-open .al-faq__icon::after {
	transform: translate( -50%, -50% ) scaleY( 0 );
}

.al-faq__answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 240ms ease;
}

.al-faq__answer p {
	color: var( --al-muted );
	margin: 0;
	padding: 0 22px 20px;
}

.al-final-cta {
	background:
		linear-gradient( 135deg, rgba( 6, 23, 47, 0.94 ), rgba( 8, 119, 185, 0.9 ) ),
		var( --al-ink );
	color: #fff;
	padding: 76px 0;
	text-align: center;
}

.al-final-cta h2,
.al-final-cta p {
	margin-left: auto;
	margin-right: auto;
}

.al-final-cta .al-kicker,
.al-final-cta p {
	color: rgba( 255, 255, 255, 0.76 );
}

.al-button--light {
	background: #fff;
	box-shadow: 0 18px 40px rgba( 0, 0, 0, 0.18 );
	color: var( --al-blue-dark );
	margin-top: 22px;
}

.al-button--full {
	width: 100%;
}

.al-product-card .variations_form {
	background: rgba( 255, 255, 255, 0.7 );
	border: 1px solid rgba( 255, 255, 255, 0.95 );
	border-radius: 24px;
	box-shadow: 0 18px 50px rgba( 6, 23, 47, 0.08 );
	padding: 16px;
}

.al-product-card table.variations {
	border: 0;
	margin: 0;
	width: 100%;
}

.al-product-card table.variations tr,
.al-product-card table.variations th,
.al-product-card table.variations td {
	display: block;
	padding: 0;
	text-align: left;
}

.al-product-card table.variations th label {
	display: block;
	font-size: 0.8rem;
	font-weight: 900;
	letter-spacing: 0.12em;
	margin: 0 0 8px;
	text-transform: uppercase;
}

.al-product-card table.variations select {
	height: 1px;
	opacity: 0;
	pointer-events: none;
	position: absolute;
	width: 1px;
}

.al-variation-options {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 0 0 10px;
}

.al-variation-option {
	background: #fff;
	border: 1px solid var( --al-border );
	border-radius: 999px;
	color: var( --al-ink );
	cursor: pointer;
	font: inherit;
	font-size: 0.94rem;
	font-weight: 800;
	min-height: 42px;
	padding: 0 16px;
}

.al-variation-option:hover,
.al-variation-option.is-selected {
	background: var( --al-blue-dark );
	border-color: var( --al-blue-dark );
	color: #fff;
}

.al-variation-option:disabled {
	cursor: not-allowed;
	opacity: 0.45;
}

.al-product-card .reset_variations {
	color: var( --al-muted );
	font-size: 0.9rem;
	font-weight: 700;
	margin-top: 2px;
	text-decoration: underline;
}

.al-product-card .reset_variations[style*="hidden"] {
	display: none !important;
}

.al-product-card .single_variation_wrap,
.al-product-card .woocommerce-variation-add-to-cart {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.al-product-card .woocommerce-variation {
	flex-basis: 100%;
	min-height: 0;
}

.al-product-card .woocommerce-variation-price {
	font-size: 1.35rem;
	font-weight: 900;
}

.al-product-card .single_add_to_cart_button:disabled,
.al-product-card .single_add_to_cart_button.disabled {
	cursor: not-allowed;
	filter: grayscale( 0.25 );
	opacity: 0.55;
	transform: none;
}

.al-page {
	padding: 62px 0 86px;
}

.al-content-card {
	background: rgba( 255, 255, 255, 0.88 );
	border: 1px solid rgba( 255, 255, 255, 0.95 );
	border-radius: var( --al-radius );
	box-shadow: 0 22px 64px rgba( 6, 23, 47, 0.08 );
	padding: clamp( 24px, 4vw, 42px );
}

.al-page .al-content-card > h1 {
	font-size: clamp( 2rem, 4vw, 3.2rem );
	margin-bottom: 24px;
	max-width: none;
}

.al-page-content .woocommerce,
.al-woo-page .woocommerce {
	margin: 0 auto;
}

.woocommerce-checkout .woocommerce {
	color: #243651;
	font-size: 0.95rem;
}

.woocommerce form.checkout {
	display: grid;
	gap: 18px;
}

.woocommerce form.checkout #customer_details {
	display: grid;
	gap: 16px;
}

.woocommerce form.checkout #customer_details .col-1,
.woocommerce form.checkout #customer_details .col-2 {
	float: none;
	width: 100%;
}

.woocommerce form.checkout h3 {
	align-items: center;
	display: flex;
	font-size: 1.15rem;
	font-weight: 700;
	gap: 9px;
	letter-spacing: -0.02em;
	margin: 0 0 14px;
}

.woocommerce form.checkout h3::before {
	align-items: center;
	background: rgba( 91, 182, 232, 0.15 );
	border-radius: 10px;
	color: var( --al-blue-dark );
	content: "\F26A";
	display: inline-flex;
	font-family: "bootstrap-icons";
	font-size: 0.88rem;
	font-weight: 400;
	height: 30px;
	justify-content: center;
	letter-spacing: 0;
	width: 30px;
}

.woocommerce-checkout .col2-set,
.woocommerce-checkout .col2-set .col-1,
.woocommerce-checkout .col2-set .col-2 {
	float: none;
	width: 100%;
}

.woocommerce-checkout .col2-set::before,
.woocommerce-checkout .col2-set::after {
	display: none;
}

.woocommerce-checkout .col2-set {
	display: grid;
	gap: 16px;
}

.woocommerce-checkout #order_review_heading {
	margin-top: 8px;
}

.woocommerce-checkout-review-order {
	margin-bottom: 16px;
}

#order_review_heading::before {
	content: "\F23D";
}

.woocommerce-billing-fields,
.woocommerce-shipping-fields,
.woocommerce-additional-fields,
.woocommerce-checkout-review-order,
.woocommerce-checkout-payment {
	background: #fff;
	border: 1px solid rgba( 6, 23, 47, 0.08 );
	border-radius: 16px;
	box-shadow: 0 12px 34px rgba( 6, 23, 47, 0.055 );
	padding: clamp( 18px, 3vw, 24px );
}

.woocommerce form .form-row {
	margin: 0 0 14px;
	padding: 0;
}

.woocommerce form .form-row label {
	color: #3d4a5f;
	font-size: 0.84rem;
	font-weight: 600;
	margin-bottom: 6px;
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select,
.woocommerce .select2-container .select2-selection--single {
	background: #fff;
	border: 1px solid var( --al-border );
	border-radius: 10px;
	box-shadow: none;
	color: var( --al-ink );
	font: inherit;
	min-height: 46px;
	padding: 9px 12px;
}

.woocommerce .select2-container .select2-selection--single .select2-selection__rendered {
	line-height: 26px;
	padding-left: 0;
	padding: 0;
}

.woocommerce .select2-container .select2-selection--single .select2-selection__arrow {
	height: 44px;
}

.woocommerce-checkout-review-order,
.woocommerce-checkout-payment,
.woocommerce table.shop_table {
	background: #fff;
	border: 1px solid rgba( 6, 23, 47, 0.08 );
	border-radius: 16px;
	overflow: hidden;
}

.woocommerce table.shop_table th,
.woocommerce table.shop_table td {
	border-color: rgba( 6, 23, 47, 0.08 );
	font-size: 0.93rem;
	font-weight: 500;
	padding: 14px 16px;
}

.woocommerce table.shop_table th {
	color: #3d4a5f;
	font-weight: 700;
}

.woocommerce table.shop_table tfoot th,
.woocommerce table.shop_table tfoot td {
	font-weight: 700;
}

.woocommerce-checkout-review-order table.shop_table {
	border: 0;
	margin: 0;
}

.woocommerce-checkout #payment {
	background: #fff;
}

.woocommerce-checkout #payment div.payment_box {
	background: #f5f9fc;
	border-radius: 12px;
	color: #4b5a70;
	font-size: 0.92rem;
}

.woocommerce-checkout #payment div.payment_box::before {
	display: none;
}

.woocommerce #payment #place_order,
.woocommerce-page #payment #place_order {
	background: linear-gradient( 135deg, var( --al-blue-dark ), var( --al-blue ) );
	border: 0;
	border-radius: 12px;
	box-shadow: 0 12px 26px rgba( 8, 119, 185, 0.2 );
	color: #fff;
	float: none;
	font-size: 0.98rem;
	font-weight: 800;
	min-height: 50px;
	width: 100%;
}

/* WooCommerce Checkout Block */
.al-page-content .wc-block-checkout,
.al-woo-page .wc-block-checkout {
	margin: 0 auto;
	max-width: 760px;
}

.wc-block-components-sidebar-layout {
	display: grid !important;
	gap: 26px !important;
	grid-template-columns: 1fr !important;
	margin: 0 !important;
}

.wc-block-components-sidebar-layout .wc-block-components-main,
.wc-block-components-sidebar-layout .wc-block-components-sidebar {
	padding: 0 !important;
	width: 100% !important;
}

.wc-block-components-sidebar {
	margin-top: 0 !important;
	position: static !important;
}

.wc-block-checkout__contact-fields,
.wc-block-checkout__shipping-fields,
.wc-block-checkout__billing-fields,
.wc-block-checkout__payment-method,
.wc-block-checkout__order-notes,
.wc-block-components-sidebar {
	background: rgba( 255, 255, 255, 0.94 );
	border: 1px solid rgba( 255, 255, 255, 0.96 );
	border-radius: 24px;
	box-shadow: 0 18px 52px rgba( 6, 23, 47, 0.08 );
	padding: clamp( 20px, 3vw, 28px ) !important;
}

.wc-block-checkout__contact-fields,
.wc-block-checkout__shipping-fields,
.wc-block-checkout__billing-fields,
.wc-block-checkout__payment-method,
.wc-block-checkout__order-notes {
	margin-bottom: 22px;
}

.wc-block-components-title,
.wc-block-components-checkout-step__title,
.wc-block-components-sidebar-layout h2,
.wc-block-components-sidebar-layout h3 {
	align-items: center;
	color: var( --al-ink );
	display: flex;
	font-size: clamp( 1.35rem, 2.3vw, 1.9rem ) !important;
	font-weight: 900;
	gap: 10px;
	letter-spacing: -0.04em;
	margin: 0 0 18px !important;
}

.wc-block-components-title::before,
.wc-block-components-checkout-step__title::before,
.wc-block-components-sidebar-layout h2::before,
.wc-block-components-sidebar-layout h3::before {
	align-items: center;
	background: linear-gradient( 135deg, var( --al-blue-dark ), var( --al-blue ) );
	border-radius: 14px;
	color: #fff;
	content: "\F26A";
	display: inline-flex;
	font-family: "bootstrap-icons";
	font-size: 1rem;
	font-weight: 400;
	height: 36px;
	justify-content: center;
	letter-spacing: 0;
	width: 36px;
}

.wc-block-components-sidebar h2::before,
.wc-block-components-order-summary__title-text::before {
	content: "\F23D";
}

.wc-block-components-text-input input,
.wc-block-components-textarea,
.wc-block-components-combobox .wc-block-components-combobox-control input.components-combobox-control__input,
.wc-block-components-form .wc-block-components-text-input input[type="email"],
.wc-block-components-form .wc-block-components-text-input input[type="tel"],
.wc-block-components-form .wc-block-components-text-input input[type="text"] {
	background: #fff !important;
	border: 1px solid var( --al-border ) !important;
	border-radius: 16px !important;
	box-shadow: 0 8px 20px rgba( 6, 23, 47, 0.04 ) !important;
	min-height: 54px !important;
}

.wc-block-components-text-input label,
.wc-block-components-combobox label,
.wc-block-components-address-form__address_2-toggle {
	color: var( --al-muted ) !important;
	font-weight: 700 !important;
}

.wc-block-components-checkout-step {
	border: 0 !important;
	margin: 0 !important;
	padding: 0 !important;
}

.wc-block-components-checkout-step__container {
	padding: 0 !important;
}

.wc-block-components-checkout-step__content {
	display: grid;
	gap: 14px;
}

.wc-block-components-order-summary,
.wc-block-components-totals-wrapper {
	border-color: var( --al-border ) !important;
}

.wc-block-components-button,
.wc-block-components-checkout-place-order-button {
	background: linear-gradient( 135deg, var( --al-blue-dark ), var( --al-blue ) ) !important;
	border: 0 !important;
	border-radius: 999px !important;
	box-shadow: 0 16px 34px rgba( 8, 119, 185, 0.24 ) !important;
	color: #fff !important;
	font-weight: 900 !important;
	min-height: 56px !important;
	width: 100%;
}

.wc-block-components-button__text {
	color: inherit;
	font-weight: inherit;
}

.al-empty-state {
	padding: 110px 0;
}

.al-empty-state .al-container {
	padding: 42px;
}

.al-footer {
	background: #06172f;
	color: rgba( 255, 255, 255, 0.76 );
	padding: 26px 0;
}

.al-footer__inner {
	align-items: center;
	display: flex;
	gap: 18px;
	justify-content: space-between;
}

.al-footer p {
	margin: 0;
}

.woocommerce-notices-wrapper {
	display: none;
}

/* Modern Vercel/Shopify visual pass */
:root {
	--al-bg: #fafafa;
	--al-ink: #0a0a0a;
	--al-muted: #666666;
	--al-blue: #0ea5e9;
	--al-blue-dark: #0070f3;
	--al-gold: #f5a524;
	--al-card: #ffffff;
	--al-border: rgba( 0, 0, 0, 0.1 );
	--al-shadow: 0 1px 2px rgba( 0, 0, 0, 0.04 );
	--al-radius: 12px;
}

body {
	background: var( --al-bg );
}

body::before {
	display: none;
}

.al-header {
	background: rgba( 250, 250, 250, 0.86 );
	border-bottom: 1px solid var( --al-border );
}

.al-header__inner {
	min-height: 64px;
}

.al-header__actions {
	align-items: center;
	display: flex;
	gap: 10px;
}

.al-header__cart {
	align-items: center;
	border: 1px solid var( --al-border );
	border-radius: 8px;
	color: #111;
	display: inline-flex;
	font-size: 0.9rem;
	font-weight: 700;
	gap: 8px;
	min-height: 44px;
	padding: 0 14px;
}

.al-header__cart strong {
	align-items: center;
	background: #0a0a0a;
	border-radius: 999px;
	color: #fff;
	display: inline-flex;
	font-size: 0.72rem;
	height: 20px;
	justify-content: center;
	min-width: 20px;
	padding: 0 6px;
}

.al-logo {
	font-weight: 750;
	letter-spacing: -0.03em;
}

.al-logo__mark {
	background: #0a0a0a;
	border-radius: 8px;
	height: 32px;
	width: 32px;
}

.al-nav {
	font-size: 0.88rem;
	font-weight: 600;
}

.al-header__cta,
.al-button,
.single_add_to_cart_button,
.al-secondary-link {
	border-radius: 8px;
	font-weight: 700;
	min-height: 44px;
	padding: 0 18px;
}

.al-header__cta,
.al-button,
.single_add_to_cart_button {
	background: #0a0a0a;
	box-shadow: none;
	color: #fff;
}

.al-header__cta:hover,
.al-button:hover,
.single_add_to_cart_button:hover,
.al-secondary-link:hover {
	box-shadow: 0 0 0 4px rgba( 0, 0, 0, 0.06 );
	transform: none;
}

.al-hero {
	padding: 56px 0 40px;
}

.al-hero__grid {
	gap: 48px;
	grid-template-columns: minmax( 0, 1fr ) minmax( 360px, 0.9fr );
}

.al-kicker {
	color: #111;
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.13em;
	margin-bottom: 12px;
}

h1,
h2 {
	letter-spacing: -0.045em;
	line-height: 1.05;
}

h1 {
	font-size: clamp( 2.15rem, 3.4vw, 3.5rem );
	max-width: 15ch;
}

h2 {
	font-size: clamp( 1.75rem, 2.8vw, 2.8rem );
	max-width: 14ch;
}

.al-hero__subtitle,
.al-copy,
.al-final-cta p,
.al-empty-state p {
	color: var( --al-muted );
	font-size: 0.98rem;
}

.al-price {
	font-size: 1.45rem;
	font-weight: 800;
}

.al-stock {
	border: 1px solid rgba( 0, 0, 0, 0.08 );
	border-radius: 999px;
	font-size: 0.78rem;
	font-weight: 700;
	padding: 6px 10px;
}

.al-stock--in {
	background: #f0fdf4;
	color: #166534;
}

.al-benefit-list {
	gap: 8px;
	margin-bottom: 22px;
}

.al-benefit-list li {
	color: #333;
	font-size: 0.95rem;
	font-weight: 600;
}

.al-product-card .quantity,
.al-secondary-link,
.al-product-card .variations_form,
.al-gallery,
.al-strip__grid > div,
.al-mini-cta__inner,
.al-spec-card,
.al-faq,
.al-content-card,
.woocommerce-billing-fields,
.woocommerce-shipping-fields,
.woocommerce-additional-fields,
.woocommerce-checkout-review-order,
.woocommerce-checkout-payment {
	background: #fff;
	border: 1px solid var( --al-border );
	border-radius: var( --al-radius );
	box-shadow: var( --al-shadow );
}

.al-product-card .quantity {
	border-radius: 8px;
}

.al-product-card .qty,
.al-qty-btn {
	min-height: 44px;
}

.al-qty-btn {
	color: #111;
	height: 44px;
}

.single_add_to_cart_button {
	font-size: 0.94rem;
	min-width: 170px;
}

.al-secondary-link {
	color: #111;
	min-width: 170px;
}

.al-hero__media {
	max-width: 440px;
}

.al-hero__media::before {
	display: none;
}

.al-gallery {
	padding: 10px;
}

.al-gallery__main {
	background: #f5f5f5;
	border-radius: 8px;
}

.al-gallery__thumb {
	border: 1px solid var( --al-border );
	border-radius: 8px;
}

.al-gallery__thumb.swiper-slide-thumb-active {
	border-color: #0a0a0a;
}

.al-gallery__nav {
	background: rgba( 255, 255, 255, 0.92 );
	border: 1px solid var( --al-border );
	box-shadow: var( --al-shadow );
	color: #111;
	height: 36px;
	width: 36px;
}

.al-strip {
	padding: 18px 0;
}

.al-strip__grid {
	gap: 12px;
}

.al-strip__grid > div {
	padding: 18px;
}

.al-strip strong {
	font-size: 0.95rem;
	font-weight: 700;
}

.al-strip strong i {
	background: #f5f5f5;
	border-radius: 8px;
	color: #111;
	height: 30px;
	width: 30px;
}

.al-strip span,
.al-mini-cta span,
.al-faq__answer p {
	color: var( --al-muted );
	font-size: 0.9rem;
}

.al-mini-cta {
	padding: 16px 0 4px;
}

.al-mini-cta__inner {
	background: #fff;
	padding-bottom: 16px;
	padding-top: 16px;
}

.al-mini-cta strong {
	font-size: 1rem;
	font-weight: 700;
}

.al-section {
	padding: 64px 0;
}

.al-section--soft {
	background: #fff;
	border-bottom: 1px solid var( --al-border );
	border-top: 1px solid var( --al-border );
}

.al-spec-card {
	padding: 20px;
}

.al-spec {
	padding-bottom: 12px;
}

.al-spec span {
	font-size: 0.9rem;
}

.al-spec strong {
	font-size: 0.95rem;
	font-weight: 700;
}

.al-photo-grid {
	gap: 12px;
}

.al-photo-grid figure {
	background: #f5f5f5;
	border-radius: 10px;
}

.al-faq__question {
	font-weight: 700;
	padding: 16px 18px;
}

.al-faq__icon {
	background: #111;
	flex-basis: 26px;
	height: 26px;
	width: 26px;
}

.al-faq__answer p {
	padding: 0 18px 16px;
}

.al-final-cta {
	background: #0a0a0a;
	padding: 64px 0;
}

.al-button--light {
	background: #fff;
	box-shadow: none;
	color: #0a0a0a;
}

.al-variation-option {
	border-radius: 8px;
	font-size: 0.9rem;
	font-weight: 700;
	min-height: 38px;
	padding: 0 14px;
}

.al-variation-option:hover,
.al-variation-option.is-selected {
	background: #0a0a0a;
	border-color: #0a0a0a;
}

.al-product-card table.variations th label {
	font-size: 0.72rem;
	font-weight: 800;
}

.al-product-card .woocommerce-variation-price {
	font-size: 1.15rem;
}

.al-page {
	padding: 48px 0 72px;
}

.al-content-card {
	padding: clamp( 20px, 3vw, 32px );
}

.woocommerce form.checkout h3::before,
.wc-block-components-title::before,
.wc-block-components-checkout-step__title::before,
.wc-block-components-sidebar-layout h2::before,
.wc-block-components-sidebar-layout h3::before {
	background: #f5f5f5;
	border-radius: 8px;
	color: #111;
}

.woocommerce #payment #place_order,
.woocommerce-page #payment #place_order,
.wc-block-components-button,
.wc-block-components-checkout-place-order-button {
	background: #0a0a0a !important;
	border-radius: 8px !important;
	box-shadow: none !important;
	font-weight: 750 !important;
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select,
.woocommerce .select2-container .select2-selection--single,
.wc-block-components-text-input input,
.wc-block-components-textarea,
.wc-block-components-combobox .wc-block-components-combobox-control input.components-combobox-control__input,
.wc-block-components-form .wc-block-components-text-input input[type="email"],
.wc-block-components-form .wc-block-components-text-input input[type="tel"],
.wc-block-components-form .wc-block-components-text-input input[type="text"] {
	border-radius: 8px !important;
	box-shadow: none !important;
}

.wc-block-checkout__contact-fields,
.wc-block-checkout__shipping-fields,
.wc-block-checkout__billing-fields,
.wc-block-checkout__payment-method,
.wc-block-checkout__order-notes,
.wc-block-components-sidebar {
	border: 1px solid var( --al-border );
	border-radius: var( --al-radius );
	box-shadow: var( --al-shadow );
}

.al-hero__grid > *,
.al-two-col > *,
.al-gallery,
.al-gallery__main,
.al-gallery__thumbs,
.al-gallery .swiper,
.al-gallery .swiper-wrapper,
.al-gallery .swiper-slide {
	min-width: 0;
}

.al-hero__media,
.al-gallery,
.al-gallery__main,
.al-gallery__thumbs,
.al-gallery .swiper {
	max-width: 100%;
	width: 100%;
}

.al-gallery .swiper-slide {
	box-sizing: border-box;
}

#comprar {
	scroll-margin-top: 50px;
}

.al-cart {
	margin: 0 auto;
	max-width: 980px;
}

.al-cart__header {
	align-items: end;
	display: flex;
	gap: 18px;
	justify-content: space-between;
	margin-bottom: 22px;
}

.al-cart__header h2 {
	font-size: clamp( 1.8rem, 3vw, 2.5rem );
	max-width: none;
}

.al-cart__continue {
	align-items: center;
	border: 1px solid var( --al-border );
	border-radius: 8px;
	color: #111;
	display: inline-flex;
	font-size: 0.9rem;
	font-weight: 700;
	gap: 8px;
	min-height: 40px;
	padding: 0 14px;
}

.al-cart__layout {
	align-items: start;
	display: grid;
	gap: 18px;
	grid-template-columns: 1fr;
}

.al-cart__items {
	display: grid;
	gap: 12px;
}

.al-cart-item,
.al-cart-summary,
.al-cart--empty {
	background: #fff;
	border: 1px solid var( --al-border );
	border-radius: var( --al-radius );
	box-shadow: var( --al-shadow );
}

.al-cart-item {
	display: grid;
	gap: 16px;
	grid-template-columns: 96px minmax( 0, 1fr );
	padding: 14px;
}

.al-cart-item__image {
	aspect-ratio: 1;
	background: #f5f5f5;
	border-radius: 8px;
	overflow: hidden;
}

.al-cart-item__image img {
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.al-cart-item__body {
	display: grid;
	gap: 14px;
	min-width: 0;
}

.al-cart-item__top,
.al-cart-item__bottom {
	align-items: start;
	display: flex;
	gap: 14px;
	justify-content: space-between;
}

.al-cart-item h3 {
	font-size: 1rem;
	letter-spacing: -0.02em;
	line-height: 1.3;
	margin: 0;
}

.al-cart-item__meta {
	color: var( --al-muted );
	font-size: 0.86rem;
	margin-top: 4px;
}

.al-cart-item__remove {
	align-items: center;
	border: 1px solid var( --al-border );
	border-radius: 8px;
	color: var( --al-muted );
	display: inline-flex;
	flex: 0 0 34px;
	height: 34px;
	justify-content: center;
	width: 34px;
}

.al-cart-item__remove:hover {
	background: #fafafa;
	color: #111;
}

.al-cart .quantity {
	align-items: center;
	border: 1px solid var( --al-border );
	border-radius: 8px;
	display: inline-flex;
	overflow: hidden;
}

.al-cart .qty {
	appearance: textfield;
	border: 0;
	font: inherit;
	font-weight: 700;
	height: 38px;
	text-align: center;
	width: 48px;
}

.al-cart .qty::-webkit-inner-spin-button,
.al-cart .qty::-webkit-outer-spin-button {
	appearance: none;
	margin: 0;
}

.al-cart .al-qty-btn {
	height: 38px;
	width: 36px;
}

.al-cart-item__subtotal {
	text-align: right;
}

.al-cart-item__subtotal span,
.al-cart-summary__row span,
.al-cart-summary__total span {
	color: var( --al-muted );
	display: block;
	font-size: 0.82rem;
	font-weight: 600;
	display: flex;
	justify-content: end;
}

.al-cart-item__subtotal strong {
	font-size: 0.98rem;
}

.al-cart-summary {
	padding: 18px;
}

.al-cart-summary h3 {
	font-size: 1.1rem;
	letter-spacing: -0.02em;
	margin: 0 0 16px;
}

.al-cart-summary__row,
.al-cart-summary__total {
	align-items: center;
	border-top: 1px solid var( --al-border );
	display: flex;
	justify-content: space-between;
	padding: 13px 0;
}

.al-cart-summary__row:first-of-type {
	border-top: 0;
	padding-top: 0;
}

.al-cart-summary__total {
	margin-top: 4px;
}

.al-cart-summary__total strong {
	font-size: 1.18rem;
}

.al-cart-summary p {
	color: var( --al-muted );
	font-size: 0.88rem;
	margin: 4px 0 16px;
}

.al-cart-summary__update,
.al-cart-summary__checkout {
	align-items: center;
	border-radius: 8px;
	cursor: pointer;
	display: inline-flex;
	font: inherit;
	font-weight: 750;
	gap: 8px;
	justify-content: center;
	min-height: 44px;
	width: 100%;
}

.al-cart-summary__update {
	background: #fff;
	border: 1px solid var( --al-border );
	color: #111;
	margin-bottom: 10px;
}

.al-cart-summary__checkout {
	background: #0a0a0a;
	border: 1px solid #0a0a0a;
	color: #fff;
}

.woocommerce-shipping-fields {
	display: none !important;
}

.woocommerce-order {
	display: grid;
	gap: 18px;
	margin: 0 auto;
}

.woocommerce-notice--success.woocommerce-thankyou-order-received {
	align-items: center;
	background: #f0fdf4;
	border: 1px solid rgba( 22, 101, 52, 0.16 );
	border-radius: var( --al-radius );
	color: #166534;
	display: flex;
	font-size: 1rem;
	font-weight: 700;
	gap: 10px;
	margin: 0;
	padding: 16px 18px;
}

.woocommerce-notice--success.woocommerce-thankyou-order-received::before {
	align-items: center;
	background: #16a34a;
	border-radius: 999px;
	color: #fff;
	content: "\F26A";
	display: inline-flex;
	font-family: "bootstrap-icons";
	font-size: 0.9rem;
	height: 28px;
	justify-content: center;
	width: 28px;
}

.woocommerce-order-overview.woocommerce-thankyou-order-details,
.woocommerce-bacs-bank-details,
.woocommerce-order-details,
.woocommerce-customer-details {
	background: #fff;
	border: 1px solid var( --al-border );
	border-radius: var( --al-radius );
	box-shadow: var( --al-shadow );
	margin: 0;
	padding: 18px;
}

.woocommerce-order-overview.woocommerce-thankyou-order-details {
	display: block;
	list-style: none;
	padding: 6px 18px;
}

.woocommerce-order-overview.woocommerce-thankyou-order-details li {
	border: 0;
	border-bottom: 1px solid var( --al-border );
	display: flex;
	gap: 18px;
	justify-content: space-between;
	align-items: center;
	color: var( --al-muted );
	float: none;
	font-size: 0.9rem;
	font-weight: 650;
	letter-spacing: 0;
	margin: 0;
	padding: 13px 0;
	text-transform: none;
	width: auto;
}

.woocommerce ul.order_details.woocommerce-thankyou-order-details li,
.woocommerce-page ul.order_details.woocommerce-thankyou-order-details li {
	border-right: 0 !important;
	float: none !important;
	font-size: 0.9rem !important;
	line-height: 1.4 !important;
	list-style-type: none !important;
	margin-left: 0 !important;
	margin-right: 0 !important;
	padding-left: 0 !important;
	padding-right: 0 !important;
	text-transform: none !important;
}

.woocommerce-order-overview.woocommerce-thankyou-order-details li:last-child {
	border-bottom: 0;
}

.woocommerce-order-overview.woocommerce-thankyou-order-details strong {
	color: var( --al-ink );
	display: inline-flex;
	font-size: 0.95rem;
	font-weight: 750;
	letter-spacing: 0;
	margin: 0;
	max-width: 58%;
	text-align: right;
	text-transform: none;
}

.woocommerce-order-overview.woocommerce-thankyou-order-details small {
	color: var( --al-muted );
	font-size: 0.78rem;
	font-weight: 650;
}

.woocommerce-order > p {
	background: #f5f5f5;
	border: 1px solid var( --al-border );
	border-radius: var( --al-radius );
	color: #333;
	margin: 0;
	padding: 16px 18px;
}

.woocommerce-order > p a {
	color: #0a0a0a;
	font-weight: 800;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.woocommerce-bacs-bank-details h2,
.woocommerce-order-details__title,
.woocommerce-column__title {
	align-items: center;
	display: flex;
	font-size: 1.15rem;
	font-weight: 750;
	gap: 9px;
	letter-spacing: -0.02em;
	margin: 0 0 14px;
	max-width: none;
}

.woocommerce-bacs-bank-details h2::before,
.woocommerce-order-details__title::before,
.woocommerce-column__title::before {
	align-items: center;
	background: #f5f5f5;
	border-radius: 8px;
	color: #111;
	content: "\F3D8";
	display: inline-flex;
	font-family: "bootstrap-icons";
	font-size: 0.9rem;
	font-weight: 400;
	height: 30px;
	justify-content: center;
	width: 30px;
}

.woocommerce-order-details__title::before {
	content: "\F23D";
}

.woocommerce-column__title::before {
	content: "\F3E8";
}

.wc-bacs-bank-details-account-name {
	color: var( --al-muted );
	font-size: 0.9rem;
	font-weight: 700;
	margin: 0 0 10px;
}

.wc-bacs-bank-details.order_details.bacs_details {
	background: #fafafa;
	border: 1px solid var( --al-border );
	border-radius: 10px;
	display: grid;
	list-style: none;
	margin: 0;
	padding: 0;
}

.wc-bacs-bank-details.order_details.bacs_details li {
	border-bottom: 1px solid var( --al-border );
	color: var( --al-muted );
	font-size: 0.9rem;
	margin: 0;
	padding: 12px 14px;
}

.wc-bacs-bank-details.order_details.bacs_details li:last-child {
	border-bottom: 0;
}

.wc-bacs-bank-details.order_details.bacs_details strong {
	color: var( --al-ink );
	font-weight: 750;
}

.woocommerce-table--order-details {
	border: 1px solid var( --al-border ) !important;
	border-radius: 10px !important;
	margin: 0 !important;
	overflow: hidden;
}

.woocommerce-table--order-details a {
	color: #111;
	font-weight: 650;
}

.woocommerce-table--order-details .product-quantity {
	color: var( --al-muted );
	font-weight: 700;
	white-space: nowrap;
}

.woocommerce-table--order-details tfoot tr:last-child th,
.woocommerce-table--order-details tfoot tr:last-child td {
	background: #fafafa;
	font-size: 1rem;
}

.woocommerce-customer-details address {
	background: #fafafa;
	border: 1px solid var( --al-border );
	border-radius: 10px;
	color: #333;
	font-style: normal;
	line-height: 1.7;
	margin: 0;
	padding: 16px;
}

.woocommerce-customer-details--email {
	align-items: center;
	border-top: 1px solid var( --al-border );
	color: var( --al-muted );
	display: flex;
	gap: 8px;
	margin: 12px 0 0;
	padding-top: 12px;
}

.woocommerce-customer-details--email::before {
	color: #111;
	content: "\F32F";
	font-family: "bootstrap-icons";
}

.al-cart--empty {
	padding: 42px 24px;
	text-align: center;
}

.al-cart__empty-icon {
	align-items: center;
	background: #f5f5f5;
	border-radius: 12px;
	display: inline-flex;
	font-size: 1.6rem;
	height: 58px;
	justify-content: center;
	margin-bottom: 18px;
	width: 58px;
}

.al-cart--empty h2 {
	font-size: clamp( 1.6rem, 3vw, 2.2rem );
	margin: 0 0 8px;
	max-width: none;
}

.al-cart--empty p {
	color: var( --al-muted );
	margin: 0 auto 22px;
	max-width: 420px;
}

@media ( max-width: 820px ) {
	.al-cart__layout {
		grid-template-columns: 1fr;
	}

	.al-cart-summary {
		position: static;
	}
}

@media ( max-width: 620px ) {
	.al-cart__header {
		align-items: stretch;
		flex-direction: column;
	}

	.al-cart-item {
		grid-template-columns: 82px minmax( 0, 1fr );
	}

	.al-cart-item__bottom {
		align-items: stretch;
	}

	.al-cart-item__subtotal {
		text-align: left;
	}

	.woocommerce-order-overview.woocommerce-thankyou-order-details {
		grid-template-columns: 1fr;
	}

	.woocommerce-order-overview.woocommerce-thankyou-order-details li,
	.woocommerce-order-overview.woocommerce-thankyou-order-details li:nth-child( 2n ),
	.woocommerce-order-overview.woocommerce-thankyou-order-details li:nth-last-child( -n + 2 ) {
		border-bottom: 1px solid var( --al-border );
		border-right: 0;
	}

	.woocommerce-order-overview.woocommerce-thankyou-order-details li:last-child {
		border-bottom: 0;
	}

	.woocommerce-order-overview.woocommerce-thankyou-order-details li {
		align-items: flex-start;
		flex-direction: column;
		gap: 4px;
	}

	.woocommerce-order-overview.woocommerce-thankyou-order-details strong {
		max-width: none;
		text-align: left;
	}
}

@media ( max-width: 920px ) {
	.al-hero {
		padding-top: 48px;
	}

	.al-hero__grid,
	.al-two-col {
		grid-template-columns: 1fr;
	}

	.al-hero__grid {
		display: flex;
		flex-direction: column;
		gap: 0;
	}

	.al-hero__content {
		display: contents;
	}

	.al-hero__content .al-kicker {
		order: 1;
	}

	.al-hero__content h1 {
		order: 2;
	}

	.al-hero__subtitle {
		order: 3;
	}

	.al-hero__media {
		margin-left: 0;
		max-width: none;
		order: 4;
	}

	.al-price-row {
		order: 5;
	}

	.al-benefit-list {
		order: 6;
	}

	.al-product-card {
		order: 7;
	}

	.al-cta-note {
		order: 8;
	}

	.al-strip__grid {
		grid-template-columns: 1fr;
	}

	.al-photo-grid {
		grid-template-columns: repeat( 2, 1fr );
	}

	.al-nav {
		display: none;
	}

	.al-mini-cta__inner {
		align-items: stretch;
		flex-direction: column;
		padding: 18px !important;
	}
}

@media ( max-width: 620px ) {
	.al-container {
		padding: 0 18px;
	}

	.al-header__inner {
		min-height: 66px;
	}

	.al-logo span:last-child {
		display: none;
	}

	.al-header__cta {
		min-height: 44px;
		padding: 0 18px;
	}

	.al-header__cart span {
		display: none;
	}

	h1 {
		font-size: clamp( 2rem, 10vw, 2.75rem );
		line-height: 1.02;
	}

	h2 {
		font-size: clamp( 1.65rem, 8vw, 2.25rem );
	}

	.al-product-card form.cart,
	.single_add_to_cart_button,
	.al-secondary-link {
		width: 100%;
	}

	.al-product-card .quantity {
		width: 100%;
	}

	.al-product-card .qty {
		width: 100%;
	}

	.al-photo-grid {
		grid-template-columns: repeat( 2, 1fr );
	}

	.al-gallery__thumb {
		flex-basis: 58px;
		height: 58px;
		width: 58px;
		width: 58px !important;
	}

	.al-section {
		padding: 52px 0;
	}

	.al-footer__inner {
		align-items: flex-start;
		flex-direction: column;
	}
}

.woocommerce-checkout #payment div.payment_box p {
	margin: 0;
}

.woocommerce-checkout #payment ul.payment_methods li {
	display: flex;
	flex-wrap: wrap;
}

.woocommerce-checkout #payment ul.payment_methods li label {
	display: flex;
	align-items: center;
	gap: 10px;
}