/*
 * MedFast premium interface
 * Draft-only until explicit publication.
 */

:root {
	--mf-navy: #071d2f;
	--mf-navy-2: #0d2c43;
	--mf-ink: #102330;
	--mf-teal: #13a89e;
	--mf-teal-dark: #087d77;
	--mf-mint: #dff5f1;
	--mf-ice: #f2f7f8;
	--mf-paper: #fbfcfc;
	--mf-line: #dbe6e8;
	--mf-muted: #61727d;
	--mf-white: #ffffff;
	--mf-shadow: 0 18px 55px rgba(7, 29, 47, .10);
	--mf-radius: 18px;
}

html {
	scroll-behavior: smooth;
}

body,
button,
input,
select,
textarea {
	font-family: "Manrope", "Avenir Next", "Segoe UI", sans-serif;
}

body {
	background: var(--mf-paper);
	color: var(--mf-ink);
	-webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6,
.alpha,
.beta,
.gamma {
	font-family: "Newsreader", Georgia, serif;
	color: var(--mf-navy);
	letter-spacing: -.025em;
	font-weight: 600;
}

a {
	color: var(--mf-navy);
}

a:focus,
button:focus,
input:focus,
textarea:focus {
	outline: 3px solid rgba(19, 168, 158, .28);
	outline-offset: 2px;
}

.col-full {
	max-width: 1240px;
}

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

.medfast-home + .storefront-sorting {
	display: none;
}

.mf-shell {
	width: min(1180px, calc(100% - 48px));
	margin: 0 auto;
}

.mf-topbar {
	background: var(--mf-navy);
	color: rgba(255, 255, 255, .78);
	font-size: 12px;
	letter-spacing: .02em;
}

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

.mf-topbar__left,
.mf-topbar__right {
	display: flex;
	align-items: center;
	gap: 22px;
}

.mf-topbar a {
	color: var(--mf-white);
}

.mf-topbar svg {
	width: 15px;
	height: 15px;
	vertical-align: -3px;
	margin-right: 6px;
	color: var(--mf-teal);
}

.site-header {
	background: rgba(255, 255, 255, .96) !important;
	color: var(--mf-ink);
	padding: 24px 0 0 !important;
	border-bottom: 1px solid var(--mf-line);
	box-shadow: 0 6px 24px rgba(7, 29, 47, .04);
}

.site-header .site-branding {
	margin-bottom: 21px;
}

.site-branding .site-title,
.site-branding .beta {
	font-family: "Manrope", sans-serif;
	font-size: 30px;
	line-height: 1;
	letter-spacing: -.055em;
}

.site-branding .site-title a {
	display: inline-flex;
	align-items: center;
	font-weight: 800;
	color: var(--mf-navy) !important;
}

.site-branding .site-title a::before {
	content: "+";
	display: inline-grid;
	place-items: center;
	width: 34px;
	height: 34px;
	margin-right: 10px;
	border-radius: 10px 4px 10px 4px;
	background: var(--mf-teal);
	color: var(--mf-white);
	font-size: 25px;
	font-weight: 400;
	letter-spacing: 0;
}

.site-branding .site-description {
	margin: 9px 0 0 45px;
	color: var(--mf-muted) !important;
	font-size: 11px;
	letter-spacing: .02em;
}

.site-search {
	margin-bottom: 20px;
}

.site-search .widget_product_search form {
	position: relative;
}

.site-search .widget_product_search input[type="search"] {
	height: 46px;
	padding: 0 50px 0 17px;
	border: 1px solid var(--mf-line);
	border-radius: 12px;
	background: var(--mf-ice);
	box-shadow: none;
	font-size: 13px;
}

.site-search .widget_product_search button {
	position: absolute;
	top: 0;
	right: 0;
	width: 46px;
	height: 46px;
	padding: 0;
	overflow: hidden;
	color: transparent;
	border-radius: 0 12px 12px 0;
	background: transparent;
}

.site-search .widget_product_search button::before {
	content: "";
	position: absolute;
	left: 14px;
	top: 13px;
	width: 13px;
	height: 13px;
	border: 2px solid var(--mf-navy);
	border-radius: 50%;
}

.site-search .widget_product_search button::after {
	content: "";
	display: block;
	position: absolute;
	width: 7px;
	height: 2px;
	left: 27px;
	top: 28px;
	background: var(--mf-navy);
	transform: rotate(45deg);
}

.storefront-primary-navigation {
	background: var(--mf-white);
	border-top: 1px solid rgba(219, 230, 232, .75);
}

.main-navigation ul.menu > li > a,
.main-navigation ul.nav-menu > li > a {
	padding: 18px 19px;
	font-size: 13px;
	font-weight: 700;
	color: var(--mf-ink);
	letter-spacing: .01em;
}

.main-navigation ul.menu > li:first-child > a,
.main-navigation ul.nav-menu > li:first-child > a {
	padding-left: 0;
}

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

.main-navigation ul.menu > li.current-menu-item > a::after {
	content: "";
	display: block;
	height: 2px;
	margin-top: 5px;
	background: var(--mf-teal);
	border-radius: 2px;
}

.site-header-cart .cart-contents {
	padding: 18px 0;
	color: var(--mf-navy) !important;
	font-size: 13px;
	font-weight: 700;
}

.site-header-cart .cart-contents::after {
	color: var(--mf-teal-dark);
}

.site-header-cart .widget_shopping_cart {
	border: 1px solid var(--mf-line);
	border-top: 3px solid var(--mf-teal);
	box-shadow: var(--mf-shadow);
}

.woocommerce-breadcrumb {
	margin: 0;
	padding: 16px 0;
	color: var(--mf-muted);
	font-size: 12px;
	border-bottom: 1px solid var(--mf-line);
}

.woocommerce-breadcrumb a {
	color: var(--mf-teal-dark);
}

.mf-hero {
	position: relative;
	min-height: 650px;
	background:
		radial-gradient(circle at 78% 25%, rgba(19, 168, 158, .16), transparent 30%),
		linear-gradient(118deg, #f7fbfb 0%, #eef7f6 50%, #e7f1f3 100%);
	border-bottom: 1px solid var(--mf-line);
}

.mf-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	opacity: .28;
	background-image:
		linear-gradient(rgba(7, 29, 47, .045) 1px, transparent 1px),
		linear-gradient(90deg, rgba(7, 29, 47, .045) 1px, transparent 1px);
	background-size: 42px 42px;
	mask-image: linear-gradient(to right, transparent, #000 45%, #000);
}

.mf-hero__grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 1.03fr .97fr;
	align-items: center;
	gap: 64px;
	min-height: 650px;
	padding: 76px 0 72px;
}

.mf-eyebrow,
.mf-kicker {
	margin: 0 0 18px;
	color: var(--mf-teal-dark);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: .15em;
	text-transform: uppercase;
}

.mf-eyebrow {
	display: flex;
	align-items: center;
}

.mf-eyebrow span {
	display: inline-block;
	width: 28px;
	height: 1px;
	margin-right: 10px;
	background: var(--mf-teal);
}

.mf-hero h1 {
	max-width: 690px;
	margin: 0;
	font-size: clamp(48px, 5.1vw, 73px);
	line-height: .98;
}

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

.mf-hero__lead {
	max-width: 610px;
	margin: 28px 0 0;
	color: #526673;
	font-size: 17px;
	line-height: 1.75;
}

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

.mf-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	min-height: 50px;
	padding: 0 24px;
	border: 1px solid transparent;
	border-radius: 12px;
	font-size: 13px;
	font-weight: 800;
	letter-spacing: .015em;
	transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

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

.mf-button svg {
	width: 19px;
}

.mf-button--primary {
	background: var(--mf-navy);
	color: var(--mf-white);
	box-shadow: 0 13px 28px rgba(7, 29, 47, .18);
}

.mf-button--primary:hover {
	background: var(--mf-navy-2);
	color: var(--mf-white);
	box-shadow: 0 17px 34px rgba(7, 29, 47, .23);
}

.mf-button--ghost {
	border-color: #bed0d4;
	background: rgba(255, 255, 255, .55);
	color: var(--mf-navy);
}

.mf-button--ghost:hover {
	background: var(--mf-white);
	color: var(--mf-navy);
}

.mf-hero__meta {
	display: flex;
	gap: 34px;
	margin-top: 46px;
	padding-top: 24px;
	border-top: 1px solid rgba(7, 29, 47, .12);
}

.mf-hero__meta div {
	display: grid;
	grid-template-columns: auto 1fr;
	align-items: center;
	gap: 9px;
}

.mf-hero__meta strong {
	color: var(--mf-navy);
	font-size: 18px;
}

.mf-hero__meta span {
	max-width: 80px;
	color: var(--mf-muted);
	font-size: 10px;
	line-height: 1.3;
	text-transform: uppercase;
	letter-spacing: .06em;
}

.mf-hero__visual {
	position: relative;
	min-height: 488px;
	border: 1px solid rgba(255, 255, 255, .9);
	border-radius: 42% 58% 60% 40% / 43% 38% 62% 57%;
	background: rgba(255, 255, 255, .58);
	box-shadow: inset 0 0 80px rgba(255, 255, 255, .75), 0 35px 90px rgba(7, 29, 47, .08);
}

.mf-visual__halo {
	position: absolute;
	inset: 13%;
	border-radius: 50%;
	border: 1px solid rgba(19, 168, 158, .2);
	box-shadow: 0 0 0 28px rgba(19, 168, 158, .035), 0 0 0 60px rgba(19, 168, 158, .025);
}

.mf-visual__grid {
	position: absolute;
	inset: 0;
	overflow: hidden;
	border-radius: inherit;
	background-image:
		linear-gradient(rgba(7, 29, 47, .05) 1px, transparent 1px),
		linear-gradient(90deg, rgba(7, 29, 47, .05) 1px, transparent 1px);
	background-size: 32px 32px;
	mask-image: radial-gradient(circle, #000, transparent 72%);
}

.mf-visual__label {
	position: absolute;
	z-index: 4;
	top: 30px;
	left: 50%;
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 9px 13px;
	border: 1px solid rgba(19, 168, 158, .18);
	border-radius: 100px;
	background: rgba(255, 255, 255, .85);
	color: var(--mf-navy);
	font-size: 10px;
	font-weight: 800;
	letter-spacing: .08em;
	text-transform: uppercase;
	transform: translateX(-50%);
	box-shadow: 0 8px 22px rgba(7, 29, 47, .06);
	white-space: nowrap;
}

.mf-pulse {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--mf-teal);
	box-shadow: 0 0 0 5px rgba(19, 168, 158, .12);
}

.mf-product-orbit {
	position: absolute;
	z-index: 3;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 14px 14px 11px;
	border: 1px solid rgba(219, 230, 232, .8);
	border-radius: 16px;
	background: rgba(255, 255, 255, .92);
	box-shadow: 0 18px 45px rgba(7, 29, 47, .12);
	transition: transform .25s ease;
}

.mf-product-orbit:hover {
	z-index: 5;
	transform: translateY(-5px) rotate(0deg);
}

.mf-product-orbit--1 {
	top: 110px;
	left: 50%;
	width: 190px;
	transform: translateX(-50%) rotate(-2deg);
}

.mf-product-orbit--2 {
	left: 34px;
	bottom: 72px;
	width: 154px;
	transform: rotate(-6deg);
}

.mf-product-orbit--3 {
	right: 27px;
	bottom: 69px;
	width: 160px;
	transform: rotate(5deg);
}

.mf-product-orbit__image {
	display: grid;
	place-items: center;
	width: 100%;
	aspect-ratio: 1;
	border-radius: 12px;
	background: var(--mf-ice);
	overflow: hidden;
}

.mf-product-orbit__image img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	mix-blend-mode: multiply;
}

