/*
 * Maple Labs V2
 * Clean, elegant, professional, interactive Flatsome child-theme layer.
 */

:root {
	--ml-deep: #0b4b6a;
	--ml-deep-2: #07384f;
	--ml-mid: #0f6f8a;
	--ml-cyan: #57b8c9;
	--ml-lime: #93c549;
	--ml-green: #2f7a2d;
	--ml-ink: #102a33;
	--ml-muted: #61747d;
	--ml-line: #d6e1e6;
	--ml-ice: #edf5f7;
	--ml-mist: #f6f9fa;
	--ml-white: #ffffff;
	--ml-danger: #a62828;
	--ml-radius-sm: 12px;
	--ml-radius: 20px;
	--ml-radius-lg: 32px;
	--ml-shadow-sm: 0 8px 24px rgba(7, 56, 79, 0.08);
	--ml-shadow: 0 20px 60px rgba(7, 56, 79, 0.13);
	--ml-shadow-lg: 0 30px 100px rgba(7, 56, 79, 0.18);
	--ml-ease: cubic-bezier(.2, .75, .25, 1);
	--ml-shell: 1240px;
}

html {
	scroll-behavior: smooth;
}

body.ml-v2 {
	background: var(--ml-white);
	color: var(--ml-ink);
	font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
}

body.ml-v2 h1,
body.ml-v2 h2,
body.ml-v2 h3,
body.ml-v2 h4,
body.ml-v2 h5,
body.ml-v2 h6 {
	color: var(--ml-ink);
	font-family: inherit;
	letter-spacing: -0.035em;
}

body.ml-v2 a {
	transition: color .2s ease, background-color .2s ease, border-color .2s ease, opacity .2s ease, transform .2s ease, box-shadow .2s ease;
}

body.ml-v2 :focus-visible {
	outline: 3px solid rgba(147, 197, 73, .55);
	outline-offset: 3px;
}

.ml-shell {
	width: min(calc(100% - 40px), var(--ml-shell));
	margin-inline: auto;
}

.ml-section {
	position: relative;
	padding: clamp(76px, 9vw, 132px) 0;
	overflow: hidden;
}

.ml-section--light {
	background: linear-gradient(180deg, #f8fbfc 0%, #eef6f7 100%);
}

.ml-section--products {
	background: #fff;
}

.ml-section--dark {
	background:
		radial-gradient(circle at 15% 10%, rgba(87, 184, 201, .18), transparent 28%),
		radial-gradient(circle at 90% 80%, rgba(147, 197, 73, .12), transparent 30%),
		linear-gradient(135deg, var(--ml-deep-2), var(--ml-deep));
	color: #fff;
}

.ml-section--process {
	background: linear-gradient(180deg, #fff 0%, #f7fafb 100%);
}

.ml-section--faq {
	background: #f1f7f8;
}

.ml-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 18px;
	color: var(--ml-mid);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: .18em;
	line-height: 1;
}

.ml-eyebrow > span {
	width: 30px;
	height: 2px;
	border-radius: 99px;
	background: linear-gradient(90deg, var(--ml-lime), var(--ml-mid));
}

.ml-eyebrow--light {
	color: rgba(255, 255, 255, .75);
}

.ml-eyebrow--light > span {
	background: linear-gradient(90deg, var(--ml-lime), #fff);
}

.ml-page-progress {
	position: fixed;
	z-index: 999999;
	top: 0;
	left: 0;
	width: 100%;
	height: 3px;
	pointer-events: none;
}

.ml-page-progress span {
	display: block;
	width: 0;
	height: 100%;
	background: linear-gradient(90deg, var(--ml-lime), var(--ml-cyan), var(--ml-mid));
	box-shadow: 0 0 14px rgba(87, 184, 201, .65);
}

.ml-cursor-glow {
	position: fixed;
	z-index: 2;
	width: 360px;
	height: 360px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(87, 184, 201, .10), rgba(87, 184, 201, 0) 68%);
	pointer-events: none;
	transform: translate(-50%, -50%);
	opacity: 0;
	transition: opacity .3s ease;
}

body:hover .ml-cursor-glow {
	opacity: 1;
}

.ml-back-to-top {
	position: fixed;
	right: 22px;
	bottom: 22px;
	z-index: 999;
	display: grid;
	place-items: center;
	width: 48px;
	height: 48px;
	padding: 0;
	border: 1px solid rgba(255, 255, 255, .2);
	border-radius: 50%;
	background: rgba(11, 75, 106, .92);
	box-shadow: var(--ml-shadow-sm);
	color: #fff;
	opacity: 0;
	visibility: hidden;
	transform: translateY(15px);
	backdrop-filter: blur(10px);
}

.ml-back-to-top.is-visible {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.ml-back-to-top:hover {
	background: var(--ml-lime);
	color: var(--ml-deep-2);
	transform: translateY(-3px);
}

.ml-back-to-top svg {
	width: 20px;
	transform: rotate(-90deg);
}

.ml-back-to-top svg,
.ml-button svg,
.ml-text-link svg,
.ml-round-icon svg,
.ml-standard-card svg,
.ml-trust-strip svg,
.ml-hero__proof svg,
.ml-float-chip svg,
.ml-orbit-card__mark svg,
.ml-check-ui svg {
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

[data-ml-reveal] {
	opacity: 0;
	transform: translateY(26px);
	transition: opacity .75s var(--ml-ease), transform .75s var(--ml-ease);
}

[data-ml-reveal].is-visible {
	opacity: 1;
	transform: translateY(0);
}

.ml-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 52px;
	padding: 0 24px;
	border: 1px solid transparent;
	border-radius: 999px;
	font-size: 14px;
	font-weight: 800;
	line-height: 1;
	text-decoration: none;
}

.ml-button svg,
.ml-text-link svg {
	width: 18px;
	height: 18px;
	transition: transform .25s ease;
}

.ml-button:hover svg,
.ml-text-link:hover svg {
	transform: translateX(4px);
}

.ml-button--primary {
	background: linear-gradient(135deg, var(--ml-deep), var(--ml-mid));
	box-shadow: 0 14px 32px rgba(11, 75, 106, .22);
	color: #fff;
}

.ml-button--primary:hover {
	box-shadow: 0 18px 42px rgba(11, 75, 106, .30);
	color: #fff;
	transform: translateY(-2px);
}

.ml-button--ghost {
	border-color: rgba(11, 75, 106, .16);
	background: rgba(255, 255, 255, .72);
	color: var(--ml-deep);
	backdrop-filter: blur(10px);
}

.ml-button--ghost:hover {
	border-color: rgba(11, 75, 106, .34);
	background: #fff;
	color: var(--ml-deep);
	transform: translateY(-2px);
}

.ml-button--light {
	background: #fff;
	box-shadow: 0 14px 34px rgba(0, 0, 0, .15);
	color: var(--ml-deep);
}

.ml-button--light:hover {
	background: var(--ml-lime);
	color: var(--ml-deep-2);
	transform: translateY(-2px);
}

.ml-text-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--ml-deep);
	font-size: 13px;
	font-weight: 800;
	text-decoration: none;
}

/* Header / Flatsome integration */
body.ml-v2 .header-wrapper {
	transition: background-color .25s ease, box-shadow .25s ease, backdrop-filter .25s ease;
}

body.ml-v2 .header-wrapper.stuck,
body.ml-v2 .header-wrapper.is-sticky {
	background: rgba(255, 255, 255, .90);
	box-shadow: 0 10px 30px rgba(7, 56, 79, .08);
	backdrop-filter: blur(16px);
}

body.ml-v2 .header-nav-main.nav > li > a {
	position: relative;
	color: var(--ml-ink);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: .015em;
}

