/* mf-css-bundle 6 files, key f92c8e1a43f0999bb8cc */

/* --- mealfan-v3.css --- */
/**
 * ═══════════════════════════════════════════════════════════════════
 * MEALFAN V3 — Production Stylesheet
 * ═══════════════════════════════════════════════════════════════════
 *
 * Scoped to body.mf-v3 so it coexists safely with V2 and legacy styles.
 * Enable per-page via functions-v3-additions.php.
 *
 * Source of truth: MEALFAN-DESIGN-GUIDELINES.md
 * Derived from mockups in mealfan-v3-*.html + mealfan-v3-shared.css
 *
 * Last updated: April 24, 2026
 * ═══════════════════════════════════════════════════════════════════
 */

/* ───── FONTS ───── */
@import url('https://fonts.googleapis.com/css2?family=DM+Mono:wght@400;500&family=DM+Sans:wght@400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&display=swap');

/* ───── TOKENS (scoped to mf-v3) ───── */
body.mf-v3 {
  --navy: #1a2332;
  --navy-mid: #2a3a52;
  --navy-light: #3d5270;
  --coral: #d4764e;
  --coral-hover: #c06840;
  --coral-light: #f5ddd2;
  --coral-glow: rgba(212, 118, 78, 0.15);
  --cream: #f7f5f2;
  --cream-deep: #eeebe6;
  --warm: #fcfbf9;
  --white: #ffffff;
  --green: #4caf82;
  --green-deep: #378a66;
  --green-light: #e8f5ee;

  --text: #1a2332;
  --text-body: rgba(26, 35, 50, 0.75);
  --text-soft: rgba(26, 35, 50, 0.65);
  --text-muted: rgba(26, 35, 50, 0.50);
  --text-faint: rgba(26, 35, 50, 0.40);

  --border: rgba(26, 35, 50, 0.08);
  --border-hover: rgba(26, 35, 50, 0.15);
  --border-dash: rgba(26, 35, 50, 0.15);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-pill: 999px;

  --shadow-sm: 0 2px 8px rgba(26, 35, 50, 0.06);
  --shadow-md: 0 8px 24px rgba(26, 35, 50, 0.08);
  --shadow-lg: 0 16px 48px rgba(26, 35, 50, 0.12);
  --shadow-xl: 0 32px 80px rgba(26, 35, 50, 0.18);
  --shadow-coral: 0 8px 24px rgba(212, 118, 78, 0.12);

  --mf-heading: 'Playfair Display', Georgia, serif;
  --mf-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --mf-mono: 'DM Mono', 'Courier New', monospace;

  --mf-ease: cubic-bezier(0.25, 1, 0.5, 1);
  --mf-ease-out: cubic-bezier(0, 0, 0.2, 1);
  --mf-ease-pop: cubic-bezier(0.16, 1, 0.3, 1);
  --mf-ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);

  --mf-container: 1200px;
  --mf-container-read: 720px;
}

/* ───── RESET + BASE (scoped) ───── */
body.mf-v3,
body.mf-v3 *,
body.mf-v3 *::before,
body.mf-v3 *::after { box-sizing: border-box; }

body.mf-v3 {
  margin: 0;
  font-family: var(--mf-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.mf-v3 img { max-width: 100%; display: block; }
body.mf-v3 a { color: inherit; }
body.mf-v3 ::selection { background: var(--coral); color: var(--white); }

body.mf-v3 h1, body.mf-v3 h2, body.mf-v3 h3, body.mf-v3 h4, body.mf-v3 h5 {
  margin: 0 0 0.75rem;
  color: var(--navy);
  letter-spacing: -0.02em;
}

body.mf-v3 .mf-wrap {
  max-width: var(--mf-container);
  margin: 0 auto;
  padding: 0 2rem;
}
body.mf-v3 .mf-wrap--read {
  max-width: var(--mf-container-read);
  margin: 0 auto;
  padding: 0 2rem;
}

/* ───── HEADER ───── */
body.mf-v3 .mf-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(247, 245, 242, 0.85);
  backdrop-filter: saturate(140%) blur(18px);
  -webkit-backdrop-filter: saturate(140%) blur(18px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.4s var(--mf-ease), box-shadow 0.4s var(--mf-ease);
}
body.mf-v3 .mf-header.is-scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 1px 20px rgba(26, 35, 50, 0.04);
}
body.mf-v3 .mf-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: var(--mf-container); margin: 0 auto; padding: 18px 2rem;
}
body.mf-v3 .mf-logo {
  font-family: var(--mf-heading); font-size: 1.5rem; font-weight: 500;
  color: var(--navy); text-decoration: none; letter-spacing: -0.02em;
}
body.mf-v3 .mf-logo em { font-style: italic; color: var(--coral); font-weight: 500; }
body.mf-v3 .mf-nav { display: flex; gap: 2rem; align-items: center; }
body.mf-v3 .mf-nav a {
  font-size: 0.8125rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--text-muted); text-decoration: none;
  transition: color 0.2s;
}
body.mf-v3 .mf-nav a:hover { color: var(--text); }
body.mf-v3 .mf-nav-cta {
  padding: 10px 20px !important;
  background: linear-gradient(135deg, var(--coral), var(--coral-hover));
  color: var(--white) !important;
  border-radius: var(--radius-pill);
  font-size: 0.75rem !important; font-weight: 700 !important;
  letter-spacing: 0.08em !important;
  box-shadow: 0 2px 10px rgba(212, 118, 78, 0.25);
  transition: all 0.25s var(--mf-ease-pop);
}
body.mf-v3 .mf-nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(212, 118, 78, 0.3);
  color: var(--white) !important;
}
@media (max-width: 860px) {
  body.mf-v3 .mf-nav a:not(.mf-nav-cta) { display: none; }
}

/* ───── KICKER ───── */
body.mf-v3 .mf-kicker {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, rgba(212, 118, 78, 0.12), rgba(212, 118, 78, 0.06));
  color: var(--coral);
  padding: 6px 16px; border-radius: var(--radius-pill);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  margin-bottom: 1.25rem;
}
body.mf-v3 .mf-kicker--plain {
  background: none; padding: 0;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.2em; color: var(--coral);
  margin-bottom: 0.75rem;
}

/* ───── BUTTONS ───── */
body.mf-v3 .mf-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px;
  font-family: inherit; font-weight: 600;
  font-size: 15px; letter-spacing: 0.02em;
  text-decoration: none; border: none; cursor: pointer;
  border-radius: 13px;
  transition: all 0.25s var(--mf-ease-pop);
}
body.mf-v3 .mf-btn--primary {
  background: linear-gradient(135deg, var(--coral), var(--coral-hover));
  color: var(--white);
  box-shadow: 0 4px 14px rgba(212, 118, 78, 0.20);
}
body.mf-v3 .mf-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(212, 118, 78, 0.30);
}
body.mf-v3 .mf-btn--secondary {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  color: var(--white);
  box-shadow: 0 2px 8px rgba(26, 35, 50, 0.15);
}
body.mf-v3 .mf-btn--secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26, 35, 50, 0.20);
}
body.mf-v3 .mf-btn--ghost {
  background: transparent; color: var(--navy);
  border: 1.5px solid var(--border-hover);
}
body.mf-v3 .mf-btn--ghost:hover {
  border-color: var(--navy);
  transform: translateY(-1px);
}
body.mf-v3 .mf-btn--sm { padding: 10px 20px; font-size: 14px; }

/* ───── SECTIONS ───── */
body.mf-v3 .mf-section { padding: clamp(4rem, 8vw, 7rem) 0; position: relative; }
body.mf-v3 .mf-section--warm { background: var(--warm); }
body.mf-v3 .mf-section--deep { background: var(--cream-deep); }
body.mf-v3 .mf-section--navy {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: var(--white);
}
body.mf-v3 .mf-section__head { max-width: 680px; margin: 0 0 3rem; }
body.mf-v3 .mf-section__head--center { margin: 0 auto 3rem; text-align: center; }
body.mf-v3 .mf-section__kicker {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 0.75rem; display: block;
}
body.mf-v3 .mf-section__title {
  font-family: var(--mf-heading);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400; line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--navy);
  margin: 0 0 0.75rem;
}
body.mf-v3 .mf-section__title em { font-style: italic; color: var(--coral); }
body.mf-v3 .mf-section--navy .mf-section__title { color: var(--white); }
body.mf-v3 .mf-section__desc {
  font-size: 17px; line-height: 1.6;
  color: var(--text-body);
  max-width: 560px; margin: 0;
}
body.mf-v3 .mf-section--navy .mf-section__desc { color: rgba(255, 255, 255, 0.75); }
body.mf-v3 .mf-section__head--center .mf-section__desc { margin: 0 auto; }

/* ───── CARD ───── */
body.mf-v3 .mf-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--mf-ease-pop), box-shadow 0.3s var(--mf-ease-pop), border-color 0.3s var(--mf-ease-pop);
}
body.mf-v3 .mf-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--coral);
}
body.mf-v3 .mf-card--flat { box-shadow: none; }

/* ───── CHIP ───── */
body.mf-v3 .mf-chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  background: var(--white);
  font-size: 13px; font-weight: 500;
  color: var(--text-body);
  text-decoration: none;
  transition: all 0.25s var(--mf-ease-pop);
}
body.mf-v3 .mf-chip:hover {
  border-color: var(--coral);
  color: var(--coral);
  transform: translateY(-1px);
}
body.mf-v3 .mf-chip--green { background: var(--green-light); color: var(--green-deep); border-color: transparent; }
body.mf-v3 .mf-chip--navy { background: var(--navy); color: var(--white); border-color: var(--navy); }