.mf-product-orbit__name {
	margin-top: 9px;
	color: var(--mf-navy);
	font-size: 10px;
	font-weight: 750;
	text-align: center;
	line-height: 1.35;
}

.mf-visual__signal {
	position: absolute;
	z-index: 2;
	left: 10%;
	right: 10%;
	top: 48%;
	color: rgba(19, 168, 158, .46);
}

.mf-visual__signal svg {
	width: 100%;
	height: 90px;
}

.mf-trustline {
	background: var(--mf-white);
	border-bottom: 1px solid var(--mf-line);
}

.mf-trustline__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
}

.mf-trustline__grid > div {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 25px 24px;
	border-right: 1px solid var(--mf-line);
}

.mf-trustline__grid > div:first-child {
	padding-left: 0;
}

.mf-trustline__grid > div:last-child {
	border-right: 0;
}

.mf-trustline svg {
	width: 27px;
	color: var(--mf-teal-dark);
	flex: 0 0 auto;
}

.mf-trustline span {
	color: var(--mf-muted);
	font-size: 11px;
}

.mf-trustline strong {
	display: block;
	color: var(--mf-navy);
	font-size: 12px;
}

.mf-section {
	padding: 104px 0;
}

.mf-section__head {
	display: grid;
	grid-template-columns: 1.2fr .8fr;
	align-items: end;
	gap: 70px;
	margin-bottom: 44px;
}