body.ml-v2 .header-nav-main.nav > li > a::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: 7px;
	width: 0;
	height: 2px;
	border-radius: 10px;
	background: linear-gradient(90deg, var(--ml-lime), var(--ml-mid));
	transform: translateX(-50%);
	transition: width .25s ease;
}

body.ml-v2 .header-nav-main.nav > li:hover > a::after,
body.ml-v2 .header-nav-main.nav > li.active > a::after,
body.ml-v2 .header-nav-main.nav > li.current-menu-item > a::after {
	width: calc(100% - 20px);
}

body.ml-v2 .nav-dropdown {
	padding: 14px;
	border: 1px solid rgba(11, 75, 106, .10);
	border-radius: 16px;
	box-shadow: var(--ml-shadow);
}

body.ml-v2 .nav-dropdown > li > a {
	border-radius: 9px;
}

body.ml-v2 .nav-dropdown > li > a:hover {
	background: var(--ml-ice);
	color: var(--ml-deep);
}

/* Hero */
.ml-hero {
	min-height: min(880px, calc(100vh - 70px));
	display: flex;
	align-items: center;
	padding-top: clamp(90px, 12vw, 160px);
	padding-bottom: clamp(90px, 10vw, 130px);
	background:
		linear-gradient(135deg, rgba(247, 252, 252, .98), rgba(235, 246, 248, .92)),
		repeating-linear-gradient(90deg, rgba(11, 75, 106, .025) 0, rgba(11, 75, 106, .025) 1px, transparent 1px, transparent 72px),
		repeating-linear-gradient(0deg, rgba(11, 75, 106, .025) 0, rgba(11, 75, 106, .025) 1px, transparent 1px, transparent 72px);
}

.ml-hero__mesh {
	position: absolute;
	inset: 0;
	pointer-events: none;
}

.ml-hero__mesh span {
	position: absolute;
	border-radius: 50%;
	filter: blur(1px);
	animation: ml-float 10s ease-in-out infinite;
}

.ml-hero__mesh span:nth-child(1) {
	top: -140px;
	right: -100px;
	width: 420px;
	height: 420px;
	background: radial-gradient(circle, rgba(87, 184, 201, .24), rgba(87, 184, 201, 0) 70%);
}

.ml-hero__mesh span:nth-child(2) {
	bottom: -180px;
	left: -120px;
	width: 500px;
	height: 500px;
	background: radial-gradient(circle, rgba(147, 197, 73, .18), rgba(147, 197, 73, 0) 70%);
	animation-delay: -4s;
}

.ml-hero__mesh span:nth-child(3) {
	top: 34%;
	left: 46%;
	width: 240px;
	height: 240px;
	background: radial-gradient(circle, rgba(11, 75, 106, .09), rgba(11, 75, 106, 0) 70%);
	animation-delay: -7s;
}

@keyframes ml-float {
	0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
	50% { transform: translate3d(0, -20px, 0) scale(1.04); }
}

.ml-hero__grid {
	position: relative;
	z-index: 3;
	display: grid;
	grid-template-columns: minmax(0, 1.03fr) minmax(380px, .97fr);
	gap: clamp(54px, 8vw, 110px);
	align-items: center;
}

.ml-hero__content h1 {
	max-width: 720px;
	margin: 0;
	font-size: clamp(46px, 6.3vw, 86px);
	font-weight: 760;
	line-height: .98;
	letter-spacing: -0.065em;
}

.ml-hero__lead {
	max-width: 650px;
	margin: 28px 0 0;
	color: var(--ml-muted);
	font-size: clamp(17px, 1.7vw, 21px);
	line-height: 1.65;
}

.ml-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 34px;
}

.ml-hero__proof {
	display: flex;
	flex-wrap: wrap;
	gap: 18px 26px;
	margin-top: 34px;
	color: var(--ml-muted);
	font-size: 12px;
	font-weight: 700;
}

.ml-hero__proof span {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.ml-hero__proof svg {
	width: 18px;
	color: var(--ml-mid);
}

.ml-hero__visual {
	position: relative;
	min-height: 520px;
	display: grid;
	place-items: center;
}

.ml-orbit-card {
	position: relative;
	z-index: 3;
	width: min(100%, 450px);
	min-height: 500px;
	padding: 30px;
	border: 1px solid rgba(255, 255, 255, .5);
	border-radius: 36px;
	background:
		linear-gradient(150deg, rgba(255, 255, 255, .96), rgba(238, 248, 249, .84)),
		radial-gradient(circle at 100% 0, rgba(147, 197, 73, .16), transparent 34%);
	box-shadow: var(--ml-shadow-lg);
	transform-style: preserve-3d;
	backdrop-filter: blur(18px);
}

.ml-orbit-card::before {
	content: "";
	position: absolute;
	inset: 12px;
	border: 1px solid rgba(11, 75, 106, .08);
	border-radius: 26px;
	pointer-events: none;
}

.ml-orbit-card__top,
.ml-orbit-card__metrics {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.ml-orbit-card__mark {
	display: grid;
	place-items: center;
	width: 48px;
	height: 48px;
	border-radius: 15px;
	background: linear-gradient(135deg, var(--ml-deep), var(--ml-mid));
	box-shadow: 0 10px 22px rgba(11, 75, 106, .24);
	color: #fff;
}

.ml-orbit-card__mark svg {
	width: 23px;
}

.ml-live-pill {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 12px;
	border: 1px solid rgba(47, 122, 45, .14);
	border-radius: 999px;
	background: rgba(147, 197, 73, .10);
	color: var(--ml-green);
	font-size: 11px;
	font-weight: 800;
}

.ml-live-pill i {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--ml-lime);
	box-shadow: 0 0 0 5px rgba(147, 197, 73, .15);
	animation: ml-pulse 2s ease-out infinite;
}

@keyframes ml-pulse {
	0% { box-shadow: 0 0 0 0 rgba(147, 197, 73, .35); }
	70% { box-shadow: 0 0 0 9px rgba(147, 197, 73, 0); }
	100% { box-shadow: 0 0 0 0 rgba(147, 197, 73, 0); }
}

.ml-orbit-card__center {
	position: relative;
	z-index: 2;
	padding: 74px 0 58px;
}

.ml-orbit-card__center > span {
	display: block;
	margin-bottom: 10px;
	color: var(--ml-mid);
	font-size: 13px;
	font-weight: 800;
	letter-spacing: .15em;
	text-transform: uppercase;
}

.ml-orbit-card__center strong {
	display: block;
	color: var(--ml-deep-2);
	font-size: clamp(38px, 5vw, 58px);
	line-height: .98;
	letter-spacing: -0.06em;
}

.ml-orbit-card__center p {
	max-width: 330px;
	margin: 22px 0 0;
	color: var(--ml-muted);
	font-size: 14px;
	line-height: 1.65;
}

.ml-orbit-card__metrics {
	gap: 12px;
	padding-top: 20px;
	border-top: 1px solid rgba(11, 75, 106, .10);
}

.ml-orbit-card__metrics > div {
	flex: 1;
}

.ml-orbit-card__metrics strong {
	display: block;
	color: var(--ml-deep);
	font-size: 25px;
	line-height: 1;
}

.ml-orbit-card__metrics span {
	display: block;
	margin-top: 6px;
	color: var(--ml-muted);
	font-size: 11px;
}

.ml-float-chip {
	position: absolute;
	z-index: 5;
	display: inline-flex;
	align-items: center;
	gap: 9px;
	padding: 13px 17px;
	border: 1px solid rgba(255, 255, 255, .58);
	border-radius: 999px;
	background: rgba(255, 255, 255, .86);
	box-shadow: var(--ml-shadow-sm);
	color: var(--ml-deep);
	font-size: 12px;
	font-weight: 800;
	backdrop-filter: blur(14px);
	animation: ml-chip 5s ease-in-out infinite;
}

.ml-float-chip svg {
	width: 18px;
	color: var(--ml-mid);
}

.ml-float-chip--one {
	top: 72px;
	left: -24px;
}

.ml-float-chip--two {
	right: -15px;
	bottom: 78px;
	animation-delay: -2.4s;
}

@keyframes ml-chip {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-10px); }
}