/* ───── SCORE PILL ───── */
body.mf-v3 .mf-score-pill {
  display: inline-block;
  font-family: var(--mf-mono); font-size: 13px; font-weight: 500;
  color: var(--white);
  background: var(--green);
  padding: 4px 10px; border-radius: var(--radius-pill);
  letter-spacing: 0.02em;
}
body.mf-v3 .mf-score-pill--lg { font-size: 20px; padding: 8px 18px; }

/* ───── MORE LINK ───── */
body.mf-v3 .mf-more {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; font-size: 14px;
  color: var(--coral);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: gap 0.25s var(--mf-ease-pop);
}
body.mf-v3 .mf-more:hover { gap: 12px; }

/* ───── BREADCRUMB ───── */
body.mf-v3 .mf-breadcrumb {
  font-family: var(--mf-mono); font-size: 12px;
  color: var(--text-muted); letter-spacing: 0.02em;
  display: flex; flex-wrap: wrap; gap: 8px; align-items: center;
}
body.mf-v3 .mf-breadcrumb a { color: var(--text-body); text-decoration: none; }
body.mf-v3 .mf-breadcrumb a:hover { color: var(--coral); }
body.mf-v3 .mf-breadcrumb-sep { color: var(--text-faint); }

/* ───── DEAL BAR ───── */
body.mf-v3 .mf-deal-bar {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  color: var(--white);
  padding: 10px 20px;
  text-align: center;
  font-size: 13px; font-weight: 500; letter-spacing: 0.02em;
  display: flex; justify-content: center; align-items: center; gap: 16px;
}
body.mf-v3 .mf-deal-bar strong { color: var(--coral); }
body.mf-v3 .mf-deal-bar a {
  color: var(--white); font-weight: 700;
  text-decoration: underline; text-decoration-color: var(--coral);
  text-underline-offset: 3px; text-decoration-thickness: 2px;
}

/* ───── FOOTER ───── */
body.mf-v3 .mf-footer {
  background: var(--navy); color: rgba(255, 255, 255, 0.7);
  padding: 4rem 0 2rem;
}
body.mf-v3 .mf-footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem;
  max-width: var(--mf-container); margin: 0 auto 3rem; padding: 0 2rem;
}
@media (max-width: 700px) { body.mf-v3 .mf-footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }
body.mf-v3 .mf-footer__brand {
  font-family: var(--mf-heading); font-size: 1.5rem; font-weight: 500;
  color: var(--white); margin-bottom: 1rem; letter-spacing: -0.02em;
}
body.mf-v3 .mf-footer__brand em { font-style: italic; color: var(--coral); }
body.mf-v3 .mf-footer__desc {
  font-size: 14px; line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
  max-width: 320px; margin: 0 0 1rem;
}
body.mf-v3 .mf-footer__col h4 {
  font-family: var(--mf-body);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin: 0 0 1rem;
}
body.mf-v3 .mf-footer__col a {
  display: block; font-size: 14px;
  color: rgba(255, 255, 255, 0.72); text-decoration: none;
  margin-bottom: 0.6rem; transition: color 0.2s;
}
body.mf-v3 .mf-footer__col a:hover { color: var(--coral); }
body.mf-v3 .mf-footer__bottom {
  max-width: var(--mf-container); margin: 0 auto;
  padding: 1.5rem 2rem 0;
  border-top: 1px dashed rgba(255, 255, 255, 0.12);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
  font-family: var(--mf-mono); font-size: 12px;
  color: rgba(255, 255, 255, 0.45); letter-spacing: 0.02em;
}
body.mf-v3 .mf-footer__bottom a { color: rgba(255, 255, 255, 0.55); text-decoration: none; }
body.mf-v3 .mf-footer__bottom a:hover { color: var(--coral); }

/* ───── HOMEPAGE (T1) ───── */
body.mf-v3 .mf-hero {
  position: relative;
  padding: clamp(3rem, 7vw, 6rem) 0 clamp(2.5rem, 5vw, 4rem);
  overflow: hidden;
}
body.mf-v3 .mf-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 80% 20%, var(--coral-glow), transparent 70%),
    radial-gradient(ellipse 40% 40% at 10% 80%, rgba(76,175,130,0.06), transparent 70%);
  pointer-events: none; z-index: 0;
}
body.mf-v3 .mf-hero__inner {
  position: relative; z-index: 1;
  max-width: var(--mf-container); margin: 0 auto; padding: 0 2rem;
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: 4rem; align-items: center;
}
@media (max-width: 900px) {
  body.mf-v3 .mf-hero__inner { grid-template-columns: 1fr; gap: 2.5rem; text-align: center; }
}
body.mf-v3 .mf-hero h1 {
  font-family: var(--mf-heading);
  font-size: clamp(2.8rem, 6.5vw, 5.5rem);
  font-weight: 400; line-height: 0.98;
  letter-spacing: -0.035em;
  color: var(--navy);
  margin: 0 0 1.5rem;
}
body.mf-v3 .mf-hero h1 em { font-style: italic; color: var(--coral); font-weight: 400; }
body.mf-v3 .mf-hero__sub {
  font-size: 1.125rem; line-height: 1.6;
  color: var(--text-body);
  max-width: 520px; margin: 0 0 2rem;
}
@media (max-width: 900px) { body.mf-v3 .mf-hero__sub { margin-left: auto; margin-right: auto; } }

body.mf-v3 .mf-hero__actions { display: flex; gap: 12px; flex-wrap: wrap; }
@media (max-width: 900px) { body.mf-v3 .mf-hero__actions { justify-content: center; } }
body.mf-v3 .mf-hero__proof {
  margin-top: 3rem; padding-top: 2rem;
  border-top: 1px dashed var(--border-dash);
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem;
}
@media (max-width: 900px) { body.mf-v3 .mf-hero__proof { grid-template-columns: repeat(2, 1fr); } }
body.mf-v3 .mf-hero__proof-item dt {
  font-family: var(--mf-mono);
  font-size: 1.75rem; font-weight: 500;
  color: var(--navy); letter-spacing: -0.02em; line-height: 1;
  font-variant-numeric: tabular-nums;
}
body.mf-v3 .mf-hero__proof-item dd {
  margin: 0.5rem 0 0;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--text-faint);
}

/* ───── HERO VISUAL (stacked food cards) ───── */
body.mf-v3 .mf-main { display: block; }
body.mf-v3 .mf-hero__copy { display: block; }
body.mf-v3 .mf-hero__visual {
  position: relative;
  aspect-ratio: 1/1.05;
  max-width: 520px;
  width: 100%;
  margin: 0 auto;
}
body.mf-v3 .mf-hero__card {
  position: absolute; overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  background: var(--white);
  transition: transform 0.5s var(--mf-ease-pop);
}
body.mf-v3 .mf-hero__card img { width: 100%; height: 100%; object-fit: contain; background: #fff; }
body.mf-v3 .mf-hero__card--a {
  top: 0; right: 6%; width: 62%; aspect-ratio: 3/4;
  z-index: 2;
  animation: mfFloatA 6s var(--mf-ease) infinite;
}
body.mf-v3 .mf-hero__card--b {
  bottom: 4%; left: 0; width: 52%; aspect-ratio: 4/3;
  z-index: 3;
  animation: mfFloatB 7s var(--mf-ease) infinite;
}
body.mf-v3 .mf-hero__card--c {
  bottom: 28%; right: 0; width: 42%; aspect-ratio: 1/1;
  z-index: 1; border-radius: 50%;
  animation: mfFloatC 8s var(--mf-ease) infinite;
}
body.mf-v3 .mf-hero__visual:hover .mf-hero__card { animation-play-state: paused; }
@keyframes mfFloatA { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes mfFloatB { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px) translateX(4px); } }
@keyframes mfFloatC { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }

/* ───── PILLARS (T1 core) ───── */
body.mf-v3 .mf-pillars {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem;
}
@media (max-width: 900px) { body.mf-v3 .mf-pillars { grid-template-columns: 1fr; } }
body.mf-v3 .mf-pillar {
  position: relative;
  display: flex; flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  text-decoration: none; color: inherit;
  transition: transform 0.35s var(--mf-ease-pop), box-shadow 0.35s var(--mf-ease-pop), border-color 0.35s var(--mf-ease-pop);
}
body.mf-v3 .mf-pillar:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--coral);
}
body.mf-v3 .mf-pillar__image { aspect-ratio: 4/3; overflow: hidden; position: relative; }
body.mf-v3 .mf-pillar__image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s var(--mf-ease);
}
body.mf-v3 .mf-pillar:hover .mf-pillar__image img { transform: scale(1.05); }
body.mf-v3 .mf-pillar__number {
  position: absolute; top: 16px; left: 16px;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.94);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--mf-mono); font-size: 13px; font-weight: 500;
  color: var(--navy);
  backdrop-filter: blur(8px);
}
body.mf-v3 .mf-pillar__meta {
  position: absolute; top: 16px; right: 16px;
  padding: 6px 12px;
  background: rgba(26,35,50,0.82);
  color: var(--white);
  border-radius: var(--radius-pill);
  font-family: var(--mf-mono); font-size: 11px; font-weight: 500;
  backdrop-filter: blur(8px);
}
body.mf-v3 .mf-pillar__body { padding: 1.75rem 1.75rem 2rem; flex-grow: 1; display: flex; flex-direction: column; }
body.mf-v3 .mf-pillar__kicker {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 0.5rem;
}
body.mf-v3 .mf-pillar__title {
  font-family: var(--mf-heading);
  font-size: 1.75rem; font-weight: 400;
  line-height: 1.1; letter-spacing: -0.02em;
  color: var(--navy);
  margin: 0 0 0.5rem;
}
body.mf-v3 .mf-pillar__desc {
  font-size: 15px; line-height: 1.55;
  color: var(--text-body);
  margin: 0 0 1.25rem;
  flex-grow: 1;
}
body.mf-v3 .mf-pillar__cta {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--coral); font-weight: 600; font-size: 14px;
  letter-spacing: 0.02em;
  transition: gap 0.25s var(--mf-ease-pop);
}
body.mf-v3 .mf-pillar:hover .mf-pillar__cta { gap: 10px; }