.mf-section__head h2,
.mf-process h2,
.mf-cta h2 {
	margin: 0;
	font-size: clamp(35px, 4vw, 52px);
	line-height: 1.08;
}

.mf-section__head > p {
	margin: 0 0 5px;
	color: var(--mf-muted);
	font-size: 14px;
	line-height: 1.7;
}

.mf-category-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
}

.mf-category-card {
	position: relative;
	display: flex;
	flex-direction: column;
	min-height: 338px;
	padding: 28px;
	overflow: hidden;
	border: 1px solid var(--mf-line);
	border-radius: var(--mf-radius);
	background: var(--mf-white);
	box-shadow: 0 12px 35px rgba(7, 29, 47, .045);
	transition: transform .25s ease, box-shadow .25s ease;
}

.mf-category-card::before {
	content: "";
	position: absolute;
	right: -60px;
	bottom: -70px;
	width: 210px;
	height: 210px;
	border-radius: 50%;
	background: var(--mf-mint);
	opacity: .55;
	transition: transform .3s ease;
}

.mf-category-card:hover {
	color: var(--mf-navy);
	transform: translateY(-6px);
	box-shadow: var(--mf-shadow);
}

.mf-category-card:hover::before {
	transform: scale(1.25);
}

.mf-category-card__number {
	color: #97a7ae;
	font-size: 10px;
	font-weight: 800;
	letter-spacing: .15em;
}

.mf-category-card__icon {
	position: relative;
	z-index: 1;
	display: grid;
	place-items: center;
	width: 106px;
	height: 106px;
	margin: 42px auto 32px;
	border-radius: 50%;
	background: var(--mf-ice);
	color: var(--mf-teal-dark);
}

.mf-category-card__icon svg {
	width: 64px;
}