.ml-scroll-cue {
	position: absolute;
	z-index: 4;
	left: 50%;
	bottom: 25px;
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	gap: 7px;
	color: var(--ml-muted);
	font-size: 10px;
	font-weight: 800;
	letter-spacing: .14em;
	text-transform: uppercase;
	transform: translateX(-50%);
}

.ml-scroll-cue span {
	position: relative;
	width: 1px;
	height: 34px;
	background: rgba(11, 75, 106, .18);
	overflow: hidden;
}

.ml-scroll-cue span::after {
	content: "";
	position: absolute;
	top: -18px;
	left: 0;
	width: 100%;
	height: 18px;
	background: var(--ml-mid);
	animation: ml-scroll-line 1.8s ease-in-out infinite;
}

@keyframes ml-scroll-line {
	to { transform: translateY(52px); }
}

/* Trust strip */
.ml-trust-strip {
	position: relative;
	z-index: 7;
	border-top: 1px solid rgba(11, 75, 106, .08);
	border-bottom: 1px solid rgba(11, 75, 106, .08);
	background: rgba(255, 255, 255, .96);
}

.ml-trust-strip__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ml-trust-strip__grid > div {
	display: flex;
	align-items: center;
	gap: 14px;
	min-height: 104px;
	padding: 20px 26px;
	border-right: 1px solid rgba(11, 75, 106, .08);
}

.ml-trust-strip__grid > div:last-child {
	border-right: 0;
}

.ml-trust-strip svg {
	flex: 0 0 auto;
	width: 24px;
	color: var(--ml-mid);
}

.ml-trust-strip strong,
.ml-trust-strip small {
	display: block;
}

.ml-trust-strip strong {
	color: var(--ml-ink);
	font-size: 13px;
}

.ml-trust-strip small {
	margin-top: 4px;
	color: var(--ml-muted);
	font-size: 10px;
}

/* Section heading */
.ml-section-heading {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 40px;
	margin-bottom: 48px;
}

.ml-section-heading h2,
.ml-standard-copy h2,
.ml-faq-layout h2,
.ml-cta-card h2 {
	margin: 0;
	font-size: clamp(36px, 4.6vw, 62px);
	font-weight: 740;
	line-height: 1.03;
	letter-spacing: -0.055em;
}

.ml-section-heading > p {
	max-width: 470px;
	margin: 0 0 5px;
	color: var(--ml-muted);
	font-size: 15px;
	line-height: 1.65;
}

.ml-section-heading--center {
	justify-content: center;
	text-align: center;
}

/* Categories */
.ml-category-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px;
}

.ml-category-card {
	position: relative;
	display: block;
	min-width: 0;
	border: 1px solid rgba(11, 75, 106, .10);
	border-radius: 24px;
	background: #fff;
	box-shadow: var(--ml-shadow-sm);
	color: var(--ml-ink);
	text-decoration: none;
	overflow: hidden;
	transform-style: preserve-3d;
}

.ml-category-card:hover {
	border-color: rgba(15, 111, 138, .24);
	box-shadow: var(--ml-shadow);
	color: var(--ml-ink);
	transform: translateY(-5px);
}

.ml-category-card__media {
	position: relative;
	aspect-ratio: 16 / 9;
	background:
		radial-gradient(circle at 15% 15%, rgba(147, 197, 73, .23), transparent 35%),
		linear-gradient(135deg, #dceff2, #f6fbfb);
	background-position: center;
	background-size: cover;
	overflow: hidden;
}

.ml-category-card__media::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 35%, rgba(7, 56, 79, .28));
}

.ml-category-card__wash {
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(11, 75, 106, .05), rgba(147, 197, 73, .05));
	transition: transform .6s var(--ml-ease);
}

.ml-category-card:hover .ml-category-card__wash {
	transform: scale(1.08);
}

.ml-category-card__number {
	position: absolute;
	z-index: 2;
	top: 18px;
	left: 18px;
	display: grid;
	place-items: center;
	width: 42px;
	height: 42px;
	border: 1px solid rgba(255, 255, 255, .42);
	border-radius: 50%;
	background: rgba(7, 56, 79, .62);
	color: #fff;
	font-size: 11px;
	font-weight: 800;
	backdrop-filter: blur(10px);
}

.ml-category-card__content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	padding: 22px;
}

.ml-category-card__content h3 {
	margin: 0;
	font-size: 20px;
	font-weight: 760;
}

.ml-category-card__content p {
	margin: 6px 0 0;
	color: var(--ml-muted);
	font-size: 12px;
}

.ml-round-icon {
	flex: 0 0 auto;
	display: grid;
	place-items: center;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: var(--ml-ice);
	color: var(--ml-deep);
}

.ml-category-card:hover .ml-round-icon {
	background: var(--ml-deep);
	color: #fff;
}

.ml-round-icon svg {
	width: 18px;
}

.ml-empty-state {
	padding: 34px;
	border: 1px dashed rgba(11, 75, 106, .22);
	border-radius: 20px;
	background: rgba(255, 255, 255, .8);
	color: var(--ml-muted);
	text-align: center;
}

/* Products */
.ml-product-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 20px;
}

.ml-product-card {
	position: relative;
	min-width: 0;
	border: 1px solid rgba(11, 75, 106, .10);
	border-radius: 22px;
	background: #fff;
	box-shadow: 0 8px 28px rgba(7, 56, 79, .07);
	overflow: hidden;
	transform-style: preserve-3d;
	transition: transform .3s var(--ml-ease), box-shadow .3s ease, border-color .3s ease;
}

.ml-product-card:hover {
	border-color: rgba(15, 111, 138, .24);
	box-shadow: var(--ml-shadow);
	transform: translateY(-6px);
}

.ml-product-card__image {
	position: relative;
	display: grid;
	place-items: center;
	aspect-ratio: 1 / 1;
	padding: 16px;
	background: linear-gradient(145deg, #f8fbfc, #eef5f6);
	overflow: hidden;
}

.ml-product-card__image img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	transition: transform .55s var(--ml-ease);
}

.ml-product-card:hover .ml-product-card__image img {
	transform: scale(1.045);
}

