/*
 * MedFast audited professional interface.
 * Structural refinement layered over the initial theme.
 */

:root {
	--mfx-navy: #061b2d;
	--mfx-navy-soft: #0d3048;
	--mfx-ink: #102634;
	--mfx-teal: #0ca79d;
	--mfx-teal-dark: #087970;
	--mfx-mint: #ddf5f1;
	--mfx-cloud: #f1f6f7;
	--mfx-paper: #fbfcfc;
	--mfx-line: #d9e5e7;
	--mfx-muted: #60737e;
	--mfx-white: #fff;
	--mfx-shadow: 0 24px 70px rgba(6, 27, 45, .11);
}

.mfx-shell {
	width: min(1240px, calc(100% - 48px));
	margin-inline: auto;
}

.mfx-status-dot {
	display: inline-block;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: #3bd2a2;
	box-shadow: 0 0 0 5px rgba(59, 210, 162, .12);
}

/* Header */
.mfx-topbar {
	position: relative;
	z-index: 9991;
	background: var(--mfx-navy);
	color: rgba(255,255,255,.68);
	font-size: 10px;
	letter-spacing: .025em;
}

.mfx-topbar__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 34px;
}

.mfx-topbar p,
.mfx-topbar div {
	display: flex;
	align-items: center;
	gap: 18px;
	margin: 0;
}

.mfx-topbar p {
	gap: 11px;
}

.mfx-topbar a {
	color: var(--mfx-white);
	font-weight: 700;
}

.mfx-header {
	position: sticky;
	top: 0;
	z-index: 9990;
	background: rgba(255,255,255,.97);
	border-bottom: 1px solid var(--mfx-line);
	box-shadow: 0 5px 24px rgba(6,27,45,.04);
	backdrop-filter: blur(18px) saturate(1.2);
	-webkit-backdrop-filter: blur(18px) saturate(1.2);
	transition: box-shadow .25s ease, background .25s ease;
}

.admin-bar .mfx-header {
	top: 32px;
}

.mfx-scrolled .mfx-header {
	background: rgba(255,255,255,.92);
	box-shadow: 0 12px 36px rgba(6,27,45,.1);
}

.mfx-header__main {
	display: grid;
	grid-template-columns: 236px minmax(280px, 1fr) auto;
	align-items: center;
	gap: 36px;
	min-height: 78px;
}

.mfx-brand {
	display: inline-flex;
	align-items: center;
	gap: 11px;
	width: fit-content;
	color: var(--mfx-navy);
}

.mfx-brand:hover {
	color: var(--mfx-navy);
}

.mfx-brand__mark {
	display: grid;
	place-items: center;
	width: 38px;
	height: 38px;
	border-radius: 12px 5px 12px 5px;
	background: var(--mfx-teal);
	color: var(--mfx-white);
	box-shadow: 0 10px 25px rgba(12,167,157,.23);
}

.mfx-brand__mark svg {
	width: 25px;
}

.mfx-brand__text {
	display: flex;
	flex-direction: column;
}

.mfx-brand__text strong {
	font-size: 25px;
	line-height: 1;
	font-weight: 800;
	letter-spacing: -.055em;
}

.mfx-brand__text small {
	margin-top: 4px;
	color: var(--mfx-muted);
	font-size: 8px;
	font-weight: 800;
	letter-spacing: .16em;
	text-transform: uppercase;
}

