:root {
	--fwmb-ink: #151719;
	--fwmb-muted: #667085;
	--fwmb-line: #e5e7eb;
	--fwmb-paper: #ffffff;
	--fwmb-wash: #f7f4ef;
	--fwmb-orange: #f97316;
	--fwmb-orange-dark: #d9550b;
	--fwmb-gold: #f5a623;
	--fwmb-olive: #78873e;
	--fwmb-shadow: 0 18px 50px rgba(21, 23, 25, .11);
}

.fwmb-page .entry-content {
	width: 100%;
	max-width: none;
}

.fwmb-page .entry-content > .fwmb {
	margin-right: auto;
	margin-left: auto;
}

.fwmb {
	color: var(--fwmb-ink);
	max-width: 1440px;
	margin: 0 auto;
	padding: clamp(22px, 4vw, 64px) clamp(16px, 3vw, 44px) 150px;
}

.fwmb *, .fwmb *::before, .fwmb *::after { box-sizing: border-box; }
.fwmb button, .fwmb input { font: inherit; }

.fwmb__hero {
	position: relative;
	overflow: hidden;
	padding: clamp(34px, 6vw, 82px);
	border-radius: 30px;
	background:
		radial-gradient(circle at 88% 20%, rgba(249, 115, 22, .42), transparent 30%),
		linear-gradient(135deg, #111315 0%, #23272b 100%);
	color: #fff;
	box-shadow: var(--fwmb-shadow);
}

.fwmb__hero::after {
	content: "";
	position: absolute;
	width: 300px;
	height: 300px;
	right: -80px;
	bottom: -170px;
	border: 44px solid rgba(255,255,255,.07);
	border-radius: 50%;
}

.fwmb__eyebrow {
	color: var(--fwmb-gold);
	font-size: 12px;
	font-weight: 900;
	letter-spacing: .18em;
	text-transform: uppercase;
}

.fwmb__hero h1 {
	max-width: 780px;
	margin: 8px 0 12px;
	color: #fff;
	font-size: clamp(38px, 6vw, 76px);
	font-weight: 950;
	line-height: .98;
	letter-spacing: -.045em;
}

.fwmb__hero p {
	max-width: 700px;
	margin: 0;
	color: #e5e7eb;
	font-size: clamp(16px, 2vw, 20px);
	line-height: 1.6;
}

.fwmb__toolbar {
	position: sticky;
	top: 10px;
	z-index: 20;
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	align-items: center;
	justify-content: space-between;
	margin: 28px 0 22px;
	padding: 12px;
	border: 1px solid rgba(229,231,235,.9);
	border-radius: 18px;
	background: rgba(255,255,255,.92);
	box-shadow: 0 10px 30px rgba(21,23,25,.08);
	backdrop-filter: blur(16px);
}

.fwmb__search { flex: 1 1 280px; }
.fwmb__search input {
	width: 100%;
	height: 46px;
	padding: 0 16px;
	border: 1px solid var(--fwmb-line);
	border-radius: 12px;
	background: #fafafa;
	color: var(--fwmb-ink);
}
.fwmb__search input:focus { outline: 3px solid rgba(249,115,22,.2); border-color: var(--fwmb-orange); }

.fwmb__filters { display: flex; flex-wrap: wrap; gap: 7px; }
.fwmb__filters button {
	min-height: 40px;
	padding: 8px 13px;
	border: 1px solid var(--fwmb-line);
	border-radius: 999px;
	background: #fff;
	color: #344054;
	font-size: 13px;
	font-weight: 800;
	cursor: pointer;
}
.fwmb__filters button:hover, .fwmb__filters button.is-active { border-color: var(--fwmb-ink); background: var(--fwmb-ink); color: #fff; }

.fwmb__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(16px, 2vw, 28px);
}

.fwmb-card {
	overflow: hidden;
	border: 1px solid var(--fwmb-line);
	border-radius: 24px;
	background: var(--fwmb-paper);
	box-shadow: 0 7px 24px rgba(21,23,25,.055);
	transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.fwmb-card:hover { transform: translateY(-4px); border-color: #d0d5dd; box-shadow: var(--fwmb-shadow); }
.fwmb-card.is-selected { border-color: var(--fwmb-orange); box-shadow: 0 0 0 3px rgba(249,115,22,.13), var(--fwmb-shadow); }
.fwmb-card[hidden] { display: none; }

.fwmb-card__image { display: block; aspect-ratio: 4/3; overflow: hidden; background: #eee; }
.fwmb-card__image img { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.fwmb-card:hover .fwmb-card__image img { transform: scale(1.025); }
.fwmb-card__body { padding: 20px; }
.fwmb-card__topline { display: flex; gap: 12px; align-items: flex-start; justify-content: space-between; }
.fwmb-card__topline h2 { margin: 0; font-size: 21px; line-height: 1.18; letter-spacing: -.02em; }
.fwmb-card__topline h2 a { color: var(--fwmb-ink); text-decoration: none; }
.fwmb-card__price { flex: 0 0 auto; color: var(--fwmb-orange-dark); font-weight: 900; white-space: nowrap; }
.fwmb-card__price del { display: block; color: #98a2b3; font-size: 12px; }
.fwmb-card__price ins { text-decoration: none; }

.fwmb-card__tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 12px; }
.fwmb-card__tags span { padding: 5px 8px; border-radius: 999px; background: #f1f4e7; color: #59662b; font-size: 10px; font-weight: 900; letter-spacing: .04em; text-transform: uppercase; }

.fwmb-card__ingredients { margin-top: 16px; padding: 14px; border-radius: 14px; background: var(--fwmb-wash); }
.fwmb-card__ingredients strong { display: block; margin-bottom: 5px; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; }
.fwmb-card__ingredients p { display: -webkit-box; overflow: hidden; margin: 0; color: #475467; font-size: 13px; line-height: 1.5; -webkit-box-orient: vertical; -webkit-line-clamp: 3; }

.fwmb-card__macros { display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px; margin-top: 14px; }
.fwmb-card__macros div { min-width: 0; padding: 10px 4px; border-radius: 10px; background: #f8fafc; text-align: center; }
.fwmb-card__macros strong, .fwmb-card__macros span { display: block; }
.fwmb-card__macros strong { font-size: 16px; line-height: 1; }
.fwmb-card__macros span { margin-top: 4px; color: var(--fwmb-muted); font-size: 9px; font-weight: 800; text-transform: uppercase; }

.fwmb-card__actions { display: flex; gap: 10px; align-items: center; justify-content: space-between; margin-top: 16px; }
.fwmb-compare { border: 0; background: transparent; color: #475467; font-size: 13px; font-weight: 800; cursor: pointer; }
.fwmb-compare.is-active { color: var(--fwmb-orange-dark); }
.fwmb-qty { display: grid; grid-template-columns: 38px 38px 38px; height: 40px; overflow: hidden; border: 1px solid #d0d5dd; border-radius: 12px; background: #fff; }
.fwmb-qty button { border: 0; background: #f8fafc; color: var(--fwmb-ink); font-size: 19px; font-weight: 900; cursor: pointer; }
.fwmb-qty button:hover { background: var(--fwmb-orange); color: #fff; }
.fwmb-qty output { display: grid; place-items: center; color: var(--fwmb-ink); font-weight: 900; }

.fwmb-summary {
	position: fixed;
	z-index: 90;
	left: 50%;
	bottom: 18px;
	transform: translateX(-50%);
	display: grid;
	grid-template-columns: auto minmax(180px, 1fr) auto auto;
	gap: 18px;
	align-items: center;
	width: min(1000px, calc(100% - 28px));
	padding: 14px 16px;
	border: 1px solid #343a40;
	border-radius: 20px;
	background: rgba(21,23,25,.96);
	color: #fff;
	box-shadow: 0 20px 60px rgba(0,0,0,.32);
	backdrop-filter: blur(18px);
}
.fwmb-summary__count { display: flex; align-items: baseline; gap: 7px; white-space: nowrap; }
.fwmb-summary__count strong { color: var(--fwmb-gold); font-size: 28px; }
.fwmb-summary__count span { color: #d0d5dd; font-size: 13px; }
.fwmb-summary__progress { position: relative; height: 30px; overflow: hidden; border-radius: 999px; background: #30343a; }
.fwmb-summary__progress div { width: 0; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--fwmb-orange), var(--fwmb-gold)); transition: width .25s ease; }
.fwmb-summary__progress span { position: absolute; inset: 0; display: grid; place-items: center; padding: 0 10px; color: #fff; font-size: 11px; font-weight: 900; text-align: center; }
.fwmb-summary__money { min-width: 92px; text-align: right; }
.fwmb-summary__money span, .fwmb-summary__money small { display: block; }
.fwmb-summary__money span { font-size: 18px; font-weight: 900; }
.fwmb-summary__money small { color: #98a2b3; font-size: 10px; }
.fwmb-summary__add { min-height: 46px; padding: 10px 18px; border: 0; border-radius: 12px; background: var(--fwmb-orange); color: #fff; font-weight: 900; cursor: pointer; }
.fwmb-summary__add:hover { background: var(--fwmb-orange-dark); }
.fwmb-summary__add:disabled { background: #475467; color: #98a2b3; cursor: not-allowed; }

.fwmb-compare-bar { position: fixed; z-index: 80; right: 20px; bottom: 98px; display: flex; gap: 10px; align-items: center; padding: 12px; border-radius: 15px; background: #fff; box-shadow: var(--fwmb-shadow); }
.fwmb-compare-bar[hidden] { display: none; }
.fwmb-compare-bar span { color: #475467; font-size: 12px; }
.fwmb-compare-bar button { min-height: 36px; padding: 7px 11px; border: 0; border-radius: 9px; background: var(--fwmb-ink); color: #fff; font-size: 12px; font-weight: 800; cursor: pointer; }
.fwmb-compare-bar button:last-child { background: #f2f4f7; color: #475467; }

.fwmb-modal { position: fixed; z-index: 1000; inset: 0; }
.fwmb-modal[hidden] { display: none; }
.fwmb-modal__backdrop { position: absolute; inset: 0; background: rgba(9,12,15,.72); backdrop-filter: blur(5px); }
.fwmb-modal__panel { position: absolute; inset: 5vh 4vw; overflow: auto; max-width: 1200px; margin: 0 auto; padding: clamp(22px, 4vw, 44px); border-radius: 24px; background: #fff; box-shadow: 0 30px 80px rgba(0,0,0,.3); }
.fwmb-modal__panel h2 { margin: 5px 0 22px; font-size: clamp(28px, 4vw, 48px); letter-spacing: -.04em; }
.fwmb-modal__close { position: sticky; z-index: 2; top: 0; float: right; width: 42px; height: 42px; border: 0; border-radius: 50%; background: #f2f4f7; color: var(--fwmb-ink); font-size: 28px; cursor: pointer; }
.fwmb-table-wrap { overflow-x: auto; }
.fwmb-table-wrap table { width: 100%; min-width: 700px; border-collapse: collapse; }
.fwmb-table-wrap th, .fwmb-table-wrap td { padding: 14px; border-bottom: 1px solid var(--fwmb-line); text-align: left; vertical-align: top; }
.fwmb-table-wrap th { width: 130px; color: var(--fwmb-muted); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }
.fwmb-table-wrap td { min-width: 180px; color: #344054; font-size: 13px; line-height: 1.55; }
.fwmb-table-wrap .fwmb-compare-name { color: var(--fwmb-ink); font-size: 17px; font-weight: 900; line-height: 1.25; }
.fwmb-table-wrap img { width: 110px; height: 82px; border-radius: 12px; object-fit: cover; }
.fwmb-modal__notice { margin: 20px 0 0; padding: 14px; border-left: 3px solid var(--fwmb-orange); background: #fff7ed; color: #7c2d12; font-size: 12px; }
body.fwmb-modal-open { overflow: hidden; }

.fwmb-product-ingredients { clear: both; margin: 20px 0; padding: 18px; border: 1px solid #e5e7eb; border-radius: 16px; background: #f7f4ef; }
.fwmb-product-ingredients summary { color: #151719; font-weight: 900; cursor: pointer; }
.fwmb-product-ingredients p { margin: 12px 0 0; color: #475467; line-height: 1.6; }
.fwmb-product-ingredients small { display: block; margin-top: 12px; color: #667085; line-height: 1.5; }

.fwmb-loop-ingredients { margin: 10px 0 4px; padding: 10px 12px; border-radius: 10px; background: #f7f4ef; text-align: left; }
.fwmb-loop-ingredients summary { color: #344054; font-size: 12px; font-weight: 900; cursor: pointer; }
.fwmb-loop-ingredients p { margin: 8px 0 0; color: #667085; font-size: 12px; line-height: 1.5; }
.fwmb-shop-callout { display: flex; gap: 18px; align-items: center; justify-content: space-between; margin: 0 0 26px; padding: 20px 22px; border: 1px solid #343a40; border-radius: 18px; background: linear-gradient(135deg, #151719, #282c30); color: #fff; box-shadow: 0 12px 35px rgba(21,23,25,.13); }
.fwmb-shop-callout div, .fwmb-shop-callout strong, .fwmb-shop-callout span { display: block; }
.fwmb-shop-callout strong { color: #fff; font-size: 18px; }
.fwmb-shop-callout span { margin-top: 4px; color: #d0d5dd; font-size: 13px; }
.fwmb-shop-callout .button { flex: 0 0 auto; margin: 0; padding: 12px 18px; border-radius: 10px; background: #f97316; color: #fff; font-weight: 900; text-decoration: none; }

@media (max-width: 1050px) {
	.fwmb__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.fwmb-summary { grid-template-columns: auto 1fr auto; }
	.fwmb-summary__money { display: none; }
}

@media (max-width: 680px) {
	.fwmb { padding-inline: 12px; padding-bottom: 180px; }
	.fwmb__hero { border-radius: 22px; }
	.fwmb__toolbar { top: 4px; }
	.fwmb__filters { flex-wrap: nowrap; width: 100%; overflow-x: auto; padding-bottom: 2px; }
	.fwmb__filters button { flex: 0 0 auto; }
	.fwmb__grid { grid-template-columns: 1fr; }
	.fwmb-summary { bottom: 10px; grid-template-columns: auto 1fr; gap: 9px 12px; border-radius: 16px; }
	.fwmb-summary__progress { order: 3; grid-column: 1 / -1; }
	.fwmb-summary__add { justify-self: end; }
	.fwmb-compare-bar { right: 12px; bottom: 122px; left: 12px; justify-content: space-between; }
	.fwmb-modal__panel { inset: 2vh 8px; border-radius: 18px; }
	.fwmb-shop-callout { align-items: flex-start; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
	.fwmb *, .fwmb *::before, .fwmb *::after { scroll-behavior: auto !important; transition: none !important; }
}