.mf-category-card__content {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.mf-category-card__content strong {
	font-family: "Newsreader", Georgia, serif;
	color: var(--mf-navy);
	font-size: 24px;
}

.mf-category-card__content small {
	color: var(--mf-muted);
	font-size: 11px;
}

.mf-category-card__arrow {
	position: absolute;
	z-index: 2;
	right: 25px;
	bottom: 25px;
	display: grid;
	place-items: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: var(--mf-navy);
	color: var(--mf-white);
	font-size: 17px;
}

.mf-category-card--diagnostic .mf-category-card__icon {
	background: #edf3fb;
	color: #316898;
}

.mf-category-card--diagnostic::before {
	background: #e4eef9;
}

.mf-category-card--supplies .mf-category-card__icon {
	background: #f7f1e8;
	color: #a46b25;
}

.mf-category-card--supplies::before {
	background: #f5ebdc;
}

.mf-products {
	background: var(--mf-ice);
	border-top: 1px solid var(--mf-line);
	border-bottom: 1px solid var(--mf-line);
}

.mf-section__head--products {
	display: flex;
	justify-content: space-between;
	align-items: end;
}

.mf-text-link {
	padding-bottom: 5px;
	border-bottom: 1px solid var(--mf-navy);
	color: var(--mf-navy);
	font-size: 12px;
	font-weight: 800;
}

.mf-text-link span {
	margin-left: 8px;
	color: var(--mf-teal-dark);
}

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

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

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

.mf-product-card__image {
	position: relative;
	display: grid;
	place-items: center;
	aspect-ratio: 1.28;
	padding: 24px;
	background:
		linear-gradient(135deg, rgba(255,255,255,.95), rgba(238,247,246,.75)),
		var(--mf-white);
	overflow: hidden;
}

.mf-product-card__image::after {
	content: "";
	position: absolute;
	inset: 0;
	border-bottom: 1px solid var(--mf-line);
	pointer-events: none;
}

.mf-product-card__image img {
	width: 76%;
	height: 76%;
	object-fit: contain;
	mix-blend-mode: multiply;
	transition: transform .3s ease;
}

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

.mf-product-card__tag {
	position: absolute;
	z-index: 2;
	top: 15px;
	left: 15px;
	padding: 6px 9px;
	border-radius: 7px;
	background: var(--mf-navy);
	color: var(--mf-white);
	font-size: 8px;
	font-weight: 800;
	letter-spacing: .1em;
	text-transform: uppercase;
}

.mf-product-card__body {
	padding: 21px;
}

.mf-product-card__category {
	min-height: 16px;
	margin: 0 0 6px;
	color: var(--mf-teal-dark);
	font-size: 9px;
	font-weight: 800;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.mf-product-card__category a {
	color: inherit;
}

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

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

.mf-product-card__bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 17px;
	padding-top: 15px;
	border-top: 1px solid var(--mf-line);
}

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

.mf-product-card__action {
	display: grid;
	place-items: center;
	width: 38px;
	height: 38px;
	border-radius: 10px;
	background: var(--mf-mint);
	color: var(--mf-teal-dark);
	transition: background .2s ease, color .2s ease;
}

.mf-product-card__action:hover {
	background: var(--mf-teal);
	color: var(--mf-white);
}

.mf-product-card__action svg {
	width: 20px;
}

.mf-process {
	background: var(--mf-white);
}

.mf-process__grid {
	display: grid;
	grid-template-columns: .78fr 1.22fr;
	gap: 100px;
	align-items: center;
}

.mf-process__intro > p:last-child {
	max-width: 430px;
	margin: 24px 0 0;
	color: var(--mf-muted);
	font-size: 14px;
	line-height: 1.8;
}

.mf-process__steps {
	border-top: 1px solid var(--mf-line);
}

.mf-process__steps > a {
	display: grid;
	grid-template-columns: 42px 1fr 24px;
	align-items: center;
	gap: 20px;
	padding: 24px 8px;
	border-bottom: 1px solid var(--mf-line);
	transition: padding .2s ease, background .2s ease;
}

.mf-process__steps > a:hover {
	padding-left: 18px;
	background: var(--mf-ice);
	color: var(--mf-navy);
}

.mf-process__steps > a > span {
	color: var(--mf-teal-dark);
	font-size: 10px;
	font-weight: 800;
	letter-spacing: .12em;
}

.mf-process__steps div {
	display: flex;
	flex-direction: column;
	gap: 3px;
}

.mf-process__steps strong {
	color: var(--mf-navy);
	font-size: 14px;
}

.mf-process__steps small {
	color: var(--mf-muted);
	font-size: 11px;
}

.mf-process__steps svg {
	width: 20px;
	color: var(--mf-teal-dark);
}

.mf-cta {
	padding: 80px 0;
	background:
		radial-gradient(circle at 82% 35%, rgba(19, 168, 158, .32), transparent 26%),
		var(--mf-navy);
}

.mf-cta__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 60px;
}

.mf-cta .mf-kicker {
	color: #62d1c8;
}

.mf-cta h2 {
	max-width: 750px;
	color: var(--mf-white);
}

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

.mf-button--light:hover {
	background: var(--mf-mint);
	color: var(--mf-navy);
}

/* Internal pages and WooCommerce */
.site-content {
	background: var(--mf-paper);
}

.site-content > .col-full {
	padding-top: 52px;
	padding-bottom: 72px;
}

.home .site-content > .col-full {
	max-width: none;
	padding: 0;
}

.page .content-area,
.single-product .content-area,
.post-type-archive-product .content-area,
.tax-product_cat .content-area,
.woocommerce-page .content-area {
	width: 100%;
	float: none;
	margin-right: 0;
}

.page .widget-area,
.single-product .widget-area,
.post-type-archive-product .widget-area,
.tax-product_cat .widget-area,
.woocommerce-page .widget-area {
	display: none;
}

.entry-header .entry-title,
.woocommerce-products-header__title.page-title {
	margin-bottom: 32px;
	font-size: clamp(38px, 4.3vw, 58px);
	line-height: 1.05;
}

