/* MegaFurn - basis: reset-light, typografie, knoppen, layout, header/footer, shop-grid. */

*, *::before, *::after { box-sizing: border-box; }

body {
	margin: 0;
	background: var(--mf-bg);
	color: var(--mf-ink);
	font-family: var(--mf-font-body);
	font-size: 16px;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
a:hover { text-decoration: none; }

h1, h2, h3, h4 {
	font-family: var(--mf-font-head);
	font-weight: 500;
	line-height: 1.12;
	letter-spacing: -.01em;
	margin: 0;
}

/* Zichtbare focus voor toetsenbord-navigatie (§8 toegankelijkheid). */
:focus-visible {
	outline: 3px solid var(--mf-brown);
	outline-offset: 2px;
}

/* ---- Container ---- */
.mf-container {
	max-width: var(--mf-maxw);
	margin-inline: auto;
	padding-inline: var(--mf-gutter);
}

/* ---- Knoppen ---- */
.mf-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	border: none;
	cursor: pointer;
	font-family: var(--mf-font-body);
	font-weight: 700;
	font-size: 14px;
	line-height: 1;
	padding: 16px 30px;
	border-radius: var(--mf-radius-sm);
	transition: transform .25s ease, box-shadow .25s ease, background-color .2s ease;
}
.mf-btn--gold { background: var(--mf-gold); color: var(--mf-ink); }
.mf-btn--gold:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(242, 214, 117, .55); }
.mf-btn--dark { background: var(--mf-ink); color: var(--mf-bg); }
.mf-btn--dark:hover { transform: translateY(-2px); }
.mf-btn--ghost { background: transparent; color: var(--mf-ink); border: 1px solid rgba(38, 42, 28, .3); }
.mf-btn--ghost:hover { background: rgba(38, 42, 28, .04); }
.mf-btn--ghost-light { background: rgba(255, 255, 255, .12); color: #fff; border: 1px solid rgba(255, 255, 255, .5); backdrop-filter: blur(4px); }
.mf-btn--sm { padding: 9px 16px; font-size: 12.5px; }

/* ---- Eyebrow / sectie-labels ---- */
.mf-eyebrow {
	font-size: 12px;
	letter-spacing: .22em;
	text-transform: uppercase;
	color: var(--mf-brown);
	font-weight: 700;
}

/* ---- Sectie-koppen ---- */
.mf-section { padding: 56px 0; }
.mf-section__head {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 24px;
}
.mf-section__title { font-size: clamp(28px, 4vw, 34px); }
.mf-section__link { font-size: 13.5px; font-weight: 600; color: var(--mf-brown); }

/* Reduceer beweging voor wie dat wil (§8). */
@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after {
		animation-duration: .001ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: .001ms !important;
	}
}