.ml-product-badge {
	position: absolute;
	z-index: 2;
	top: 14px;
	left: 14px;
	padding: 7px 10px;
	border-radius: 999px;
	background: var(--ml-lime);
	color: var(--ml-deep-2);
	font-size: 9px;
	font-weight: 900;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.ml-product-card__content {
	padding: 20px;
}

.ml-product-card__category,
.ml-product-card__category a {
	color: var(--ml-mid);
	font-size: 10px;
	font-weight: 800;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.ml-product-card__content h3 {
	min-height: 48px;
	margin: 8px 0 16px;
	font-size: 18px;
	font-weight: 740;
	line-height: 1.3;
}

.ml-product-card__content h3 a {
	color: var(--ml-ink);
}

.ml-product-card__bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding-bottom: 14px;
	border-bottom: 1px solid var(--ml-line);
}

.ml-product-card__price {
	color: var(--ml-deep);
	font-size: 16px;
	font-weight: 800;
}

.ml-product-card__price del {
	color: #8b9ba2;
	font-size: 12px;
}

.ml-product-card__price ins {
	text-decoration: none;
}

.ml-stock-dot {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: var(--ml-muted);
	font-size: 9px;
	font-weight: 800;
	text-transform: uppercase;
}

.ml-stock-dot::before {
	content: "";
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: #aeb9be;
}

.ml-stock-dot.is-in-stock::before {
	background: var(--ml-lime);
	box-shadow: 0 0 0 4px rgba(147, 197, 73, .13);
}

.ml-stock-dot.is-out-of-stock::before {
	background: #bd5b5b;
}

.ml-product-card .ml-text-link {
	margin-top: 14px;
}

/* Standard section */
.ml-standard-grid {
	display: grid;
	grid-template-columns: .9fr 1.1fr;
	gap: clamp(50px, 8vw, 100px);
	align-items: center;
}

.ml-standard-copy h2 {
	color: #fff;
}

.ml-standard-copy > p {
	max-width: 560px;
	margin: 26px 0 32px;
	color: rgba(255, 255, 255, .68);
	font-size: 16px;
	line-height: 1.75;
}

.ml-standard-stack {
	display: grid;
	gap: 16px;
}

.ml-standard-card {
	position: relative;
	display: grid;
	grid-template-columns: 48px 1fr;
	gap: 18px;
	padding: 24px;
	border: 1px solid rgba(255, 255, 255, .14);
	border-radius: 20px;
	background: rgba(255, 255, 255, .08);
	box-shadow: 0 14px 32px rgba(0, 0, 0, .10);
	backdrop-filter: blur(14px);
	transform-style: preserve-3d;
}

.ml-standard-card:hover {
	border-color: rgba(147, 197, 73, .35);
	background: rgba(255, 255, 255, .11);
}

.ml-standard-card > span {
	color: rgba(255, 255, 255, .38);
	font-size: 11px;
	font-weight: 800;
}

.ml-standard-card svg {
	width: 24px;
	margin-bottom: 15px;
	color: var(--ml-lime);
}

.ml-standard-card h3 {
	margin: 0;
	color: #fff;
	font-size: 20px;
}

.ml-standard-card p {
	margin: 9px 0 0;
	color: rgba(255, 255, 255, .62);
	font-size: 13px;
	line-height: 1.6;
}

/* Process */
.ml-process-line {
	position: relative;
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
	margin-top: 56px;
}

.ml-process-line::before {
	content: "";
	position: absolute;
	top: 25px;
	left: 12.5%;
	right: 12.5%;
	height: 1px;
	background: linear-gradient(90deg, rgba(15, 111, 138, .15), rgba(147, 197, 73, .8), rgba(15, 111, 138, .15));
}

.ml-process-step {
	position: relative;
	z-index: 2;
	padding: 0 18px;
	text-align: center;
}

.ml-process-step > span {
	display: grid;
	place-items: center;
	width: 52px;
	height: 52px;
	margin: 0 auto 22px;
	border: 7px solid #fff;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--ml-deep), var(--ml-mid));
	box-shadow: 0 8px 20px rgba(11, 75, 106, .18);
	color: #fff;
	font-size: 13px;
	font-weight: 800;
}

.ml-process-step h3 {
	margin: 0;
	font-size: 20px;
}

.ml-process-step p {
	margin: 10px auto 0;
	color: var(--ml-muted);
	font-size: 13px;
	line-height: 1.6;
}

/* FAQ */
.ml-faq-layout {
	display: grid;
	grid-template-columns: .75fr 1.25fr;
	gap: clamp(46px, 8vw, 100px);
	align-items: start;
}

.ml-faq-layout > div:first-child > p {
	margin: 24px 0 0;
	color: var(--ml-muted);
	font-size: 15px;
	line-height: 1.7;
}

.ml-accordion {
	display: grid;
	gap: 12px;
}

.ml-accordion__item {
	border: 1px solid rgba(11, 75, 106, .10);
	border-radius: 17px;
	background: rgba(255, 255, 255, .78);
	box-shadow: 0 8px 24px rgba(7, 56, 79, .05);
	overflow: hidden;
	backdrop-filter: blur(10px);
}

.ml-accordion__item button {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	width: 100%;
	min-height: 70px;
	padding: 17px 20px;
	border: 0;
	background: transparent;
	color: var(--ml-ink);
	font: inherit;
	font-size: 14px;
	font-weight: 760;
	text-align: left;
	cursor: pointer;
}

.ml-accordion__item button svg {
	flex: 0 0 auto;
	width: 19px;
	fill: none;
	stroke: var(--ml-mid);
	stroke-width: 1.8;
	transition: transform .25s ease;
}

.ml-accordion__item.is-open button svg {
	transform: rotate(45deg);
}

.ml-accordion__panel {
	display: grid;
	grid-template-rows: 0fr;
	transition: grid-template-rows .35s var(--ml-ease);
}

.ml-accordion__panel > * {
	overflow: hidden;
}

.ml-accordion__panel p {
	margin: 0;
	padding: 0 20px 0;
	color: var(--ml-muted);
	font-size: 13px;
	line-height: 1.7;
	transition: padding .35s var(--ml-ease);
}

.ml-accordion__item.is-open .ml-accordion__panel {
	grid-template-rows: 1fr;
}

.ml-accordion__item.is-open .ml-accordion__panel p {
	padding-bottom: 20px;
}

/* CTA */
.ml-section--cta {
	padding-top: 70px;
	padding-bottom: 90px;
	background: #fff;
}

.ml-cta-card {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
	padding: clamp(36px, 6vw, 72px);
	border-radius: 30px;
	background:
		radial-gradient(circle at 80% 10%, rgba(147, 197, 73, .18), transparent 25%),
		linear-gradient(135deg, var(--ml-deep-2), var(--ml-mid));
	box-shadow: var(--ml-shadow-lg);
	color: #fff;
	overflow: hidden;
}

.ml-cta-card::after {
	content: "";
	position: absolute;
	right: -100px;
	bottom: -160px;
	width: 360px;
	height: 360px;
	border: 1px solid rgba(255, 255, 255, .12);
	border-radius: 50%;
	box-shadow: 0 0 0 50px rgba(255, 255, 255, .04), 0 0 0 100px rgba(255, 255, 255, .025);
}

.ml-cta-card > * {
	position: relative;
	z-index: 2;
}

.ml-cta-card h2 {
	max-width: 760px;
	color: #fff;
}

.ml-cta-card p {
	margin: 18px 0 0;
	color: rgba(255, 255, 255, .68);
	font-size: 15px;
}

/* WooCommerce catalog */
body.ml-v2 .shop-container,
body.ml-v2 .page-wrapper {
	background: #fff;
}

body.ml-v2 .shop-page-title {
	padding: 54px 0 44px;
	border-bottom: 1px solid rgba(11, 75, 106, .08);
	background: linear-gradient(135deg, #f7fbfc, #eaf4f6);
}

body.ml-v2 .shop-page-title .page-title-inner {
	min-height: auto;
}

body.ml-v2 .shop-page-title .page-title {
	font-size: clamp(34px, 5vw, 56px);
	font-weight: 760;
	letter-spacing: -0.05em;
}

body.ml-v2 .woocommerce-ordering select,
body.ml-v2 select.orderby {
	min-height: 44px;
	padding: 0 38px 0 14px;
	border: 1px solid var(--ml-line);
	border-radius: 12px;
	background-color: #fff;
	box-shadow: none;
	color: var(--ml-ink);
}

body.ml-v2 .products.row {
	row-gap: 22px;
}

body.ml-v2 .product-small.box {
	height: 100%;
	border: 1px solid rgba(11, 75, 106, .10);
	border-radius: 20px;
	background: #fff;
	box-shadow: 0 8px 25px rgba(7, 56, 79, .06);
	overflow: hidden;
	transition: transform .3s var(--ml-ease), box-shadow .3s ease, border-color .3s ease;
}

body.ml-v2 .product-small.box:hover {
	border-color: rgba(15, 111, 138, .25);
	box-shadow: var(--ml-shadow);
	transform: translateY(-5px);
}

body.ml-v2 .product-small .box-image {
	background: linear-gradient(145deg, #f9fbfc, #eef5f6);
}

body.ml-v2 .product-small .box-image img {
	transition: transform .55s var(--ml-ease);
}

body.ml-v2 .product-small.box:hover .box-image img {
	transform: scale(1.04);
}

body.ml-v2 .product-small .box-text {
	padding: 18px;
}

body.ml-v2 .product-small .product-title a {
	color: var(--ml-ink);
	font-size: 15px;
	font-weight: 740;
}

body.ml-v2 .product-small .price-wrapper .price {
	color: var(--ml-deep);
	font-size: 15px;
	font-weight: 800;
}

body.ml-v2 .badge-container {
	margin: 14px 0 0 14px;
}

body.ml-v2 .badge-inner {
	min-width: auto;
	min-height: auto;
	padding: 7px 10px;
	border-radius: 999px;
	background: var(--ml-lime);
	color: var(--ml-deep-2);
	font-size: 10px;
	font-weight: 900;
}

body.ml-v2 .button,
body.ml-v2 button,
body.ml-v2 input[type="submit"] {
	border-radius: 999px;
	font-weight: 800;
	letter-spacing: .01em;
}

body.ml-v2 .button.primary,
body.ml-v2 button.primary,
body.ml-v2 input[type="submit"] {
	background: linear-gradient(135deg, var(--ml-deep), var(--ml-mid));
	box-shadow: 0 10px 22px rgba(11, 75, 106, .18);
}

body.ml-v2 .button.primary:hover,
body.ml-v2 button.primary:hover,
body.ml-v2 input[type="submit"]:hover {
	box-shadow: 0 14px 30px rgba(11, 75, 106, .24);
	transform: translateY(-1px);
}

body.ml-v2 .single_add_to_cart_button {
	min-height: 48px;
	padding-inline: 28px;
}

body.ml-v2 .product-info .product-title {
	font-size: clamp(34px, 4vw, 54px);
	font-weight: 760;
	letter-spacing: -0.05em;
}

body.ml-v2 .product-info .price {
	color: var(--ml-deep);
	font-size: 25px;
}

body.ml-v2 .product-gallery,
body.ml-v2 .product-info {
	padding-top: 34px;
}

body.ml-v2 .product-gallery .flickity-viewport,
body.ml-v2 .product-gallery .woocommerce-product-gallery__image {
	border-radius: 22px;
	background: linear-gradient(145deg, #f9fbfc, #edf5f6);
}

body.ml-v2 .product-tabs {
	margin-top: 55px;
}

body.ml-v2 .product-tabs .nav-line-bottom > li > a::before {
	background: linear-gradient(90deg, var(--ml-lime), var(--ml-mid));
}

/* Checkout */
.ml-checkout-intro {
	max-width: 780px;
	margin: 18px auto 54px;
	text-align: center;
}

.ml-checkout-intro h1 {
	margin: 0;
	font-size: clamp(38px, 5vw, 62px);
	font-weight: 760;
	letter-spacing: -0.055em;
}

.ml-checkout-intro p {
	max-width: 620px;
	margin: 18px auto 0;
	color: var(--ml-muted);
	font-size: 15px;
	line-height: 1.65;
}

body.ml-v2-checkout .checkout-page-title {
	display: none;
}

body.ml-v2-checkout .woocommerce-checkout {
	padding-bottom: 60px;
}

body.ml-v2-checkout .woocommerce-billing-fields,
body.ml-v2-checkout .woocommerce-shipping-fields,
body.ml-v2-checkout .woocommerce-additional-fields,
body.ml-v2-checkout .woocommerce-checkout-review-order {
	padding: 26px;
	border: 1px solid rgba(11, 75, 106, .10);
	border-radius: 20px;
	background: #fff;
	box-shadow: var(--ml-shadow-sm);
}

body.ml-v2-checkout .woocommerce-billing-fields > h3,
body.ml-v2-checkout .woocommerce-additional-fields > h3,
body.ml-v2-checkout #order_review_heading {
	margin-top: 0;
	color: var(--ml-deep);
	font-size: 22px;
	font-weight: 760;
}

body.ml-v2 input[type="text"],
body.ml-v2 input[type="email"],
body.ml-v2 input[type="tel"],
body.ml-v2 input[type="number"],
body.ml-v2 input[type="password"],
body.ml-v2 input[type="search"],
body.ml-v2 input[type="url"],
body.ml-v2 textarea,
body.ml-v2 select {
	min-height: 46px;
	border: 1px solid var(--ml-line);
	border-radius: 12px;
	background: #fff;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, .7);
	color: var(--ml-ink);
}

body.ml-v2 textarea {
	min-height: 120px;
	padding-top: 12px;
}

body.ml-v2 input:focus,
body.ml-v2 textarea:focus,
body.ml-v2 select:focus {
	border-color: var(--ml-mid);
	box-shadow: 0 0 0 4px rgba(15, 111, 138, .10);
}

body.ml-v2-checkout .woocommerce-checkout-review-order-table {
	border: 0;
}

body.ml-v2-checkout .woocommerce-checkout-review-order-table th,
body.ml-v2-checkout .woocommerce-checkout-review-order-table td {
	padding: 14px 8px;
	border-color: rgba(11, 75, 106, .08);
}

body.ml-v2-checkout #payment {
	margin-top: 20px;
	border: 0;
	background: transparent;
}

body.ml-v2-checkout #payment ul.payment_methods {
	padding: 0;
	border: 0;
}

body.ml-v2-checkout #payment ul.payment_methods > li {
	margin: 10px 0;
	padding: 16px;
	border: 1px solid var(--ml-line);
	border-radius: 16px;
	background: #fff;
	transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

body.ml-v2-checkout #payment ul.payment_methods > li:has(input:checked) {
	border-color: rgba(15, 111, 138, .40);
	background: linear-gradient(135deg, #fff, #f2f9fa);
	box-shadow: 0 8px 24px rgba(11, 75, 106, .08);
}

body.ml-v2-checkout #payment .payment_box {
	margin: 14px 0 0;
	padding: 0;
	background: transparent;
	color: var(--ml-ink);
}