.hentry .entry-header {
	border: 0;
	margin-bottom: 28px;
}

.hentry .entry-content a:not(.button):not(.wp-block-button__link) {
	color: var(--mf-teal-dark);
	text-underline-offset: 3px;
}

.woocommerce-result-count,
.storefront-sorting {
	color: var(--mf-muted);
	font-size: 12px;
}

select,
input[type="text"],
input[type="number"],
input[type="email"],
input[type="tel"],
input[type="url"],
input[type="password"],
input[type="search"],
textarea,
.input-text {
	min-height: 48px;
	padding: 12px 15px;
	border: 1px solid var(--mf-line);
	border-radius: 10px;
	background: var(--mf-white);
	color: var(--mf-ink);
	box-shadow: none;
}

textarea {
	min-height: 140px;
}

input:focus,
textarea:focus,
select:focus {
	border-color: var(--mf-teal);
	background: var(--mf-white);
	box-shadow: 0 0 0 4px rgba(19, 168, 158, .08);
}

label {
	margin-bottom: 6px;
	color: var(--mf-navy);
	font-size: 12px;
	font-weight: 700;
}

button,
input[type="button"],
input[type="reset"],
input[type="submit"],
.button,
.added_to_cart,
.wp-block-button__link,
.wc-block-components-button:not(.is-link) {
	padding: 13px 20px;
	border-radius: 10px;
	background: var(--mf-navy);
	color: var(--mf-white);
	font-size: 12px;
	font-weight: 800;
	box-shadow: none;
	transition: background .2s ease, transform .2s ease;
}

button:hover,
input[type="submit"]:hover,
.button:hover,
.added_to_cart:hover,
.wp-block-button__link:hover {
	background: var(--mf-teal-dark);
	color: var(--mf-white);
	transform: translateY(-1px);
}

.woocommerce ul.products,
ul.products {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
	margin: 0;
}

.woocommerce ul.products::before,
.woocommerce ul.products::after,
ul.products::before,
ul.products::after {
	display: none;
}

.woocommerce ul.products li.product,
ul.products li.product {
	float: none !important;
	width: auto !important;
	margin: 0 !important;
	padding: 16px 16px 19px;
	border: 1px solid var(--mf-line);
	border-radius: 16px;
	background: var(--mf-white);
	transition: transform .25s ease, box-shadow .25s ease;
}

.woocommerce ul.products li.product:hover,
ul.products li.product:hover {
	transform: translateY(-5px);
	box-shadow: var(--mf-shadow);
}