/* ================= Header ================= */
.mf-utilitybar {
	background: var(--mf-ink);
	color: #e6ddcd;
	font-size: 12.5px;
}
.mf-utilitybar__inner {
	max-width: var(--mf-maxw);
	margin-inline: auto;
	padding: 8px var(--mf-gutter);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	flex-wrap: wrap;
}
.mf-utilitybar__list { display: flex; gap: 24px; flex-wrap: wrap; }
.mf-utilitybar__list span { display: inline-flex; gap: 7px; align-items: center; }
.mf-utilitybar__check { color: var(--mf-terra); }
.mf-utilitybar__stars { color: #e8b04a; }

.mf-header {
	background: var(--mf-bg);
	border-bottom: 1px solid var(--mf-line);
}
.mf-header__inner {
	max-width: var(--mf-maxw);
	margin-inline: auto;
	padding: 18px var(--mf-gutter);
	display: flex;
	align-items: center;
	gap: 34px;
}
.mf-header__logo img { height: 54px; width: auto; object-fit: contain; display: block; }
.mf-search {
	flex: 1;
	display: flex;
	align-items: center;
	background: var(--mf-surface);
	border: 1px solid rgba(38, 42, 28, .16);
	border-radius: 40px;
	padding: 0 6px 0 20px;
	height: 48px;
}
.mf-search input {
	border: none;
	background: transparent;
	flex: 1;
	font: 14px var(--mf-font-body);
	color: var(--mf-ink);
	height: 100%;
}
.mf-search input::placeholder { color: rgba(38, 42, 28, .45); }
.mf-search button {
	margin-left: auto;
	background: var(--mf-gold);
	color: var(--mf-ink);
	border: none;
	height: 38px;
	padding: 0 22px;
	border-radius: 30px;
	font: 600 13.5px var(--mf-font-body);
	cursor: pointer;
}
.mf-header__actions { display: flex; gap: 24px; align-items: center; font-size: 13.5px; font-weight: 600; }
.mf-header__fav { display: inline-flex; flex-direction: column; align-items: center; gap: 2px; }
.mf-header__fav small { font-size: 11px; font-weight: 500; }
.mf-header__cart {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: var(--mf-alt);
	padding: 9px 16px;
	border-radius: 30px;
}
.mf-cart-count {
	background: var(--mf-brown);
	color: #fff;
	min-width: 22px;
	height: 22px;
	border-radius: 11px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
	font-weight: 700;
	padding: 0 6px;
}

.mf-nav { border-bottom: 1px solid var(--mf-line); background: var(--mf-bg); }
.mf-nav__inner {
	max-width: var(--mf-maxw);
	margin-inline: auto;
	padding: 18px var(--mf-gutter);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 22px;
	font-size: 14.5px;
	font-weight: 600;
	flex-wrap: nowrap;
	list-style: none;
	margin-block: 0;
}
.mf-nav__right { display: flex; align-items: center; gap: 18px; }
.mf-nav__inner li { list-style: none; margin: 0; padding: 0; }
.mf-nav__inner li::marker { content: none; }
.mf-nav__inner > a,
.mf-nav__inner li > a { color: var(--mf-ink); }
.mf-nav__inner a.mf-nav__maatwerk,
.mf-nav__inner li.mf-nav__maatwerk > a { color: var(--mf-brown); display: inline-flex; align-items: center; gap: 6px; }
.mf-badge {
	background: var(--mf-brown);
	color: #fff;
	font-size: 10px;
	font-weight: 700;
	padding: 2px 7px;
	border-radius: 20px;
	letter-spacing: .04em;
}
.mf-nav__showroom { color: var(--mf-ink-mute); }
.mf-nav__shopall {
	background: var(--mf-brown);
	color: #fff !important;
	padding: 9px 20px;
	border-radius: 30px;
	font-weight: 700;
	transition: background .2s ease, transform .2s ease;
}
.mf-nav__shopall:hover { background: var(--mf-ink); transform: translateY(-1px); }

/* ================= Footer ================= */
.mf-footer {
	background: var(--mf-ink);
	color: #c9bba6;
	margin-top: 52px;
	padding: 48px var(--mf-gutter) 34px;
}
.mf-footer__inner { max-width: var(--mf-maxw); margin-inline: auto; }
.mf-footer__grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr 1fr;
	gap: 30px;
	padding-bottom: 32px;
	border-bottom: 1px solid rgba(255, 255, 255, .12);
}
.mf-footer__logo img { height: 76px; width: auto; object-fit: contain; margin-bottom: 14px; filter: brightness(0) invert(1); opacity: .92; }
.mf-footer p { font-size: 13.5px; line-height: 1.6; margin: 0 0 16px; max-width: 280px; }
.mf-footer__col { font-size: 13.5px; line-height: 2.1; }
.mf-footer__col strong { display: block; color: #f5f3ec; font-weight: 700; margin-bottom: 6px; }
.mf-footer__col a { color: #c9bba6; }
.mf-footer__col a:hover { color: #f5f3ec; }
.mf-footer__social { display: flex; gap: 14px; font-size: 13px; font-weight: 600; }
.mf-footer__social a { color: #e6ddcd; }
.mf-footer__bottom {
	display: flex;
	justify-content: space-between;
	gap: 16px;
	flex-wrap: wrap;
	padding-top: 20px;
	font-size: 12.5px;
	color: rgba(201, 187, 166, .7);
}
.mf-footer__bottom { align-items: center; }
.mf-footer__copy { font-size: 12.5px; color: rgba(201, 187, 166, .7); }
.mf-pay { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.mf-pay__label { font-size: 11px; color: rgba(201, 187, 166, .55); margin-right: 4px; }
.mf-pay__chip {
	background: #fff; border-radius: 5px; padding: 5px 9px;
	font: 800 12px var(--mf-font-body); color: #1a1a1a;
	display: inline-flex; align-items: center; line-height: 1;
}
.mf-pay__ideal { color: #cc0066; }
.mf-pay__visa { color: #1a1f71; letter-spacing: .02em; }
.mf-pay__klarna { background: #ffb3c7; color: #0a0a0a; }
.mf-pay__mc { padding: 4px 8px; }
.mf-pay__mc1, .mf-pay__mc2 { width: 15px; height: 15px; border-radius: 50%; display: inline-block; }
.mf-pay__mc1 { background: #eb001b; }
.mf-pay__mc2 { background: #f79e1b; margin-left: -6px; opacity: .9; }
.mf-madeby { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; color: rgba(201, 187, 166, .75); }
.mf-madeby:hover { color: #f5f3ec; }
.mf-madeby__pre { opacity: .7; }
.mf-madeby__badge { display: inline-flex; align-items: center; gap: 6px; background: rgba(255, 255, 255, .06); border: 1px solid rgba(255, 255, 255, .14); border-radius: 6px; padding: 5px 10px; }
.mf-madeby__z { width: 18px; height: 18px; border-radius: 5px; background: linear-gradient(135deg, #e8462d, #f4a72b); display: inline-flex; align-items: center; justify-content: center; color: #fff; font: 800 11px var(--mf-font-body); }
.mf-madeby__name { font: 700 13px var(--mf-font-body); color: #f5f3ec; }
.mf-madeby__name span { color: #e8846a; }

/* ================= "Toegevoegd aan winkelmand"-pop-up ================= */
.mf-toast {
	position: fixed; top: 20px; right: 20px; z-index: 9999;
	width: 320px; max-width: calc(100vw - 40px);
	background: var(--mf-surface); color: var(--mf-ink);
	border: 1px solid rgba(47, 42, 34, .12); border-radius: 14px;
	box-shadow: 0 16px 44px rgba(0, 0, 0, .18); padding: 18px 20px;
	opacity: 0; transform: translateY(-12px); pointer-events: none;
	transition: opacity .25s ease, transform .25s ease;
}
.mf-toast.is-visible { opacity: 1; transform: none; pointer-events: auto; }
.mf-toast__close { position: absolute; top: 8px; right: 10px; background: none; border: none; font-size: 22px; line-height: 1; color: var(--mf-ink-mute); cursor: pointer; }
.mf-toast__head { display: flex; align-items: center; gap: 8px; font-weight: 700; font-size: 14.5px; margin-bottom: 12px; }
.mf-toast__check { width: 22px; height: 22px; border-radius: 50%; background: #5f7a3a; color: #fff; display: inline-flex; align-items: center; justify-content: center; font-size: 13px; }
.mf-toast__body { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.mf-toast__imgwrap { flex: none; width: 56px; height: 56px; border-radius: 10px; background: #fff; border: 1px solid rgba(47, 42, 34, .1); overflow: hidden; display: flex; align-items: center; justify-content: center; }
.mf-toast__img { max-width: 100%; max-height: 100%; object-fit: contain; padding: 4px; box-sizing: border-box; }
.mf-toast__name { font-size: 14px; font-weight: 600; line-height: 1.35; }
.mf-toast__actions { display: flex; gap: 10px; align-items: center; }
.mf-toast__go { flex: 1; padding: 11px 14px; font-size: 13px; text-align: center; }
.mf-toast__checkout { flex: 1; padding: 11px 14px; font-size: 13px; text-align: center; white-space: nowrap; }

@media (max-width: 520px) {
	.mf-toast { top: auto; bottom: 16px; right: 16px; left: 16px; width: auto; }
}

/* ================= WooCommerce shop-grid (herbruikt de kaart) ================= */
.mf-shop__inner { max-width: var(--mf-maxw); margin-inline: auto; padding: 40px var(--mf-gutter); }
ul.products {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}
ul.products li.product { margin: 0; }

/* ---- Productkaart (gedeeld: shop-loop + featured-products blok) ---- */
.mf-card {
	background: var(--mf-surface);
	border: 1px solid rgba(38, 42, 28, .08);
	border-radius: 10px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
}
.mf-card__media { position: relative; display: block; height: 230px; background: #fff; overflow: hidden; padding: 10px; box-sizing: border-box; }
.mf-card__img { width: 100%; height: 100%; object-fit: contain; }
.mf-card__tag {
	position: absolute; top: 12px; left: 12px;
	background: var(--mf-brown); color: #fff;
	font: 600 11px var(--mf-font-body); padding: 4px 10px; border-radius: 20px;
}
.mf-card__fav { position: absolute; top: 12px; right: 12px; color: #fff; font-size: 15px; text-shadow: 0 1px 5px rgba(0, 0, 0, .5); }
.mf-card__body { padding: 16px 16px 18px; display: flex; flex-direction: column; gap: 3px; flex: 1; }
.mf-card__title { font-family: var(--mf-font-body); font-size: 16px; font-weight: 700; line-height: 1.3; }
.mf-card__spec { font-size: 12.5px; color: var(--mf-ink-mute); margin: 3px 0 12px; }
.mf-card__foot { margin-top: auto; display: flex; flex-direction: column; align-items: stretch; gap: 10px; }
.mf-card__price { display: flex; flex-wrap: wrap; align-items: baseline; gap: 8px; font-weight: 700; font-size: 17px; line-height: 1.2; margin-top: 6px; }
.mf-card__price ins { order: -1; text-decoration: none; }
.mf-card__price del { order: 0; font-size: 13px; color: rgba(38, 42, 28, .45); font-weight: 400; margin: 0; }
.mf-card__foot .mf-btn { width: 100%; text-align: center; justify-content: center; }

/* ================= Showroom-pagina ================= */
.mf-showroom__body { padding-block: 48px 56px; }
.mf-showroom__top { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; align-items: stretch; }
.mf-showroom__card { background: var(--mf-surface); border: 1px solid rgba(47, 42, 34, .1); border-radius: 16px; padding: 34px 36px; }
.mf-showroom__card h2 { font-family: var(--mf-font-head); font-weight: 500; font-size: 26px; margin: 0 0 18px; }
.mf-showroom__addr { font-size: 15px; line-height: 1.8; color: var(--mf-ink-soft); }
.mf-showroom__addr a { color: var(--mf-brown); }
.mf-showroom__hours { margin-top: 22px; font-size: 14.5px; line-height: 1.9; color: var(--mf-ink-soft); }
.mf-showroom__hr { display: flex; justify-content: space-between; padding: 4px 0; border-bottom: 1px solid rgba(47, 42, 34, .08); }
.mf-showroom__hr--last { border-bottom: none; }
.mf-showroom__hr--closed span:last-child { color: rgba(47, 42, 34, .5); }
.mf-showroom__photo { position: relative; border-radius: 16px; min-height: 360px; overflow: hidden; background: var(--mf-cream) center/cover no-repeat; }
.mf-showroom__badge { position: absolute; bottom: 16px; left: 20px; background: rgba(58, 42, 27, .85); color: #f5f3ec; font-size: 12.5px; padding: 6px 12px; border-radius: 20px; }
.mf-showroom__h { font-family: var(--mf-font-head); font-weight: 500; font-size: 32px; margin: 44px 0 22px; }
.mf-showroom__find { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; align-items: stretch; }
.mf-showroom__find--map { grid-template-columns: 1fr; }
.mf-showroom__find--map .mf-showroom__map { min-height: 420px; }
.mf-showroom__photo2 { border-radius: 16px; min-height: 380px; overflow: hidden; background: var(--mf-cream) center/cover no-repeat; }
.mf-showroom__map { border-radius: 16px; min-height: 380px; overflow: hidden; border: 1px solid rgba(47, 42, 34, .1); }
.mf-showroom__map iframe { border: 0; width: 100%; height: 100%; display: block; }
.mf-showroom__cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.mf-showroom__ec { background: var(--mf-surface); border: 1px solid rgba(47, 42, 34, .08); border-radius: 12px; padding: 26px; }
.mf-showroom__ei { width: 44px; height: 44px; border-radius: 50%; background: #efeadd; display: flex; align-items: center; justify-content: center; color: var(--mf-brown); font-size: 20px; margin-bottom: 14px; }
.mf-showroom__et { font-size: 17px; font-weight: 700; margin-bottom: 6px; }
.mf-showroom__ec p { font-size: 14px; line-height: 1.6; color: var(--mf-ink-mute); margin: 0; }
.mf-showroom__cta { position: relative; margin-top: 44px; background: var(--mf-ink); color: #f5f3ec; border-radius: 18px; padding: 52px 46px; text-align: center; overflow: hidden; }
.mf-showroom__ctaorb { position: absolute; width: 180px; height: 180px; border-radius: 50%; background: rgba(122, 82, 48, .3); top: -50px; left: -30px; }
.mf-showroom__ctain { position: relative; max-width: 600px; margin: 0 auto; }
.mf-showroom__ctain h2 { font-family: var(--mf-font-head); font-weight: 500; font-size: 36px; margin: 0 0 12px; }
.mf-showroom__ctain p { font-size: 16px; line-height: 1.6; color: rgba(245, 243, 236, .82); margin: 0 0 26px; }

@media (max-width: 860px) {
	.mf-showroom__top, .mf-showroom__find, .mf-showroom__cards { grid-template-columns: 1fr; }
	.mf-showroom__photo { min-height: 240px; }
	.mf-showroom__photo2, .mf-showroom__map { min-height: 300px; }
}

/* ================= Service-pagina's (Bezorging, Betalen) ================= */
.mf-svc__body { padding-block: 48px 56px; }
.mf-svc__h {
	font-family: var(--mf-font-head); font-weight: 500;
	font-size: clamp(26px, 3.4vw, 32px); line-height: 1.1;
	margin: 0 0 22px;
}
.mf-svc__h + .mf-svc__h,
.mf-svc__grid + .mf-svc__h { margin-top: 40px; }
.mf-svc__grid {
	display: grid;
	grid-template-columns: repeat(var(--cols, 4), 1fr);
	gap: 18px;
}
.mf-svc__grid--icons { margin-top: 18px; }
.mf-svc__num-card, .mf-svc__icon-card {
	background: var(--mf-surface);
	border: 1px solid rgba(38, 42, 28, .08);
	border-radius: 12px;
	padding: 30px 26px;
	text-align: left;
}
.mf-svc__num {
	font-family: var(--mf-font-head); font-size: 15px; font-weight: 600;
	color: #fff; background: var(--mf-brown);
	width: 38px; height: 38px; border-radius: 50%;
	display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
}
.mf-svc__icon {
	width: 44px; height: 44px; border-radius: 50%;
	background: #efeadd; color: var(--mf-brown);
	display: flex; align-items: center; justify-content: center;
	font-size: 18px; font-weight: 700; margin-bottom: 14px;
}
.mf-svc__card-title { font-size: 17px; font-weight: 700; margin-bottom: 7px; }
.mf-svc__card-text { font-size: 14.5px; line-height: 1.6; color: var(--mf-ink-soft); margin: 0; }
.mf-noteband {
	margin-top: 40px;
	background: #efeadd;
	border-radius: 14px;
	padding: 26px 30px;
	font-size: 14.5px; line-height: 1.65; color: var(--mf-ink-soft);
}
.mf-noteband a { font-weight: 700; }
@media (max-width: 980px) {
	.mf-svc__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
	.mf-svc__grid { grid-template-columns: 1fr; }
}

/* Hero-varianten (gedeeld door service/faq/reviews/portfolio) */
/* Donkere hero met cirkels (gedeeld door categorie-archief + content-pagina's). */
.mf-archive__hero {
	position: relative;
	background: var(--mf-ink);
	color: var(--mf-bg);
	padding: 52px 0 50px;
	overflow: hidden;
}
.mf-archive__orb {
	position: absolute; width: 240px; height: 240px; border-radius: 50%;
	background: rgba(122, 82, 48, .4); top: -80px; right: -40px;
}
.mf-page-hero__dot {
	position: absolute; width: 12px; height: 12px; border-radius: 50%;
	background: var(--mf-gold); bottom: 44px; right: 190px;
	box-shadow: 0 0 16px 3px rgba(242, 214, 117, .7);
}
.mf-archive__hero-inner { position: relative; }
.mf-breadcrumb { font-size: 12.5px; color: rgba(245, 243, 236, .6); margin-bottom: 14px; }
.mf-breadcrumb a { color: rgba(245, 243, 236, .6); }
.mf-breadcrumb a:hover { color: var(--mf-bg); }
.mf-eyebrow--light { color: #d9b98a; }
.mf-archive__title {
	font-family: var(--mf-font-head); font-weight: 500;
	font-size: clamp(34px, 5vw, 50px); line-height: 1.05; margin: 12px 0;
}
.mf-archive__intro { font-size: 16.5px; line-height: 1.6; color: rgba(245, 243, 236, .8); max-width: 600px; }
.mf-archive__intro p { margin: 0; }
.mf-page-hero--center { text-align: center; }
.mf-page-hero--center .mf-archive__hero-inner { max-width: 720px; margin-left: auto; margin-right: auto; }
.mf-archive__orb--left { left: -30px; right: auto; }
/* Offerte-hero: extra grote, prominente cirkel (zoals in het ontwerp). */
.mf-offerte .mf-archive__hero { padding: 56px 0 52px; }
.mf-offerte .mf-archive__orb { width: 320px; height: 320px; top: -90px; right: -70px; }

/* ================= FAQ-pagina ================= */
.mf-faqp__nav {
	display: flex; flex-wrap: wrap; gap: 10px; justify-content: center;
	padding-top: 26px;
}
.mf-faqp__nav a {
	background: #efeadd; border: 1px solid rgba(47, 42, 34, .12); color: var(--mf-ink);
	padding: 9px 16px; border-radius: 30px; font-size: 13px; font-weight: 600;
	transition: background .2s ease, border-color .2s ease;
}
.mf-faqp__nav a:hover { background: var(--mf-gold); border-color: var(--mf-gold); }
.mf-faqp__body { max-width: 900px; margin: 0 auto; padding: 34px 24px 8px; }
.mf-faqp__group { scroll-margin-top: 20px; margin-bottom: 40px; }
.mf-faqp__grouphead { display: flex; align-items: baseline; gap: 12px; margin: 0 0 18px; }
.mf-faqp__no { font-family: var(--mf-font-head); font-size: 22px; color: var(--mf-brown); }
.mf-faqp__groupname { font-family: var(--mf-font-head); font-weight: 500; font-size: 28px; margin: 0; }
.mf-faqp__list { display: flex; flex-direction: column; gap: 12px; }
.mf-faqp__item { background: var(--mf-surface); border: 1px solid rgba(47, 42, 34, .1); border-radius: 12px; overflow: hidden; }
.mf-faqp__q {
	list-style: none; cursor: pointer; padding: 18px 22px;
	font-size: 16px; font-weight: 700; color: var(--mf-ink);
	display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.mf-faqp__q::-webkit-details-marker { display: none; }
.mf-faqp__plus {
	flex: none; width: 28px; height: 28px; border-radius: 50%;
	background: #efeadd; color: #3a2a1b;
	display: flex; align-items: center; justify-content: center;
	font-size: 18px; font-weight: 400; line-height: 1;
	transition: transform .3s ease, background .2s ease;
}
.mf-faqp__item[open] .mf-faqp__plus { transform: rotate(135deg); background: var(--mf-gold); }
.mf-faqp__a { padding: 0 22px 22px; font-size: 14.5px; line-height: 1.65; color: var(--mf-ink-soft); }
.mf-faqp__contact {
	margin: 20px 0 8px; background: #e8ddc9; border-radius: 16px; padding: 44px 46px;
	display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap;
}
.mf-faqp__contact h3 { font-family: var(--mf-font-head); font-weight: 500; font-size: 30px; margin: 0 0 8px; }
.mf-faqp__contact p { font-size: 15px; line-height: 1.6; color: var(--mf-ink-soft); margin: 0; max-width: 460px; }
.mf-faqp__contact-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* ================= Reviews-pagina ================= */
.mf-rev__body { padding-block: 48px 56px; }
.mf-rev__summary {
	background: var(--mf-surface); border: 1px solid rgba(47, 42, 34, .1); border-radius: 16px;
	padding: 34px 40px; display: flex; align-items: center; gap: 40px; flex-wrap: wrap;
}
.mf-rev__score { display: flex; align-items: center; gap: 16px; }
.mf-rev__big { font-family: var(--mf-font-head); font-size: 64px; line-height: 1; }
.mf-rev__stars { color: #e8a53a; font-size: 20px; letter-spacing: 2px; }
.mf-rev__count { font-size: 13px; color: var(--mf-ink-mute); margin-top: 4px; }
.mf-rev__divider { width: 1px; height: 60px; background: rgba(47, 42, 34, .14); }
.mf-rev__google { display: flex; align-items: center; gap: 12px; }
.mf-rev__glogo {
	width: 48px; height: 48px; border-radius: 50%; background: #fff;
	border: 1px solid rgba(47, 42, 34, .12); display: flex; align-items: center; justify-content: center;
	font-weight: 700; font-size: 24px; color: #4285F4;
}
.mf-rev__gtitle { font-size: 15px; font-weight: 700; }
.mf-rev__gsub { font-size: 13px; color: var(--mf-ink-mute); }
.mf-rev__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 32px; }
.mf-rev__slide { display: none; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 32px; }
.mf-rev__slide.is-active { display: grid; }
.mf-rev__nav { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 30px; }
.mf-rev__arrow {
	width: 42px; height: 42px; border-radius: 50%;
	border: 1px solid rgba(47, 42, 34, .2); background: var(--mf-surface); color: var(--mf-ink);
	font-size: 22px; line-height: 1; cursor: pointer;
	display: flex; align-items: center; justify-content: center;
	transition: border-color .2s ease, color .2s ease, background .2s ease;
}
.mf-rev__arrow:hover { border-color: var(--mf-brown); color: var(--mf-brown); }
.mf-rev__dots { display: flex; gap: 9px; align-items: center; }
.mf-rev__dot {
	width: 10px; height: 10px; border-radius: 50%; border: none; padding: 0;
	background: rgba(47, 42, 34, .22); cursor: pointer;
	transition: background .2s ease, transform .2s ease;
}
.mf-rev__dot:hover { background: rgba(47, 42, 34, .4); }
.mf-rev__dot.is-active { background: var(--mf-brown); transform: scale(1.3); }
@media (max-width: 980px) { .mf-rev__slide { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .mf-rev__slide { grid-template-columns: 1fr; } }
.mf-rev__card {
	background: var(--mf-surface); border: 1px solid rgba(47, 42, 34, .09); border-radius: 14px;
	padding: 22px; box-shadow: 0 4px 18px rgba(47, 42, 34, .05);
}
.mf-rev__head { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.mf-rev__avatar {
	width: 42px; height: 42px; border-radius: 50%; color: #fff; flex: none;
	display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 17px;
}
.mf-rev__who { flex: 1; }
.mf-rev__name { font-size: 14.5px; font-weight: 700; }
.mf-rev__when { font-size: 12px; color: var(--mf-ink-mute); }
.mf-rev__g { font-weight: 700; font-size: 16px; color: #4285F4; }
.mf-rev__cardstars { color: #e8a53a; font-size: 14px; letter-spacing: 1px; margin-bottom: 8px; }
.mf-rev__text { font-size: 14px; line-height: 1.55; color: var(--mf-ink-soft); margin: 0; }
@media (max-width: 980px) { .mf-rev__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .mf-rev__grid { grid-template-columns: 1fr; } }

/* ================= Portfolio-pagina ================= */
.mf-pf__body { padding-block: 48px 0; }
.mf-pf__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.mf-pf__card {
	position: relative; height: 300px; border-radius: 14px; overflow: hidden;
	background-color: #e6ddcd; background-size: cover; background-position: center;
	display: flex; align-items: flex-end;
}
.mf-pf__card::after {
	content: ""; position: absolute; inset: 0;
	background: linear-gradient(0deg, rgba(58, 42, 27, .8), transparent 55%);
	pointer-events: none;
}
.mf-pf__card--empty {
	background-image: linear-gradient(135deg, #ece4d5, #ddd0ba);
}
.mf-pf__cap { position: relative; z-index: 1; padding: 18px; color: #f5f3ec; }
.mf-pf__eyebrow { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--mf-gold); font-weight: 700; }
.mf-pf__title { font-family: var(--mf-font-head); font-size: 22px; margin-top: 2px; }
.mf-pf__cta {
	position: relative; margin: 28px 0 48px; background: var(--mf-ink); color: #f5f3ec;
	border-radius: 18px; padding: 52px 46px; text-align: center; overflow: hidden;
}
.mf-pf__ctaorb { position: absolute; width: 180px; height: 180px; border-radius: 50%; background: rgba(122, 82, 48, .3); top: -50px; left: -30px; }
.mf-pf__ctain { position: relative; max-width: 600px; margin: 0 auto; }
.mf-pf__ctain h2 { font-family: var(--mf-font-head); font-weight: 500; font-size: 36px; margin: 0 0 12px; }
.mf-pf__ctain p { font-size: 16px; line-height: 1.6; color: rgba(245, 243, 236, .82); margin: 0 0 26px; }
@media (max-width: 980px) { .mf-pf__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .mf-pf__grid { grid-template-columns: 1fr; } }

/* Honeypot-veld (anti-spam) altijd verborgen, ook buiten het contact-blok. */
.mf-hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }

/* ================= Offerte-pagina ================= */
.mf-offerte__herobtns { display: flex; gap: 12px; margin-top: 26px; flex-wrap: wrap; }
.mf-offerte__usps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(47, 42, 34, .1); }
.mf-offerte__usp { background: #efeadd; padding: 20px 24px; display: flex; gap: 12px; align-items: center; }
.mf-offerte__usp-ico { color: var(--mf-brown); font-size: 20px; line-height: 1; }
.mf-offerte__usp-t { font-size: 14px; font-weight: 700; }
.mf-offerte__usp-s { font-size: 12.5px; color: var(--mf-ink-mute); }

.mf-offerte__blocks { padding-block: 56px 20px; }
.mf-offerte__row { display: flex; gap: 46px; align-items: center; margin-bottom: 52px; }
.mf-offerte__row--rev { flex-direction: row-reverse; }
.mf-offerte__rowtext { flex: 1; }
.mf-offerte__rowtext h2 { font-family: var(--mf-font-head); font-weight: 500; font-size: 32px; line-height: 1.12; margin: 10px 0 16px; }
.mf-offerte__rowtext p { font-size: 15.5px; line-height: 1.75; color: var(--mf-ink-soft); margin: 0 0 12px; }
.mf-offerte__rowimg { flex: none; width: 46%; height: 340px; border-radius: 16px; background: var(--mf-cream) center/cover no-repeat; }

.mf-offerte__center-h { font-family: var(--mf-font-head); font-weight: 500; font-size: 30px; margin: 0 0 8px; text-align: center; }
.mf-offerte__center-p { text-align: center; font-size: 15px; color: var(--mf-ink-mute); max-width: 640px; margin: 0 auto 28px; }
.mf-offerte__options { padding-block: 20px 8px; }
.mf-offerte__optgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.mf-offerte__optcard { background: var(--mf-surface); border: 1px solid rgba(47, 42, 34, .08); border-radius: 12px; padding: 26px; }
.mf-offerte__optico { width: 44px; height: 44px; border-radius: 50%; background: #efeadd; display: flex; align-items: center; justify-content: center; color: var(--mf-brown); font-size: 20px; margin-bottom: 14px; }
.mf-offerte__optt { font-size: 17px; font-weight: 700; margin-bottom: 6px; }
.mf-offerte__optcard p { font-size: 14px; line-height: 1.6; color: var(--mf-ink-mute); margin: 0; }

.mf-offerte__process { padding-block: 52px 8px; }
.mf-offerte__terms { padding-block: 52px 8px; }
.mf-offerte__termsnote { text-align: center; font-size: 14px; color: var(--mf-ink-soft); margin: 20px 0 0; }
.mf-offerte__termsnote a { color: var(--mf-brown); text-decoration: underline; }
.mf-offerte__steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.mf-offerte__step { background: var(--mf-surface); border: 1px solid rgba(47, 42, 34, .08); border-radius: 12px; padding: 28px 24px; }
.mf-offerte__stepno { font-family: var(--mf-font-head); font-size: 15px; font-weight: 600; color: #fff; background: var(--mf-brown); width: 38px; height: 38px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.mf-offerte__stept { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.mf-offerte__step p { font-size: 14px; line-height: 1.6; color: var(--mf-ink-soft); margin: 0; }

.mf-offerte__formwrap { padding-block: 56px 60px; }
.mf-offerte__formgrid { background: var(--mf-surface); border: 1px solid rgba(47, 42, 34, .1); border-radius: 18px; overflow: hidden; display: grid; grid-template-columns: 1fr 340px; }
.mf-offerte__formmain { padding: 44px 46px; }
.mf-offerte__formtitle { font-family: var(--mf-font-head); font-weight: 500; font-size: 32px; margin: 8px 0 6px; }
.mf-offerte__formintro { font-size: 14.5px; line-height: 1.6; color: var(--mf-ink-mute); margin: 0 0 26px; }
.mf-offerte__notice { background: #f6e3dd; border: 1px solid #d9a99a; color: #a3402a; border-radius: 10px; padding: 12px 16px; font-size: 14px; margin-bottom: 20px; }
.mf-offerte__legend { font-size: 12px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: rgba(47, 42, 34, .55); margin: 26px 0 14px; }
.mf-offerte__legend:first-of-type { margin-top: 0; }
.mf-offerte__prodhint { font-size: 13.5px; line-height: 1.5; color: rgba(47, 42, 34, .7); margin: 0 0 14px; }
.mf-offerte__fgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.mf-offerte__f { margin-bottom: 16px; }
.mf-offerte__f--full { grid-column: 1 / -1; }
.mf-offerte__f--split { display: grid; grid-template-columns: 1fr 1.4fr; gap: 12px; }
.mf-offerte__f--dims { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 12px; }
.mf-offerte__f label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; color: var(--mf-ink); }
.mf-offerte__f input, .mf-offerte__f select, .mf-offerte__f textarea {
	width: 100%; box-sizing: border-box; padding: 12px 14px;
	border: 1px solid rgba(47, 42, 34, .2); border-radius: 8px;
	font: 400 14px var(--mf-font-body); background: #fff; color: var(--mf-ink);
}
.mf-offerte__f textarea { resize: vertical; line-height: 1.5; }
.mf-offerte__f input:focus, .mf-offerte__f select:focus, .mf-offerte__f textarea:focus {
	outline: none; border-color: var(--mf-brown); box-shadow: 0 0 0 3px rgba(122, 82, 48, .12);
}
.mf-offerte__pills { display: flex; gap: 9px; flex-wrap: wrap; }
.mf-offerte__pill { position: relative; }
.mf-offerte__pill input { position: absolute; opacity: 0; width: 0; height: 0; }
.mf-offerte__pill span { display: inline-block; padding: 9px 15px; border-radius: 30px; cursor: pointer; font-size: 13px; font-weight: 600; border: 1px solid rgba(47, 42, 34, .2); background: #fff; color: var(--mf-ink); transition: all .18s ease; }
.mf-offerte__pill input:checked + span { background: var(--mf-brown); border-color: var(--mf-brown); color: #fff; }
.mf-offerte__pill input:focus-visible + span { box-shadow: 0 0 0 3px rgba(122, 82, 48, .25); }
/* Zichtbare validatie (offerte-form.js) */
.mf-offerte__error { display: block; margin-top: 6px; font-size: 12.5px; font-weight: 600; color: #c0392b; }
.mf-offerte__f.mf-invalid > label { color: #c0392b; }
.mf-offerte__f.mf-invalid input, .mf-offerte__f.mf-invalid select, .mf-offerte__f.mf-invalid textarea { border-color: #c0392b; box-shadow: 0 0 0 3px rgba(192, 57, 43, .1); }
.mf-offerte__f.mf-invalid .mf-offerte__pill span { border-color: #c0392b; }
.mf-offerte__agree.mf-invalid { color: #c0392b; }
.mf-offerte__agree.mf-invalid input { outline: 2px solid #c0392b; outline-offset: 2px; }
.mf-offerte__drop { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px; border: 2px dashed rgba(47, 42, 34, .22); border-radius: 10px; padding: 24px; background: #faf8f1; color: var(--mf-ink-mute); cursor: pointer; transition: border-color .2s ease, color .2s ease; }
.mf-offerte__drop:hover { border-color: var(--mf-brown); color: var(--mf-brown); }
.mf-offerte__drop-plus { font-size: 24px; line-height: 1; }
.mf-offerte__drop-t { font-size: 13px; }
.mf-offerte__drop input { position: absolute; width: 1px; height: 1px; opacity: 0; overflow: hidden; }
.mf-offerte__drop.is-drag { border-color: var(--mf-brown); background: #f3ece1; color: var(--mf-brown); }
.mf-offerte__filelist { list-style: none; margin: 12px 0 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.mf-offerte__fileitem { display: flex; align-items: center; gap: 12px; padding: 8px; border: 1px solid var(--mf-line); border-radius: 10px; background: #fff; }
.mf-offerte__filethumb { flex: none; width: 46px; height: 46px; border-radius: 8px; overflow: hidden; background: #f3ece1; display: flex; align-items: center; justify-content: center; }
.mf-offerte__filethumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.mf-offerte__filethumb--doc { font-size: 12px; font-weight: 700; color: var(--mf-brown); }
.mf-offerte__filemeta { flex: 1 1 auto; min-width: 0; display: flex; flex-direction: column; gap: 2px; }
.mf-offerte__filemeta strong { font-size: 13px; font-weight: 600; color: var(--mf-ink); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.mf-offerte__filemeta em { font-size: 12px; font-style: normal; color: var(--mf-ink-mute); }
.mf-offerte__fileremove { flex: none; width: 28px; height: 28px; border: none; border-radius: 50%; background: #f3ece1; color: var(--mf-ink); font-size: 18px; line-height: 1; cursor: pointer; transition: background .15s ease, color .15s ease; }
.mf-offerte__fileremove:hover { background: #e3574a; color: #fff; }
.mf-offerte__filenote { margin-top: 8px; font-size: 12.5px; font-weight: 600; color: #c0392b; }
.mf-offerte__hint { font-size: 11.5px; color: rgba(47, 42, 34, .5); margin-top: 8px; }
.mf-offerte__agree { display: flex; gap: 10px; align-items: flex-start; font-size: 13.5px; color: var(--mf-ink-soft); margin: 6px 0 22px; cursor: pointer; }
.mf-offerte__agree input { width: 18px; height: 18px; margin-top: 1px; accent-color: var(--mf-brown); flex: none; }
.mf-offerte__submit { width: auto; }
.mf-offerte__done { min-height: 420px; display: flex; flex-direction: column; justify-content: center; align-items: flex-start; }
.mf-offerte__donecheck { width: 64px; height: 64px; border-radius: 50%; background: var(--mf-gold); color: var(--mf-ink); display: flex; align-items: center; justify-content: center; font-size: 32px; margin-bottom: 20px; }
.mf-offerte__done h2 { font-family: var(--mf-font-head); font-weight: 500; font-size: 32px; margin: 0 0 10px; }
.mf-offerte__done p { font-size: 15.5px; line-height: 1.7; color: var(--mf-ink-soft); margin: 0 0 24px; max-width: 460px; }
.mf-offerte__rail { background: var(--mf-ink); color: #f5f3ec; padding: 44px 34px; position: relative; overflow: hidden; }
.mf-offerte__railorb { position: absolute; width: 160px; height: 160px; border-radius: 50%; background: rgba(122, 82, 48, .35); bottom: -50px; right: -40px; }
.mf-offerte__railin { position: relative; }
.mf-offerte__railin h3 { font-family: var(--mf-font-head); font-weight: 500; font-size: 24px; margin: 0 0 8px; }
.mf-offerte__railin > p { font-size: 14px; line-height: 1.65; color: rgba(245, 243, 236, .8); margin: 0 0 24px; }
.mf-offerte__railcontact { display: flex; flex-direction: column; gap: 16px; font-size: 14px; }
.mf-offerte__railcontact span { display: block; color: #d9b98a; font-size: 12px; text-transform: uppercase; letter-spacing: .12em; font-weight: 700; margin-bottom: 3px; }
.mf-offerte__railcontact a { color: #f5f3ec; font-weight: 600; }
.mf-offerte__railcontact em { color: rgba(245, 243, 236, .85); font-style: normal; }
.mf-offerte__railreview { margin-top: 28px; padding-top: 22px; border-top: 1px solid rgba(255, 255, 255, .14); }
.mf-offerte__railstars { display: flex; gap: 10px; align-items: center; margin-bottom: 10px; font-size: 13px; font-weight: 700; }
.mf-offerte__railstars span { color: var(--mf-gold); font-size: 18px; }
.mf-offerte__railreview p { font-size: 13px; line-height: 1.6; color: rgba(245, 243, 236, .78); margin: 0; font-style: italic; }
.mf-offerte__railby { font-size: 12px; color: rgba(245, 243, 236, .55); margin-top: 8px; }
@media (max-width: 900px) {
	.mf-offerte__usps { grid-template-columns: repeat(2, 1fr); }
	.mf-offerte__row, .mf-offerte__row--rev { flex-direction: column; gap: 22px; }
	.mf-offerte__rowimg { width: 100%; height: 260px; }
	.mf-offerte__optgrid, .mf-offerte__steps { grid-template-columns: 1fr 1fr; }
	.mf-offerte__formgrid { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
	.mf-offerte__usps { grid-template-columns: 1fr; }
	.mf-offerte__fgrid { grid-template-columns: 1fr; }
	.mf-offerte__f--dims { grid-template-columns: 1fr 1fr 1fr; }
	.mf-offerte__optgrid, .mf-offerte__steps { grid-template-columns: 1fr; }
	.mf-offerte__formmain { padding: 32px 24px; }
}

/* ================= Contact-pagina ================= */
.mf-contactpg__cards { padding-block: 48px 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.mf-contactpg__card { background: var(--mf-surface); border: 1px solid rgba(47, 42, 34, .08); border-radius: 12px; padding: 26px; }
.mf-contactpg__ico { width: 44px; height: 44px; border-radius: 50%; background: #efeadd; display: flex; align-items: center; justify-content: center; color: var(--mf-brown); font-size: 20px; margin-bottom: 14px; }
.mf-contactpg__ct { font-size: 17px; font-weight: 700; margin-bottom: 6px; }
.mf-contactpg__card p { font-size: 14px; line-height: 1.6; color: var(--mf-ink-mute); margin: 0; }
.mf-contactpg__card a { font-weight: 700; }

.mf-contactpg__two { padding-block: 48px 0; display: grid; grid-template-columns: 1fr 1fr; gap: 30px; align-items: start; }
.mf-contactpg__hours { background: var(--mf-surface); border: 1px solid rgba(47, 42, 34, .1); border-radius: 16px; padding: 32px 34px; }
.mf-contactpg__hours h2 { font-family: var(--mf-font-head); font-weight: 500; font-size: 26px; margin: 0 0 18px; }
.mf-contactpg__hourslist { font-size: 14.5px; line-height: 1.9; color: rgba(47, 42, 34, .82); }
.mf-contactpg__hrow { display: flex; justify-content: space-between; border-bottom: 1px solid rgba(47, 42, 34, .08); padding: 5px 0; }
.mf-contactpg__hrow--last { border-bottom: none; }
.mf-contactpg__closed { color: rgba(47, 42, 34, .55); }
.mf-contactpg__note { font-size: 13px; line-height: 1.6; color: rgba(47, 42, 34, .6); margin: 14px 0 0; background: #efeadd; border-radius: 8px; padding: 10px 14px; }
.mf-contactpg__stack { display: flex; flex-direction: column; gap: 20px; }
.mf-contactpg__beige { background: #e8ddc9; border-radius: 16px; padding: 30px 34px; }
.mf-contactpg__beige h3 { font-family: var(--mf-font-head); font-weight: 500; font-size: 22px; margin: 0 0 8px; }
.mf-contactpg__beige p { font-size: 14.5px; line-height: 1.65; color: rgba(47, 42, 34, .8); margin: 0; }
.mf-contactpg__beige a, .mf-contactpg__info a, .mf-contactpg__adr a { font-weight: 700; }
.mf-contactpg__info { background: var(--mf-surface); border: 1px solid rgba(47, 42, 34, .1); border-radius: 16px; padding: 30px 34px; }
.mf-contactpg__info p { font-size: 14.5px; line-height: 1.7; color: var(--mf-ink-soft); margin: 0 0 16px; }
.mf-contactpg__adr { font-size: 14.5px; line-height: 1.8; color: rgba(47, 42, 34, .85); }

.mf-contactpg__locwrap { padding-block: 48px 0; }
.mf-contactpg__h { font-family: var(--mf-font-head); font-weight: 500; font-size: 32px; margin: 0 0 22px; }
.mf-contactpg__loc { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; align-items: stretch; }
.mf-contactpg__photo { min-height: 360px; border-radius: 16px; background: var(--mf-cream) center/cover no-repeat; }
.mf-contactpg__map { min-height: 360px; border-radius: 16px; overflow: hidden; border: 1px solid rgba(47, 42, 34, .1); }
.mf-contactpg__map iframe { border: 0; width: 100%; height: 100%; display: block; }

.mf-contactpg__formsec { padding-block: 48px 56px; display: grid; grid-template-columns: 1.4fr 1fr; gap: 30px; align-items: start; }
.mf-contactpg__formcard { background: var(--mf-surface); border: 1px solid rgba(47, 42, 34, .1); border-radius: 16px; padding: 36px 40px; }
.mf-contactpg__formcard h2 { font-family: var(--mf-font-head); font-weight: 500; font-size: 26px; margin: 0 0 20px; }
.mf-contactpg__notice { border-radius: 10px; padding: 12px 16px; font-size: 14px; margin-bottom: 18px; background: #f6e3dd; border: 1px solid #d9a99a; color: #a3402a; }
.mf-contactpg__notice--ok { background: #e6efe0; border-color: #a9c69a; color: #3f6b2e; }
.mf-contactpg__frow { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.mf-contactpg__f { margin-bottom: 16px; }
.mf-contactpg__f label { font-size: 13px; font-weight: 600; display: block; margin-bottom: 6px; color: var(--mf-ink); }
.mf-contactpg__f input, .mf-contactpg__f textarea {
	width: 100%; box-sizing: border-box; padding: 12px 14px;
	border: 1px solid rgba(47, 42, 34, .2); border-radius: 8px;
	font: 400 14px var(--mf-font-body); background: #fff; color: var(--mf-ink);
}
.mf-contactpg__f textarea { resize: vertical; line-height: 1.5; }
.mf-contactpg__f input:focus, .mf-contactpg__f textarea:focus { outline: none; border-color: var(--mf-brown); box-shadow: 0 0 0 3px rgba(122, 82, 48, .12); }
.mf-contactpg__help { background: var(--mf-ink); color: #f5f3ec; border-radius: 16px; padding: 30px 32px; position: relative; overflow: hidden; }
.mf-contactpg__helporb { position: absolute; width: 150px; height: 150px; border-radius: 50%; background: rgba(122, 82, 48, .35); bottom: -50px; right: -40px; }
.mf-contactpg__help h3 { font-family: var(--mf-font-head); font-weight: 500; font-size: 22px; margin: 0 0 14px; position: relative; }
.mf-contactpg__helplinks { position: relative; display: flex; flex-direction: column; }
.mf-contactpg__helplinks a { display: flex; justify-content: space-between; align-items: center; gap: 10px; padding: 12px 0; border-bottom: 1px solid rgba(255, 255, 255, .12); color: #f5f3ec; font-size: 14.5px; font-weight: 600; }
.mf-contactpg__helplinks a:hover { color: var(--mf-gold); }
.mf-contactpg__helplink--last { border-bottom: none !important; }
.mf-contactpg__arrow { color: #d9b98a; }
.mf-contactpg__aside { background: #e8ddc9; border-radius: 16px; padding: 26px 30px; display: flex; flex-direction: column; gap: 14px; }
.mf-contactpg__asiderow { display: flex; gap: 12px; align-items: flex-start; }
.mf-contactpg__asiderow > span { color: var(--mf-brown); font-size: 18px; line-height: 1.4; }
.mf-contactpg__asiderow strong { display: block; font-size: 15px; }
.mf-contactpg__asiderow div span { font-size: 13.5px; line-height: 1.55; color: rgba(47, 42, 34, .7); }
.mf-contactpg__asiderow a { font-weight: 700; }
@media (max-width: 900px) {
	.mf-contactpg__cards { grid-template-columns: 1fr; }
	.mf-contactpg__two, .mf-contactpg__loc, .mf-contactpg__formsec { grid-template-columns: 1fr; }
	.mf-contactpg__frow { grid-template-columns: 1fr 1fr; }
}

/* ================= Marquee-USP's + hamburger (defaults) ================= */
.mf-utilitybar__marquee { display: none; }
.mf-navtoggle {
	display: none; flex-direction: column; align-items: center; justify-content: center;
	gap: 4px; width: 44px; height: 44px; padding: 0;
	border: 1px solid var(--mf-line); border-radius: 10px; background: var(--mf-surface); cursor: pointer;
}
.mf-navtoggle span { display: block; width: 20px; height: 2px; background: var(--mf-ink); border-radius: 2px; transition: transform .2s ease, opacity .2s ease; }
.mf-navtoggle.is-active span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.mf-navtoggle.is-active span:nth-child(2) { opacity: 0; }
.mf-navtoggle.is-active span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
@keyframes mf-uspscroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ================= Responsief ================= */
@media (max-width: 1080px) {
	ul.products { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 860px) {
	ul.products { grid-template-columns: repeat(2, 1fr); }
	.mf-footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
	.mf-footer__grid { grid-template-columns: 1fr; }
}

/* ================= Mobiele header (<= 900px) ================= */
@media (max-width: 900px) {
	/* USP-balk -> doorlopende marquee */
	.mf-utilitybar__inner { display: none; }
	.mf-utilitybar__marquee { display: block; overflow: hidden; }
	.mf-utilitybar__track { display: flex; width: max-content; gap: 30px; padding: 8px 0; white-space: nowrap; animation: mf-uspscroll 26s linear infinite; }
	.mf-utilitybar__mi { display: inline-flex; align-items: center; gap: 6px; font-size: 12.5px; }

	/* Header opschonen */
	.mf-header__inner { flex-wrap: wrap; gap: 14px; align-items: center; }
	.mf-header__logo { margin-right: auto; }
	.mf-header__logo img { height: 44px; width: auto; }
	.mf-search { order: 3; flex-basis: 100%; }
	.mf-header__actions { gap: 12px; }
	.mf-header__fav { display: none; }
	.mf-header__cart-label { display: none; }
	.mf-header__cart { padding: 9px 13px; }

	/* Hamburger + uitklapbare nav */
	.mf-navtoggle { display: inline-flex; }
	.mf-nav { display: none; }
	.mf-nav.is-open { display: block; }
	.mf-nav__inner { flex-direction: column; align-items: stretch; gap: 0; list-style: none; padding: 10px 30px 22px; }
	.mf-nav__inner li { list-style: none; margin: 0; }
	.mf-nav__inner > a,
	.mf-nav__inner li > a { display: block; padding: 16px 2px; border-bottom: 1px solid var(--mf-line); font-size: 16px; }
	.mf-nav__inner > a:last-child,
	.mf-nav__inner li:last-child > a { border-bottom: none; }
	.mf-nav__showroom { margin-left: 0; }
	.mf-nav__inner a.mf-nav__maatwerk { justify-content: flex-start; }
	.mf-nav__shopall { text-align: center; color: #fff !important; margin-top: 14px; border-radius: 10px; }
}
@media (max-width: 900px) and (prefers-reduced-motion: reduce) {
	.mf-utilitybar__track { animation: none; }
}

/* ================= Mega-menu ================= */
.mf-nav { position: relative; }
.mf-nav__list { display: flex; align-items: center; justify-content: center; flex-wrap: nowrap; gap: 18px; list-style: none; margin: 0; padding: 0; }
.mf-nav__item { position: static; }
.mf-nav__item--cats { position: relative; }
.mf-nav__link { display: inline-flex; align-items: center; gap: 6px; padding: 6px 0; color: var(--mf-ink); font-weight: 600; cursor: pointer; }
.mf-nav__chev { width: 7px; height: 7px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg); position: relative; top: -2px; opacity: .45; transition: transform .2s ease, top .2s ease; }
.mf-nav__item:hover > .mf-nav__link .mf-nav__chev,
.mf-nav__item:focus-within > .mf-nav__link .mf-nav__chev { transform: rotate(-135deg); top: 2px; }
.mf-nav__sale { color: #b3402a; }
.mf-mega { position: absolute; left: 0; right: 0; top: 100%; background: var(--mf-surface); border-top: 1px solid var(--mf-line); box-shadow: 0 24px 44px rgba(47, 42, 34, .12); opacity: 0; visibility: hidden; transform: translateY(6px); transition: opacity .18s ease, transform .18s ease, visibility 0s linear .18s; z-index: 60; }
.mf-nav__item.has-mega:hover > .mf-mega,
.mf-nav__item.has-mega:focus-within > .mf-mega { opacity: 1; visibility: visible; transform: none; transition: opacity .18s ease, transform .18s ease; }
.mf-mega__inner { max-width: var(--mf-maxw); margin-inline: auto; padding: 28px var(--mf-gutter) 32px; }
.mf-mega__links { display: flex; flex-direction: column; gap: 0; }
.mf-mega__links a { display: block; padding: 8px 0; color: var(--mf-ink-soft); font-weight: 500; }
.mf-mega__links a:hover { color: var(--mf-brown); }
.mf-mega__all { display: inline-block; margin-top: 14px; color: var(--mf-brown); font-weight: 700; }

/* Categorie-dropdown: compacte verticale kolom onder de menu-knop */
.mf-nav__item--cats > .mf-mega { left: 0; right: auto; min-width: 240px; width: max-content; border: 1px solid var(--mf-line); border-radius: 0 0 14px 14px; }
.mf-nav__item--cats .mf-mega__inner { max-width: none; margin: 0; padding: 16px 24px 18px; }

/* Showroom-dropdown: adres (donker) + openingstijden (licht), rechts uitgelijnd.
   Eigen namespace (mf-srmenu) om botsing met de Showroom-pagina (mf-showroom) te voorkomen. */
.mf-nav__item--showroom { position: relative; }
.mf-nav__item--showroom > .mf-mega { left: auto; right: 0; min-width: 540px; width: max-content; max-width: 92vw; background: #fff; border: 1px solid var(--mf-line); border-radius: 0 0 14px 14px; }
.mf-srmenu { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; max-width: none; margin: 0; padding: 18px; }
.mf-srmenu__card { padding: 24px 26px; border-radius: 14px; }
.mf-srmenu__card--dark { background: var(--mf-ink); color: var(--mf-bg); }
.mf-srmenu__card--light { background: var(--mf-alt); color: var(--mf-ink); }
.mf-srmenu__h { font-family: var(--mf-font-head); font-weight: 500; font-size: 19px; margin: 0 0 14px; padding-bottom: 8px; border-bottom: 2px solid var(--mf-gold); display: inline-block; }
.mf-srmenu__card--dark .mf-srmenu__h { color: #fff; }
.mf-srmenu p { font-size: 14px; line-height: 1.7; margin: 0 0 14px; }
.mf-srmenu__card--dark p { color: rgba(255, 255, 255, .85); }
.mf-srmenu__card--dark a { color: var(--mf-gold); }
.mf-srmenu__link { display: inline-block; font-weight: 700; }
.mf-srmenu__card--dark .mf-srmenu__link { color: #fff; }
.mf-srmenu dl { margin: 0; }
.mf-srmenu__row { display: flex; justify-content: space-between; gap: 24px; font-size: 13.5px; padding: 5px 0; }
.mf-srmenu__row dt { font-weight: 600; margin: 0; }
.mf-srmenu__row dd { margin: 0; white-space: nowrap; color: var(--mf-ink-soft); }
.mf-mega__tiles { display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); gap: 18px; }
.mf-mega__tile { display: block; }
.mf-mega__tileimg { display: block; aspect-ratio: 4 / 3; border-radius: 12px; background: var(--mf-alt); background-size: cover; background-position: center; margin-bottom: 10px; }
.mf-mega__tilelabel { font-weight: 700; color: var(--mf-ink); }
.mf-mega__tile:hover .mf-mega__tilelabel { color: var(--mf-brown); }

@media (max-width: 900px) {
	.mf-nav__list { flex-direction: column; align-items: stretch; gap: 0; width: 100%; }
	.mf-nav__right { flex-direction: column; align-items: stretch; width: 100%; gap: 0; }
	.mf-nav__link { justify-content: space-between; width: 100%; padding: 16px 2px; font-size: 16px; }
	.mf-nav__chev { top: 0; }
	.mf-mega { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border-top: 0; background: transparent; display: none; }
	.mf-nav__item.has-mega.is-open > .mf-mega { display: block; }
	.mf-nav__item.has-mega.is-open > .mf-nav__link .mf-nav__chev { transform: rotate(-135deg); }
	.mf-mega__inner { max-width: none; padding: 0 0 16px; }
	.mf-mega__links { grid-template-columns: 1fr 1fr; }
	.mf-mega__tiles { grid-template-columns: 1fr 1fr; }
	.mf-nav__item--showroom > .mf-mega { right: auto; min-width: 0; width: 100%; }
	.mf-srmenu { grid-template-columns: 1fr; }
}

/* ================= Favorieten (hartje + teller + pagina) ================= */
.mf-fav { -webkit-appearance: none; appearance: none; background: none; border: 0; padding: 0; margin: 0; line-height: 1; cursor: pointer; }
.mf-fav.is-active { color: #c0392b; }
.mf-header__fav { position: relative; }
.mf-fav-count { position: absolute; top: -6px; right: -10px; min-width: 16px; height: 16px; padding: 0 4px; box-sizing: border-box; border-radius: 10px; background: var(--mf-brown); color: #fff; font-size: 10px; font-weight: 700; display: inline-flex; align-items: center; justify-content: center; }
.mf-fav-count[hidden] { display: none; }
.mf-favorites { padding: 40px 0 64px; }
.mf-favorites__head { margin-bottom: 26px; }
.mf-favorites__title { font-family: var(--mf-font-head); font-weight: 500; font-size: clamp(28px, 4vw, 40px); margin: 0 0 8px; }
.mf-favorites__sub { color: var(--mf-ink-soft); margin: 0; font-size: 15px; }
.mf-favorites__grid { list-style: none; padding: 0; margin: 0; }
.mf-favorites__empty { text-align: center; padding: 44px 20px 20px; }
.mf-favorites__empty p { color: var(--mf-ink-soft); margin: 0 0 18px; }
.mf-favorites__empty[hidden] { display: none; }

/* "Bekijk product"-link op de helper-productkaart (mf-card) */
.mf-card__view { display: block; text-align: center; margin-top: 10px; background: transparent; color: var(--mf-brown); border: 1px solid var(--mf-brown); padding: 9px 16px; font: 700 12.5px var(--mf-font-body); border-radius: var(--mf-radius-sm); transition: background .2s ease, color .2s ease; }
.mf-card__view:hover { background: var(--mf-brown); color: #fff; }
.mf-card .added_to_cart { display: none; }

/* ================= Juridische pagina's (mf-legal) ================= */
.mf-legal { max-width: 780px; margin: 0 auto; padding: 8px 0 24px; }
.mf-legal--head { padding-bottom: 0; }
.mf-legal__title { font-family: var(--mf-font-head); font-weight: 500; font-size: 34px; line-height: 1.15; color: var(--mf-ink); margin: 16px 0 4px; text-wrap: balance; }
.mf-legal__intro { font-size: 16px; line-height: 1.7; color: var(--mf-ink-soft); margin: 0 0 28px; }
.mf-legal h2 { font-family: var(--mf-font-head); font-weight: 500; font-size: 22px; color: var(--mf-ink); margin: 34px 0 10px; }
.mf-legal h3 { font-size: 16px; font-weight: 700; color: var(--mf-ink); margin: 20px 0 6px; }
.mf-legal p { font-size: 15px; line-height: 1.75; color: rgba(47, 42, 34, .82); margin: 0 0 12px; }
.mf-legal ul, .mf-legal ol { font-size: 15px; line-height: 1.75; color: rgba(47, 42, 34, .82); padding-left: 22px; margin: 0 0 14px; }
.mf-legal li { margin: 0 0 6px; }
.mf-legal a { color: var(--mf-brown); text-decoration: underline; }
.mf-legal__callout { background: rgba(122, 82, 48, .07); border: 1px solid rgba(122, 82, 48, .25); border-left: 4px solid var(--mf-brown); border-radius: 12px; padding: 18px 22px; margin: 0 0 28px; }
.mf-legal__callout h3 { margin-top: 0; color: var(--mf-brown); }
.mf-legal__callout p { margin-bottom: 0; }
.mf-legal__form { border: 1px dashed rgba(47, 42, 34, .3); border-radius: 12px; padding: 18px 22px; margin: 0 0 18px; background: var(--mf-surface); }
.mf-legal__form p { font-size: 14px; }
.mf-legal__foot { margin-top: 34px; padding-top: 16px; border-top: 1px solid var(--mf-line); font-size: 13px; color: var(--mf-ink-mute); }

/* ================= Cookiemelding ================= */
.mf-cookie { position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 200; background: var(--mf-surface); border: 1px solid var(--mf-line); border-radius: 14px; box-shadow: 0 18px 44px rgba(47, 42, 34, .18); }
.mf-cookie__inner { max-width: 1100px; margin: 0 auto; padding: 18px 22px; display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.mf-cookie__text { flex: 1; min-width: 260px; }
.mf-cookie__text strong { display: block; font-size: 15px; color: var(--mf-ink); margin-bottom: 3px; }
.mf-cookie__text p { margin: 0; font-size: 13.5px; line-height: 1.55; color: var(--mf-ink-soft); }
.mf-cookie__text a { color: var(--mf-brown); }
.mf-cookie__actions { display: flex; gap: 10px; flex: none; }
.mf-cookie__actions .mf-btn { padding: 11px 20px; font-size: 13.5px; }
@media (max-width: 560px) { .mf-cookie__actions { width: 100%; } .mf-cookie__actions .mf-btn { flex: 1; justify-content: center; } }

/* Juridische links in de footer-onderbalk */
.mf-footer__legal { display: flex; flex-wrap: wrap; gap: 6px 18px; }
.mf-footer__legal a { font-size: 12.5px; color: inherit; opacity: .72; }
.mf-footer__legal a:hover { opacity: 1; text-decoration: underline; }
