/**
 * MerchFuse Growth Engine — styles
 * v1.7.11.0
 *
 * Consumes the theme's design tokens (with safe fallbacks) so every Growth
 * page automatically matches the live brand palette — no hardcoded colors
 * to drift out of sync. Loaded after mf-conversion.css.
 */

/* =========================================================================
 * Shared primitives
 * ========================================================================= */
.mf-growth-page .mf-site__main { padding-block: 0 clamp(40px, 6vw, 80px); }

.mf-chip {
	display: inline-flex;
	align-items: center;
	min-height: 42px;
	padding: 10px 18px;
	border: 1px solid var(--mf-border-dk, #CFCFCB);
	border-radius: var(--mf-radius-pill, 999px);
	background: var(--mf-white, #fff);
	color: var(--mf-dark, #111);
	font-size: var(--mf-text-xs, 12px);
	font-weight: 800;
	letter-spacing: .06em;
	text-transform: uppercase;
	text-decoration: none;
	transition: background .16s ease, color .16s ease, border-color .16s ease, transform .16s ease;
}
.mf-chip:hover,
.mf-chip:focus-visible {
	background: var(--mf-dark, #111);
	border-color: var(--mf-dark, #111);
	color: var(--mf-white, #fff) !important;
	transform: translateY(-1px);
	text-decoration: none;
}
.mf-chip--ghost { border-style: dashed; }

/* =========================================================================
 * 1. Guides hub — "The Print Room": cards styled as matted prints
 * ========================================================================= */
.mf-hub { padding-block: clamp(28px, 4vw, 56px) 0; }

.mf-hub__hero {
	max-width: 880px;
	margin-bottom: clamp(30px, 5vw, 58px);
	padding-top: clamp(10px, 2vw, 22px);
}
.mf-hub__eyebrow {
	margin: 0 0 14px;
	color: var(--mf-accent, #ff332b);
	font-size: var(--mf-text-xs, 12px);
	font-weight: 900;
	letter-spacing: .2em;
	text-transform: uppercase;
}
.mf-hub__title {
	margin: 0;
	font-family: var(--mf-font-display, inherit);
	font-size: clamp(2.4rem, 5.6vw, 4.4rem);
	font-weight: 800;
	line-height: .96;
	letter-spacing: -.05em;
	color: var(--mf-dark, #111);
	text-wrap: balance;
}
.mf-hub__lead {
	max-width: 720px;
	margin: clamp(16px, 2.5vw, 24px) 0 0;
	color: var(--mf-muted, #666);
	font-size: clamp(1rem, 1.3vw, 1.2rem);
	line-height: 1.65;
}

.mf-hub__grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: clamp(14px, 2vw, 22px);
}

/* Card = a print in a mat: outer frame line, inner cream mat, content plate */
.mf-hub__card {
	position: relative;
	border: 1px solid var(--mf-border-dk, #CFCFCB);
	background: var(--mf-white, #fff);
	transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.mf-hub__card::before {
	content: "";
	position: absolute;
	inset: 10px;
	border: 1px solid var(--mf-border, #E5E5E3);
	pointer-events: none;
	transition: border-color .18s ease;
}
.mf-hub__card:hover {
	transform: translateY(-4px);
	border-color: var(--mf-dark, #111);
	box-shadow: 0 18px 44px rgba(17, 17, 17, .10);
}
.mf-hub__card:hover::before { border-color: var(--mf-border-dk, #CFCFCB); }

.mf-hub__card-link {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 12px;
	min-height: 240px;
	padding: clamp(24px, 3vw, 34px);
	color: inherit;
	text-decoration: none;
}
.mf-hub__card-link:hover { text-decoration: none; }

.mf-hub__kicker {
	color: var(--mf-accent, #ff332b);
	font-size: var(--mf-text-xxs, 11px);
	font-weight: 900;
	letter-spacing: .16em;
	text-transform: uppercase;
}
.mf-hub__card-title {
	margin: 0;
	font-family: var(--mf-font-display, inherit);
	font-size: clamp(1.25rem, 1.8vw, 1.6rem);
	font-weight: 800;
	line-height: 1.08;
	letter-spacing: -.03em;
	color: var(--mf-dark, #111);
	text-wrap: balance;
}
.mf-hub__card-desc {
	margin: 0;
	color: var(--mf-muted, #666);
	font-size: var(--mf-text-sm, 13.5px);
	line-height: 1.6;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.mf-hub__meta {
	margin-top: auto;
	padding-top: 14px;
	border-top: 1px solid var(--mf-border, #E5E5E3);
	color: var(--mf-muted, #666);
	font-size: var(--mf-text-xs, 12px);
	font-weight: 700;
	letter-spacing: .04em;
	text-transform: uppercase;
}
.mf-hub__read { color: var(--mf-dark, #111); }
.mf-hub__card:hover .mf-hub__read { color: var(--mf-accent, #ff332b); }

.mf-hub__glossary-cta {
	margin-top: clamp(34px, 5vw, 64px);
	padding: clamp(26px, 4vw, 44px);
	border: 1px solid var(--mf-dark, #111);
	background: linear-gradient(135deg, var(--mf-bg-soft, #FAFAF9), var(--mf-white, #fff));
	display: grid;
	gap: 10px;
	justify-items: start;
}
.mf-hub__glossary-cta h2 {
	margin: 0;
	font-size: clamp(1.4rem, 2.4vw, 2.1rem);
	font-weight: 800;
	letter-spacing: -.04em;
	color: var(--mf-dark, #111);
}
.mf-hub__glossary-cta p {
	margin: 0;
	max-width: 620px;
	color: var(--mf-muted, #666);
	line-height: 1.6;
}
.mf-hub__glossary-cta .mf-btn { margin-top: 8px; }

/* =========================================================================
 * 2. Single guide
 * ========================================================================= */
.mf-guide { padding-block: clamp(22px, 3.5vw, 44px) 0; }

.mf-guide__crumbs {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	margin-bottom: clamp(20px, 3vw, 32px);
	color: var(--mf-muted, #666);
	font-size: var(--mf-text-xxs, 11px);
	font-weight: 700;
	letter-spacing: .1em;
	text-transform: uppercase;
}
.mf-guide__crumbs a { color: var(--mf-muted, #666); text-decoration: none; }
.mf-guide__crumbs a:hover { color: var(--mf-accent, #ff332b); }
.mf-guide__crumbs [aria-current] { color: var(--mf-dark, #111); }

.mf-guide__header { margin-bottom: clamp(22px, 3vw, 34px); }
.mf-guide__kicker {
	margin: 0 0 12px;
	color: var(--mf-accent, #ff332b);
	font-size: var(--mf-text-xs, 12px);
	font-weight: 900;
	letter-spacing: .18em;
	text-transform: uppercase;
}
.mf-guide__title {
	margin: 0;
	font-family: var(--mf-font-display, inherit);
	font-size: clamp(2rem, 4.6vw, 3.5rem);
	font-weight: 800;
	line-height: .98;
	letter-spacing: -.05em;
	color: var(--mf-dark, #111);
	text-wrap: balance;
}
.mf-guide__summary {
	max-width: 720px;
	margin: clamp(14px, 2vw, 20px) 0 0;
	color: var(--mf-muted, #666);
	font-size: clamp(1.02rem, 1.3vw, 1.2rem);
	line-height: 1.65;
}
.mf-guide__byline {
	margin: 16px 0 0;
	padding-top: 14px;
	border-top: 1px solid var(--mf-border, #E5E5E3);
	color: var(--mf-muted-2, #8A8A8A);
	font-size: var(--mf-text-xs, 12px);
	font-weight: 600;
	letter-spacing: .05em;
	text-transform: uppercase;
}

.mf-guide__toc {
	margin: 0 0 clamp(26px, 4vw, 40px);
	padding: 18px 22px;
	border: 1px solid var(--mf-border, #E5E5E3);
	border-left: 4px solid var(--mf-dark, #111);
	background: var(--mf-bg-soft, #FAFAF9);
}
.mf-guide__toc-label {
	margin: 0 0 10px;
	color: var(--mf-dark, #111);
	font-size: var(--mf-text-xs, 12px);
	font-weight: 900;
	letter-spacing: .14em;
	text-transform: uppercase;
}
.mf-guide__toc ol {
	margin: 0;
	padding: 0;
	list-style: none;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 4px 22px;
	counter-reset: mf-toc;
}
.mf-guide__toc li { counter-increment: mf-toc; }
.mf-guide__toc a {
	display: flex;
	gap: 10px;
	padding: 6px 0;
	color: var(--mf-muted, #666);
	font-size: var(--mf-text-sm, 13.5px);
	line-height: 1.4;
	text-decoration: none;
}
.mf-guide__toc a::before {
	content: counter(mf-toc, decimal-leading-zero);
	color: var(--mf-accent, #ff332b);
	font-weight: 800;
	font-size: var(--mf-text-xs, 12px);
	line-height: 1.7;
}
.mf-guide__toc a:hover { color: var(--mf-dark, #111); }

/* Body typography */
.mf-guide__body {
	color: var(--mf-dark, #111);
	font-size: clamp(1rem, 1.1vw, 1.08rem);
	line-height: 1.85;
}
.mf-guide__body > * + * { margin-top: 1.2rem; }
.mf-guide__body h2 {
	position: relative;
	margin: clamp(44px, 6vw, 72px) 0 16px;
	padding-top: 22px;
	border-top: 1px solid var(--mf-border, #E5E5E3);
	font-family: var(--mf-font-display, inherit);
	font-size: clamp(1.5rem, 2.8vw, 2.3rem);
	font-weight: 800;
	line-height: 1.05;
	letter-spacing: -.04em;
	scroll-margin-top: calc(var(--mf-header-height, 88px) + 24px);
	text-wrap: balance;
}
.mf-guide__body h2::before {
	content: "";
	position: absolute;
	top: -2px;
	left: 0;
	width: 56px;
	height: 3px;
	background: var(--mf-accent, #ff332b);
}
.mf-guide__body h3 {
	margin: clamp(28px, 4vw, 44px) 0 8px;
	font-size: clamp(1.15rem, 1.7vw, 1.45rem);
	font-weight: 750;
	letter-spacing: -.02em;
	scroll-margin-top: calc(var(--mf-header-height, 88px) + 24px);
}
.mf-guide__body p { text-wrap: pretty; }
.mf-guide__body a {
	color: var(--mf-dark, #111);
	text-decoration: underline;
	text-decoration-color: var(--mf-accent, #ff332b);
	text-decoration-thickness: 1px;
	text-underline-offset: 4px;
}
.mf-guide__body a:hover { color: var(--mf-accent, #ff332b) !important; }
.mf-guide__body ul,
.mf-guide__body ol { padding-left: 0; list-style: none; }
.mf-guide__body li {
	position: relative;
	margin-bottom: 9px;
	padding-left: 26px;
	line-height: 1.66;
}
.mf-guide__body ul li::before {
	content: "";
	position: absolute;
	top: .72em;
	left: 2px;
	width: 7px;
	height: 7px;
	border: 1px solid var(--mf-dark, #111);
	background: var(--mf-white, #fff);
	transform: rotate(45deg);
}
.mf-guide__body ol { counter-reset: mf-ol; }
.mf-guide__body ol li { counter-increment: mf-ol; padding-left: 32px; }
.mf-guide__body ol li::before {
	content: counter(mf-ol);
	position: absolute;
	top: .1em;
	left: 0;
	width: 22px;
	height: 22px;
	display: grid;
	place-items: center;
	border: 1px solid var(--mf-dark, #111);
	border-radius: 999px;
	color: var(--mf-dark, #111);
	font-size: var(--mf-text-xxs, 11px);
	font-weight: 800;
}
.mf-guide__body table {
	display: block;
	width: 100%;
	overflow-x: auto;
	margin: clamp(22px, 3.5vw, 36px) 0;
	border: 1px solid var(--mf-border, #E5E5E3);
	border-collapse: separate;
	border-spacing: 0;
	background: var(--mf-white, #fff);
	-webkit-overflow-scrolling: touch;
}
.mf-guide__body th,
.mf-guide__body td {
	min-width: 130px;
	padding: 13px 15px;
	border-right: 1px solid var(--mf-border, #E5E5E3);
	border-bottom: 1px solid var(--mf-border, #E5E5E3);
	font-size: var(--mf-text-sm, 13.5px);
	line-height: 1.5;
	vertical-align: top;
	text-align: left;
}
.mf-guide__body th {
	background: var(--mf-dark, #111);
	color: var(--mf-white, #fff);
	font-size: var(--mf-text-xs, 12px);
	font-weight: 800;
	letter-spacing: .1em;
	text-transform: uppercase;
	white-space: nowrap;
}
.mf-guide__body th:last-child,
.mf-guide__body td:last-child { border-right: 0; }
.mf-guide__body tr:last-child td { border-bottom: 0; }
.mf-guide__body blockquote {
	margin: clamp(24px, 4vw, 40px) 0;
	padding: clamp(18px, 3vw, 30px);
	border: 1px solid var(--mf-border, #E5E5E3);
	border-left: 4px solid var(--mf-dark, #111);
	background: var(--mf-bg-soft, #FAFAF9);
	font-size: clamp(1.02rem, 1.4vw, 1.22rem);
	line-height: 1.55;
}
.mf-guide__body blockquote p { margin: 0; }

/* FAQ accordion */
.mf-guide__faq { margin-top: clamp(38px, 5vw, 60px); }
.mf-guide__faq h2 {
	margin: 0 0 14px;
	font-size: clamp(1.4rem, 2.4vw, 2rem);
	font-weight: 800;
	letter-spacing: -.04em;
	color: var(--mf-dark, #111);
}
.mf-guide__faq-item {
	border: 1px solid var(--mf-border, #E5E5E3);
	border-bottom: 0;
	background: var(--mf-white, #fff);
}
.mf-guide__faq-item:last-of-type { border-bottom: 1px solid var(--mf-border, #E5E5E3); }
.mf-guide__faq-item summary {
	cursor: pointer;
	list-style: none;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 17px 20px;
	color: var(--mf-dark, #111);
	font-size: clamp(.98rem, 1.2vw, 1.1rem);
	font-weight: 750;
	line-height: 1.3;
}
.mf-guide__faq-item summary::-webkit-details-marker { display: none; }
.mf-guide__faq-item summary::after {
	content: "+";
	flex: 0 0 auto;
	color: var(--mf-accent, #ff332b);
	font-size: 26px;
	font-weight: 300;
	line-height: 1;
}
.mf-guide__faq-item[open] summary::after { content: "−"; }
.mf-guide__faq-item summary:hover { color: var(--mf-accent, #ff332b); }
.mf-guide__faq-item p {
	margin: 0;
	padding: 0 20px 18px;
	max-width: 760px;
	color: var(--mf-muted, #666);
	line-height: 1.68;
}

/* Shop-the-look chips */
.mf-guide__shop {
	margin-top: clamp(30px, 4vw, 48px);
	padding: clamp(20px, 3vw, 30px);
	border: 1px solid var(--mf-dark, #111);
	background: linear-gradient(135deg, var(--mf-bg-soft, #FAFAF9), var(--mf-white, #fff));
}
.mf-guide__shop-label {
	margin: 0 0 14px;
	color: var(--mf-dark, #111);
	font-size: var(--mf-text-xs, 12px);
	font-weight: 900;
	letter-spacing: .14em;
	text-transform: uppercase;
}
.mf-guide__shop-chips { display: flex; flex-wrap: wrap; gap: 10px; }

/* Related guides */
.mf-guide__related { margin-top: clamp(30px, 4vw, 48px); }
.mf-guide__related-row {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 12px;
	margin-top: 12px;
}
.mf-guide__related-card {
	display: grid;
	gap: 8px;
	padding: 18px 20px;
	border: 1px solid var(--mf-border-dk, #CFCFCB);
	background: var(--mf-white, #fff);
	color: inherit;
	text-decoration: none;
	transition: transform .16s ease, border-color .16s ease, box-shadow .16s ease;
}
.mf-guide__related-card:hover {
	transform: translateY(-2px);
	border-color: var(--mf-dark, #111);
	box-shadow: 0 12px 30px rgba(17, 17, 17, .08);
	text-decoration: none;
}
.mf-guide__related-title {
	color: var(--mf-dark, #111);
	font-size: var(--mf-text-md, 15px);
	font-weight: 800;
	line-height: 1.25;
	letter-spacing: -.02em;
}
.mf-guide__related-card--all { background: var(--mf-bg-soft, #FAFAF9); }

/* Category-page "Guides for this wall" strip */
.mf-cat-guides {
	margin-top: clamp(26px, 4vw, 44px);
	padding-top: clamp(20px, 3vw, 30px);
	border-top: 1px solid var(--mf-border, #E5E5E3);
}

/* =========================================================================
 * 3. Glossary
 * ========================================================================= */
.mf-glossary { padding-block: clamp(28px, 4vw, 56px) 0; }

.mf-glossary__rail {
	position: sticky;
	top: calc(var(--mf-header-height, 88px) + 8px);
	z-index: 20;
	display: flex;
	flex-wrap: wrap;
	gap: 4px;
	margin-bottom: clamp(24px, 4vw, 40px);
	padding: 10px 12px;
	border: 1px solid var(--mf-border, #E5E5E3);
	background: color-mix(in srgb, var(--mf-white, #fff) 92%, transparent);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
}
.mf-glossary__rail a,
.mf-glossary__rail span {
	display: inline-grid;
	place-items: center;
	min-width: 34px;
	height: 34px;
	font-size: var(--mf-text-xs, 12px);
	font-weight: 800;
	text-decoration: none;
}
.mf-glossary__rail a { color: var(--mf-dark, #111); }
.mf-glossary__rail a:hover {
	background: var(--mf-dark, #111);
	color: var(--mf-white, #fff) !important;
}
.mf-glossary__rail span { color: var(--mf-border-dk, #CFCFCB); }

.mf-glossary__groups {
	display: grid;
	gap: clamp(28px, 4vw, 48px);
}
.mf-glossary__group {
	display: grid;
	grid-template-columns: minmax(70px, 120px) minmax(0, 1fr);
	gap: clamp(14px, 3vw, 40px);
	scroll-margin-top: calc(var(--mf-header-height, 88px) + 64px);
}
.mf-glossary__letter {
	margin: 0;
	font-family: var(--mf-font-display, inherit);
	font-size: clamp(3rem, 7vw, 5.5rem);
	font-weight: 800;
	line-height: .8;
	letter-spacing: -.06em;
	color: var(--mf-dark, #111);
}
.mf-glossary__letter::after {
	content: "";
	display: block;
	width: 44px;
	height: 3px;
	margin-top: 14px;
	background: var(--mf-accent, #ff332b);
}
.mf-glossary__list {
	margin: 0;
	display: grid;
	gap: 0;
	border-top: 1px solid var(--mf-border, #E5E5E3);
}
.mf-glossary__item {
	padding: 16px 0 18px;
	border-bottom: 1px solid var(--mf-border, #E5E5E3);
	scroll-margin-top: calc(var(--mf-header-height, 88px) + 64px);
}
.mf-glossary__item:target {
	background: var(--mf-bg-soft, #FAFAF9);
	box-shadow: inset 4px 0 0 var(--mf-accent, #ff332b);
	padding-left: 16px;
	padding-right: 8px;
}
.mf-glossary__item dt {
	display: flex;
	align-items: baseline;
	gap: 8px;
	color: var(--mf-dark, #111);
	font-size: clamp(1.02rem, 1.3vw, 1.15rem);
	font-weight: 800;
	letter-spacing: -.02em;
}
.mf-glossary__anchor {
	color: var(--mf-border-dk, #CFCFCB);
	font-weight: 700;
	text-decoration: none;
	opacity: 0;
	transition: opacity .14s ease, color .14s ease;
}
.mf-glossary__item:hover .mf-glossary__anchor { opacity: 1; }
.mf-glossary__anchor:hover { color: var(--mf-accent, #ff332b) !important; }
.mf-glossary__item dd {
	margin: 7px 0 0;
	max-width: 760px;
	color: var(--mf-muted, #666);
	font-size: var(--mf-text-md, 15px);
	line-height: 1.68;
}

/* =========================================================================
 * 4. Shop by color
 * ========================================================================= */
.mf-colors { padding-block: clamp(28px, 4vw, 56px) 0; }

.mf-colors__grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
	gap: clamp(12px, 1.8vw, 20px);
}
.mf-colors__card {
	display: grid;
	gap: 0;
	border: 1px solid var(--mf-border-dk, #CFCFCB);
	background: var(--mf-white, #fff);
	color: inherit;
	text-decoration: none;
	overflow: hidden;
	transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.mf-colors__card:hover {
	transform: translateY(-4px);
	border-color: var(--mf-dark, #111);
	box-shadow: 0 16px 40px rgba(17, 17, 17, .10);
	text-decoration: none;
}
.mf-colors__swatch {
	display: block;
	aspect-ratio: 16 / 10;
	border-bottom: 1px solid rgba(17, 17, 17, .08);
}
.mf-colors__swatch--lg {
	width: 64px;
	height: 64px;
	flex: 0 0 64px;
	aspect-ratio: 1;
	border: 1px solid rgba(17, 17, 17, .12);
	border-radius: 4px;
}
.mf-colors__name {
	padding: 14px 16px 2px;
	color: var(--mf-dark, #111);
	font-size: var(--mf-text-md, 15px);
	font-weight: 800;
	letter-spacing: -.01em;
}
.mf-colors__count {
	padding: 0 16px 14px;
	color: var(--mf-muted, #666);
	font-size: var(--mf-text-xs, 12px);
	font-weight: 600;
	letter-spacing: .04em;
	text-transform: uppercase;
}
.mf-colors__tip {
	max-width: 720px;
	margin: clamp(26px, 4vw, 40px) 0 0;
	padding: 16px 20px;
	border: 1px solid var(--mf-border, #E5E5E3);
	border-left: 4px solid var(--mf-accent, #ff332b);
	background: var(--mf-bg-soft, #FAFAF9);
	color: var(--mf-muted, #666);
	line-height: 1.6;
}
.mf-colors__archive-head {
	display: flex;
	align-items: center;
	gap: 18px;
	margin: 0 0 clamp(18px, 3vw, 28px);
	padding: 16px 18px;
	border: 1px solid var(--mf-border, #E5E5E3);
	background: var(--mf-white, #fff);
}
.mf-colors__archive-desc {
	margin: 0;
	max-width: 860px;
	color: var(--mf-muted, #666);
	font-size: var(--mf-text-md, 15px);
	line-height: 1.62;
}

/* =========================================================================
 * 5. Recently viewed rail (mf-rv namespace — never collides with mf-rail)
 * ========================================================================= */
.mf-rv {
	margin-top: clamp(28px, 4vw, 48px);
	padding-top: clamp(22px, 3.5vw, 38px);
	border-top: 1px solid var(--mf-border, #E5E5E3);
}
.mf-rv__title {
	margin: 0 0 16px;
	font-size: clamp(1.15rem, 1.8vw, 1.45rem);
	font-weight: 800;
	letter-spacing: .02em;
	text-transform: uppercase;
	color: var(--mf-dark, #111);
}
.mf-rv__rail {
	display: grid;
	grid-auto-flow: column;
	grid-auto-columns: calc((100% - 100px) / 6);
	gap: 20px;
	overflow-x: auto;
	overscroll-behavior-x: contain;
	scroll-snap-type: x proximity;
	padding-bottom: 6px;
	scrollbar-width: thin;
	-webkit-overflow-scrolling: touch;
}
.mf-rv__card {
	scroll-snap-align: start;
	display: grid;
	gap: 8px;
	color: inherit;
	text-decoration: none;
	min-width: 0;
}
.mf-rv__card:hover { text-decoration: none; }
.mf-rv__frame {
	display: block;
	aspect-ratio: 1;
	border: 1px solid var(--mf-border, #E5E5E3);
	background: var(--mf-bg-subtle, #F6F6F4);
	overflow: hidden;
}
.mf-rv__frame img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .2s ease;
}
.mf-rv__card:hover .mf-rv__frame img { transform: scale(1.03); }
.mf-rv__name {
	color: var(--mf-dark, #111);
	font-size: var(--mf-text-sm, 13px);
	font-weight: 700;
	line-height: 1.25;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	min-height: 2.5em;
}
.mf-rv__card:hover .mf-rv__name { color: var(--mf-accent, #ff332b); }
.mf-rv__price {
	color: var(--mf-dark, #111);
	font-size: var(--mf-text-sm, 13px);
	font-weight: 800;
}
.mf-rv__price del { color: var(--mf-muted-2, #8A8A8A); font-weight: 500; margin-right: 6px; }
.mf-rv__price ins { text-decoration: none; }

@media (max-width: 1024px) { .mf-rv__rail { grid-auto-columns: calc((100% - 48px) / 3.4); gap: 16px; } }
@media (max-width: 640px)  { .mf-rv__rail { grid-auto-columns: calc((100% - 14px) / 2.15); gap: 12px; } }

/* =========================================================================
 * 6. Free-shipping bar
 * ========================================================================= */
.mf-shipbar {
	margin: 0 0 18px;
	padding: 14px 18px;
	border: 1px solid var(--mf-border, #E5E5E3);
	background: var(--mf-bg-soft, #FAFAF9);
}
.mf-shipbar__msg {
	margin: 0 0 10px;
	color: var(--mf-dark, #111);
	font-size: var(--mf-text-md, 15px);
	line-height: 1.35;
}
.mf-shipbar__track {
	height: 6px;
	border-radius: 999px;
	background: var(--mf-border, #E5E5E3);
	overflow: hidden;
}
.mf-shipbar__fill {
	display: block;
	height: 100%;
	border-radius: inherit;
	background: var(--mf-dark, #111);
	transition: width .4s ease;
}
.mf-shipbar--done { border-color: var(--mf-success, #2E7D32); }
.mf-shipbar--done .mf-shipbar__fill { background: var(--mf-success, #2E7D32); }
.mf-shipbar__pdp {
	margin: 6px 0 0;
	color: var(--mf-muted, #666);
	font-size: var(--mf-text-sm, 13px);
	font-weight: 650;
}
.mf-shipbar__pdp::before {
	content: "";
	display: inline-block;
	width: 7px;
	height: 7px;
	margin-right: 8px;
	border-radius: 999px;
	background: var(--mf-success, #2E7D32);
	vertical-align: 2px;
}

/* =========================================================================
 * 7. Exit-intent modal — a print in an art mat
 * ========================================================================= */
.mf-exit { position: fixed; inset: 0; z-index: 4000000; }
.mf-exit[hidden] { display: none; }
.mf-exit__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(17, 17, 17, .58);
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
}
.mf-exit__card {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: min(480px, calc(100vw - 32px));
	max-height: calc(100dvh - 32px);
	overflow: auto;
	padding: clamp(28px, 5vw, 44px);
	border: 1px solid var(--mf-border-dk, #CFCFCB);
	background: var(--mf-white, #fff);
	box-shadow: 0 32px 90px rgba(0, 0, 0, .32);
	animation: mfExitIn .28s cubic-bezier(.16, 1, .3, 1) both;
}
.mf-exit__card::before {
	content: "";
	position: absolute;
	inset: 12px;
	border: 1px solid var(--mf-border, #E5E5E3);
	pointer-events: none;
}
@keyframes mfExitIn {
	from { opacity: 0; transform: translate(-50%, calc(-50% + 14px)); }
	to   { opacity: 1; transform: translate(-50%, -50%); }
}
.mf-exit__x {
	position: absolute;
	top: 14px;
	right: 14px;
	z-index: 2;
	width: 40px;
	height: 40px;
	display: grid;
	place-items: center;
	border: 0;
	border-radius: 999px;
	background: transparent;
	color: var(--mf-muted, #666);
	font-size: 26px;
	line-height: 1;
	cursor: pointer;
}
.mf-exit__x:hover { color: var(--mf-dark, #111); background: var(--mf-bg-subtle, #F6F6F4); }
.mf-exit__eyebrow {
	position: relative;
	margin: 0 0 12px;
	color: var(--mf-accent, #ff332b);
	font-size: var(--mf-text-xs, 12px);
	font-weight: 900;
	letter-spacing: .2em;
	text-transform: uppercase;
}
.mf-exit__title {
	position: relative;
	margin: 0;
	font-family: var(--mf-font-display, inherit);
	font-size: clamp(1.6rem, 5vw, 2.2rem);
	font-weight: 800;
	line-height: 1;
	letter-spacing: -.04em;
	color: var(--mf-dark, #111);
	text-wrap: balance;
}
.mf-exit__sub {
	position: relative;
	margin: 14px 0 20px;
	color: var(--mf-muted, #666);
	line-height: 1.6;
}
.mf-exit__form {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 8px;
}
.mf-exit__form input[type="email"] {
	min-height: 50px;
	padding: 0 16px;
	border: 1px solid var(--mf-border-dk, #CFCFCB) !important;
	background: var(--mf-white, #fff) !important;
	color: var(--mf-dark, #111);
	font-size: var(--mf-text-md, 15px);
}
.mf-exit__form input[type="email"]:focus { border-color: var(--mf-dark, #111) !important; }
.mf-exit__form .mf-btn {
	min-height: 50px;
	padding-inline: 20px;
	background: var(--mf-dark, #111);
	color: var(--mf-white, #fff);
	border-color: var(--mf-dark, #111);
	cursor: pointer;
	white-space: nowrap;
}
.mf-exit__form .mf-btn:hover { background: var(--mf-accent, #ff332b); border-color: var(--mf-accent, #ff332b); }
.mf-exit__form .mf-btn:disabled { opacity: .6; cursor: wait; }
.mf-exit__done {
	position: relative;
	margin: 4px 0 0;
	padding: 14px 16px;
	border: 1px solid var(--mf-success, #2E7D32);
	background: color-mix(in srgb, var(--mf-success, #2E7D32) 7%, var(--mf-white, #fff));
	color: var(--mf-dark, #111);
	line-height: 1.5;
}
.mf-exit__code { letter-spacing: .08em; }
.mf-exit__error {
	position: relative;
	margin: 10px 0 0;
	color: var(--mf-error, #ff332b);
	font-size: var(--mf-text-sm, 13px);
}
.mf-exit__pass {
	position: relative;
	display: block;
	margin: 18px auto 0;
	padding: 6px;
	border: 0;
	background: transparent;
	color: var(--mf-muted-2, #8A8A8A);
	font-size: var(--mf-text-xs, 12px);
	font-weight: 700;
	letter-spacing: .06em;
	text-transform: uppercase;
	text-decoration: underline;
	text-underline-offset: 3px;
	cursor: pointer;
}
.mf-exit__pass:hover { color: var(--mf-dark, #111); }
html.mf-exit-open { overflow: hidden; }

@media (max-width: 480px) {
	.mf-exit__form { grid-template-columns: 1fr; }
	.mf-exit__card { padding: 26px 20px 22px; }
}

/* =========================================================================
 * 8. Enhanced 404 additions
 * ========================================================================= */
.mf-404-growth { margin-top: clamp(26px, 4vw, 44px); display: grid; gap: clamp(24px, 4vw, 40px); }
.mf-404-growth__label {
	margin: 0 0 12px;
	color: var(--mf-dark, #111);
	font-size: var(--mf-text-xs, 12px);
	font-weight: 900;
	letter-spacing: .14em;
	text-transform: uppercase;
}
.mf-404-growth__chips { display: flex; flex-wrap: wrap; gap: 10px; }
.mf-404-growth__links {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 12px;
}

/* =========================================================================
 * Motion + contrast preferences
 * ========================================================================= */
@media (prefers-reduced-motion: reduce) {
	.mf-hub__card, .mf-colors__card, .mf-guide__related-card, .mf-chip,
	.mf-rv__frame img, .mf-shipbar__fill { transition: none !important; }
	.mf-exit__card { animation: none !important; }
}
@media (prefers-contrast: more) {
	.mf-hub__card, .mf-colors__card, .mf-guide__related-card,
	.mf-glossary__rail, .mf-exit__card { border-color: var(--mf-dark, #111); }
}