.mfx-header-search {
	display: grid;
	grid-template-columns: 22px 1fr auto;
	align-items: center;
	gap: 10px;
	height: 46px;
	margin: 0;
	padding: 0 5px 0 15px;
	border: 1px solid var(--mfx-line);
	border-radius: 13px;
	background: var(--mfx-cloud);
	transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.mfx-header-search:focus-within {
	border-color: rgba(12,167,157,.55);
	background: var(--mfx-white);
	box-shadow: 0 0 0 5px rgba(12,167,157,.07);
}

.mfx-header-search > svg {
	width: 20px;
	color: var(--mfx-teal-dark);
}

.mfx-header-search input[type="search"] {
	min-width: 0;
	min-height: 0;
	height: 42px;
	padding: 0;
	border: 0;
	background: transparent;
	box-shadow: none;
	font-size: 12px;
}

.mfx-header-search button {
	height: 36px;
	padding: 0 15px;
	border-radius: 9px;
	background: var(--mfx-navy);
	font-size: 9px;
	letter-spacing: .03em;
}

.mfx-header__actions {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 9px;
}

.mfx-icon-link {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 2px;
	min-width: 54px;
	color: var(--mfx-navy);
	font-size: 8px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .05em;
}

.mfx-icon-link svg {
	width: 22px;
}

.mfx-cart-pill {
	position: relative;
	display: grid;
	grid-template-columns: 23px auto 20px;
	align-items: center;
	gap: 9px;
	min-width: 142px;
	min-height: 46px;
	padding: 6px 10px 6px 13px;
	border: 1px solid var(--mfx-line);
	border-radius: 13px;
	background: var(--mfx-white);
	color: var(--mfx-navy);
}

.mfx-cart-pill:hover {
	border-color: rgba(12,167,157,.45);
	color: var(--mfx-navy);
}

.mfx-cart-pill > svg {
	width: 22px;
	color: var(--mfx-teal-dark);
}

.mfx-cart-pill__copy {
	display: flex;
	flex-direction: column;
	line-height: 1.1;
}

.mfx-cart-pill__copy small {
	color: var(--mfx-muted);
	font-size: 8px;
	text-transform: uppercase;
	letter-spacing: .08em;
}

.mfx-cart-pill__copy strong {
	margin-top: 3px;
	font-size: 11px;
	white-space: nowrap;
}

.mfx-cart-pill > b {
	display: grid;
	place-items: center;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: var(--mfx-mint);
	color: var(--mfx-teal-dark);
	font-size: 9px;
}

.mfx-menu-toggle {
	display: none;
	width: 42px;
	height: 42px;
	padding: 10px;
	border: 1px solid var(--mfx-line);
	border-radius: 11px;
	background: var(--mfx-cloud);
	box-shadow: none;
}

.mfx-menu-toggle i {
	display: block;
	width: 18px;
	height: 2px;
	margin: 3px auto;
	border-radius: 3px;
	background: var(--mfx-navy);
	transition: transform .2s ease, opacity .2s ease;
}

.mfx-menu-toggle[aria-expanded="true"] i:nth-of-type(1) {
	transform: translateY(5px) rotate(45deg);
}

.mfx-menu-toggle[aria-expanded="true"] i:nth-of-type(2) {
	opacity: 0;
}

.mfx-menu-toggle[aria-expanded="true"] i:nth-of-type(3) {
	transform: translateY(-5px) rotate(-45deg);
}

.mfx-nav-row {
	border-top: 1px solid rgba(217,229,231,.8);
	background: rgba(255,255,255,.86);
}

.mfx-nav-row__inner {
	display: flex;
	align-items: center;
	min-height: 47px;
}

.mfx-navigation {
	flex: 0 0 auto;
}

.mfx-main-menu,
.mfx-mobile-menu {
	margin: 0;
	list-style: none;
}

.mfx-main-menu {
	display: flex;
	align-items: center;
	gap: 4px;
}

.mfx-main-menu > li > a {
	display: block;
	padding: 15px 14px;
	color: var(--mfx-ink);
	font-size: 11px;
	font-weight: 800;
}

.mfx-main-menu > li:first-child > a {
	padding-left: 0;
}

.mfx-main-menu > li.current-menu-item > a,
.mfx-main-menu > li > a:hover {
	color: var(--mfx-teal-dark);
}

.mfx-nav-row__links {
	display: flex;
	align-items: center;
	gap: 20px;
	margin-left: 25px;
	padding-left: 25px;
	border-left: 1px solid var(--mfx-line);
}

.mfx-nav-row__links a {
	color: var(--mfx-muted);
	font-size: 10px;
	font-weight: 650;
}

.mfx-nav-row__links a:hover {
	color: var(--mfx-teal-dark);
}

.mfx-quote-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-left: auto;
	padding: 9px 13px;
	border-radius: 9px;
	background: var(--mfx-mint);
	color: var(--mfx-teal-dark);
	font-size: 10px;
	font-weight: 800;
}

.mfx-quote-link:hover {
	background: var(--mfx-teal);
	color: var(--mfx-white);
}

.mfx-quote-link svg {
	width: 16px;
}

.mfx-mobile-panel {
	border-top: 1px solid var(--mfx-line);
	background: var(--mfx-white);
	box-shadow: 0 24px 45px rgba(6,27,45,.12);
}

.mfx-mobile-panel[hidden] {
	display: none;
}

.mfx-mobile-panel__inner {
	width: min(100% - 32px, 580px);
	margin: 0 auto;
	padding: 17px 0 22px;
}

.mfx-mobile-search {
	display: grid;
	grid-template-columns: 1fr 42px;
	margin: 0 0 13px;
}

.mfx-mobile-search input {
	height: 44px;
	min-height: 0;
	border-radius: 11px 0 0 11px;
}

.mfx-mobile-search button {
	padding: 0;
	border-radius: 0 11px 11px 0;
}

.mfx-mobile-menu li {
	border-bottom: 1px solid var(--mfx-line);
}

.mfx-mobile-menu a {
	display: block;
	padding: 13px 2px;
	color: var(--mfx-navy);
	font-size: 13px;
	font-weight: 750;
}

.mfx-mobile-panel__shortcuts {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 8px;
	margin-top: 15px;
}

.mfx-mobile-panel__shortcuts a {
	padding: 12px;
	border-radius: 10px;
	background: var(--mfx-cloud);
	color: var(--mfx-navy);
	font-size: 10px;
	font-weight: 800;
	text-align: center;
}

.storefront-handheld-footer-bar {
	display: none !important;
}

/* Global page reset for custom header */
.home .site-content,
.home .site-content > .col-full,
.mfx-home {
	margin: 0;
	padding: 0;
	max-width: none;
}

.mfx-home {
	width: 100vw;
	margin-left: calc(50% - 50vw);
	overflow: hidden;
}