.woocommerce ul.products li.product img,
ul.products li.product img {
	width: 100%;
	aspect-ratio: 1.18;
	margin-bottom: 17px;
	object-fit: contain;
	border-radius: 12px;
	background: var(--mf-ice);
	mix-blend-mode: multiply;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title,
ul.products li.product .woocommerce-loop-product__title {
	min-height: 45px;
	padding: 0;
	font-family: "Manrope", sans-serif;
	color: var(--mf-navy);
	font-size: 14px;
	font-weight: 750;
	line-height: 1.45;
}

.woocommerce ul.products li.product .price,
ul.products li.product .price {
	margin: 11px 0 15px;
	color: var(--mf-navy);
	font-size: 16px;
	font-weight: 800;
}

.woocommerce ul.products li.product .button,
ul.products li.product .button {
	width: 100%;
	text-align: center;
}

.single-product div.product {
	padding: 34px;
	border: 1px solid var(--mf-line);
	border-radius: 20px;
	background: var(--mf-white);
	box-shadow: 0 18px 50px rgba(7, 29, 47, .06);
}

.single-product div.product .woocommerce-product-gallery {
	padding: 24px;
	border-radius: 16px;
	background: var(--mf-ice);
}

.single-product div.product .woocommerce-product-gallery img {
	mix-blend-mode: multiply;
}

.single-product div.product .summary .product_title {
	font-size: clamp(35px, 4vw, 50px);
	line-height: 1.08;
}

.single-product div.product p.price {
	color: var(--mf-teal-dark);
	font-size: 27px;
	font-weight: 800;
}

.single-product div.product .product_meta {
	padding-top: 18px;
	border-top: 1px solid var(--mf-line);
	color: var(--mf-muted);
	font-size: 11px;
}

.woocommerce-tabs {
	padding-top: 45px;
}

.woocommerce-tabs ul.tabs {
	border-top: 1px solid var(--mf-line);
}

.woocommerce-tabs ul.tabs li {
	border-bottom-color: var(--mf-line);
}

.woocommerce-message,
.woocommerce-info,
.woocommerce-error,
.woocommerce-noreviews,
p.no-comments {
	border-radius: 12px;
	background: var(--mf-navy);
	color: var(--mf-white);
}

.woocommerce-message {
	border-left: 5px solid var(--mf-teal);
}

.woocommerce-info {
	border-left: 5px solid #5fa8d3;
}

.woocommerce-error {
	border-left: 5px solid #cf5c5c;
}

table.shop_table,
.wc-block-cart-items,
.wc-block-components-totals-wrapper,
.woocommerce-checkout-review-order {
	overflow: hidden;
	border: 1px solid var(--mf-line);
	border-radius: 14px;
	background: var(--mf-white);
}

table th,
table thead th {
	background: var(--mf-ice);
	color: var(--mf-navy);
}

table td,
table th {
	border-bottom: 1px solid var(--mf-line);
}

.woocommerce-MyAccount-navigation ul {
	overflow: hidden;
	border: 1px solid var(--mf-line);
	border-radius: 14px;
	background: var(--mf-white);
}

.woocommerce-MyAccount-navigation ul li {
	border-bottom-color: var(--mf-line);
}

.woocommerce-MyAccount-navigation ul li a {
	padding: 15px 18px;
	color: var(--mf-navy);
	font-weight: 700;
}

.woocommerce-MyAccount-navigation ul li.is-active a {
	background: var(--mf-mint);
	color: var(--mf-teal-dark);
}

.wpcf7-form {
	max-width: 760px;
	padding: 30px;
	border: 1px solid var(--mf-line);
	border-radius: 18px;
	background: var(--mf-white);
	box-shadow: 0 15px 45px rgba(7, 29, 47, .055);
}

.wpcf7-form p {
	margin-bottom: 17px;
}

.wpcf7-form input:not([type="submit"]),
.wpcf7-form textarea {
	width: 100%;
}

/* Footer */
.site-footer {
	padding: 0 !important;
	background: #061724;
	color: rgba(255, 255, 255, .68);
}

.site-footer > .col-full {
	max-width: none;
	padding: 0;
}

.mf-footer {
	width: min(1180px, calc(100% - 48px));
	margin: 0 auto;
	padding: 65px 0 28px;
}

.mf-footer__main {
	display: grid;
	grid-template-columns: 1.2fr .8fr .8fr .8fr;
	gap: 55px;
	padding-bottom: 48px;
}

.mf-footer__brand {
	font-size: 26px;
	font-weight: 800;
	letter-spacing: -.05em;
	color: var(--mf-white);
}

.mf-footer__brand span {
	color: var(--mf-teal);
}

.mf-footer__intro {
	max-width: 290px;
	margin: 17px 0 0;
	color: rgba(255, 255, 255, .56);
	font-size: 12px;
	line-height: 1.7;
}

.mf-footer h3 {
	margin: 3px 0 19px;
	font-family: "Manrope", sans-serif;
	color: var(--mf-white);
	font-size: 10px;
	letter-spacing: .13em;
	text-transform: uppercase;
}

.mf-footer ul {
	margin: 0;
	list-style: none;
}

.mf-footer li {
	margin: 0 0 10px;
}

.mf-footer a {
	color: rgba(255, 255, 255, .64);
	font-size: 12px;
	text-decoration: none;
}

.mf-footer a:hover {
	color: var(--mf-white);
}

.mf-footer__bottom {
	display: flex;
	justify-content: space-between;
	gap: 30px;
	padding-top: 23px;
	border-top: 1px solid rgba(255, 255, 255, .11);
	color: rgba(255, 255, 255, .42);
	font-size: 10px;
}

.storefront-handheld-footer-bar {
	background: var(--mf-white);
	border-top-color: var(--mf-line);
	box-shadow: 0 -5px 20px rgba(7, 29, 47, .08);
}

.storefront-handheld-footer-bar ul li > a {
	color: var(--mf-navy);
}

@media (min-width: 768px) {
	.site-header .site-branding {
		width: 58% !important;
		margin-right: 4% !important;
	}

	.woocommerce-active .site-header .site-search {
		width: 38% !important;
	}

	.woocommerce-active .site-header .main-navigation {
		width: 77% !important;
		margin-right: 3% !important;
	}

	.woocommerce-active .site-header .site-header-cart {
		width: 20% !important;
	}

	.storefront-primary-navigation .col-full {
		display: flex;
		align-items: center;
	}

	.storefront-primary-navigation .main-navigation {
		flex: 1;
	}

	.storefront-primary-navigation .site-header-cart {
		flex: 0 0 220px;
	}

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

@media (max-width: 980px) {
	.mf-hero__grid {
		grid-template-columns: 1fr 1fr;
		gap: 30px;
	}

	.mf-hero__meta {
		gap: 18px;
	}

	.mf-product-orbit--2 {
		left: 8px;
	}

	.mf-product-orbit--3 {
		right: 5px;
	}

	.mf-process__grid {
		gap: 55px;
	}

	.mf-footer__main {
		grid-template-columns: 1.2fr 1fr 1fr;
	}

	.mf-footer__column:last-child {
		grid-column: 2;
	}
}

@media (max-width: 767px) {
	.mf-shell,
	.mf-footer {
		width: min(100% - 32px, 620px);
	}

	.mf-topbar__inner {
		justify-content: center;
		min-height: 35px;
	}

	.mf-topbar__left span:last-child,
	.mf-topbar__right {
		display: none;
	}

	.site-header {
		padding-top: 17px !important;
	}

	.site-header .site-branding {
		width: calc(100% - 112px);
		margin: 0;
	}

	.site-branding .site-title,
	.site-branding .beta {
		font-size: 25px;
	}

	.site-branding .site-title a::before {
		width: 29px;
		height: 29px;
		margin-right: 8px;
		font-size: 21px;
	}

	.site-branding .site-description,
	.site-header .site-search {
		display: none;
	}

	button.menu-toggle {
		margin-top: -2px;
		padding: 9px 11px 9px 36px;
		border: 1px solid var(--mf-line);
		border-radius: 10px;
		background: var(--mf-ice);
		color: var(--mf-navy);
		font-size: 11px;
	}

	button.menu-toggle::before,
	button.menu-toggle::after,
	button.menu-toggle span::before {
		background: var(--mf-navy);
	}

	.main-navigation > div.menu {
		display: none !important;
	}

	.main-navigation.toggled .primary-navigation {
		display: block;
		clear: both;
		margin-top: 15px;
		padding: 8px 18px;
		border: 1px solid var(--mf-line);
		border-radius: 12px;
		background: var(--mf-white);
	}

	.main-navigation.toggled .primary-navigation ul.menu {
		display: block;
		max-height: 9999px;
		overflow: visible;
	}

	.main-navigation ul li a {
		padding: 11px 0;
		color: var(--mf-navy);
		font-size: 13px;
		font-weight: 700;
	}

	.storefront-primary-navigation {
		border: 0;
	}

	.mf-hero,
	.mf-hero__grid {
		min-height: auto;
	}

	.mf-hero__grid {
		grid-template-columns: 1fr;
		padding: 64px 0 48px;
	}

	.mf-hero h1 {
		font-size: clamp(43px, 13vw, 61px);
	}

	.mf-hero__lead {
		font-size: 15px;
	}

	.mf-hero__meta {
		justify-content: space-between;
		margin-top: 33px;
	}

	.mf-hero__meta div {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		gap: 2px;
	}

	.mf-hero__visual {
		min-height: 420px;
		margin-top: 15px;
	}

	.mf-product-orbit--1 {
		top: 82px;
		width: 165px;
	}

	.mf-product-orbit--2 {
		bottom: 49px;
		width: 135px;
	}

	.mf-product-orbit--3 {
		bottom: 47px;
		width: 138px;
	}

	.mf-trustline__grid {
		grid-template-columns: 1fr;
	}

	.mf-trustline__grid > div,
	.mf-trustline__grid > div:first-child {
		padding: 17px 0;
		border-right: 0;
		border-bottom: 1px solid var(--mf-line);
	}

	.mf-trustline__grid > div:last-child {
		border-bottom: 0;
	}

	.mf-section {
		padding: 72px 0;
	}

	.mf-section__head,
	.mf-section__head--products {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		gap: 17px;
		margin-bottom: 32px;
	}

	.mf-section__head h2,
	.mf-process h2,
	.mf-cta h2 {
		font-size: 39px;
	}

	.mf-category-grid,
	.mf-product-grid {
		grid-template-columns: 1fr;
	}

	.mf-category-card {
		min-height: 285px;
	}

	.mf-category-card__icon {
		width: 90px;
		height: 90px;
		margin: 27px auto 24px;
	}

	.mf-category-card__icon svg {
		width: 54px;
	}

	.mf-product-card__image {
		aspect-ratio: 1.42;
	}

	.mf-process__grid {
		grid-template-columns: 1fr;
		gap: 38px;
	}

	.mf-cta {
		padding: 62px 0;
	}

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

	.mf-footer__main {
		grid-template-columns: 1fr 1fr;
		gap: 37px 28px;
	}

	.mf-footer__brand-wrap {
		grid-column: 1 / -1;
	}

	.mf-footer__column:last-child {
		grid-column: auto;
	}

	.mf-footer__bottom {
		flex-direction: column;
		gap: 7px;
	}

	.site-content > .col-full {
		padding-top: 36px;
		padding-bottom: 55px;
	}

	.home .site-content > .col-full {
		padding: 0;
	}

	.woocommerce ul.products,
	ul.products {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 12px;
	}

	.woocommerce ul.products li.product,
	ul.products li.product {
		padding: 10px 10px 14px;
	}

	.woocommerce ul.products li.product .woocommerce-loop-product__title,
	ul.products li.product .woocommerce-loop-product__title {
		min-height: 55px;
		font-size: 12px;
	}

	.woocommerce ul.products li.product .price,
	ul.products li.product .price {
		font-size: 14px;
	}

	.woocommerce ul.products li.product .button,
	ul.products li.product .button {
		padding: 11px 7px;
		font-size: 10px;
	}

	.single-product div.product {
		padding: 16px;
	}

	.wpcf7-form {
		padding: 20px;
	}

	body {
		padding-bottom: 62px;
	}
}

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

	.mf-button {
		width: 100%;
	}

	.mf-hero__meta {
		gap: 10px;
	}

	.mf-product-orbit--2,
	.mf-product-orbit--3 {
		width: 120px;
	}

	.mf-footer__main {
		grid-template-columns: 1fr;
	}

	.mf-footer__brand-wrap {
		grid-column: auto;
	}
}

@media (prefers-reduced-motion: reduce) {
	* {
		scroll-behavior: auto !important;
		transition-duration: .01ms !important;
		animation-duration: .01ms !important;
	}
}

/* Dedicated service pages */
.mf-service-page {
	margin-bottom: 0;
}

.mf-service-hero {
	max-width: 870px;
	padding: 26px 0 62px;
}

.mf-service-hero h1 {
	margin: 0;
	font-size: clamp(47px, 6vw, 74px);
	line-height: 1;
}

.mf-service-hero > p:last-child {
	max-width: 650px;
	margin: 24px 0 0;
	color: var(--mf-muted);
	font-size: 16px;
	line-height: 1.75;
}

.mf-service-layout {
	display: grid;
	grid-template-columns: .78fr 1.22fr;
	gap: 30px;
	align-items: start;
}

.mf-service-aside,
.mf-service-form {
	border: 1px solid var(--mf-line);
	border-radius: 20px;
	background: var(--mf-white);
}

.mf-service-aside {
	position: sticky;
	top: 25px;
	padding: 30px;
	background:
		radial-gradient(circle at 90% 10%, rgba(19, 168, 158, .12), transparent 30%),
		var(--mf-navy);
	color: rgba(255, 255, 255, .7);
}

.mf-service-aside__label {
	margin: 0 0 14px;
	color: #63d1c8;
	font-size: 9px;
	font-weight: 800;
	letter-spacing: .14em;
	text-transform: uppercase;
}

.mf-service-aside h2 {
	margin: 0 0 28px;
	color: var(--mf-white);
	font-size: 32px;
	line-height: 1.1;
}

.mf-service-aside ul {
	margin: 0 0 29px;
	list-style: none;
}

.mf-service-aside li {
	display: grid;
	grid-template-columns: 34px 1fr;
	gap: 13px;
	padding: 16px 0;
	border-top: 1px solid rgba(255, 255, 255, .12);
}

.mf-service-aside li > span {
	color: #63d1c8;
	font-size: 9px;
	font-weight: 800;
	letter-spacing: .1em;
}

.mf-service-aside li div {
	display: flex;
	flex-direction: column;
	gap: 3px;
}

.mf-service-aside li strong {
	color: var(--mf-white);
	font-size: 12px;
}

.mf-service-aside li small {
	color: rgba(255, 255, 255, .52);
	font-size: 10px;
	line-height: 1.45;
}

.mf-service-aside > a {
	display: inline-flex;
	gap: 8px;
	padding-bottom: 4px;
	border-bottom: 1px solid rgba(255, 255, 255, .4);
	color: var(--mf-white);
	font-size: 11px;
	font-weight: 750;
}

.mf-service-form {
	padding: 30px;
	box-shadow: 0 18px 55px rgba(7, 29, 47, .06);
}

.mf-service-form__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 28px;
	padding-bottom: 20px;
	border-bottom: 1px solid var(--mf-line);
}