/* ───── QUIZ STRIP ───── */
body.mf-v3 .mf-quiz-strip {
  margin-top: 3.5rem;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  color: var(--white);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  display: grid; grid-template-columns: 1.3fr 0.7fr;
  gap: 2rem; align-items: center;
  position: relative; overflow: hidden;
}
body.mf-v3 .mf-quiz-strip::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 120% at 100% 50%, var(--coral-glow), transparent 60%);
  pointer-events: none;
}
@media (max-width: 700px) { body.mf-v3 .mf-quiz-strip { grid-template-columns: 1fr; } }
body.mf-v3 .mf-quiz-strip__copy { position: relative; z-index: 1; }
body.mf-v3 .mf-quiz-strip__kicker {
  color: var(--coral);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  margin-bottom: 0.5rem;
}
body.mf-v3 .mf-quiz-strip__title {
  font-family: var(--mf-heading);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 400; line-height: 1.15; letter-spacing: -0.02em;
  margin: 0 0 0.5rem;
}

/* ───── REVIEW TEMPLATE (T3) ───── */
body.mf-v3 .mf-review-hero {
  background: var(--warm);
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(2rem, 4vw, 3rem);
  border-bottom: 1px solid var(--border);
}
body.mf-v3 .mf-review-hero__inner {
  max-width: var(--mf-container); margin: 0 auto; padding: 0 2rem;
  display: grid; grid-template-columns: 1fr 420px; gap: 3rem; align-items: start;
}
@media (max-width: 900px) { body.mf-v3 .mf-review-hero__inner { grid-template-columns: 1fr; } }
body.mf-v3 .mf-review-hero h1 {
  font-family: var(--mf-heading);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 400; line-height: 1.05;
  letter-spacing: -0.035em; color: var(--navy);
  margin: 0 0 1rem;
}
body.mf-v3 .mf-review-hero h1 em { font-style: italic; color: var(--coral); font-weight: 400; }

body.mf-v3 .mf-verdict {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  margin-top: -3rem; position: relative; z-index: 2;
}
body.mf-v3 .mf-verdict-grid {
  display: grid; grid-template-columns: auto 1fr; gap: 2rem; align-items: center;
}
@media (max-width: 700px) { body.mf-v3 .mf-verdict-grid { grid-template-columns: 1fr; text-align: center; } }
body.mf-v3 .mf-verdict__score {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  padding: 1rem 1.5rem;
  background: linear-gradient(135deg, var(--green), var(--green-deep));
  color: var(--white);
  border-radius: var(--radius-lg);
  min-width: 130px;
}
body.mf-v3 .mf-verdict__score-num {
  font-family: var(--mf-heading); font-size: 3rem; font-weight: 500; line-height: 1;
}
body.mf-v3 .mf-verdict__score-label {
  font-family: var(--mf-mono); font-size: 10px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}
body.mf-v3 .mf-verdict__tag {
  font-family: var(--mf-heading); font-size: 1.6rem; font-weight: 400;
  letter-spacing: -0.02em; line-height: 1.25;
  color: var(--navy);
  margin: 0 0 1rem;
}
body.mf-v3 .mf-verdict__meta {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
  padding-top: 1rem; border-top: 1px dashed var(--border-dash);
}
@media (max-width: 600px) { body.mf-v3 .mf-verdict__meta { grid-template-columns: 1fr; gap: 0.75rem; } }
body.mf-v3 .mf-verdict__meta-item dt {
  font-family: var(--mf-mono); font-size: 10px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 4px;
}
body.mf-v3 .mf-verdict__meta-item dd {
  margin: 0; font-size: 14px; font-weight: 500; color: var(--navy);
}

/* Testing data block */
body.mf-v3 .mf-testing {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-xl);
  padding: 2.5rem; margin: 4rem 0;
  position: relative; overflow: hidden;
}
body.mf-v3 .mf-testing::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 50% 100% at 100% 50%, var(--coral-glow), transparent 70%);
  pointer-events: none;
}
body.mf-v3 .mf-testing__grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.5rem;
  position: relative; z-index: 1;
}
@media (max-width: 900px) { body.mf-v3 .mf-testing__grid { grid-template-columns: repeat(2, 1fr); } }
body.mf-v3 .mf-testing__stat dt {
  font-family: var(--mf-mono); font-size: 24px; font-weight: 500;
  color: var(--white); line-height: 1; letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
body.mf-v3 .mf-testing__stat dd {
  margin: 8px 0 0; font-size: 10px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

/* TOC + prose */
body.mf-v3 .mf-review-body {
  display: grid; grid-template-columns: 220px 1fr; gap: 4rem;
  max-width: var(--mf-container); margin: 0 auto; padding: 4rem 2rem;
}
@media (max-width: 900px) { body.mf-v3 .mf-review-body { grid-template-columns: 1fr; gap: 2rem; } }
body.mf-v3 .mf-toc { position: sticky; top: 100px; align-self: start; }
@media (max-width: 900px) { body.mf-v3 .mf-toc { position: static; } }
body.mf-v3 .mf-toc__title {
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--coral); margin: 0 0 1rem;
}
body.mf-v3 .mf-toc__list { list-style: none; padding: 0; margin: 0; }
body.mf-v3 .mf-toc__list li { margin-bottom: 8px; }
body.mf-v3 .mf-toc__list a {
  display: block; font-size: 13px; color: var(--text-body);
  text-decoration: none; padding: 4px 0;
  border-left: 2px solid transparent; padding-left: 10px;
  transition: all 0.2s;
}
body.mf-v3 .mf-toc__list a:hover,
body.mf-v3 .mf-toc__list a.is-active {
  color: var(--coral); border-left-color: var(--coral);
}

body.mf-v3 .mf-prose { max-width: 720px; font-size: 17px; line-height: 1.7; color: var(--text-body); }
body.mf-v3 .mf-prose h2 {
  font-family: var(--mf-heading); font-size: 2rem; font-weight: 400;
  margin: 3.5rem 0 1rem; color: var(--navy);
  letter-spacing: -0.02em; scroll-margin-top: 90px;
}
body.mf-v3 .mf-prose h2:first-child { margin-top: 0; }
body.mf-v3 .mf-prose h3 {
  font-family: var(--mf-heading); font-size: 1.4rem; font-weight: 500;
  margin: 2rem 0 0.75rem; color: var(--navy);
  letter-spacing: -0.015em;
}
body.mf-v3 .mf-prose p { margin: 0 0 1.25rem; }
body.mf-v3 .mf-prose p strong { color: var(--navy); font-weight: 600; }
body.mf-v3 .mf-prose a {
  color: var(--coral); text-decoration: underline;
  text-decoration-color: var(--coral-glow);
  text-decoration-thickness: 2px; text-underline-offset: 3px;
  transition: text-decoration-color 0.2s;
}
body.mf-v3 .mf-prose a:hover { text-decoration-color: var(--coral); }

/* Pros / cons */
body.mf-v3 .mf-proscons {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem;
  margin: 2rem 0;
}
@media (max-width: 700px) { body.mf-v3 .mf-proscons { grid-template-columns: 1fr; } }
body.mf-v3 .mf-pc {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.5rem;
}
body.mf-v3 .mf-pc__head {
  font-family: var(--mf-mono); font-size: 11px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  margin-bottom: 1rem;
}
body.mf-v3 .mf-pc--pros .mf-pc__head { color: var(--green-deep); }
body.mf-v3 .mf-pc--cons .mf-pc__head { color: var(--coral); }
body.mf-v3 .mf-pc ul { list-style: none; padding: 0; margin: 0; }
body.mf-v3 .mf-pc li {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 10px 0; border-top: 1px dashed var(--border-dash);
  font-size: 15px;
}
body.mf-v3 .mf-pc li:first-child { border-top: none; padding-top: 0; }
body.mf-v3 .mf-pc__icon {
  flex-shrink: 0; width: 20px; height: 20px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--mf-mono); font-size: 12px; font-weight: 700;
  margin-top: 2px;
}
body.mf-v3 .mf-pc--pros .mf-pc__icon { background: var(--green-light); color: var(--green-deep); }
body.mf-v3 .mf-pc--cons .mf-pc__icon { background: var(--coral-light); color: var(--coral-hover); }

/* Tables */
body.mf-v3 .mf-table {
  width: 100%; border-collapse: collapse;
  background: var(--white);
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  overflow: hidden; margin: 2rem 0;
}
body.mf-v3 .mf-table th, body.mf-v3 .mf-table td {
  padding: 14px 16px; text-align: left;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}