.mfx-kicker,
.mfx-eyebrow {
	margin: 0 0 13px;
	color: var(--mfx-teal-dark);
	font-size: 10px;
	font-weight: 800;
	letter-spacing: .14em;
	text-transform: uppercase;
}

/* Hero */
.mfx-hero {
	position: relative;
	background:
		radial-gradient(circle at 74% 20%, rgba(12,167,157,.13), transparent 29%),
		linear-gradient(120deg, #f8fbfb 0%, #edf6f6 62%, #e6f0f2 100%);
	border-bottom: 1px solid var(--mfx-line);
}

.mfx-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	opacity: .26;
	pointer-events: none;
	background-image:
		linear-gradient(rgba(6,27,45,.045) 1px, transparent 1px),
		linear-gradient(90deg, rgba(6,27,45,.045) 1px, transparent 1px);
	background-size: 44px 44px;
	mask-image: linear-gradient(90deg, transparent 5%, #000 58%, #000);
}

.mfx-hero__grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 1.02fr .98fr;
	align-items: center;
	gap: 76px;
	min-height: 635px;
	padding: 70px 0 82px;
}

.mfx-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 9px;
}

.mfx-eyebrow span {
	padding: 6px 9px;
	border-radius: 6px;
	background: var(--mfx-navy);
	color: var(--mfx-white);
	font-size: 8px;
	letter-spacing: .09em;
}

.mfx-hero h1 {
	max-width: 660px;
	margin: 0;
	color: var(--mfx-navy);
	font-size: clamp(50px, 5.4vw, 75px);
	line-height: .97;
	letter-spacing: -.048em;
}

.mfx-hero h1 em {
	display: block;
	color: var(--mfx-teal-dark);
	font-weight: 500;
}

.mfx-hero__lead {
	max-width: 600px;
	margin: 25px 0 0;
	color: #516873;
	font-size: 16px;
	line-height: 1.72;
}

.mfx-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 30px;
}

.mfx-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 49px;
	padding: 0 22px;
	border: 1px solid transparent;
	border-radius: 11px;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: .02em;
	transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.mfx-button:hover {
	transform: translateY(-2px);
}

.mfx-button svg {
	width: 18px;
}

.mfx-button--primary {
	background: var(--mfx-navy);
	color: var(--mfx-white);
	box-shadow: 0 14px 28px rgba(6,27,45,.18);
}

.mfx-button--primary:hover {
	background: var(--mfx-navy-soft);
	color: var(--mfx-white);
	box-shadow: 0 18px 34px rgba(6,27,45,.23);
}

.mfx-button--secondary {
	border-color: #b9cccf;
	background: rgba(255,255,255,.62);
	color: var(--mfx-navy);
}

.mfx-button--secondary:hover {
	background: var(--mfx-white);
	color: var(--mfx-navy);
}

.mfx-hero__proof {
	display: flex;
	gap: 27px;
	margin: 37px 0 0;
	padding: 22px 0 0;
	border-top: 1px solid rgba(6,27,45,.12);
	list-style: none;
}

.mfx-hero__proof li {
	display: flex;
	align-items: flex-start;
	gap: 7px;
}

.mfx-hero__proof svg {
	width: 16px;
	flex: 0 0 auto;
	color: var(--mfx-teal-dark);
}

.mfx-hero__proof span {
	display: flex;
	flex-direction: column;
	color: var(--mfx-muted);
	font-size: 9px;
	line-height: 1.4;
}

.mfx-hero__proof strong {
	color: var(--mfx-navy);
	font-size: 10px;
}