.mf-service-form__head > div {
	display: flex;
	align-items: center;
	gap: 10px;
}

.mf-service-form__head strong {
	color: var(--mf-navy);
	font-size: 13px;
}

.mf-service-form__head small {
	color: var(--mf-muted);
	font-size: 9px;
}

.mf-service-form .wpcf7-form {
	max-width: none;
	margin: 0;
	padding: 0;
	border: 0;
	border-radius: 0;
	box-shadow: none;
}

.mf-service-form .hidden-fields-container {
	display: none;
}

.mf-form-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
}

.mf-form-grid label {
	display: flex;
	flex-direction: column;
	gap: 7px;
	margin: 0;
}

.mf-form-grid .wpcf7-form-control-wrap {
	display: block;
}

.mf-form-grid input:not([type="submit"]),
.mf-form-grid textarea {
	width: 100%;
}

.mf-form-full {
	grid-column: 1 / -1;
}

.mf-form-submit {
	margin-top: 4px;
}

.mf-form-submit input {
	width: 100%;
	min-height: 52px;
	background: var(--mf-teal-dark);
}

.mf-form-submit input:hover {
	background: var(--mf-navy);
}

.wpcf7-not-valid-tip {
	margin-top: 5px;
	color: #b53232;
	font-size: 10px;
}