body.mf-v3 .mf-table th {
  font-family: var(--mf-body); font-size: 10px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--text-faint);
  background: var(--cream);
}
body.mf-v3 .mf-table tr:last-child td { border-bottom: none; }
body.mf-v3 .mf-table tr:hover td { background: var(--cream); }
body.mf-v3 .mf-table td.num { font-family: var(--mf-mono); font-variant-numeric: tabular-nums; }

/* FAQ */
body.mf-v3 .mf-faq { border-top: 1px dashed var(--border-dash); margin-top: 2rem; }
body.mf-v3 .mf-faq details { border-bottom: 1px dashed var(--border-dash); padding: 20px 0; }
body.mf-v3 .mf-faq summary {
  font-family: var(--mf-heading); font-size: 1.15rem;
  font-weight: 500; color: var(--navy);
  cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  letter-spacing: -0.01em;
}
body.mf-v3 .mf-faq summary::-webkit-details-marker { display: none; }
body.mf-v3 .mf-faq summary::after {
  content: '+'; font-family: var(--mf-mono);
  font-size: 1.5rem; color: var(--coral);
  transition: transform 0.25s var(--mf-ease-pop);
}
body.mf-v3 .mf-faq details[open] summary::after { transform: rotate(45deg); }
body.mf-v3 .mf-faq details p {
  margin-top: 12px; font-size: 15px; color: var(--text-body); line-height: 1.6;
}

/* Final verdict */
body.mf-v3 .mf-final {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  color: var(--white);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  margin: 3rem 0;
  position: relative; overflow: hidden;
}
body.mf-v3 .mf-final::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 40% 80% at 100% 0%, var(--coral-glow), transparent 60%);
  pointer-events: none;
}
body.mf-v3 .mf-final__kicker {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--coral); margin-bottom: 0.75rem;
  position: relative;
}
body.mf-v3 .mf-final h3 {
  font-family: var(--mf-heading); font-size: 2rem; font-weight: 400;
  color: var(--white); margin: 0 0 1rem; letter-spacing: -0.02em;
  position: relative;
}
body.mf-v3 .mf-final p {
  font-size: 16px; color: rgba(255, 255, 255, 0.85);
  margin: 0 0 1.75rem; position: relative; max-width: 600px;
}
body.mf-v3 .mf-final__actions {
  display: flex; gap: 12px; flex-wrap: wrap; position: relative;
}

/* ───── RECIPE (T13) ───── */
body.mf-v3 .mf-recipe-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  margin: 3rem auto;
  max-width: var(--mf-container);
}
body.mf-v3 .mf-recipe-card__meta {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem;
  padding-bottom: 1.5rem; margin-bottom: 1.5rem;
  border-bottom: 1px dashed var(--border-dash);
}
@media (max-width: 700px) { body.mf-v3 .mf-recipe-card__meta { grid-template-columns: repeat(2, 1fr); } }
body.mf-v3 .mf-recipe-card__stat { text-align: center; }
body.mf-v3 .mf-recipe-card__stat dt {
  font-family: var(--mf-mono); font-size: 10px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--text-faint); margin-bottom: 6px;
}
body.mf-v3 .mf-recipe-card__stat dd {
  font-family: var(--mf-heading); font-size: 1.5rem;
  font-weight: 400; margin: 0; color: var(--navy); letter-spacing: -0.02em;
}
body.mf-v3 .mf-recipe-card__stat dd small {
  display: block; font-family: var(--mf-body);
  font-size: 11px; font-weight: 500; color: var(--text-muted);
  letter-spacing: 0.04em; margin-top: 2px;
}

body.mf-v3 .mf-ingredients {
  background: var(--warm);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2rem;
}
body.mf-v3 .mf-ingredients h3 {
  font-family: var(--mf-heading); font-size: 1.5rem;
  font-weight: 400; margin: 0 0 1rem; color: var(--navy);
}
body.mf-v3 .mf-ingredients ul { list-style: none; padding: 0; margin: 0; }
body.mf-v3 .mf-ingredients li {
  display: grid; grid-template-columns: auto 1fr; gap: 14px;
  padding: 10px 0;
  border-bottom: 1px dashed var(--border-dash);
  font-size: 14px; align-items: center;
}
body.mf-v3 .mf-ingredients li:last-child { border-bottom: none; }
body.mf-v3 .mf-ingredients .mf-amount {
  font-family: var(--mf-mono); color: var(--navy); font-weight: 500;
  white-space: nowrap;
}

body.mf-v3 .mf-step {
  display: grid; grid-template-columns: 48px 1fr; gap: 1.25rem;
  padding-bottom: 2rem; margin-bottom: 2rem;
  border-bottom: 1px dashed var(--border-dash);
}
body.mf-v3 .mf-step:last-child { border-bottom: none; }
body.mf-v3 .mf-step__num {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--coral), var(--coral-hover));
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--mf-mono); font-weight: 500; font-size: 16px;
  flex-shrink: 0; box-shadow: var(--shadow-coral);
}
body.mf-v3 .mf-step__body h3 {
  font-family: var(--mf-heading); font-size: 1.25rem;
  font-weight: 500; margin: 0 0 0.5rem; color: var(--navy);
}
body.mf-v3 .mf-step__tip {
  display: flex; gap: 10px; padding: 12px 14px;
  background: rgba(212,118,78,0.06);
  border-left: 3px solid var(--coral);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-size: 13px; color: var(--text-body);
  margin-top: 1rem;
}

/* ───── STATE HUB (T10) ───── */
body.mf-v3 .mf-state-hero {
  padding: 4rem 0 3rem;
  background:
    radial-gradient(ellipse 60% 40% at 90% 0%, var(--coral-glow), transparent 70%),
    var(--cream);
}

body.mf-v3 .mf-city-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 8px;
}
body.mf-v3 .mf-city-grid a {
  padding: 10px 14px; background: var(--white);
  border: 1px solid var(--border); border-radius: var(--radius-md);
  text-decoration: none;
  transition: all 0.25s var(--mf-ease-pop);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 14px;
}
body.mf-v3 .mf-city-grid a:hover {
  border-color: var(--coral); color: var(--coral);
  transform: translateY(-1px); box-shadow: var(--shadow-coral);
}
body.mf-v3 .mf-city-grid a strong { color: inherit; font-weight: 500; }
body.mf-v3 .mf-city-grid a small {
  font-family: var(--mf-mono); font-weight: 500;
  color: var(--text-faint); font-size: 10px; letter-spacing: 0.02em;
}

body.mf-v3 .mf-pick {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 2rem;
  position: relative;
  transition: all 0.3s var(--mf-ease-pop);
}
body.mf-v3 .mf-pick:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
body.mf-v3 .mf-pick--top { border: 2px solid var(--coral); }
body.mf-v3 .mf-pick--top::before {
  content: 'Top pick'; position: absolute; top: 0; right: 20px;
  background: var(--coral); color: var(--white);
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}

/* ───── BYLINE / AUTHOR ───── */
body.mf-v3 .mf-byline {
  display: flex; align-items: center; gap: 12px;
  padding: 1rem 0;
  border-top: 1px dashed var(--border-dash);
  border-bottom: 1px dashed var(--border-dash);
  font-family: var(--mf-mono); font-size: 12px;
  color: var(--text-muted); letter-spacing: 0.02em;
  flex-wrap: wrap;
}
body.mf-v3 .mf-byline img {
  width: 32px; height: 32px; border-radius: 50%; object-fit: cover;
}
body.mf-v3 .mf-byline strong { color: var(--navy); font-weight: 500; }

body.mf-v3 .mf-author-block {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2rem;
  display: grid; grid-template-columns: auto 1fr; gap: 2rem; align-items: center;
  max-width: 760px; margin: 0 auto;
}
@media (max-width: 700px) { body.mf-v3 .mf-author-block { grid-template-columns: 1fr; text-align: center; } }
body.mf-v3 .mf-author-block__photo {
  width: 72px; height: 72px; border-radius: 50%; overflow: hidden;
  border: 2px solid var(--border);
}
@media (max-width: 700px) { body.mf-v3 .mf-author-block__photo { margin: 0 auto; } }
body.mf-v3 .mf-author-block__photo img { width: 100%; height: 100%; object-fit: cover; }
body.mf-v3 .mf-author-block__title {
  font-family: var(--mf-mono); font-size: 11px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--text-faint); margin-bottom: 4px;
}
body.mf-v3 .mf-author-block__name {
  font-family: var(--mf-heading); font-size: 1.35rem;
  font-weight: 400; margin: 0 0 6px; color: var(--navy);
}