body.ml-v2-checkout #payment .payment_box::before {
	display: none;
}

body.ml-v2-checkout #place_order {
	width: 100%;
	min-height: 54px;
	margin-top: 18px;
	background: linear-gradient(135deg, var(--ml-deep), var(--ml-mid));
	box-shadow: 0 14px 30px rgba(11, 75, 106, .22);
	font-size: 15px;
}

.ml-checkout-card,
.ml-payment-panel {
	position: relative;
	margin: 16px 0;
	padding: 18px;
	border: 1px solid var(--ml-line);
	border-radius: 16px;
	background: linear-gradient(135deg, #fff, #f5fafb);
	box-shadow: 0 7px 20px rgba(7, 56, 79, .05);
}

.ml-check-row {
	display: grid;
	grid-template-columns: auto auto 1fr;
	gap: 12px;
	align-items: flex-start;
	margin: 0;
	cursor: pointer;
}

.ml-check-row > input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.ml-check-ui {
	display: grid;
	place-items: center;
	width: 22px;
	height: 22px;
	margin-top: 1px;
	border: 1px solid var(--ml-line);
	border-radius: 7px;
	background: #fff;
	color: transparent;
	transition: all .2s ease;
}

.ml-check-ui svg {
	width: 14px;
}

.ml-check-row > input:checked + .ml-check-ui {
	border-color: var(--ml-mid);
	background: var(--ml-mid);
	color: #fff;
	box-shadow: 0 0 0 4px rgba(15, 111, 138, .10);
}

.ml-box-title {
	display: block;
	margin: 0 0 6px;
	color: var(--ml-deep);
	font-size: 14px;
	font-weight: 800;
}

.ml-box-copy,
.ml-payment-panel p,
.ml-upload-field small {
	display: block;
	color: var(--ml-muted);
	font-size: 11px;
	line-height: 1.55;
}

.ml-payment-panel > p:first-child {
	margin-top: 0;
}

.ml-payment-address,
.ml-wallet-card {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 14px;
	border: 1px solid var(--ml-line);
	border-radius: 14px;
	background: #fff;
}

.ml-payment-address small,
.ml-payment-address strong,
.ml-wallet-card small,
.ml-wallet-card code {
	display: block;
}

.ml-payment-address strong {
	margin-top: 3px;
	color: var(--ml-deep);
	font-size: 18px;
}

.ml-wallet-card {
	display: none;
	margin-top: 12px;
}

.ml-wallet-card code {
	max-width: 520px;
	margin-top: 5px;
	padding: 0;
	background: transparent;
	color: var(--ml-ink);
	font-size: 11px;
	word-break: break-all;
}

.ml-copy-value {
	flex: 0 0 auto;
	min-height: 36px;
	padding: 0 14px;
	border: 0;
	border-radius: 999px;
	background: var(--ml-deep);
	color: #fff;
	font-size: 10px;
	font-weight: 800;
	cursor: pointer;
}

.ml-copy-value:hover {
	background: var(--ml-mid);
}

.ml-upload-field {
	display: block;
	margin-top: 16px;
	padding: 14px;
	border: 1px dashed rgba(15, 111, 138, .35);
	border-radius: 14px;
	background: rgba(237, 245, 247, .65);
}

.ml-upload-field input[type="file"] {
	width: 100%;
	margin: 8px 0;
	font-size: 11px;
}

.ml-field-label {
	display: block;
	margin: 0 0 7px;
	color: var(--ml-ink);
	font-size: 11px;
	font-weight: 800;
}

.ml-input,
.ml-select,
.ml-textarea {
	width: 100%;
}

.ml-upload-status {
	display: block;
	min-height: 18px;
	margin-top: 8px;
	color: var(--ml-mid);
	font-size: 11px;
	font-weight: 800;
}

.ml-upload-status.is-error {
	color: var(--ml-danger);
}

.ml-divider {
	height: 1px;
	margin: 18px 0;
	background: var(--ml-line);
}

.ml-radio-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 9px;
	margin: 9px 0 16px;
}