.wpcf7 form .wpcf7-response-output {
	margin: 20px 0 0;
	padding: 12px 15px;
	border-width: 1px;
	border-radius: 10px;
	font-size: 11px;
}

.mf-contact-aside {
	min-height: 456px;
}

.mf-contact-card {
	display: grid;
	grid-template-columns: 40px 1fr;
	gap: 14px;
	align-items: center;
	padding: 18px 0;
	border-top: 1px solid rgba(255, 255, 255, .12);
}

.mf-contact-card svg {
	width: 25px;
	color: #63d1c8;
}

.mf-contact-card div {
	display: flex;
	flex-direction: column;
	gap: 3px;
}

.mf-contact-card small {
	color: rgba(255, 255, 255, .48);
	font-size: 9px;
	text-transform: uppercase;
	letter-spacing: .07em;
}

.mf-contact-card a,
.mf-contact-card strong {
	color: var(--mf-white);
	font-size: 12px;
	font-weight: 750;
}

.mf-contact-aside__note {
	margin: 25px 0;
	color: rgba(255, 255, 255, .56);
	font-size: 11px;
	line-height: 1.65;
}

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

@media (max-width: 767px) {
	.mf-service-hero {
		padding: 12px 0 42px;
	}

	.mf-service-hero h1 {
		font-size: 46px;
	}

	.mf-service-layout {
		grid-template-columns: 1fr;
	}

	.mf-service-aside {
		position: static;
	}

	.mf-service-form,
	.mf-service-aside {
		padding: 22px;
	}

	.mf-service-form__head {
		align-items: flex-start;
		flex-direction: column;
		gap: 6px;
	}

	.mf-form-grid {
		grid-template-columns: 1fr;
	}

	.mf-form-full {
		grid-column: auto;
	}
}