.mfx-showcase {
	position: relative;
	min-height: 500px;
	padding: 24px;
	overflow: hidden;
	border: 1px solid rgba(255,255,255,.14);
	border-radius: 25px;
	background:
		radial-gradient(circle at 55% 46%, rgba(12,167,157,.23), transparent 26%),
		linear-gradient(145deg, #09243a, #041521);
	box-shadow: 0 35px 90px rgba(6,27,45,.22);
	color: var(--mfx-white);
}

.mfx-showcase::before {
	content: "";
	position: absolute;
	inset: 0;
	opacity: .18;
	background-image:
		linear-gradient(rgba(255,255,255,.09) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255,255,255,.09) 1px, transparent 1px);
	background-size: 31px 31px;
	mask-image: radial-gradient(circle, #000, transparent 72%);
}

.mfx-showcase__top,
.mfx-showcase__bottom {
	position: relative;
	z-index: 4;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.mfx-showcase__top span {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 9px;
	font-weight: 800;
	letter-spacing: .11em;
	text-transform: uppercase;
}

.mfx-showcase__top i {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #43d3aa;
	box-shadow: 0 0 0 5px rgba(67,211,170,.12);
}

.mfx-showcase__top small {
	color: rgba(255,255,255,.45);
	font-size: 8px;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.mfx-showcase__stage {
	position: relative;
	height: 388px;
}

.mfx-showcase__rings {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 250px;
	height: 250px;
	border: 1px solid rgba(59,210,162,.2);
	border-radius: 50%;
	transform: translate(-50%,-50%);
	box-shadow: 0 0 0 35px rgba(59,210,162,.035), 0 0 0 75px rgba(59,210,162,.02);
}

.mfx-showcase-product {
	position: absolute;
	z-index: 2;
	display: block;
	padding: 11px;
	border: 1px solid rgba(255,255,255,.16);
	border-radius: 16px;
	background: rgba(255,255,255,.94);
	box-shadow: 0 20px 44px rgba(0,0,0,.24);
	transition: transform .25s ease, z-index .25s ease;
}

.mfx-showcase-product:hover {
	z-index: 5;
	transform: translateY(-5px) rotate(0);
}

.mfx-showcase-product--1 {
	top: 54px;
	left: 50%;
	width: 205px;
	transform: translateX(-50%) rotate(-1deg);
}

.mfx-showcase-product--2 {
	left: 5px;
	bottom: 23px;
	width: 155px;
	transform: rotate(-5deg);
}

.mfx-showcase-product--3 {
	right: 2px;
	bottom: 18px;
	width: 158px;
	transform: rotate(5deg);
}

.mfx-showcase-product__image {
	display: grid;
	place-items: center;
	aspect-ratio: 1;
	border-radius: 11px;
	background: var(--mfx-cloud);
	overflow: hidden;
}

.mfx-showcase-product__image img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	mix-blend-mode: multiply;
}

.mfx-showcase-product__meta {
	display: flex;
	flex-direction: column;
	gap: 3px;
	margin-top: 8px;
}

.mfx-showcase-product__meta small {
	color: var(--mfx-teal-dark);
	font-size: 7px;
	font-weight: 800;
	letter-spacing: .08em;
}

.mfx-showcase-product__meta strong {
	color: var(--mfx-navy);
	font-size: 9px;
	line-height: 1.3;
}

.mfx-showcase__bottom {
	padding-top: 13px;
	border-top: 1px solid rgba(255,255,255,.12);
}

.mfx-showcase__bottom span {
	color: rgba(255,255,255,.45);
	font-size: 8px;
	letter-spacing: .11em;
	text-transform: uppercase;
}

/* Finder */
.mfx-finder {
	position: relative;
	z-index: 3;
	margin-top: -35px;
}

.mfx-finder__inner {
	display: grid;
	grid-template-columns: 210px 1fr auto;
	align-items: center;
	gap: 24px;
	min-height: 78px;
	padding: 13px 16px 13px 20px;
	border: 1px solid var(--mfx-line);
	border-radius: 16px;
	background: rgba(255,255,255,.95);
	box-shadow: var(--mfx-shadow);
	backdrop-filter: blur(15px);
}

.mfx-finder__label {
	display: flex;
	align-items: center;
	gap: 11px;
}

.mfx-finder__label > svg {
	width: 26px;
	color: var(--mfx-teal-dark);
}

.mfx-finder__label span {
	display: flex;
	flex-direction: column;
}

.mfx-finder__label strong {
	color: var(--mfx-navy);
	font-size: 11px;
}

.mfx-finder__label small {
	color: var(--mfx-muted);
	font-size: 8px;
}

.mfx-finder form {
	display: grid;
	grid-template-columns: 1fr auto;
	margin: 0;
}

.mfx-finder input[type="search"] {
	height: 46px;
	min-height: 0;
	border-radius: 11px 0 0 11px;
	background: var(--mfx-cloud);
}

.mfx-finder button {
	border-radius: 0 11px 11px 0;
	font-size: 9px;
}

.mfx-finder__inner > a {
	color: var(--mfx-navy);
	font-size: 9px;
	font-weight: 800;
	white-space: nowrap;
}

.mfx-finder__inner > a span {
	margin-left: 6px;
	color: var(--mfx-teal-dark);
}

/* Content sections */
.mfx-section {
	padding: 100px 0;
}

.mfx-section-head {
	display: grid;
	grid-template-columns: 1.15fr .85fr;
	align-items: end;
	gap: 75px;
	margin-bottom: 40px;
}

.mfx-section-head h2,
.mfx-approach h2,
.mfx-final-cta h2 {
	margin: 0;
	color: var(--mfx-navy);
	font-size: clamp(36px,4vw,53px);
	line-height: 1.05;
	letter-spacing: -.035em;
}

.mfx-section-head > p {
	margin: 0 0 4px;
	color: var(--mfx-muted);
	font-size: 13px;
	line-height: 1.7;
}

.mfx-universe-grid {
	display: grid;
	grid-template-columns: repeat(3,1fr);
	gap: 16px;
}

.mfx-universe {
	position: relative;
	display: flex;
	flex-direction: column;
	min-height: 355px;
	padding: 27px;
	overflow: hidden;
	border: 1px solid var(--mfx-line);
	border-radius: 18px;
	background: var(--mfx-white);
	box-shadow: 0 13px 34px rgba(6,27,45,.045);
	transition: transform .25s ease, box-shadow .25s ease;
}

.mfx-universe::after {
	content: "";
	position: absolute;
	right: -65px;
	bottom: -75px;
	width: 220px;
	height: 220px;
	border-radius: 50%;
	background: var(--mfx-mint);
	opacity: .62;
	transition: transform .3s ease;
}

.mfx-universe:hover {
	transform: translateY(-6px);
	box-shadow: var(--mfx-shadow);
	color: var(--mfx-navy);
}

.mfx-universe:hover::after {
	transform: scale(1.2);
}

.mfx-universe__top {
	position: relative;
	z-index: 2;
	display: flex;
	justify-content: space-between;
	color: var(--mfx-muted);
	font-size: 8px;
	font-weight: 800;
	letter-spacing: .1em;
	text-transform: uppercase;
}

.mfx-universe__icon {
	position: relative;
	z-index: 2;
	display: grid;
	place-items: center;
	width: 102px;
	height: 102px;
	margin: 40px auto 28px;
	border-radius: 50%;
	background: var(--mfx-cloud);
	color: var(--mfx-teal-dark);
}

.mfx-universe__icon svg {
	width: 61px;
}

.mfx-universe h3 {
	position: relative;
	z-index: 2;
	margin: 0;
	font-size: 25px;
}

.mfx-universe p {
	position: relative;
	z-index: 2;
	margin: 5px 0 0;
	color: var(--mfx-muted);
	font-size: 10px;
}

.mfx-universe b {
	position: relative;
	z-index: 2;
	margin-top: auto;
	color: var(--mfx-navy);
	font-size: 9px;
	text-transform: uppercase;
	letter-spacing: .07em;
}

.mfx-universe b span {
	margin-left: 6px;
	color: var(--mfx-teal-dark);
}

.mfx-universe--diagnostic .mfx-universe__icon {
	background: #eaf2fb;
	color: #3675a8;
}

.mfx-universe--diagnostic::after {
	background: #e4edf8;
}

.mfx-universe--supplies .mfx-universe__icon {
	background: #f8f0e5;
	color: #a86c22;
}

.mfx-universe--supplies::after {
	background: #f4e8d7;
}

/* Curated products */
.mfx-curated {
	background: var(--mfx-cloud);
	border-block: 1px solid var(--mfx-line);
}

.mfx-section-head--products {
	display: flex;
	justify-content: space-between;
	align-items: end;
}

.mfx-section-head--products > a {
	padding-bottom: 4px;
	border-bottom: 1px solid var(--mfx-navy);
	color: var(--mfx-navy);
	font-size: 10px;
	font-weight: 800;
}

.mfx-product-grid {
	display: grid;
	grid-template-columns: repeat(3,1fr);
	gap: 16px;
}

.mfx-product-card {
	overflow: hidden;
	border: 1px solid var(--mfx-line);
	border-radius: 16px;
	background: var(--mfx-white);
	transition: transform .25s ease, box-shadow .25s ease;
}

.mfx-product-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--mfx-shadow);
}