.ml-radio-grid label {
	position: relative;
	display: block;
	margin: 0;
	cursor: pointer;
}

.ml-radio-grid input {
	position: absolute;
	opacity: 0;
}

.ml-radio-grid label > span {
	display: block;
	min-height: 74px;
	padding: 13px;
	border: 1px solid var(--ml-line);
	border-radius: 12px;
	background: #fff;
	transition: all .2s ease;
}

.ml-radio-grid input:checked + span {
	border-color: var(--ml-mid);
	background: var(--ml-ice);
	box-shadow: 0 0 0 3px rgba(15, 111, 138, .09);
}

.ml-radio-grid strong,
.ml-radio-grid small {
	display: block;
}

.ml-radio-grid strong {
	color: var(--ml-ink);
	font-size: 11px;
}

.ml-radio-grid small {
	margin-top: 4px;
	color: var(--ml-muted);
	font-size: 9px;
}

.ml-btc-fee-note {
	display: none;
	margin-top: 10px;
}

.ml-btc-fee-note span {
	display: inline-flex;
	padding: 7px 10px;
	border-radius: 999px;
	background: rgba(147, 197, 73, .14);
	color: var(--ml-green);
	font-size: 10px;
	font-weight: 800;
}

.ml-nohash-note-wrap {
	display: none;
}

.ml-confirmation-wallets {
	margin: 22px 0;
	padding: 20px;
	border: 1px solid var(--ml-line);
	border-radius: 16px;
	background: var(--ml-mist);
}

.ml-confirmation-wallets code {
	word-break: break-all;
}

/* Cart / account / notices */
body.ml-v2 .woocommerce-message,
body.ml-v2 .woocommerce-info,
body.ml-v2 .woocommerce-error {
	border: 1px solid rgba(11, 75, 106, .14);
	border-radius: 14px;
	background: #fff;
	box-shadow: var(--ml-shadow-sm);
}

body.ml-v2 .woocommerce-message::before,
body.ml-v2 .woocommerce-info::before {
	color: var(--ml-mid);
}

body.ml-v2 .cart-sidebar .cart_totals,
body.ml-v2 .woocommerce-MyAccount-navigation,
body.ml-v2 .woocommerce-MyAccount-content {
	border: 1px solid rgba(11, 75, 106, .10);
	border-radius: 18px;
	background: #fff;
	box-shadow: var(--ml-shadow-sm);
}

body.ml-v2 .woocommerce-MyAccount-navigation {
	overflow: hidden;
}

body.ml-v2 .woocommerce-MyAccount-navigation li a {
	padding: 13px 16px;
}

body.ml-v2 .woocommerce-MyAccount-navigation li.is-active a,
body.ml-v2 .woocommerce-MyAccount-navigation li a:hover {
	background: var(--ml-ice);
	color: var(--ml-deep);
}

/* Footer */
body.ml-v2 .footer-wrapper {
	background: var(--ml-deep-2);
	color: rgba(255, 255, 255, .72);
}

body.ml-v2 .footer-wrapper h3,
body.ml-v2 .footer-wrapper h4,
body.ml-v2 .footer-wrapper h5 {
	color: #fff;
}

body.ml-v2 .footer-wrapper a {
	color: rgba(255, 255, 255, .68);
}

body.ml-v2 .footer-wrapper a:hover {
	color: var(--ml-lime);
}

/* Responsive */
@media (max-width: 1080px) {
	.ml-hero__grid {
		grid-template-columns: 1fr 420px;
		gap: 45px;
	}

	.ml-product-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.ml-trust-strip__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.ml-trust-strip__grid > div:nth-child(2) {
		border-right: 0;
	}

	.ml-trust-strip__grid > div:nth-child(-n+2) {
		border-bottom: 1px solid rgba(11, 75, 106, .08);
	}
}

@media (max-width: 849px) {
	.ml-cursor-glow {
		display: none;
	}

	.ml-section {
		padding: 82px 0;
	}

	.ml-hero {
		min-height: auto;
		padding-top: 100px;
	}

	.ml-hero__grid,
	.ml-standard-grid,
	.ml-faq-layout {
		grid-template-columns: 1fr;
	}

	.ml-hero__content {
		text-align: center;
	}

	.ml-hero__content h1,
	.ml-hero__lead {
		margin-inline: auto;
	}

	.ml-hero__actions,
	.ml-hero__proof {
		justify-content: center;
	}

	.ml-hero__visual {
		min-height: 500px;
	}

	.ml-category-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.ml-product-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.ml-section-heading {
		align-items: flex-start;
		flex-direction: column;
		gap: 16px;
	}

	.ml-process-line {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		row-gap: 42px;
	}

	.ml-process-line::before {
		display: none;
	}

	.ml-cta-card {
		align-items: flex-start;
		flex-direction: column;
	}

	body.ml-v2-checkout .woocommerce-billing-fields,
	body.ml-v2-checkout .woocommerce-shipping-fields,
	body.ml-v2-checkout .woocommerce-additional-fields,
	body.ml-v2-checkout .woocommerce-checkout-review-order {
		padding: 20px;
	}
}