/* ───── MOTION REDUCE ───── */
@media (prefers-reduced-motion: reduce) {
  body.mf-v3 *, body.mf-v3 *::before, body.mf-v3 *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ===== NAV DROPDOWN (v1.1.0) ===== */
body.mf-v3 .mf-nav-item { position: relative; display: flex; align-items: center; }
body.mf-v3 .mf-nav-dropdown {
  display: none; position: absolute; top: calc(100% + 12px); left: 50%;
  transform: translateX(-50%);
  background: var(--white); border: 1px solid var(--border);
  border-radius: 10px; box-shadow: 0 8px 32px rgba(26,35,50,0.13);
  min-width: 188px; padding: 6px 0; z-index: 9999;
}
body.mf-v3 .mf-nav-item:hover .mf-nav-dropdown { display: block; }
body.mf-v3 .mf-nav-dropdown a {
  display: block !important; padding: 9px 18px;
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase; white-space: nowrap;
  color: var(--text-muted) !important; text-decoration: none;
  transition: color 0.15s, background 0.15s;
}
body.mf-v3 .mf-nav-dropdown a:hover {
  color: var(--coral) !important; background: rgba(212,118,78,0.07);
}
@media (max-width: 860px) {
  body.mf-v3 .mf-nav-dropdown { display: none !important; }
}

/* mf-quiz-strip contrast fix 2026-07-24 */
body.mf-v3 .mf-quiz-strip__title{color:#fff!important}
body.mf-v3 .mf-quiz-strip__copy p{color:rgba(255,255,255,.72)!important}


/* --- mf-page-emblems-20260723-mf-page-emblems.css --- */
.mf-page-emblem{margin:0 0 12px}
.mf-page-emblem .c{display:inline-flex;align-items:center;justify-content:center;width:60px;height:60px;border-radius:50%;background:linear-gradient(145deg,#ffffff,#fff0e6);border:1px solid rgba(229,84,27,.16);box-shadow:0 6px 16px rgba(229,84,27,.16),inset 0 1px 0 #fff;vertical-align:middle}
/* hard-constrain emblem icon size (themes force svg width:100%) */
.mf-page-emblem svg, .mf-guide-badge svg{width:32px !important;height:32px !important;max-width:32px !important;flex:0 0 auto !important;display:block}
.mf-guide-badge span{overflow:hidden}
@media(max-width:640px){.mf-page-emblem .c{width:52px;height:52px}.mf-page-emblem svg, .mf-guide-badge svg{width:28px !important;height:28px !important;max-width:28px !important}}


/* --- mf-responsive-tables-20260723-mf-responsive-tables.css --- */
@media (max-width:640px){
  table.mf-auto-responsive, .mf-rtable table{display:block;width:100%;border:0 !important;font-size:14px}
  table.mf-auto-responsive thead, .mf-rtable thead{position:absolute;left:-9999px;width:1px;height:1px;overflow:hidden}
  table.mf-auto-responsive tbody, table.mf-auto-responsive tr, table.mf-auto-responsive td, .mf-rtable tbody, .mf-rtable tr, .mf-rtable td{display:block;width:auto}
  table.mf-auto-responsive tr, .mf-rtable tr{margin:0 0 14px;border:1px solid #e6e2da;border-radius:8px;overflow:hidden;background:#fff}
  table.mf-auto-responsive td, .mf-rtable td{padding:7px 13px !important;border:0 !important;border-bottom:1px solid #f0ede7 !important;text-align:left !important;white-space:normal !important;overflow-wrap:anywhere}
  table.mf-auto-responsive tr td:last-child, .mf-rtable tr td:last-child{border-bottom:0 !important}
  table.mf-auto-responsive td::before, .mf-rtable td::before{content:attr(data-label);display:block;font-size:11px;text-transform:uppercase;letter-spacing:.03em;color:#9a8f7c;font-weight:700;margin-bottom:1px;line-height:1.3}
  table.mf-auto-responsive td:first-child, .mf-rtable td:first-child{background:#1a2332;padding-top:9px !important;padding-bottom:9px !important}
  table.mf-auto-responsive td:first-child, table.mf-auto-responsive td:first-child *, .mf-rtable td:first-child, .mf-rtable td:first-child *{color:#fff !important;font-weight:700;font-size:15px}
  table.mf-auto-responsive td:first-child::before, .mf-rtable td:first-child::before{content:none}
  table.mf-auto-responsive td:empty, .mf-rtable td:empty{display:none}
}


/* --- mf-sabox.css --- */
.saboxplugin-wrap{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;-ms-box-sizing:border-box;box-sizing:border-box;border:1px solid #eee;width:100%;clear:both;display:block;overflow:hidden;word-wrap:break-word;position:relative}.saboxplugin-wrap .saboxplugin-gravatar{float:left;padding:0 20px 20px 20px}.saboxplugin-wrap .saboxplugin-gravatar img{max-width:121px;height:auto;border-radius:0;}.saboxplugin-wrap .saboxplugin-authorname{font-size:18px;line-height:1;margin:20px 0 0 20px;display:block}.saboxplugin-wrap .saboxplugin-authorname a{text-decoration:none}.saboxplugin-wrap .saboxplugin-authorname a:focus{outline:0}.saboxplugin-wrap .saboxplugin-desc{display:block;margin:5px 20px}.saboxplugin-wrap .saboxplugin-desc a{text-decoration:underline}.saboxplugin-wrap .saboxplugin-desc p{margin:5px 0 12px}.saboxplugin-wrap .saboxplugin-web{margin:0 20px 15px;text-align:left}.saboxplugin-wrap .sab-web-position{text-align:right}.saboxplugin-wrap .saboxplugin-web a{color:#ccc;text-decoration:none}.saboxplugin-wrap .saboxplugin-socials{position:relative;display:block;background:#fcfcfc;padding:5px;border-top:1px solid #eee}.saboxplugin-wrap .saboxplugin-socials a svg{width:20px;height:20px}.saboxplugin-wrap .saboxplugin-socials a svg .st2{fill:#fff; transform-origin:center center;}.saboxplugin-wrap .saboxplugin-socials a svg .st1{fill:rgba(0,0,0,.3)}.saboxplugin-wrap .saboxplugin-socials a:hover{opacity:.8;-webkit-transition:opacity .4s;-moz-transition:opacity .4s;-o-transition:opacity .4s;transition:opacity .4s;box-shadow:none!important;-webkit-box-shadow:none!important}.saboxplugin-wrap .saboxplugin-socials .saboxplugin-icon-color{box-shadow:none;padding:0;border:0;-webkit-transition:opacity .4s;-moz-transition:opacity .4s;-o-transition:opacity .4s;transition:opacity .4s;display:inline-block;color:#fff;font-size:0;text-decoration:inherit;margin:5px;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;overflow:hidden}.saboxplugin-wrap .saboxplugin-socials .saboxplugin-icon-grey{text-decoration:inherit;box-shadow:none;position:relative;display:-moz-inline-stack;display:inline-block;vertical-align:middle;zoom:1;margin:10px 5px;color:#444;fill:#444}.clearfix:after,.clearfix:before{content:' ';display:table;line-height:0;clear:both}.ie7 .clearfix{zoom:1}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color .sab-twitch{border-color:#38245c}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color .sab-addthis{border-color:#e91c00}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color .sab-behance{border-color:#003eb0}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color .sab-delicious{border-color:#06c}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color .sab-deviantart{border-color:#036824}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color .sab-digg{border-color:#00327c}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color .sab-dribbble{border-color:#ba1655}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color .sab-facebook{border-color:#1e2e4f}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color .sab-flickr{border-color:#003576}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color .sab-github{border-color:#264874}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color .sab-google{border-color:#0b51c5}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color .sab-googleplus{border-color:#96271a}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color .sab-html5{border-color:#902e13}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color .sab-instagram{border-color:#1630aa}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color .sab-linkedin{border-color:#00344f}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color .sab-pinterest{border-color:#5b040e}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color .sab-reddit{border-color:#992900}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color .sab-rss{border-color:#a43b0a}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color .sab-sharethis{border-color:#5d8420}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color .sab-skype{border-color:#00658a}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color .sab-soundcloud{border-color:#995200}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color .sab-spotify{border-color:#0f612c}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color .sab-stackoverflow{border-color:#a95009}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color .sab-steam{border-color:#006388}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color .sab-user_email{border-color:#b84e05}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color .sab-stumbleUpon{border-color:#9b280e}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color .sab-tumblr{border-color:#10151b}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color .sab-twitter{border-color:#0967a0}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color .sab-vimeo{border-color:#0d7091}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color .sab-windows{border-color:#003f71}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color .sab-whatsapp{border-color:#003f71}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color .sab-wordpress{border-color:#0f3647}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color .sab-yahoo{border-color:#14002d}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color .sab-youtube{border-color:#900}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color .sab-xing{border-color:#000202}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color .sab-mixcloud{border-color:#2475a0}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color .sab-vk{border-color:#243549}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color .sab-medium{border-color:#00452c}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color .sab-quora{border-color:#420e00}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color .sab-meetup{border-color:#9b181c}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color .sab-goodreads{border-color:#000}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color .sab-snapchat{border-color:#999700}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color .sab-500px{border-color:#00557f}.saboxplugin-socials.sabox-colored .saboxplugin-icon-color .sab-mastodont{border-color:#185886}.sab-patreon{border-color:#fc573b}.sabox-plus-item{margin-bottom:20px}@media screen and (max-width:480px){.saboxplugin-wrap{text-align:center}.saboxplugin-wrap .saboxplugin-gravatar{float:none;padding:20px 0;text-align:center;margin:0 auto;display:block}.saboxplugin-wrap .saboxplugin-gravatar img{float:none;display:inline-block;display:-moz-inline-stack;vertical-align:middle;zoom:1}.saboxplugin-wrap .saboxplugin-desc{margin:0 10px 20px;text-align:center}.saboxplugin-wrap .saboxplugin-authorname{text-align:center;margin:10px 0 20px}}body .saboxplugin-authorname a,body .saboxplugin-authorname a:hover{box-shadow:none;-webkit-box-shadow:none}a.sab-profile-edit{font-size:16px!important;line-height:1!important}.sab-edit-settings a,a.sab-profile-edit{color:#0073aa!important;box-shadow:none!important;-webkit-box-shadow:none!important}.sab-edit-settings{margin-right:15px;position:absolute;right:0;z-index:2;bottom:10px;line-height:20px}.sab-edit-settings i{margin-left:5px}.saboxplugin-socials{line-height:1!important}.rtl .saboxplugin-wrap .saboxplugin-gravatar{float:right}.rtl .saboxplugin-wrap .saboxplugin-authorname{display:flex;align-items:center}.rtl .saboxplugin-wrap .saboxplugin-authorname .sab-profile-edit{margin-right:10px}.rtl .sab-edit-settings{right:auto;left:0}img.sab-custom-avatar{max-width:75px;}.saboxplugin-wrap {border-color:#eee;}.saboxplugin-wrap .saboxplugin-socials {border-color:#eee;}.saboxplugin-wrap{ border-width: 2px; }.saboxplugin-wrap .saboxplugin-gravatar img {-webkit-border-radius:50%;-moz-border-radius:50%;-ms-border-radius:50%;-o-border-radius:50%;border-radius:50%;}.saboxplugin-wrap .saboxplugin-gravatar img {border-radius:16% 84% 18% 82% / 64% 14% 86% 36%;}.saboxplugin-wrap .saboxplugin-socials{background-color:#fcfcfc;}.saboxplugin-wrap .saboxplugin-socials .saboxplugin-icon-grey {color:#444; fill:#444;}.saboxplugin-wrap .saboxplugin-authorname a,.saboxplugin-wrap .saboxplugin-authorname span {color:#0f0f0f;}.saboxplugin-wrap .saboxplugin-authorname {font-family:"Abel";}.saboxplugin-wrap .saboxplugin-desc {font-family:None;}.saboxplugin-wrap {margin-top:0px; margin-bottom:0px; padding: 0px 83px }.saboxplugin-wrap .saboxplugin-authorname {font-size:18px; line-height:25px;}.saboxplugin-wrap .saboxplugin-desc p, .saboxplugin-wrap .saboxplugin-desc {font-size:14px !important; line-height:21px !important;}.saboxplugin-wrap .saboxplugin-web {font-size:14px;}.saboxplugin-wrap .saboxplugin-socials a svg {width:18px;height:18px;}.saboxplugin-tabs-wrapper {
                width: 100%;
                display: block;
                clear: both;
                overflow: auto;
            }
            
            .saboxplugin-tabs-wrapper ul{
                margin:0px;
                padding: 0px;
            }
            
            .saboxplugin-tabs-wrapper ul li {
                list-style: none;
                float: left;
                color: #878787;
                padding: 8px 20px;
                background-color: #ffffff;
                box-sizing: border-box;
                margin-right: 1px;
                border-bottom: 1px solid #e8e8e8;
            }
            
            .saboxplugin-tabs-wrapper ul li.active,
            .saboxplugin-tabs-wrapper ul li:hover{
                color: #222222;
                background-color: #efefef;
                border-bottom: 1px solid #c7c7c7;
                cursor:pointer;
            }
            
            .saboxplugin-tab{
                padding:20px;
            }
            
            .saboxplugin-tab ul{
                margin:0px;
                padding: 0px;
            }

            .saboxplugin-tab ul li{
                list-style: none;
            }.saboxplugin-authorname .sabox-job-title{font-family:Abel;font-size:12px;opacity:.7;display: inline-block;margin-left: 10px;}

/* --- mf-claim-cta-20260727-mf-claim-cta.css --- */
/* a.mfw-claim, not .mfw-claim: needs to out-specify the theme's `.entry-content a` */
a.mfw-claim, a.mfsh-claim{
  display:flex !important;
  align-items:center;
  justify-content:center;
  gap:10px;
  white-space:nowrap;                 /* keeps the arrow on the same line as the label */
  width:100%;
  box-sizing:border-box;
  min-height:56px;                    /* tap target, matches the lander CTA rule */
  padding:16px 22px;
  background:#d4764e !important;      /* design-system --coral, "Primary accent, CTAs" */
  color:#fff !important;
  text-decoration:none !important;
  border:0;
  border-radius:12px;
  font-size:17px;
  font-weight:800;
  letter-spacing:.2px;
  line-height:1.25;
  text-align:center;
  cursor:pointer;
  box-shadow:0 6px 18px rgba(212,118,78,.34);
  transition:transform .08s ease, box-shadow .18s ease, filter .18s ease;
}
a.mfw-claim:visited, a.mfsh-claim:visited{ color:#fff !important; }
a.mfw-claim:hover, a.mfsh-claim:hover{
  color:#fff !important;
  text-decoration:none !important;
  filter:brightness(1.06);
  box-shadow:0 10px 26px rgba(212,118,78,.45);
  transform:translateY(-1px);
}
a.mfw-claim:active, a.mfsh-claim:active{ transform:translateY(1px); box-shadow:0 4px 12px rgba(212,118,78,.32); }
a.mfw-claim:focus-visible, a.mfsh-claim:focus-visible{
  outline:3px solid #1f2430; outline-offset:3px;   /* keyboard users get a real focus ring */
}
/* the arrow is decoration, not content: keep it out of the accessible name */
a.mfw-claim::after{ content:""; }

/* Long labels on narrow phones: allow a wrap rather than overflowing the card. */
@media (max-width:400px){
  a.mfw-claim, a.mfsh-claim{ white-space:normal; font-size:16px; padding:15px 16px; }
}

/* Respect reduced-motion: the coupon module adds `animation:mfcpPulse 2s infinite`
   to this same element. A CTA that never stops moving is a problem for motion
   sensitivity, and it is also just louder than it needs to be next to a green
   "COPIED!" confirmation. */
@media (prefers-reduced-motion: reduce){
  a.mfw-claim{ animation:none !important; transition:none !important; }
}


/* --- mf-custom-css.css --- */
.custom-hover-column:hover {
    /* Add your desired hover styles here */
    background-color: #f8ebe2;
		border-radius: 20px;
	position:fill;
}




/* ═══ MealFan UI Fixes (June 2026) ═══ */

/* Hero section. make gradient backgrounds span full width evenly */
.hero .sections_nav .nav_columns {
    display: flex;
    justify-content: center;
    gap: 0;
}
.hero .sections_nav .nav_col {
    flex: 1;
    min-height: 280px;
}

/* Offers Carousel. fix single-slide display */
.offers_carousel .offer_slick .slick-track {
    display: flex !important;
    justify-content: center;
}
.offers_carousel .offer_slick .offer_wrap {
    max-width: 480px;
    margin: 0 auto;
}
.offers_carousel .offer_box {
    max-width: 100%;
}
.offers_carousel .companies_list {
    padding: 0;
    list-style: none;
}
.offers_carousel .company_selector {
    margin-bottom: 15px;
    border-radius: 12px;
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
}
.offers_carousel .company_selector:hover {
    transform: translateY(-2px);
}
.offers_carousel .company_selector.active {
    border: 2px solid #301362;
}

/* States list. capitalize properly and improve layout */
.states_list ul {
    columns: 4;
    column-gap: 20px;
    list-style: none;
    padding: 0;
}
.states_list ul li a {
    text-transform: capitalize;
    display: block;
    padding: 8px 16px;
    margin-bottom: 6px;
    border-radius: 20px;
    background: #f5f0ff;
    text-align: center;
    font-size: 14px;
    transition: background 0.2s;
}
.states_list ul li a:hover {
    background: #e0d4f5;
}

/* Latest Reviews section. clean up layout */
.latest_reviews .review_box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

/* Hide floating decorative images in reviews if they look broken */
.latest_reviews .floating_img {
    display: none;
}

/* Fix city grid breaking content-layout CSS grid */
.content-layout > div[style*="green-tint"] {
	    grid-column: 1 / -1;
}


/* ── Meal Delivery Template Layout Fixes (April 2026) ── */
body.meal-delivery-service .sec_diet_plans_nav > .container,
body.meal-delivery-service .lifestyle_plans_viewport > .container,
body.meal-delivery-service .diets_plans_viewport > .container,
body.meal-delivery-service .top_offers > .container,
body.meal-delivery-service .sec_states > .container,
body.meal-delivery-service .sec_reviews > .container,
body.meal-delivery-service .hero > .container,
body.meal-delivery-service .sections_nav > .container {
  margin-left: auto !important;
  margin-right: auto !important;
}
.meal-delivery-service .icons_nav {
  justify-content: center !important;
  gap: 24px;
}
.meal-delivery-service .hide_all_diets,
.meal-delivery-service .show_all_lifestyles,
.meal-delivery-service .diets_plans_viewport {
  text-align: center !important;
}
.meal-delivery-service .hide_all_diets a,
.meal-delivery-service .show_all_lifestyles a {
  display: inline-block;
}
.meal-delivery-service .lifestyle_plans_viewport {
  text-align: center !important;
}
.meal-delivery-service .lifestyle_plans_viewport h2,
.meal-delivery-service .lifestyle_plans_viewport h3 {
  text-align: center !important;
}
#claude-agent-glow-border { display: none !important; height: 0 !important; }

/* === MealFan V2 Enhancement Pass (April 9, 2026) === */

/* --- 1. TIGHTER SECTION SPACING (homepage) --- */
.mf-v2 section + section {
  margin-top: 0 !important;
}
.mf-v2 .hero {
  padding-bottom: 0 !important;
}
.mf-v2 .editorial-section {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
.mf-v2 .deals-section {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
.mf-v2 .compare-teaser {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
.mf-v2 .centerfold {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
.mf-v2 .quiz-section {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
.mf-v2 .browse-section {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
.mf-v2 .cred-section {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
.mf-v2 .testimonials {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

/* --- 2. SMOOTH SCROLL --- */
html {
  scroll-behavior: smooth;
}

/* --- 3. EDITORIAL CARD HOVER --- */
.mf-v2 .editorial-card {
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              box-shadow 0.3s ease;
}
.mf-v2 .editorial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(26, 35, 50, 0.12);
}
.mf-v2 .editorial-card img {
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.mf-v2 .editorial-card:hover img {
  transform: scale(1.04);
}

/* --- 4. BUTTON HOVER POLISH --- */
.mf-v2 .btn-primary,
.mf-v2 a.btn,
.mf-v2 .hero .cta-primary {
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
  position: relative;
  overflow: hidden;
}
.mf-v2 .btn-primary:hover,
.mf-v2 a.btn:hover,
.mf-v2 .hero .cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 118, 78, 0.3);
}
.mf-v2 .btn-outline:hover,
.mf-v2 .hero .cta-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26, 35, 50, 0.1);
}

/* --- 5. STICKY NAV POLISH --- */
.mf-v2 .site-header.stuck,
.mf-v2 header.stuck {
  box-shadow: 0 2px 20px rgba(26, 35, 50, 0.08) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: box-shadow 0.4s ease, background 0.4s ease !important;
}

/* --- 6. RECIPE CARD IMPROVEMENTS --- */
.mf-v2 .recipe-card,
.recipe-grid .recipe-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 12px;
  overflow: hidden;
}
.mf-v2 .recipe-card:hover,
.recipe-grid .recipe-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(26, 35, 50, 0.1);
}
.mf-v2 .recipe-card img,
.recipe-grid .recipe-card img {
  transition: transform 0.5s ease;
}
.mf-v2 .recipe-card:hover img,
.recipe-grid .recipe-card:hover img {
  transform: scale(1.05);
}

/* --- 7. FILTER PILL REFINEMENTS (recipes page) --- */
.filter-bar .filter-btn,
.mf-v2 .filter-btn {
  transition: all 0.25s ease !important;
  border-radius: 24px !important;
}
.filter-bar .filter-btn:hover,
.mf-v2 .filter-btn:hover {
  background: rgba(26, 35, 50, 0.06);
  transform: translateY(-1px);
}
.filter-bar .filter-btn.active,
.mf-v2 .filter-btn.active {
  background: #1a2332 !important;
  color: #f7f5f2 !important;
  border-color: #1a2332 !important;
}

/* --- 8. DEALS / OFFERS SECTION CARDS --- */
.mf-v2 .deal-card,
.mf-v2 .offer-card,
.mf-v2 .deals-section .card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.mf-v2 .deal-card:hover,
.mf-v2 .offer-card:hover,
.mf-v2 .deals-section .card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(26, 35, 50, 0.1);
}

/* --- 9. BROWSE SECTION PILL LINKS --- */
.mf-v2 .browse-section a {
  transition: all 0.25s ease;
}
.mf-v2 .browse-section a:hover {
  color: #d4764e !important;
  transform: translateX(2px);
}

/* --- 10. QUIZ SECTION ENGAGEMENT --- */
.mf-v2 .quiz-section .quiz-option,
.mf-v2 .quiz-section button {
  transition: all 0.25s ease;
}
.mf-v2 .quiz-section .quiz-option:hover,
.mf-v2 .quiz-section button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(26, 35, 50, 0.08);
  border-color: #d4764e;
}

/* --- 11. TESTIMONIALS SECTION --- */
.mf-v2 .testimonials blockquote,
.mf-v2 .testimonial-card {
  transition: transform 0.3s ease;
}
.mf-v2 .testimonials blockquote:hover,
.mf-v2 .testimonial-card:hover {
  transform: scale(1.01);
}

/* --- 12. CREDIBILITY SECTION POLISH --- */
.mf-v2 .cred-section .cred-item,
.mf-v2 .cred-section .cred-logo {
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 0.85;
}
.mf-v2 .cred-section .cred-item:hover,
.mf-v2 .cred-section .cred-logo:hover {
  opacity: 1;
  transform: scale(1.05);
}

/* --- 13. COMPARE TEASER HOVER --- */
.mf-v2 .compare-teaser .compare-card,
.mf-v2 .compare-teaser a {
  transition: all 0.3s ease;
}
.mf-v2 .compare-teaser .compare-card:hover,
.mf-v2 .compare-teaser a:hover {
  transform: translateY(-3px);
}

/* --- 14. CITY/STATE PAGE IMPROVEMENTS --- */
.city-diet-tags a,
.specialized-diet-link {
  transition: all 0.25s ease;
  border-radius: 8px;
}
.city-diet-tags a:hover,
.specialized-diet-link:hover {
  background: #f0ebe4 !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(26, 35, 50, 0.06);
}

/* --- 15. GLOBAL FOCUS STATES (accessibility) --- */
.mf-v2 a:focus-visible,
.mf-v2 button:focus-visible,
.mf-v2 input:focus-visible {
  outline: 2px solid #d4764e;
  outline-offset: 3px;
  border-radius: 4px;
}

/* --- 16. SUBTLE LINK UNDERLINE ANIMATION --- */
.mf-v2 .editorial-section a:not(.btn),
.mf-v2 .browse-section a:not(.btn) {
  text-decoration: none;
  background-image: linear-gradient(#d4764e, #d4764e);
  background-size: 0% 2px;
  background-position: left bottom;
  background-repeat: no-repeat;
  transition: background-size 0.3s ease;
}
.mf-v2 .editorial-section a:not(.btn):hover,
.mf-v2 .browse-section a:not(.btn):hover {
  background-size: 100% 2px;
}

/* --- 17. CENTERFOLD SECTION GLOW --- */
.mf-v2 .centerfold {
  position: relative;
}
.mf-v2 .centerfold::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,118,78,0.3), transparent);
}

/* --- 18. GLOW BORDER REMOVAL (keep from prior) --- */
#claude-agent-glow-border {
  display: none !important;
  height: 0 !important;
}


/* --- 19. FIX: DDairy Free double-letter in browse section --- */
/* The Dairy Free browse item has a fallback letter "D" in its icon div,
   causing "DDairy Free" to display. Hide the letter text. */
.mf-v2 .browse-section .browse-item__letter {
  font-size: 0 !important;
  color: transparent !important;
  overflow: hidden !important;
}


/* === HERO TIGHTENING (above-the-fold optimization) === */

/* Reduce hero section top padding */
.mf-v2 .hero {
  padding-top: 16px !important;
}

/* Tighten hero upper area */
.mf-v2 .hero__upper {
  padding-top: 32px !important;
  padding-bottom: 16px !important;
}

/* Scale down H1 for better fold visibility - still dramatic but tighter */
.mf-v2 .hero h1 {
  font-size: clamp(64px, 8vw, 108px) !important;
  line-height: 0.92 !important;
  margin-bottom: 20px !important;
}

/* Tighten the food image band */
.mf-v2 .hero__image-band {
  max-height: 380px !important;
  overflow: hidden !important;
}
.mf-v2 .hero__image-band img {
  object-fit: cover !important;
  max-height: 380px !important;
  width: 100% !important;
}

/* Reduce sub-copy spacing */
.mf-v2 .hero .hero__upper p {
  margin-bottom: 16px !important;
  font-size: 15px !important;
}

/* Tighten CTA row */
.mf-v2 .hero .cta-row,
.mf-v2 .hero .hero-ctas {
  margin-bottom: 12px !important;
  gap: 12px !important;
}

/* Top offer line tighter */
.mf-v2 .hero .top-offer,
.mf-v2 .hero .offer-line {
  margin-top: 8px !important;
  font-size: 13px !important;
}

/* Mobile: even tighter */
@media (max-width: 768px) {
  .mf-v2 .hero h1 {
    font-size: clamp(40px, 10vw, 64px) !important;
  }
  .mf-v2 .hero__upper {
    padding-top: 20px !important;
    padding-bottom: 12px !important;
  }
  .mf-v2 .hero__image-band {
    max-height: 240px !important;
  }
  .mf-v2 .hero__image-band img {
    max-height: 240px !important;
  }
}


/* ===== CITY/STATE PAGE V2 RESKIN ===== */
.mf-page {
  background: #f7f5f2 !important;
  color: #1a2332 !important;
}

/* Nav bar - match V2 navy header */
.mf-page .site-nav {
  background: rgba(247,245,242,0.95) !important;
  border-bottom: 1px solid rgba(26,35,50,0.08) !important;
  backdrop-filter: blur(12px) !important;
}
.mf-page .site-nav a {
  color: #1a2332 !important;
  font-weight: 500 !important;
  letter-spacing: 0.04em !important;
  text-transform: uppercase !important;
  font-size: 0.75rem !important;
}
.mf-page .site-nav a:hover {
  color: #d4764e !important;
}

/* Deal bar - V2 coral accent */
.mf-page .mf-sticky-deal {
  background: #1a2332 !important;
  color: #f7f5f2 !important;
}
.mf-page .mf-sticky-deal a {
  color: #d4764e !important;
}

/* Review banner - cream instead of yellow */
.mf-page .review-banner {
  background: rgba(212,118,78,0.08) !important;
  border: 1px solid rgba(212,118,78,0.15) !important;
  border-left: 3px solid #d4764e !important;
  border-radius: 8px !important;
  color: #1a2332 !important;
}

/* Article header - V2 typography */
.mf-page .article-header .kicker,
.mf-page .article-header [class*="kicker"] {
  color: #d4764e !important;
  letter-spacing: 0.08em !important;
  font-size: 0.8125rem !important;
}
.mf-page h1 {
  color: #1a2332 !important;
  font-size: clamp(2rem, 5vw, 3rem) !important;
  line-height: 1.1 !important;
  letter-spacing: -0.02em !important;
}

/* Methodology box - V2 cream */
.mf-page .methodology-box,
.mf-page [class*="methodology"] {
  background: #f7f5f2 !important;
  border: 1px solid rgba(26,35,50,0.1) !important;
  border-radius: 12px !important;
}

/* Links throughout - coral accent */
.mf-page a {
  color: #d4764e !important;
  transition: color 0.2s ease !important;
}
.mf-page a:hover {
  color: #c0603a !important;
}
.mf-page h1 a, .mf-page h2 a, .mf-page h3 a {
  color: #1a2332 !important;
}

/* City link pills - V2 style */
.mf-page .city-pills a,
.mf-page [class*="city"] a[class*="pill"],
.mf-page .also-in a {
  background: #fff !important;
  border: 1px solid rgba(26,35,50,0.12) !important;
  border-radius: 24px !important;
  color: #1a2332 !important;
  padding: 6px 16px !important;
  font-size: 0.8125rem !important;
  transition: all 0.2s ease !important;
}
.mf-page .city-pills a:hover,
.mf-page .also-in a:hover {
  background: #1a2332 !important;
  color: #f7f5f2 !important;
  border-color: #1a2332 !important;
}

/* Diet guide cards - V2 card style */
.mf-page .diet-card,
.mf-page [class*="diet-guide"] a,
.mf-page .specialized-diets a {
  background: #fff !important;
  border: 1px solid rgba(26,35,50,0.08) !important;
  border-radius: 12px !important;
  color: #1a2332 !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease !important;
}
.mf-page .diet-card:hover,
.mf-page [class*="diet-guide"] a:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 8px 24px rgba(26,35,50,0.1) !important;
}

/* Quick links sidebar - V2 styling */
.mf-page [class*="quick-link"],
.mf-page .sidebar-links {
  background: #fff !important;
  border-radius: 12px !important;
  border: 1px solid rgba(26,35,50,0.08) !important;
  padding: 24px !important;
}

/* Section headings - navy with V2 feel */
.mf-page h2, .mf-page h3 {
  color: #1a2332 !important;
  letter-spacing: -0.01em !important;
}

/* Also-in box - V2 cream */
.mf-page .also-in,
.mf-page [class*="also-in"] {
  background: rgba(26,35,50,0.03) !important;
  border-radius: 12px !important;
  border: 1px solid rgba(26,35,50,0.06) !important;
}

/* Page wrap - max width and centering */
.mf-page .page-wrap {
  max-width: 1100px !important;
  margin: 0 auto !important;
}

/* Breadcrumb - subtle V2 style */
.mf-page .breadcrumb {
  color: rgba(26,35,50,0.5) !important;
  font-size: 0.75rem !important;
  letter-spacing: 0.04em !important;
}
.mf-page .breadcrumb a {
  color: rgba(26,35,50,0.6) !important;
}

/* Footer - match V2 dark footer */
.mf-page footer {
  background: #1a2332 !important;
  color: rgba(247,245,242,0.7) !important;
}
.mf-page footer a {
  color: rgba(247,245,242,0.85) !important;
}
.mf-page footer a:hover {
  color: #d4764e !important;
}

/* Service cards in city pages */
.mf-page .service-card,
.mf-page [class*="service-item"],
.mf-page .card {
  background: #fff !important;
  border: 1px solid rgba(26,35,50,0.08) !important;
  border-radius: 12px !important;
  overflow: hidden !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease !important;
}
.mf-page .service-card:hover,
.mf-page [class*="service-item"]:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 12px 32px rgba(26,35,50,0.1) !important;
}

/* Buttons - coral CTA style */
.mf-page .btn-primary,
.mf-page [class*="cta-btn"],
.mf-page button.primary {
  background: #d4764e !important;
  color: #fff !important;
  border: none !important;
  border-radius: 8px !important;
  font-weight: 600 !important;
  letter-spacing: 0.04em !important;
}

/* Verified badge - coral instead of green */
.mf-page .verified-badge,
.mf-page [class*="verified"] {
  color: #d4764e !important;
  border-color: rgba(212,118,78,0.3) !important;
}


/* === SPECIFICITY OVERRIDE. beats body.mf-v2 selectors === */
html body.mf-v2 .hero {
  padding-top: 16px !important;
  padding-bottom: 0 !important;
}
html body.mf-v2 .hero__upper {
  padding-top: 20px !important;
  padding-bottom: 12px !important;
}
html body.mf-v2 .hero h1 {
  font-size: clamp(64px, 8vw, 108px) !important;
  line-height: 0.92 !important;
}
html body.mf-v2 .hero__image-band {
  max-height: 380px !important;
}
html body.mf-v2 .hero__image-band img {
  max-height: 380px !important;
}
@media (max-width: 768px) {
  html body.mf-v2 .hero h1 {
    font-size: clamp(40px, 10vw, 64px) !important;
  }
  html body.mf-v2 .hero__upper {
    padding-top: 20px !important;
    padding-bottom: 12px !important;
  }
  html body.mf-v2 .hero__image-band {
    max-height: 240px !important;
  }
  html body.mf-v2 .hero__image-band img {
    max-height: 240px !important;
  }
}

/* ═══ Broken Image Placeholders (April 2026) ═══ */

/* Reviews page. broken service card images */
.top-pick-card__img,
.rev-card__img {
    background: linear-gradient(135deg, #f7f5f2 0%, #e8e4df 100%) !important;
    min-height: 180px;
    position: relative;
}

.top-pick-card__img img[src=""],
.top-pick-card__img img:not([src]),
.rev-card__img img[src=""],
.rev-card__img img:not([src]) {
    opacity: 0;
}

/* Homepage. broken city browse card images */
.browse-cities__card-img {
    background: linear-gradient(135deg, #f7f5f2 0%, #ddd8d0 100%) !important;
    min-height: 140px;
    overflow: hidden;
}

/* Generic broken image hide. uses object-fit trick */
img {
    font-size: 0;
}

/* Meal delivery service page broken images */
.meal-delivery-service img {
    background: #f7f5f2;
}

/* ═══ Recipes Page Centering Fix (2026-04-10) ═══ */

/* Center filter pills row */
body.mf-v2 .recipes-filters .wrap {
    justify-content: center;
}

/* Center recipe count text */
body.mf-v2 .recipes-grid-section__count {
    text-align: center;
}
/* ═══ Meal Delivery Page. Font & BG Restoration (2026-04-10) ═══ */
body.mf-v2 .mds-hub,
body.mf-v2 .mds-hub * {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif !important;
}
body.mf-v2 .mds-hub h1,
body.mf-v2 .mds-hub h2,
body.mf-v2 .mds-hub h3 {
    font-family: 'Playfair Display', Georgia, serif !important;
}
body.mf-v2 .mds-hero h1 span {
    color: #d4764e !important;
    font-family: 'Playfair Display', Georgia, serif !important;
}
body.mf-v2.meal-delivery-service {
    background-color: #f7f5f2 !important;
}


/* === Mobile Responsive Grid Fixes (April 16, 2026) === */
@media screen and (max-width: 768px) {
  /* Homepage editorial review cards - stack to 1 column */
  body.mf-v2 .page-content .editorial-grid,
  body.mf-v2 .editorial-grid.editorial-grid {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }
  /* Blog page post cards - stack to 1 column */
  body.mf-v2 .page-content .blog-grid,
  body.mf-v2 .blog-grid.blog-grid {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }
  /* Homepage ticket/deals grid - stack to 1 column */
  body.mf-v2 .page-content .ticket-grid,
  body.mf-v2 .ticket-grid.ticket-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
  /* Meal delivery steps - stack to 1 column */
  body.mf-v2 .page-content .mds-steps,
  body.mf-v2 .mds-steps.mds-steps {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
  /* Meal delivery categories - stack to 1 column */
  body.mf-v2 .page-content .mds-categories,
  body.mf-v2 .mds-categories.mds-categories {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
}


/* === Reviews Index Page Fix (April 16, 2026) === */
body.page-id-3648 .page-hero { display: none !important; }
body.page-id-3648 .wpb_text_column > .wpb_wrapper > p { display: none !important; }
body.page-id-3648 section.reviews-hero { padding-top: 30px !important; }
/* mf-nav-hover-fix */
.mf-nav a {
  opacity: 1 !important;
  transition: color .15s, background .15s !important;
}
.mf-nav > a:hover,
.mf-nav-item > a:hover {
  color: #d4764e !important;
}
.mf-nav-item {
  padding-bottom: 14px !important;
}
.mf-nav-dropdown {
  top: calc(100% - 2px) !important;
  margin-top: 0 !important;
  padding-top: 2px !important;
}
.mf-nav-item:hover .mf-nav-dropdown,
.mf-nav-dropdown:hover {
  display: block !important;
}
.mf-nav-dropdown a:hover {
  background: rgba(212,118,78,0.1) !important;
  color: #d4764e !important;
  padding-left: 20px !important;
}