.mfx-product-card__visual {
	position: relative;
	display: grid;
	place-items: center;
	aspect-ratio: 1.35;
	padding: 22px;
	overflow: hidden;
	border-bottom: 1px solid var(--mfx-line);
	background: linear-gradient(140deg,#fff,#edf6f5);
}

.mfx-product-card__visual img {
	width: 74%;
	height: 74%;
	object-fit: contain;
	mix-blend-mode: multiply;
	transition: transform .3s ease;
}

.mfx-product-card:hover .mfx-product-card__visual img {
	transform: scale(1.045);
}

.mfx-product-card__sku {
	position: absolute;
	top: 14px;
	left: 14px;
	padding: 5px 7px;
	border-radius: 6px;
	background: var(--mfx-navy);
	color: var(--mfx-white);
	font-size: 7px;
	font-weight: 800;
	letter-spacing: .08em;
}

.mfx-product-card__view {
	position: absolute;
	right: 13px;
	bottom: 12px;
	padding: 7px 9px;
	border-radius: 7px;
	background: rgba(255,255,255,.9);
	color: var(--mfx-navy);
	font-size: 8px;
	font-weight: 800;
	opacity: 0;
	transform: translateY(5px);
	transition: opacity .2s ease, transform .2s ease;
}

.mfx-product-card:hover .mfx-product-card__view {
	opacity: 1;
	transform: translateY(0);
}

.mfx-product-card__body {
	padding: 19px;
}

.mfx-product-card__body > p {
	margin: 0 0 5px;
	color: var(--mfx-teal-dark);
	font-size: 8px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .08em;
}

.mfx-product-card__body > p a {
	color: inherit;
}

.mfx-product-card h3 {
	min-height: 44px;
	margin: 0;
	font-family: "Manrope",sans-serif;
	font-size: 14px;
	line-height: 1.45;
	letter-spacing: -.015em;
}

.mfx-product-card h3 a {
	color: var(--mfx-navy);
	font-weight: 750;
}

.mfx-product-card__body > div {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	margin-top: 15px;
	padding-top: 13px;
	border-top: 1px solid var(--mfx-line);
}

.mfx-product-card__body > div strong {
	color: var(--mfx-navy);
	font-size: 16px;
}

.mfx-product-card__body > div small {
	color: var(--mfx-muted);
	font-size: 8px;
}

/* Approach */
.mfx-approach {
	padding: 105px 0;
	background:
		radial-gradient(circle at 14% 8%,rgba(12,167,157,.2),transparent 25%),
		var(--mfx-navy);
	color: rgba(255,255,255,.65);
}

.mfx-approach__grid {
	display: grid;
	grid-template-columns: .9fr 1.1fr;
	align-items: center;
	gap: 100px;
}

.mfx-approach .mfx-kicker {
	color: #55d2c5;
}

.mfx-approach h2 {
	color: var(--mfx-white);
}

.mfx-approach__copy > p:not(.mfx-kicker) {
	max-width: 560px;
	margin: 23px 0 30px;
	font-size: 13px;
	line-height: 1.8;
}

.mfx-button--light {
	background: rgba(255,255,255,.08);
	border-color: rgba(255,255,255,.2);
	color: var(--mfx-white);
}

.mfx-button--light:hover {
	background: var(--mfx-white);
	color: var(--mfx-navy);
}

.mfx-approach__points {
	border-top: 1px solid rgba(255,255,255,.13);
}

.mfx-approach__points > div {
	display: grid;
	grid-template-columns: 38px .75fr 1.25fr;
	align-items: center;
	gap: 20px;
	padding: 23px 0;
	border-bottom: 1px solid rgba(255,255,255,.13);
}

.mfx-approach__points span {
	color: #55d2c5;
	font-size: 8px;
	font-weight: 800;
	letter-spacing: .12em;
}

.mfx-approach__points h3 {
	margin: 0;
	color: var(--mfx-white);
	font-family: "Manrope",sans-serif;
	font-size: 13px;
	letter-spacing: 0;
}

.mfx-approach__points p {
	margin: 0;
	color: rgba(255,255,255,.5);
	font-size: 10px;
	line-height: 1.55;
}

/* Steps and CTA */
.mfx-steps {
	padding: 100px 0;
	background: var(--mfx-white);
}

.mfx-step-grid {
	display: grid;
	grid-template-columns: repeat(3,1fr);
	border: 1px solid var(--mfx-line);
	border-radius: 18px;
	overflow: hidden;
}

.mfx-step-grid > a {
	position: relative;
	min-height: 235px;
	padding: 26px;
	border-right: 1px solid var(--mfx-line);
	color: var(--mfx-navy);
	transition: background .2s ease;
}

.mfx-step-grid > a:last-child {
	border-right: 0;
}

.mfx-step-grid > a:hover {
	background: var(--mfx-cloud);
}

.mfx-step-grid > a > span {
	position: absolute;
	top: 23px;
	right: 24px;
	color: #9aabb2;
	font-size: 8px;
	font-weight: 800;
	letter-spacing: .12em;
}

.mfx-step-grid svg {
	width: 37px;
	color: var(--mfx-teal-dark);
}

.mfx-step-grid h3 {
	margin: 38px 0 7px;
	font-size: 25px;
}

.mfx-step-grid p {
	max-width: 270px;
	margin: 0;
	color: var(--mfx-muted);
	font-size: 10px;
	line-height: 1.65;
}

.mfx-final-cta {
	padding: 73px 0;
	background:
		radial-gradient(circle at 78% 30%,rgba(12,167,157,.32),transparent 27%),
		var(--mfx-navy);
}

.mfx-final-cta__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 50px;
}