@media (max-width: 549px) {
	.ml-shell {
		width: min(calc(100% - 28px), var(--ml-shell));
	}

	.ml-hero__content h1 {
		font-size: clamp(42px, 13vw, 58px);
	}

	.ml-hero__actions {
		flex-direction: column;
	}

	.ml-button {
		width: 100%;
	}

	.ml-hero__proof {
		align-items: center;
		flex-direction: column;
		gap: 10px;
	}

	.ml-hero__visual {
		min-height: 440px;
	}

	.ml-orbit-card {
		min-height: 440px;
		padding: 24px;
		border-radius: 28px;
	}

	.ml-orbit-card__center {
		padding: 58px 0 42px;
	}

	.ml-float-chip--one {
		top: 38px;
		left: -4px;
	}

	.ml-float-chip--two {
		right: -3px;
		bottom: 40px;
	}

	.ml-trust-strip__grid,
	.ml-category-grid,
	.ml-product-grid,
	.ml-process-line {
		grid-template-columns: 1fr;
	}

	.ml-trust-strip__grid > div {
		min-height: 84px;
		border-right: 0;
		border-bottom: 1px solid rgba(11, 75, 106, .08);
	}

	.ml-trust-strip__grid > div:last-child {
		border-bottom: 0;
	}

	.ml-section-heading h2,
	.ml-standard-copy h2,
	.ml-faq-layout h2,
	.ml-cta-card h2 {
		font-size: 38px;
	}

	.ml-radio-grid {
		grid-template-columns: 1fr;
	}

	.ml-payment-address,
	.ml-wallet-card {
		align-items: flex-start;
		flex-direction: column;
	}

	.ml-copy-value {
		width: 100%;
	}

	.ml-back-to-top {
		right: 14px;
		bottom: 14px;
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		animation-duration: .001ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: .001ms !important;
		scroll-behavior: auto !important;
	}

	[data-ml-reveal] {
		opacity: 1;
		transform: none;
	}
}

/* ==========================================================
 * MAPLE LABS V2.0.1 — HOMEPAGE WIDTH + DARK SECTION CONTRAST
 * ========================================================== */

/* Remove the default Flatsome page-content constraint on the shortcode homepage. */
body.home.ml-v2 #content.page-wrapper {
	width: 100%;
	max-width: none;
	padding: 0;
}

body.home.ml-v2 #content.page-wrapper > .row.row-main {
	width: 100%;
	max-width: none;
	margin-right: 0;
	margin-left: 0;
}

body.home.ml-v2 #content.page-wrapper > .row.row-main > .col,
body.home.ml-v2 #content.page-wrapper > .row.row-main > .col > .col-inner {
	width: 100%;
	max-width: none;
	margin: 0;
	padding: 0;
}

/* Full-bleed safety fallback when the shortcode sits inside another constrained block. */
body.ml-v2 .ml-home {
	position: relative;
	left: 50%;
	width: 100vw;
	max-width: none;
	margin-right: -50vw;
	margin-left: -50vw;
	overflow: clip;
}

@supports (width: 100dvw) {
	body.ml-v2 .ml-home {
		width: 100dvw;
		margin-right: -50dvw;
		margin-left: -50dvw;
	}
}

body.ml-v2 .ml-home > section {
	width: 100%;
	max-width: none;
}

/* Wider internal content area while retaining elegant responsive side spacing. */
body.ml-v2 .ml-home .ml-shell {
	width: min(calc(100% - clamp(32px, 6vw, 120px)), 1480px);
	max-width: none;
}

/* Strong, explicit contrast for the dark standards section. */
body.ml-v2 .ml-section--dark,
body.ml-v2 .ml-section--dark h2,
body.ml-v2 .ml-section--dark h3,
body.ml-v2 .ml-section--dark .ml-standard-copy h2,
body.ml-v2 .ml-section--dark .ml-standard-card h3 {
	color: #ffffff !important;
}

body.ml-v2 .ml-section--dark .ml-standard-copy > p {
	color: rgba(255, 255, 255, .88) !important;
}

body.ml-v2 .ml-section--dark .ml-eyebrow,
body.ml-v2 .ml-section--dark .ml-standard-card > span {
	color: rgba(255, 255, 255, .78) !important;
}

body.ml-v2 .ml-section--dark .ml-standard-card {
	border-color: rgba(255, 255, 255, .24);
	background: rgba(255, 255, 255, .13);
}

body.ml-v2 .ml-section--dark .ml-standard-card p {
	color: rgba(255, 255, 255, .84) !important;
}

/* Strong, explicit contrast for the final call-to-action card. */
body.ml-v2 .ml-cta-card,
body.ml-v2 .ml-cta-card h2,
body.ml-v2 .ml-cta-card .ml-eyebrow {
	color: #ffffff !important;
}

body.ml-v2 .ml-cta-card p {
	color: rgba(255, 255, 255, .90) !important;
}

body.ml-v2 .ml-cta-card .ml-button--light,
body.ml-v2 .ml-section--dark .ml-button--light {
	border-color: #ffffff !important;
	background: #ffffff !important;
	color: var(--ml-deep-2) !important;
}

@media (max-width: 849px) {
	body.ml-v2 .ml-home .ml-shell {
		width: min(calc(100% - 32px), 1480px);
	}
}

@media (max-width: 549px) {
	body.ml-v2 .ml-home .ml-shell {
		width: min(calc(100% - 24px), 1480px);
	}
}

/* ==========================================================
 * MAPLE LABS V2.0.6 — HEADER + PROMOTIONAL TOP BAR
 * ========================================================== */

/* Full-width header shell with homepage-aligned inner content. */
body.ml-v2 #header,
body.ml-v2 .header-wrapper {
	width: 100%;
	max-width: none;
}

body.ml-v2 #header .header-top {
	min-height: 30px;
	border: 0;
	background:
		linear-gradient(90deg, #0b4b6a 0%, #0f6f8a 52%, #0b4b6a 100%);
	box-shadow: none;
}

body.ml-v2 #header .header-top .flex-row,
body.ml-v2 #header .header-main .header-inner {
	width: min(calc(100% - clamp(32px, 6vw, 120px)), 1480px);
	max-width: 1480px !important;
	margin-right: auto;
	margin-left: auto;
	padding-right: 0;
	padding-left: 0;
}

body.ml-v2 #header .header-top,
body.ml-v2 #header .header-top a,
body.ml-v2 #header .header-top p,
body.ml-v2 #header .header-top span,
body.ml-v2 #header .header-top .nav > li > a {
	color: #ffffff !important;
	font-size: 10px;
	font-weight: 800;
	line-height: 1.2;
	letter-spacing: .065em;
	text-transform: uppercase;
}

body.ml-v2 #header .header-top .nav {
	min-height: 30px;
	align-items: center;
}

body.ml-v2 #header .header-top .nav > li {
	margin: 0;
}

/* Main navigation bar. */
body.ml-v2 #header .header-main {
	min-height: 78px;
	border-bottom: 1px solid rgba(11, 75, 106, .10);
	background: rgba(255, 255, 255, .98);
	box-shadow: 0 8px 28px rgba(7, 56, 79, .055);
}

body.ml-v2 #header .header-main .header-inner {
	min-height: 78px;
}

body.ml-v2 #header .header-main .flex-left,
body.ml-v2 #header .header-main .flex-right,
body.ml-v2 #header .header-main .nav {
	align-items: center;
}

body.ml-v2 #header .logo {
	margin-right: clamp(18px, 2.2vw, 34px);
}

body.ml-v2 #header .logo a {
	display: inline-flex;
	align-items: center;
}

body.ml-v2 #header .logo img {
	width: auto;
	max-height: 46px;
	object-fit: contain;
	transition: transform .2s ease;
}

body.ml-v2 #header .logo a:hover img {
	transform: translateY(-1px);
}

/* Primary navigation. */
body.ml-v2 #header .header-nav-main.nav > li {
	margin: 0 2px;
}