.mfx-final-cta .mfx-kicker {
	color: #55d2c5;
}

.mfx-final-cta h2 {
	max-width: 790px;
	color: var(--mfx-white);
}

.mfx-button--white {
	flex: 0 0 auto;
	background: var(--mfx-white);
	color: var(--mfx-navy);
}

.mfx-button--white:hover {
	background: var(--mfx-mint);
	color: var(--mfx-navy);
}

/* Catalogue audit improvements */
.woocommerce-products-header .page-description {
	display: none;
}

.mfx-shop-tools {
	margin: 0 0 30px;
	padding: 22px;
	border: 1px solid var(--mfx-line);
	border-radius: 17px;
	background:
		radial-gradient(circle at 100% 0,rgba(12,167,157,.1),transparent 28%),
		var(--mfx-white);
	box-shadow: 0 13px 36px rgba(6,27,45,.05);
}

.mfx-shop-tools__intro {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 16px;
}

.mfx-shop-tools__intro > div {
	display: flex;
	align-items: center;
	gap: 10px;
	color: var(--mfx-navy);
	font-size: 11px;
}

.mfx-shop-tools__intro p {
	margin: 0;
	color: var(--mfx-muted);
	font-size: 10px;
}

.mfx-shop-tools form {
	display: grid;
	grid-template-columns: 22px 1fr auto;
	align-items: center;
	gap: 10px;
	margin: 0;
	padding: 5px 5px 5px 14px;
	border: 1px solid var(--mfx-line);
	border-radius: 12px;
	background: var(--mfx-cloud);
}

.mfx-shop-tools form > svg {
	width: 20px;
	color: var(--mfx-teal-dark);
}

.mfx-shop-tools input[type="search"] {
	min-height: 0;
	height: 42px;
	padding: 0;
	border: 0;
	background: transparent;
	box-shadow: none;
	font-size: 12px;
}

.mfx-shop-tools button {
	height: 38px;
	padding: 0 15px;
	border-radius: 9px;
	font-size: 9px;
}

.mfx-shop-tools__terms {
	display: flex;
	gap: 8px;
	margin-top: 14px;
}

.mfx-shop-tools__terms a {
	display: flex;
	align-items: center;
	gap: 9px;
	padding: 8px 10px;
	border: 1px solid var(--mfx-line);
	border-radius: 9px;
	background: var(--mfx-white);
	color: var(--mfx-navy);
	font-size: 9px;
	font-weight: 750;
}

.mfx-shop-tools__terms a:hover {
	border-color: rgba(12,167,157,.4);
	background: var(--mfx-mint);
}

.mfx-shop-tools__terms small {
	display: grid;
	place-items: center;
	min-width: 18px;
	height: 18px;
	border-radius: 50%;
	background: var(--mfx-cloud);
	color: var(--mfx-teal-dark);
	font-size: 8px;
}

.mfx-loop-meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	margin: 0 0 7px;
}

.mfx-loop-meta span,
.mfx-loop-meta span a {
	color: var(--mfx-teal-dark);
	font-size: 8px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .06em;
}

.mfx-loop-meta small {
	color: #95a5ac;
	font-size: 8px;
	font-weight: 750;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title,
ul.products li.product .woocommerce-loop-product__title {
	min-height: 42px;
}

/* Product page audit improvements */
.mfx-product-kicker {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 13px;
	padding-bottom: 12px;
	border-bottom: 1px solid var(--mfx-line);
}

.mfx-product-kicker span,
.mfx-product-kicker span a {
	color: var(--mfx-teal-dark);
	font-size: 9px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .07em;
}

.mfx-product-kicker small {
	color: var(--mfx-muted);
	font-size: 9px;
	font-weight: 750;
}

.mfx-product-support {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 8px;
	margin: 21px 0;
}

.mfx-product-support > div {
	display: grid;
	grid-template-columns: 27px 1fr;
	align-items: start;
	gap: 9px;
	padding: 12px;
	border: 1px solid var(--mfx-line);
	border-radius: 10px;
	background: var(--mfx-cloud);
}

.mfx-product-support svg {
	width: 23px;
	color: var(--mfx-teal-dark);
}

.mfx-product-support span {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.mfx-product-support strong {
	color: var(--mfx-navy);
	font-size: 9px;
}

.mfx-product-support small {
	color: var(--mfx-muted);
	font-size: 8px;
	line-height: 1.4;
}

.mfx-product-quote {
	display: flex;
	align-items: center;
	justify-content: space-between;
	clear: both;
	margin-top: 10px;
	padding: 13px 15px;
	border: 1px solid rgba(12,167,157,.35);
	border-radius: 10px;
	background: var(--mfx-mint);
	color: var(--mfx-teal-dark);
	font-size: 10px;
	font-weight: 800;
}

.mfx-product-quote:hover {
	background: var(--mfx-teal);
	color: var(--mfx-white);
}

.single-product .tagged_as {
	display: none !important;
}

.mfx-product-confidence {
	display: grid;
	grid-template-columns: repeat(3,1fr);
	clear: both;
	margin: 35px 0;
	border: 1px solid var(--mfx-line);
	border-radius: 15px;
	overflow: hidden;
}

.mfx-product-confidence > div {
	display: grid;
	grid-template-columns: 28px 1fr;
	gap: 3px 10px;
	padding: 19px;
	border-right: 1px solid var(--mfx-line);
	background: var(--mfx-white);
}

.mfx-product-confidence > div:last-child {
	border-right: 0;
}

.mfx-product-confidence span {
	grid-row: 1 / 3;
	color: var(--mfx-teal-dark);
	font-size: 8px;
	font-weight: 800;
	letter-spacing: .1em;
}

.mfx-product-confidence strong {
	color: var(--mfx-navy);
	font-size: 10px;
}

.mfx-product-confidence small {
	color: var(--mfx-muted);
	font-size: 8px;
	line-height: 1.45;
}

/* Deliberately subtle motion */
.mfx-reveal {
	opacity: 0;
	transform: translateY(14px);
	transition: opacity .55s ease, transform .55s cubic-bezier(.2,.75,.25,1);
}

.mfx-reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}

@media (max-width: 1060px) {
	.mfx-header__main {
		grid-template-columns: 205px minmax(240px,1fr) auto;
		gap: 20px;
	}

	.mfx-icon-link {
		display: none;
	}

	.mfx-nav-row__links {
		gap: 12px;
		margin-left: 14px;
		padding-left: 14px;
	}

	.mfx-hero__grid {
		gap: 35px;
	}

	.mfx-hero__proof {
		gap: 15px;
	}

	.mfx-showcase-product--2 {
		left: -5px;
	}

	.mfx-showcase-product--3 {
		right: -8px;
	}
}

@media (max-width: 820px) {
	.admin-bar .mfx-header {
		top: 46px;
	}

	.mfx-shell {
		width: min(100% - 32px, 680px);
	}

	.mfx-topbar__inner {
		justify-content: center;
	}

	.mfx-topbar__inner > div {
		display: none;
	}

	.mfx-header__main {
		display: flex;
		justify-content: space-between;
		min-height: 66px;
	}

	.mfx-brand__mark {
		width: 34px;
		height: 34px;
	}

	.mfx-brand__text strong {
		font-size: 22px;
	}

	.mfx-header-search,
	.mfx-cart-pill__copy,
	.mfx-nav-row {
		display: none;
	}

	.mfx-header__actions {
		margin-left: auto;
	}

	.mfx-cart-pill {
		display: flex;
		min-width: 44px;
		min-height: 42px;
		padding: 8px 9px;
	}

	.mfx-cart-pill > b {
		position: absolute;
		top: -4px;
		right: -4px;
		background: var(--mfx-teal);
		color: var(--mfx-white);
	}

	.mfx-menu-toggle {
		display: block;
	}

	.mfx-hero__grid {
		grid-template-columns: 1fr;
		min-height: 0;
		padding: 58px 0 70px;
	}

	.mfx-hero h1 {
		font-size: clamp(45px,12vw,66px);
	}

	.mfx-hero__proof {
		justify-content: space-between;
	}

	.mfx-showcase {
		min-height: 450px;
	}

	.mfx-showcase__stage {
		height: 340px;
	}

	.mfx-showcase-product--1 {
		top: 45px;
		width: 180px;
	}

	.mfx-showcase-product--2,
	.mfx-showcase-product--3 {
		width: 145px;
	}

	.mfx-finder {
		margin-top: -25px;
	}

	.mfx-finder__inner {
		grid-template-columns: 1fr;
		gap: 11px;
		padding: 16px;
	}

	.mfx-finder__label {
		display: none;
	}

	.mfx-finder__inner > a {
		text-align: center;
	}

	.mfx-section,
	.mfx-steps {
		padding: 72px 0;
	}

	.mfx-section-head,
	.mfx-section-head--products {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		gap: 16px;
		margin-bottom: 30px;
	}

	.mfx-section-head h2,
	.mfx-approach h2,
	.mfx-final-cta h2 {
		font-size: 39px;
	}

	.mfx-universe-grid {
		grid-template-columns: 1fr;
	}

	.mfx-universe {
		min-height: 295px;
	}

	.mfx-universe__icon {
		width: 85px;
		height: 85px;
		margin: 23px auto;
	}

	.mfx-universe__icon svg {
		width: 51px;
	}

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

	.mfx-approach {
		padding: 75px 0;
	}

	.mfx-approach__grid {
		grid-template-columns: 1fr;
		gap: 45px;
	}

	.mfx-step-grid {
		grid-template-columns: 1fr;
	}

	.mfx-step-grid > a {
		min-height: 190px;
		border-right: 0;
		border-bottom: 1px solid var(--mfx-line);
	}

	.mfx-step-grid > a:last-child {
		border-bottom: 0;
	}

	.mfx-final-cta__inner {
		align-items: flex-start;
		flex-direction: column;
		gap: 28px;
	}

	.mfx-shop-tools__intro {
		align-items: flex-start;
		flex-direction: column;
		gap: 6px;
	}

	.mfx-shop-tools__terms {
		overflow-x: auto;
		padding-bottom: 5px;
	}

	.mfx-shop-tools__terms a {
		flex: 0 0 auto;
	}

	.mfx-product-support {
		grid-template-columns: 1fr;
	}

	.mfx-product-confidence {
		grid-template-columns: 1fr;
	}

	.mfx-product-confidence > div {
		border-right: 0;
		border-bottom: 1px solid var(--mfx-line);
	}

	.mfx-product-confidence > div:last-child {
		border-bottom: 0;
	}
}

@media (max-width: 520px) {
	.mfx-hero__actions {
		flex-direction: column;
	}

	.mfx-button {
		width: 100%;
	}

	.mfx-hero__proof {
		display: grid;
		grid-template-columns: 1fr 1fr;
	}

	.mfx-hero__proof li:last-child {
		grid-column: 1 / -1;
	}

	.mfx-showcase {
		min-height: 395px;
		padding: 17px;
	}

	.mfx-showcase__stage {
		height: 300px;
	}

	.mfx-showcase-product--1 {
		top: 40px;
		width: 160px;
	}

	.mfx-showcase-product--2,
	.mfx-showcase-product--3 {
		width: 120px;
	}

	.mfx-product-grid {
		grid-template-columns: 1fr;
	}

	.mfx-product-card__visual {
		aspect-ratio: 1.45;
	}

	.mfx-approach__points > div {
		grid-template-columns: 30px 1fr;
	}

	.mfx-approach__points p {
		grid-column: 2;
	}

	.mfx-shop-tools form {
		grid-template-columns: 20px 1fr;
	}

	.mfx-shop-tools button {
		grid-column: 1 / -1;
		width: 100%;
	}

	.mfx-mobile-panel__shortcuts {
		grid-template-columns: 1fr;
	}
}

@media (prefers-reduced-motion: reduce) {
	.mfx-reveal {
		opacity: 1;
		transform: none;
		transition: none;
	}
}