body.ml-v2 #header .header-nav-main.nav > li > a {
	min-height: 42px;
	padding: 0 11px;
	border-radius: 999px;
	color: var(--ml-ink);
	font-size: 12px;
	font-weight: 800;
	line-height: 1;
	letter-spacing: .018em;
	transition:
		color .18s ease,
		background-color .18s ease,
		transform .18s ease;
}

body.ml-v2 #header .header-nav-main.nav > li > a:hover,
body.ml-v2 #header .header-nav-main.nav > li.active > a,
body.ml-v2 #header .header-nav-main.nav > li.current-menu-item > a,
body.ml-v2 #header .header-nav-main.nav > li.current-menu-ancestor > a {
	color: var(--ml-deep);
	background: rgba(15, 111, 138, .075);
	transform: translateY(-1px);
}

body.ml-v2 #header .header-nav-main.nav > li > a::after {
	bottom: 3px;
	height: 2px;
	background: linear-gradient(90deg, var(--ml-lime), var(--ml-mid));
}

body.ml-v2 #header .header-nav-main.nav > li:hover > a::after,
body.ml-v2 #header .header-nav-main.nav > li.active > a::after,
body.ml-v2 #header .header-nav-main.nav > li.current-menu-item > a::after,
body.ml-v2 #header .header-nav-main.nav > li.current-menu-ancestor > a::after {
	width: calc(100% - 24px);
}

/* Search, account, and cart controls. */
body.ml-v2 #header .header-divider {
	display: none;
}

body.ml-v2 #header .header-search > a,
body.ml-v2 #header .account-item > a,
body.ml-v2 #header .cart-item > a {
	min-height: 42px;
	border: 1px solid transparent;
	border-radius: 999px;
	color: var(--ml-ink) !important;
	background: transparent;
	transition:
		border-color .18s ease,
		background-color .18s ease,
		box-shadow .18s ease,
		transform .18s ease;
}

body.ml-v2 #header .header-search > a {
	display: grid;
	width: 42px;
	min-width: 42px;
	padding: 0;
	place-items: center;
	background: #f1f7f9;
}

body.ml-v2 #header .account-item > a,
body.ml-v2 #header .cart-item > a {
	padding: 0 13px;
}

body.ml-v2 #header .header-search > a:hover,
body.ml-v2 #header .account-item > a:hover,
body.ml-v2 #header .cart-item > a:hover {
	border-color: rgba(15, 111, 138, .18);
	background: #edf6f8;
	box-shadow: 0 8px 20px rgba(11, 75, 106, .08);
	transform: translateY(-1px);
}

body.ml-v2 #header .header-search i,
body.ml-v2 #header .account-item i,
body.ml-v2 #header .cart-item i {
	color: var(--ml-deep);
}

body.ml-v2 #header .cart-icon {
	border-color: var(--ml-deep);
	color: var(--ml-deep);
}

body.ml-v2 #header .cart-icon strong {
	color: var(--ml-deep);
}

body.ml-v2 #header .cart-item .cart-price,
body.ml-v2 #header .account-item .nav-top-link {
	font-weight: 800;
}

/* Dropdown styling. */
body.ml-v2 #header .nav-dropdown {
	min-width: 230px;
	padding: 12px;
	border: 1px solid rgba(11, 75, 106, .11);
	border-radius: 18px;
	background: rgba(255, 255, 255, .98);
	box-shadow: 0 22px 55px rgba(7, 56, 79, .15);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
}

body.ml-v2 #header .nav-dropdown > li > a {
	min-height: 40px;
	padding: 10px 12px;
	border-radius: 10px;
	color: var(--ml-ink);
	font-size: 13px;
	font-weight: 700;
}

body.ml-v2 #header .nav-dropdown > li > a:hover {
	color: var(--ml-deep);
	background: var(--ml-ice);
}

/* Sticky state. */
body.ml-v2 .header-wrapper.stuck,
body.ml-v2 .header-wrapper.is-sticky {
	border-bottom: 1px solid rgba(11, 75, 106, .09);
	background: rgba(255, 255, 255, .91);
	box-shadow: 0 14px 38px rgba(7, 56, 79, .10);
	backdrop-filter: blur(18px);
	-webkit-backdrop-filter: blur(18px);
}

body.ml-v2 .header-wrapper.stuck .header-main,
body.ml-v2 .header-wrapper.is-sticky .header-main {
	min-height: 68px;
	background: transparent;
	box-shadow: none;
}

body.ml-v2 .header-wrapper.stuck .header-main .header-inner,
body.ml-v2 .header-wrapper.is-sticky .header-main .header-inner {
	min-height: 68px;
}

/* Tablet and mobile header. */
@media (max-width: 849px) {
	body.ml-v2 #header .header-top {
		min-height: 28px;
	}

	body.ml-v2 #header .header-top .flex-row,
	body.ml-v2 #header .header-main .header-inner {
		width: calc(100% - 28px);
		max-width: none !important;
	}

	body.ml-v2 #header .header-top,
	body.ml-v2 #header .header-top a,
	body.ml-v2 #header .header-top p,
	body.ml-v2 #header .header-top span,
	body.ml-v2 #header .header-top .nav > li > a {
		font-size: 9px;
		letter-spacing: .045em;
		white-space: nowrap;
	}

	body.ml-v2 #header .header-main,
	body.ml-v2 #header .header-main .header-inner {
		min-height: 66px;
	}

	body.ml-v2 #header .logo {
		margin: 0 auto;
	}

	body.ml-v2 #header .logo img {
		max-height: 38px;
	}

	body.ml-v2 #header .mobile-nav > li,
	body.ml-v2 #header .header-main .nav-left > li,
	body.ml-v2 #header .header-main .nav-right > li {
		margin: 0 2px;
	}

	body.ml-v2 #header .mobile-nav > li > a,
	body.ml-v2 #header .header-main .nav-left > li > a,
	body.ml-v2 #header .header-main .nav-right > li > a {
		min-width: 42px;
		min-height: 42px;
		padding: 0 8px;
		border-radius: 999px;
	}

	body.ml-v2 #header .mobile-nav .icon-menu,
	body.ml-v2 #header .mobile-nav .icon-search,
	body.ml-v2 #header .mobile-nav .icon-user,
	body.ml-v2 #header .mobile-nav .icon-shopping-cart {
		color: var(--ml-deep);
	}

	body.ml-v2 #header .cart-item > a {
		padding-right: 8px;
		padding-left: 8px;
	}

	body.ml-v2 #header .cart-item .cart-price,
	body.ml-v2 #header .account-item .nav-top-link {
		font-size: 11px;
	}
}

@media (max-width: 549px) {
	body.ml-v2 #header .header-top .flex-row,
	body.ml-v2 #header .header-main .header-inner {
		width: calc(100% - 20px);
	}

	body.ml-v2 #header .header-top,
	body.ml-v2 #header .header-top a,
	body.ml-v2 #header .header-top p,
	body.ml-v2 #header .header-top span,
	body.ml-v2 #header .header-top .nav > li > a {
		font-size: 8.5px;
	}

	body.ml-v2 #header .header-main,
	body.ml-v2 #header .header-main .header-inner {
		min-height: 62px;
	}

	body.ml-v2 #header .logo img {
		max-height: 34px;
	}

	body.ml-v2 #header .mobile-nav > li > a,
	body.ml-v2 #header .header-main .nav-left > li > a,
	body.ml-v2 #header .header-main .nav-right > li > a {
		min-width: 38px;
		min-height: 38px;
		padding: 0 6px;
	}

	body.ml-v2 #header .account-item .nav-top-link,
	body.ml-v2 #header .cart-item .cart-price {
		display: none;
	}
}

