/* ============================================================
   MadFishOne block library styles.
   RULES:
   - Consume ONLY the --mfo-* token contract (no raw colors here;
     neutral grays derive from tokens via color-mix).
   - Variants switch via [data-mfo-<block>="<variant>"] attributes.
   - This file ports to SCSS partials verbatim in Phase B.
   ============================================================ */

/* ── Shared primitives ─────────────────────────────────────── */
.mfo-container { max-width: 1200px; margin: 0 auto; padding-inline: clamp(16px, 3vw, 32px); }
.mfo-section   { padding-block: calc(var(--mfo-density) * clamp(40px, 6vw, 72px)); }

.mfo-btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: calc(var(--mfo-density) * 13px) calc(var(--mfo-density) * 26px);
    background: var(--mfo-btn); color: var(--mfo-on-btn);
    border-radius: var(--mfo-radius-sm); font-weight: 700; font-size: 0.95rem;
    font-family: var(--mfo-font-heading); letter-spacing: 0.01em;
    transition: background 0.18s ease;
}
.mfo-btn:hover { background: var(--mfo-btn-hover); }
.mfo-btn--ghost  { background: transparent; color: var(--mfo-brand); box-shadow: inset 0 0 0 2px var(--mfo-brand); }
.mfo-btn--ghost:hover { background: color-mix(in srgb, var(--mfo-brand) 8%, transparent); }
.mfo-btn--ondark { background: var(--mfo-on-brand); color: var(--mfo-ink); }
.mfo-btn--sm     { padding: 9px 16px; font-size: 0.85rem; }

.mfo-eyebrow {
    font-size: 0.75rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--mfo-brand); margin-bottom: 12px; font-family: var(--mfo-font-heading);
}
.mfo-section-title { font-size: clamp(1.5rem, 3vw, 2.1rem); font-weight: 800; letter-spacing: -0.02em; }
.mfo-section-head  { margin-bottom: calc(var(--mfo-density) * 32px); }
.mfo-section-head--center { text-align: center; }
.mfo-section-head--center .mfo-eyebrow { justify-content: center; }

.mfo-logo { display: inline-flex; align-items: center; color: var(--mfo-ink); }
.mfo-logo svg { height: 30px; width: auto; }
.mfo-logo-img { max-height: 50px; width: auto; }

.mfo-price { font-weight: 800; color: var(--mfo-ink); }
.mfo-price--was { font-weight: 500; color: var(--mfo-muted); text-decoration: line-through; margin-left: 8px; font-size: 0.88em; }
.mfo-badge {
    display: inline-block; padding: 4px 10px; border-radius: 999px;
    background: var(--mfo-accent); color: var(--mfo-on-brand);
    font-size: 0.72rem; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase;
}
.mfo-stars { color: var(--mfo-accent); font-size: 0.85rem; letter-spacing: 2px; }

/* Product card primitive (used by showcase, PLP, cross-sell) */
.mfo-product {
    background: var(--mfo-bg); border: 1px solid var(--mfo-border);
    border-radius: var(--mfo-radius); overflow: hidden; position: relative;
}
.mfo-product-media { position: relative; background: var(--mfo-surface); }
.mfo-product-media img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.mfo-product-media .mfo-badge { position: absolute; top: 12px; left: 12px; }
.mfo-product-body { padding: calc(var(--mfo-density) * 16px); display: flex; flex-direction: column; gap: 6px; }
.mfo-product-name { font-size: 0.98rem; font-weight: 600; color: var(--mfo-ink); }

/* Icon glyphs (pure CSS, no icon font in previews) */
.mfo-ic {
    display: inline-block; width: 22px; height: 22px; flex-shrink: 0;
    border: 2px solid currentColor; border-radius: 50%; position: relative;
}
.mfo-ic::after {
    content: ''; position: absolute; inset: 5px;
    background: currentColor; border-radius: 2px; opacity: 0.55;
}

/* Ghost content strip — hints "page continues" below chrome blocks */
.mfo-ghost { padding: 28px 0 48px; }
.mfo-ghost span {
    display: block; height: 13px; border-radius: 7px;
    background: var(--mfo-surface); margin: 0 auto 12px;
}
.mfo-ghost span:nth-child(1) { width: 55%; height: 26px; margin-top: 10px; }
.mfo-ghost span:nth-child(2) { width: 40%; }
.mfo-ghost span:nth-child(3) { width: 47%; }

/* ============================================================
   BLOCK: header  —  classic | center-stack | split-nav | slim-utility
   ============================================================ */
.mfo-utility {
    display: none; background: var(--mfo-secondary); color: var(--mfo-on-brand);
    font-size: 13px; padding: 8px 0;
}
.mfo-utility .mfo-container {
    display: grid; grid-template-columns: 1fr auto 1fr;
    align-items: center; gap: 16px;
}
.mfo-utility-left { display: flex; gap: 18px; align-items: center; justify-self: start; min-width: 0; }
.mfo-utility-left a { display: inline-flex; align-items: center; gap: 7px; opacity: 0.9; white-space: nowrap; }
.mfo-utility-left a:hover { opacity: 1; }
.mfo-utility-left a i { font-size: 0.85em; }
.mfo-utility-note { justify-self: center; text-align: center; font-weight: 600; }
.mfo-utility-social { display: flex; gap: 4px; align-items: center; justify-self: end; }
.mfo-utility-social a {
    display: inline-flex; align-items: center; justify-content: center;
    width: 26px; height: 26px; border-radius: 50%; opacity: 0.9; font-size: 0.85rem;
}
.mfo-utility-social a:hover { opacity: 1; background: color-mix(in srgb, currentColor 16%, transparent); }
[data-mfo-header="slim-utility"] .mfo-utility { display: block; }

.mfo-header { background: var(--mfo-bg); border-bottom: 1px solid var(--mfo-border); }
.mfo-header-main {
    display: grid; align-items: center; gap: 10px 28px;
    grid-template-areas: "logo nav icons";
    grid-template-columns: auto 1fr auto;
    padding-block: calc(var(--mfo-density) * 18px);
}
.mfo-header .mfo-logo    { grid-area: logo; }
.mfo-header-nav          { grid-area: nav; display: flex; gap: clamp(14px, 2.4vw, 30px); font-weight: 600; font-size: 0.95rem; color: var(--mfo-nav-ink); }
.mfo-header-nav a:hover  { color: var(--mfo-nav-hover-ink); }
.mfo-header-nav--extra   { display: none; }
.mfo-header-icons        { grid-area: icons; display: flex; gap: 16px; align-items: center; color: var(--mfo-ink); }
.mfo-icon-btn { position: relative; display: inline-flex; align-items: center; cursor: pointer; }
.mfo-icon-btn:hover { color: var(--mfo-nav-hover-ink); }
.mfo-cart-count {
    position: absolute; top: -7px; right: -9px;
    background: var(--mfo-brand); color: var(--mfo-on-brand);
    font-size: 0.64rem; font-weight: 800; border-radius: 999px;
    padding: 1px 5px; line-height: 1.3; min-width: 16px; text-align: center;
}

[data-mfo-header="center-stack"] .mfo-header-main {
    grid-template-areas: "logo logo logo" "nav nav icons";
    grid-template-columns: auto 1fr auto; justify-items: center; row-gap: 14px;
}
[data-mfo-header="center-stack"] .mfo-header-icons { justify-self: end; }
[data-mfo-header="center-stack"] .mfo-header-nav   { justify-self: center; grid-column: 1 / -1; }

[data-mfo-header="split-nav"] .mfo-header-main {
    grid-template-areas: "navl logo navr icons";
    grid-template-columns: 1fr auto 1fr auto;
}
[data-mfo-header="split-nav"] .mfo-header-nav        { grid-area: navr; justify-content: flex-start; }
[data-mfo-header="split-nav"] .mfo-header-nav--extra { display: flex; grid-area: navl; justify-content: flex-end; }
[data-mfo-header="split-nav"] .mfo-logo              { justify-self: center; padding-inline: 10px; }
[data-mfo-header="split-nav"] .mfo-header-nav a:nth-child(n+4) { display: none; }

[data-mfo-header="slim-utility"] .mfo-header-main { padding-block: calc(var(--mfo-density) * 12px); }

/* Header + Navigation merge: when a navigation block is active, the navbar
   owns ALL navigation — the header's inline links hide (no stacked duplicate
   menus) and the header collapses to logo + icons. Headers only show their
   own links when the merchant skipped the navigation block. */
body[data-mfo-nav]:not([data-mfo-nav="none"]) .mfo-header-nav,
body[data-mfo-nav]:not([data-mfo-nav="none"]) .mfo-header-nav--extra { display: none; }
body[data-mfo-nav]:not([data-mfo-nav="none"])[data-mfo-header="center-stack"] .mfo-header-main,
body[data-mfo-nav]:not([data-mfo-nav="none"])[data-mfo-header="split-nav"] .mfo-header-main {
    grid-template-areas: "spacer logo icons";
    grid-template-columns: 1fr auto 1fr;
    row-gap: 0;
}

/* ============================================================
   BLOCK: announcement-bar  —  static | rotator
   ============================================================ */
.mfo-announce {
    background: var(--mfo-brand); color: var(--mfo-on-brand);
    text-align: center; font-size: 0.85rem; font-weight: 600;
    padding: 9px 44px; position: relative; overflow: hidden;
}
.mfo-announce-msg { display: none; }
.mfo-announce-msg.is-active { display: block; animation: mfoFade 0.45s ease; }
@keyframes mfoFade { from { opacity: 0; transform: translateY(4px); } to { opacity: 1; transform: none; } }
.mfo-announce-close {
    position: absolute; right: 10px; top: 50%; transform: translateY(-50%);
    color: var(--mfo-on-brand); opacity: 0.7; font-size: 1rem; line-height: 1; padding: 6px;
}
.mfo-announce-dots { display: none; position: absolute; left: 14px; top: 50%; transform: translateY(-50%); gap: 5px; }
.mfo-announce-dots i { width: 6px; height: 6px; border-radius: 50%; background: var(--mfo-on-brand); opacity: 0.35; }
.mfo-announce-dots i.is-active { opacity: 1; }
[data-mfo-announcement-bar="rotator"] .mfo-announce-dots  { display: flex; }
[data-mfo-announcement-bar="rotator"] .mfo-announce-close { display: none; }

/* ============================================================
   BLOCK: nav  —  inline | dropdown | mega
   ============================================================ */
.mfo-navbar { background: var(--mfo-nav-bg); border-bottom: 1px solid var(--mfo-border); position: relative; }
.mfo-navbar-row { display: flex; gap: clamp(18px, 3vw, 36px); justify-content: center; }
.mfo-navbar-item > a {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 15px 2px; font-weight: 600; font-size: 0.95rem; color: var(--mfo-nav-ink);
    border-bottom: 2px solid transparent;
}
.mfo-navbar-item > a:hover, .mfo-navbar-item.is-open > a { color: var(--mfo-nav-hover-ink); border-bottom-color: var(--mfo-nav-hover); }
.mfo-caret { width: 7px; height: 7px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg) translateY(-2px); display: none; }
[data-mfo-nav="dropdown"] .mfo-caret, [data-mfo-nav="mega"] .mfo-caret { display: inline-block; }

/* dropdown panel (single column) */
.mfo-nav-drop {
    display: none; position: absolute; top: 100%; min-width: 220px;
    background: var(--mfo-bg); border: 1px solid var(--mfo-border);
    border-radius: 0 0 var(--mfo-radius-sm) var(--mfo-radius-sm);
    box-shadow: var(--mfo-shadow); padding: 10px 0; z-index: 30;
}
.mfo-nav-drop a { display: block; padding: 9px 20px; font-size: 0.92rem; }
.mfo-nav-drop a:hover { background: color-mix(in srgb, var(--mfo-nav-hover) 9%, var(--mfo-nav-bg)); color: var(--mfo-nav-hover-ink); }
[data-mfo-nav="dropdown"] .mfo-navbar-item.is-open .mfo-nav-drop { display: block; }

/* mega panel (multi-column + imagery + promo) */
.mfo-nav-mega {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--mfo-bg); border-bottom: 1px solid var(--mfo-border);
    box-shadow: var(--mfo-shadow); z-index: 30;
}
.mfo-nav-mega-grid {
    display: grid; grid-template-columns: repeat(3, 1fr) 1.2fr;
    gap: 32px; padding-block: calc(var(--mfo-density) * 28px);
}
.mfo-nav-mega h4 { font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--mfo-muted); margin-bottom: 12px; }
.mfo-nav-mega ul { display: flex; flex-direction: column; gap: 9px; font-size: 0.92rem; }
.mfo-nav-mega ul a:hover { color: var(--mfo-nav-hover-ink); }
.mfo-nav-mega-promo {
    background: var(--mfo-surface); border-radius: var(--mfo-radius);
    overflow: hidden; display: flex; flex-direction: column;
}
.mfo-nav-mega-promo img { width: 100%; aspect-ratio: 16/8; object-fit: cover; }
.mfo-nav-mega-promo div { padding: 14px 16px 16px; }
.mfo-nav-mega-promo strong { display: block; color: var(--mfo-ink); margin-bottom: 4px; }
.mfo-nav-mega-promo span { font-size: 0.85rem; color: var(--mfo-muted); }
[data-mfo-nav="mega"] .mfo-navbar-item.is-open .mfo-nav-mega { display: block; }

/* ============================================================
   BLOCK: home-hero  —  impact | split | banner | carousel
   ============================================================ */
.mfo-hero { position: relative; overflow: hidden; }
.mfo-hero-slide { display: none; }
.mfo-hero-slide.is-active { display: block; }

/* impact (default): full-bleed image, overlaid copy */
.mfo-hero-media { position: relative; }
.mfo-hero-media img { width: 100%; height: clamp(380px, 52vw, 560px); object-fit: cover; }
.mfo-hero-media::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.48) 0%, rgba(0, 0, 0, 0.12) 65%);
}
.mfo-hero-copy {
    position: absolute; inset: 0; z-index: 2;
    display: flex; flex-direction: column; justify-content: center; align-items: flex-start;
    max-width: 1200px; margin: 0 auto; padding-inline: clamp(20px, 4vw, 40px);
}
.mfo-hero-copy .mfo-eyebrow { color: var(--mfo-on-brand); opacity: 0.85; }
.mfo-hero-title {
    font-size: clamp(2rem, 4.6vw, 3.4rem); font-weight: 800; letter-spacing: -0.02em;
    color: var(--mfo-on-brand); max-width: 15ch; margin-bottom: 14px;
}
.mfo-hero-sub { color: var(--mfo-on-brand); opacity: 0.88; max-width: 44ch; margin-bottom: 26px; font-size: 1.05rem; }

/* split: copy left on surface, image right */
[data-mfo-home-hero="split"] .mfo-hero-slide.is-active { display: grid; grid-template-columns: 1fr 1.15fr; align-items: stretch; background: var(--mfo-surface); }
[data-mfo-home-hero="split"] .mfo-hero-media::after { display: none; }
[data-mfo-home-hero="split"] .mfo-hero-media img { height: 100%; min-height: 420px; }
[data-mfo-home-hero="split"] .mfo-hero-copy {
    position: static; padding: calc(var(--mfo-density) * clamp(36px, 5vw, 72px)) clamp(24px, 4vw, 56px);
    max-width: none; margin: 0;
}
[data-mfo-home-hero="split"] .mfo-hero-copy .mfo-eyebrow { color: var(--mfo-brand); opacity: 1; }
[data-mfo-home-hero="split"] .mfo-hero-title { color: var(--mfo-ink); }
[data-mfo-home-hero="split"] .mfo-hero-sub   { color: var(--mfo-body); opacity: 1; }

/* banner: slim promotional band */
[data-mfo-home-hero="banner"] .mfo-hero-media img { height: clamp(200px, 26vw, 300px); }
[data-mfo-home-hero="banner"] .mfo-hero-media::after { background: rgba(0, 0, 0, 0.38); }
[data-mfo-home-hero="banner"] .mfo-hero-copy { align-items: center; text-align: center; }
[data-mfo-home-hero="banner"] .mfo-hero-title { font-size: clamp(1.5rem, 3.2vw, 2.3rem); max-width: none; margin-bottom: 10px; }
[data-mfo-home-hero="banner"] .mfo-hero-sub { display: none; }

/* carousel: multiple slides + dots (JS advances) */
.mfo-hero-dots {
    display: none; position: absolute; bottom: 18px; left: 50%; transform: translateX(-50%);
    gap: 8px; z-index: 3;
}
.mfo-hero-dots i { width: 9px; height: 9px; border-radius: 50%; background: var(--mfo-on-brand); opacity: 0.45; }
.mfo-hero-dots i.is-active { opacity: 1; }
[data-mfo-home-hero="carousel"] .mfo-hero-dots { display: flex; }

/* ============================================================
   BLOCK: footer  —  columns | centered-slim
   ============================================================ */
.mfo-footer { background: var(--mfo-ink); color: var(--mfo-bg); }
.mfo-footer .mfo-logo { color: var(--mfo-bg); }
.mfo-footer-grid {
    display: grid; grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: clamp(28px, 4vw, 56px);
    padding-block: calc(var(--mfo-density) * clamp(44px, 5vw, 64px));
}
.mfo-footer-brand p { opacity: 0.65; font-size: 0.9rem; margin-top: 14px; max-width: 30ch; }
.mfo-footer h4 { color: var(--mfo-bg); font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 16px; opacity: 0.9; }
.mfo-footer-grid ul { display: flex; flex-direction: column; gap: 10px; font-size: 0.92rem; }
.mfo-footer-grid ul a { opacity: 0.7; }
.mfo-footer-grid ul a:hover { opacity: 1; }
.mfo-footer-news { display: flex; gap: 8px; margin-top: 6px; }
.mfo-footer-news input {
    flex: 1; min-width: 0; padding: 11px 14px; border-radius: var(--mfo-radius-sm);
    border: 1px solid transparent; background: rgba(255, 255, 255, 0.12); color: var(--mfo-bg); font: inherit;
}
.mfo-footer-news input::placeholder { color: var(--mfo-bg); opacity: 0.55; }
.mfo-footer-bottom {
    display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap;
    padding-block: 18px; border-top: 1px solid rgba(255, 255, 255, 0.14);
    font-size: 0.8rem; opacity: 0.65;
}
.mfo-paymarks { display: flex; gap: 7px; }
.mfo-paymarks i { width: 38px; height: 24px; border-radius: 4px; background: rgba(255, 255, 255, 0.18); }
.mfo-footer-social { display: none; gap: 14px; margin-top: 16px; }
.mfo-footer-social i { width: 34px; height: 34px; border-radius: 50%; background: rgba(255, 255, 255, 0.14); }

[data-mfo-footer="centered-slim"] .mfo-footer-grid { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 20px; padding-block: calc(var(--mfo-density) * 40px); }
[data-mfo-footer="centered-slim"] .mfo-footer-grid > nav ul { flex-direction: row; gap: 22px; }
[data-mfo-footer="centered-slim"] .mfo-footer-col, [data-mfo-footer="centered-slim"] .mfo-footer-grid h4 { display: none; }
[data-mfo-footer="centered-slim"] .mfo-footer-brand p { display: none; }
[data-mfo-footer="centered-slim"] .mfo-footer-news { display: none; }
[data-mfo-footer="centered-slim"] .mfo-footer-bottom { justify-content: center; }

/* ============================================================
   BLOCK: value-props  —  icon-row | card-trio
   ============================================================ */
.mfo-props { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(20px, 3vw, 40px); }
.mfo-prop { display: flex; gap: 14px; align-items: flex-start; }
.mfo-prop-ic {
    width: 44px; height: 44px; flex-shrink: 0; border-radius: 50%;
    background: color-mix(in srgb, var(--mfo-brand) 12%, transparent);
    color: var(--mfo-brand); display: grid; place-items: center;
}
.mfo-prop strong { display: block; color: var(--mfo-ink); font-family: var(--mfo-font-heading); margin-bottom: 3px; }
.mfo-prop span { font-size: 0.88rem; color: var(--mfo-muted); }

[data-mfo-value-props="card-trio"] .mfo-props { grid-template-columns: repeat(3, 1fr); }
[data-mfo-value-props="card-trio"] .mfo-prop {
    flex-direction: column; align-items: center; text-align: center; gap: 16px;
    background: var(--mfo-surface); border-radius: var(--mfo-radius);
    padding: calc(var(--mfo-density) * 30px) 22px;
}
[data-mfo-value-props="card-trio"] .mfo-prop:nth-child(4) { display: none; }

/* ============================================================
   BLOCK: featured-categories  —  tile-grid | scroll-strip | mosaic
   ============================================================ */
.mfo-cats { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(14px, 2vw, 24px); }
.mfo-cat { position: relative; border-radius: var(--mfo-radius); overflow: hidden; display: block; }
.mfo-cat img { width: 100%; aspect-ratio: 4/3; object-fit: cover; transition: transform 0.4s ease; }
.mfo-cat:hover img { transform: scale(1.04); }
.mfo-cat-label {
    position: absolute; left: 14px; bottom: 14px; z-index: 2;
    background: var(--mfo-bg); color: var(--mfo-ink);
    font-weight: 700; font-family: var(--mfo-font-heading); font-size: 0.95rem;
    padding: 9px 18px; border-radius: 999px; box-shadow: var(--mfo-shadow);
}

[data-mfo-featured-categories="scroll-strip"] .mfo-cats {
    display: flex; overflow-x: auto; scroll-snap-type: x mandatory;
    padding-bottom: 10px; scrollbar-width: thin;
}
[data-mfo-featured-categories="scroll-strip"] .mfo-cat { flex: 0 0 280px; scroll-snap-align: start; }
[data-mfo-featured-categories="scroll-strip"] .mfo-cat img { aspect-ratio: 3/4; }

[data-mfo-featured-categories="mosaic"] .mfo-cats { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 180px; }
[data-mfo-featured-categories="mosaic"] .mfo-cat img { height: 100%; aspect-ratio: auto; }
[data-mfo-featured-categories="mosaic"] .mfo-cat:nth-child(1) { grid-column: span 2; grid-row: span 2; }
[data-mfo-featured-categories="mosaic"] .mfo-cat:nth-child(4) { grid-column: span 2; }

/* ============================================================
   BLOCK: product-showcase  —  grid | carousel
   ============================================================ */
.mfo-shelf { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(14px, 2vw, 24px); }
[data-mfo-product-showcase="carousel"] .mfo-shelf {
    display: flex; overflow-x: auto; scroll-snap-type: x mandatory;
    padding-bottom: 10px; scrollbar-width: thin;
}
[data-mfo-product-showcase="carousel"] .mfo-product { flex: 0 0 262px; scroll-snap-align: start; }

/* ============================================================
   BLOCK: promo-strip  —  duo | full | trio
   ============================================================ */
.mfo-promos { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(14px, 2vw, 24px); }
.mfo-promo {
    position: relative; border-radius: var(--mfo-radius); overflow: hidden;
    background: var(--mfo-ink); color: var(--mfo-on-brand); display: block;
}
.mfo-promo img { width: 100%; height: 240px; object-fit: cover; opacity: 0.6; }
.mfo-promo-copy { position: absolute; inset: 0; padding: 28px; display: flex; flex-direction: column; justify-content: flex-end; gap: 6px; }
.mfo-promo-copy .mfo-badge { align-self: flex-start; margin-bottom: 4px; }
.mfo-promo-copy strong { font-family: var(--mfo-font-heading); font-size: 1.35rem; }
.mfo-promo-copy span { font-size: 0.9rem; opacity: 0.85; }
.mfo-promo--accent { background: var(--mfo-secondary); }
.mfo-promo--third { display: none; }

[data-mfo-promo-strip="full"] .mfo-promos { grid-template-columns: 1fr; }
[data-mfo-promo-strip="full"] .mfo-promo--second, [data-mfo-promo-strip="full"] .mfo-promo--third { display: none; }
[data-mfo-promo-strip="full"] .mfo-promo img { height: 300px; }
[data-mfo-promo-strip="full"] .mfo-promo-copy { justify-content: center; align-items: center; text-align: center; }
[data-mfo-promo-strip="full"] .mfo-promo-copy strong { font-size: clamp(1.5rem, 3vw, 2.1rem); }

[data-mfo-promo-strip="trio"] .mfo-promos { grid-template-columns: repeat(3, 1fr); }
[data-mfo-promo-strip="trio"] .mfo-promo--third { display: block; }
[data-mfo-promo-strip="trio"] .mfo-promo img { height: 200px; }
[data-mfo-promo-strip="trio"] .mfo-promo-copy { padding: 20px; }
[data-mfo-promo-strip="trio"] .mfo-promo-copy strong { font-size: 1.1rem; }

/* ============================================================
   BLOCK: brand-story  —  image-aside | centered-quote
   ============================================================ */
.mfo-story { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(28px, 5vw, 72px); align-items: center; }
.mfo-story-media img { width: 100%; aspect-ratio: 5/4; object-fit: cover; border-radius: var(--mfo-radius); box-shadow: var(--mfo-shadow); }
.mfo-story-quote { display: none; }
.mfo-story-copy h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); font-weight: 800; letter-spacing: -0.02em; margin-bottom: 16px; }
.mfo-story-copy p { margin-bottom: 14px; line-height: 1.7; }
.mfo-story-copy .mfo-btn { margin-top: 10px; }

[data-mfo-brand-story="centered-quote"] .mfo-story { display: block; text-align: center; max-width: 780px; margin: 0 auto; }
[data-mfo-brand-story="centered-quote"] .mfo-story-media { display: none; }
[data-mfo-brand-story="centered-quote"] .mfo-story-quote {
    display: block; font-family: var(--mfo-font-heading); font-size: clamp(1.4rem, 2.8vw, 2rem);
    font-weight: 700; line-height: 1.35; color: var(--mfo-ink); margin-bottom: 22px; letter-spacing: -0.01em;
}
[data-mfo-brand-story="centered-quote"] .mfo-story-quote::before { content: '\201C'; color: var(--mfo-accent); }
[data-mfo-brand-story="centered-quote"] .mfo-story-quote::after  { content: '\201D'; color: var(--mfo-accent); }
[data-mfo-brand-story="centered-quote"] .mfo-story-copy h2 { display: none; }
[data-mfo-brand-story="centered-quote"] .mfo-story-copy p:not(.mfo-story-keep) { display: none; }

/* image-aside — option: story-image-side (left is the natural source order) */
[data-mfo-brand-story="image-aside"][data-mfo-story-image-side="right"] .mfo-story-media { order: 2; }
[data-mfo-brand-story="image-aside"][data-mfo-story-image-side="right"] .mfo-story-copy { order: 1; }

/* ============================================================
   BLOCK: testimonials  —  card-row | rotator
   ============================================================ */
.mfo-quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(14px, 2vw, 24px); }
.mfo-quote {
    background: var(--mfo-bg); border: 1px solid var(--mfo-border); border-radius: var(--mfo-radius);
    padding: calc(var(--mfo-density) * 26px); display: flex; flex-direction: column; gap: 14px;
}
.mfo-quote p { line-height: 1.65; font-size: 0.95rem; }
.mfo-quote-who { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.mfo-quote-who img { width: 40px; height: 40px; border-radius: 50%; }
.mfo-quote-who strong { display: block; font-size: 0.9rem; color: var(--mfo-ink); }
.mfo-quote-who span { font-size: 0.8rem; color: var(--mfo-muted); }

[data-mfo-testimonials="rotator"] .mfo-quotes { grid-template-columns: 1fr; max-width: 720px; margin: 0 auto; }
[data-mfo-testimonials="rotator"] .mfo-quote { display: none; text-align: center; border: none; background: transparent; }
[data-mfo-testimonials="rotator"] .mfo-quote.is-active { display: flex; animation: mfoFade 0.5s ease; }
[data-mfo-testimonials="rotator"] .mfo-quote p { font-size: clamp(1.15rem, 2.2vw, 1.5rem); font-family: var(--mfo-font-heading); color: var(--mfo-ink); font-weight: 600; line-height: 1.5; }
[data-mfo-testimonials="rotator"] .mfo-quote-who { justify-content: center; margin-top: 6px; }
[data-mfo-testimonials="rotator"] .mfo-stars { margin: 0 auto; }

/* ============================================================
   BLOCK: newsletter  —  band | boxed
   ============================================================ */
.mfo-news { background: var(--mfo-brand); color: var(--mfo-on-brand); }
.mfo-news-inner {
    display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap;
    padding-block: calc(var(--mfo-density) * clamp(36px, 4vw, 52px));
}
.mfo-news h2 { color: var(--mfo-on-brand); font-size: clamp(1.3rem, 2.6vw, 1.8rem); margin-bottom: 6px; }
.mfo-news p { opacity: 0.85; font-size: 0.95rem; }
.mfo-news-form { display: flex; gap: 10px; min-width: min(420px, 100%); }
.mfo-news-form input {
    flex: 1; min-width: 0; padding: 14px 16px; border-radius: var(--mfo-radius-sm);
    border: none; font: inherit; background: var(--mfo-bg); color: var(--mfo-ink);
}
[data-mfo-newsletter="boxed"] .mfo-news { background: transparent; padding-block: calc(var(--mfo-density) * 24px); }
[data-mfo-newsletter="boxed"] .mfo-news-inner {
    background: var(--mfo-brand); border-radius: var(--mfo-radius);
    padding: calc(var(--mfo-density) * clamp(32px, 4vw, 48px));
    flex-direction: column; text-align: center; gap: 20px; box-shadow: var(--mfo-shadow);
}

/* ============================================================
   BLOCK: blog-teaser  —  card-row | list-inline
   ============================================================ */
.mfo-posts { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(14px, 2vw, 24px); }
.mfo-post { border-radius: var(--mfo-radius); overflow: hidden; border: 1px solid var(--mfo-border); background: var(--mfo-bg); display: block; }
.mfo-post img { width: 100%; aspect-ratio: 3/2; object-fit: cover; }
.mfo-post-body { padding: calc(var(--mfo-density) * 18px); }
.mfo-post-meta { font-size: 0.78rem; color: var(--mfo-muted); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 8px; }
.mfo-post h3 { font-size: 1.05rem; margin-bottom: 8px; }
.mfo-post p { font-size: 0.9rem; color: var(--mfo-muted); }

[data-mfo-blog-teaser="list-inline"] .mfo-posts { grid-template-columns: 1fr; gap: 0; }
[data-mfo-blog-teaser="list-inline"] .mfo-post { display: grid; grid-template-columns: 200px 1fr; border: none; border-bottom: 1px solid var(--mfo-border); border-radius: 0; }
[data-mfo-blog-teaser="list-inline"] .mfo-post img { aspect-ratio: 16/10; border-radius: var(--mfo-radius-sm); }
[data-mfo-blog-teaser="list-inline"] .mfo-post-body { padding: 8px 0 8px 22px; }

/* ============================================================
   BLOCK: category-header  —  title-bar | banner
   ============================================================ */
.mfo-crumbs { font-size: 0.82rem; color: var(--mfo-muted); margin-bottom: 10px; }
.mfo-crumbs a:hover { color: var(--mfo-brand); }
.mfo-cathead { padding-block: calc(var(--mfo-density) * clamp(28px, 4vw, 44px)); }
.mfo-cathead h1 { font-size: clamp(1.7rem, 3.4vw, 2.4rem); letter-spacing: -0.02em; margin-bottom: 8px; }
.mfo-cathead p { color: var(--mfo-muted); max-width: 60ch; }
.mfo-cathead-media { display: none; }

[data-mfo-category-header="banner"] .mfo-cathead { position: relative; padding: 0; }
[data-mfo-category-header="banner"] .mfo-cathead-media { display: block; }
[data-mfo-category-header="banner"] .mfo-cathead-media img { width: 100%; height: clamp(200px, 26vw, 300px); object-fit: cover; }
[data-mfo-category-header="banner"] .mfo-cathead-media::after { content: ''; position: absolute; inset: 0; background: rgba(0, 0, 0, 0.4); }
[data-mfo-category-header="banner"] .mfo-cathead-inner {
    position: absolute; inset: 0; z-index: 2; display: flex; flex-direction: column; justify-content: center;
    max-width: 1200px; margin: 0 auto; padding-inline: clamp(16px, 3vw, 32px); width: 100%;
}
[data-mfo-category-header="banner"] .mfo-cathead h1, [data-mfo-category-header="banner"] .mfo-cathead p,
[data-mfo-category-header="banner"] .mfo-crumbs, [data-mfo-category-header="banner"] .mfo-crumbs a { color: var(--mfo-on-brand); }
[data-mfo-category-header="banner"] .mfo-cathead p { opacity: 0.85; }

/* ============================================================
   BLOCK: category-card  —  standard | image-forward | list-row
   ============================================================ */
.mfo-plp-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(14px, 2vw, 24px); }
.mfo-product-actions { margin-top: 6px; }
.mfo-product-actions .mfo-btn { width: 100%; }
[data-mfo-category-card="list-row"] .mfo-product-actions .mfo-btn { width: auto; }
.mfo-product-hoverbtn { display: none; }

[data-mfo-category-card="image-forward"] .mfo-product { border: none; }
[data-mfo-category-card="image-forward"] .mfo-product-media { border-radius: var(--mfo-radius); overflow: hidden; }
[data-mfo-category-card="image-forward"] .mfo-product-media img { aspect-ratio: 4/5; }
[data-mfo-category-card="image-forward"] .mfo-product-body { padding: 14px 4px; }
[data-mfo-category-card="image-forward"] .mfo-product-actions { display: none; }
[data-mfo-category-card="image-forward"] .mfo-product-hoverbtn {
    display: flex; position: absolute; left: 12px; right: 12px; bottom: 12px;
    opacity: 0; transform: translateY(6px); transition: all 0.25s ease;
}
[data-mfo-category-card="image-forward"] .mfo-product:hover .mfo-product-hoverbtn { opacity: 1; transform: none; }

[data-mfo-category-card="list-row"] .mfo-plp-grid { grid-template-columns: 1fr; }
[data-mfo-category-card="list-row"] .mfo-product { display: grid; grid-template-columns: 190px 1fr auto; align-items: center; }
[data-mfo-category-card="list-row"] .mfo-product-media img { aspect-ratio: 1; }
[data-mfo-category-card="list-row"] .mfo-product-body { padding: 18px 24px; }
[data-mfo-category-card="list-row"] .mfo-product-actions { margin: 0 24px; }

/* quick-add-hover: second photo crossfades in, quick add + size chips overlay */
.mfo-product-media-alt { display: none; }
.mfo-product-quickpanel { display: none; }
[data-mfo-category-card="quick-add-hover"] .mfo-product { border: none; }
[data-mfo-category-card="quick-add-hover"] .mfo-product-media { border-radius: var(--mfo-radius); overflow: hidden; }
[data-mfo-category-card="quick-add-hover"] .mfo-product-media img { aspect-ratio: 4/5; }
[data-mfo-category-card="quick-add-hover"] .mfo-product-media-alt {
    display: block; position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
    opacity: 0; transition: opacity 0.25s ease;
}
[data-mfo-category-card="quick-add-hover"] .mfo-product:hover .mfo-product-media-alt { opacity: 1; }
[data-mfo-category-card="quick-add-hover"] .mfo-product-hoverbtn { display: none; }
[data-mfo-category-card="quick-add-hover"] .mfo-product-body { padding: 14px 4px; }
[data-mfo-category-card="quick-add-hover"] .mfo-product-actions { display: none; }
[data-mfo-category-card="quick-add-hover"] .mfo-product-quickpanel {
    display: flex; flex-direction: column; gap: 8px;
    position: absolute; left: 12px; right: 12px; bottom: 12px; z-index: 2;
    opacity: 0; transform: translateY(6px); transition: all 0.25s ease;
}
[data-mfo-category-card="quick-add-hover"] .mfo-product:hover .mfo-product-quickpanel { opacity: 1; transform: none; }
[data-mfo-category-card="quick-add-hover"] .mfo-size-chips { display: flex; gap: 6px; justify-content: center; }
[data-mfo-category-card="quick-add-hover"] .mfo-size-chips .mfo-chip { padding: 4px 10px; font-size: 0.72rem; background: var(--mfo-bg); }
[data-mfo-category-card="quick-add-hover"] .mfo-product-quickpanel .mfo-btn { width: 100%; }

/* editorial: taller imagery, bigger type, more air, corner badge stays */
[data-mfo-category-card="editorial"] .mfo-plp-grid { gap: clamp(24px, 3vw, 44px); }
[data-mfo-category-card="editorial"] .mfo-product { border: none; }
[data-mfo-category-card="editorial"] .mfo-product-media { border-radius: var(--mfo-radius); overflow: hidden; }
[data-mfo-category-card="editorial"] .mfo-product-media img { aspect-ratio: 3/4; }
[data-mfo-category-card="editorial"] .mfo-product-media-alt { display: none !important; }
[data-mfo-category-card="editorial"] .mfo-product-hoverbtn,
[data-mfo-category-card="editorial"] .mfo-product-quickpanel { display: none; }
[data-mfo-category-card="editorial"] .mfo-product-body { padding: 22px 4px 0; gap: 10px; }
[data-mfo-category-card="editorial"] .mfo-product-name { font-size: 1.15rem; font-weight: 700; }
[data-mfo-category-card="editorial"] .mfo-stars { font-size: 0.95rem; }
[data-mfo-category-card="editorial"] .mfo-price { font-size: 1.1rem; }
[data-mfo-category-card="editorial"] .mfo-product-actions { display: none; }
[data-mfo-category-card="editorial"] .mfo-badge { top: 16px; left: 16px; }

/* sub-option: corner badge tag, on by default (checkbox o_card-badge / mfo_card_badge) */
[data-mfo-card-badge="off"] .mfo-badge { display: none !important; }

/* ============================================================
   BLOCK: plp-toolbar  —  standard | enhanced
   ============================================================ */
.mfo-toolbar {
    display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap;
    padding-block: 16px; border-block: 1px solid var(--mfo-border); margin-bottom: calc(var(--mfo-density) * 26px);
}
.mfo-toolbar-count { font-size: 0.9rem; color: var(--mfo-muted); }
.mfo-toolbar-sort {
    display: inline-flex; align-items: center; gap: 8px; font-size: 0.9rem; font-weight: 600; color: var(--mfo-ink);
    border: 1px solid var(--mfo-border); border-radius: var(--mfo-radius-sm); padding: 9px 14px; background: var(--mfo-bg);
}
.mfo-toolbar-chips, .mfo-toolbar-views { display: none; }
[data-mfo-plp-toolbar="enhanced"] .mfo-toolbar-chips { display: flex; gap: 8px; flex-wrap: wrap; }
.mfo-chip {
    font-size: 0.83rem; font-weight: 600; padding: 7px 14px; border-radius: 999px;
    border: 1px solid var(--mfo-border); color: var(--mfo-body); background: var(--mfo-bg);
}
.mfo-chip.is-on { background: var(--mfo-brand); border-color: var(--mfo-brand); color: var(--mfo-on-brand); }
[data-mfo-plp-toolbar="enhanced"] .mfo-toolbar-views { display: inline-flex; border: 1px solid var(--mfo-border); border-radius: var(--mfo-radius-sm); overflow: hidden; }
.mfo-toolbar-views button { padding: 8px 12px; color: var(--mfo-muted); }
.mfo-toolbar-views button.is-on { background: var(--mfo-surface); color: var(--mfo-ink); }

/* ============================================================
   BLOCK: plp-filters  —  sidebar-static | sidebar-collapsible
   Coexists with category-card/plp-toolbar on the same PLP section,
   same pattern as pdp-layout + pdp-info-style + pdp-plus on the PDP.
   ============================================================ */
.mfo-plp-layout { display: grid; grid-template-columns: 240px 1fr; gap: clamp(24px, 3vw, 40px); align-items: start; }
.mfo-plp-sidebar { display: flex; flex-direction: column; gap: 26px; }
.mfo-filter-group-title {
    display: block; font-family: var(--mfo-font-heading); font-size: 0.92rem; font-weight: 700;
    color: var(--mfo-ink); margin-bottom: 12px;
}
.mfo-filter-group-body { display: flex; flex-direction: column; gap: 10px; }
.mfo-filter-check { display: flex; align-items: center; gap: 9px; font-size: 0.9rem; color: var(--mfo-body); }
.mfo-filter-check input { width: 16px; height: 16px; accent-color: var(--mfo-brand); flex-shrink: 0; }
.mfo-plp-main .mfo-plp-grid { grid-template-columns: repeat(3, 1fr); }

/* sidebar-collapsible: groups after the first start closed, +/- affordance */
[data-mfo-plp-filters="sidebar-collapsible"] .mfo-filter-group-title {
    cursor: pointer; display: flex; justify-content: space-between; align-items: center;
    padding-bottom: 10px; border-bottom: 1px solid var(--mfo-border);
}
[data-mfo-plp-filters="sidebar-collapsible"] .mfo-filter-group-title::after { content: '+'; color: var(--mfo-brand); font-size: 1.05rem; }
[data-mfo-plp-filters="sidebar-collapsible"] .mfo-filter-group:first-child .mfo-filter-group-title::after { content: '\2212'; }
[data-mfo-plp-filters="sidebar-collapsible"] .mfo-filter-group:not(:first-child) .mfo-filter-group-body { display: none; }

/* ============================================================
   BLOCK: pdp-layout  —  gallery-left | gallery-rail
   + pdp-info-style  —  tabs | accordion
   + pdp-plus        —  full | essentials
   ============================================================ */
.mfo-pdp { display: grid; grid-template-columns: 1.15fr 1fr; gap: clamp(28px, 4vw, 60px); align-items: start; }
.mfo-pdp-gallery { display: grid; gap: 12px; grid-template-areas: "main" "thumbs"; }
.mfo-pdp-main img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: var(--mfo-radius); }
.mfo-pdp-main { grid-area: main; }
.mfo-pdp-thumbs { grid-area: thumbs; display: flex; gap: 10px; }
.mfo-pdp-thumbs img {
    width: 76px; aspect-ratio: 1; object-fit: cover; border-radius: var(--mfo-radius-sm);
    border: 2px solid transparent; cursor: pointer;
}
.mfo-pdp-thumbs img.is-active { border-color: var(--mfo-brand); }

[data-mfo-pdp-layout="gallery-rail"] .mfo-pdp-gallery { grid-template-areas: "thumbs main"; grid-template-columns: 76px 1fr; }
[data-mfo-pdp-layout="gallery-rail"] .mfo-pdp-thumbs { flex-direction: column; }

.mfo-pdp-info h1 { font-size: clamp(1.5rem, 2.8vw, 2.1rem); letter-spacing: -0.02em; margin-bottom: 10px; }
.mfo-pdp-rating { display: flex; align-items: center; gap: 8px; font-size: 0.88rem; color: var(--mfo-muted); margin-bottom: 14px; }
.mfo-pdp-price { font-size: 1.5rem; margin-bottom: 18px; }
.mfo-pdp-blurb { margin-bottom: 22px; line-height: 1.7; }
.mfo-pdp-options { display: flex; gap: 10px; margin-bottom: 18px; }
.mfo-swatch { width: 34px; height: 34px; border-radius: 50%; border: 2px solid var(--mfo-border); background: var(--mfo-surface); }
.mfo-swatch.is-on { border-color: var(--mfo-brand); box-shadow: inset 0 0 0 3px var(--mfo-bg); background: var(--mfo-brand); }
.mfo-pdp-buy { display: flex; gap: 12px; margin-bottom: 12px; }
.mfo-qty {
    display: inline-flex; align-items: center; border: 1px solid var(--mfo-border);
    border-radius: var(--mfo-radius-sm); overflow: hidden;
}
.mfo-qty button { padding: 12px 15px; font-weight: 700; color: var(--mfo-ink); }
.mfo-qty span { min-width: 34px; text-align: center; font-weight: 700; color: var(--mfo-ink); }
.mfo-pdp-buy .mfo-btn { flex: 1; }
.mfo-pdp-shipnote { font-size: 0.85rem; color: var(--mfo-muted); margin-bottom: 24px; }

/* trust badges + cross-sell + sticky bar = pdp-plus territory */
.mfo-pdp-trust { display: none; gap: 18px; padding: 16px; background: var(--mfo-surface); border-radius: var(--mfo-radius-sm); margin-bottom: 24px; }
.mfo-pdp-trust div { display: flex; align-items: center; gap: 9px; font-size: 0.82rem; font-weight: 600; color: var(--mfo-ink); }
.mfo-pdp-trust svg { color: var(--mfo-brand); flex-shrink: 0; }
[data-mfo-pdp-plus] .mfo-pdp-trust { display: flex; }

.mfo-crosssell { display: none; }
[data-mfo-pdp-plus] .mfo-crosssell { display: block; }
.mfo-crosssell h2 { font-size: 1.25rem; margin-bottom: 18px; }
.mfo-crosssell .mfo-shelf { grid-template-columns: repeat(4, 1fr); }

.mfo-stickybar {
    display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 40;
    background: var(--mfo-bg); border-top: 1px solid var(--mfo-border); box-shadow: 0 -6px 24px rgba(0, 0, 0, 0.08);
}
.mfo-stickybar-inner { display: flex; align-items: center; gap: 18px; padding-block: 12px; }
.mfo-stickybar img { width: 46px; height: 46px; border-radius: var(--mfo-radius-sm); object-fit: cover; }
.mfo-stickybar strong { font-family: var(--mfo-font-heading); color: var(--mfo-ink); font-size: 0.95rem; }
.mfo-stickybar .mfo-price { margin-left: auto; }
[data-mfo-pdp-plus="full"] .mfo-stickybar { display: block; }

/* info style: tabs | accordion */
.mfo-pdp-details { margin-top: calc(var(--mfo-density) * 44px); }
.mfo-tabs-nav { display: flex; gap: 4px; border-bottom: 2px solid var(--mfo-border); }
.mfo-tabs-nav button {
    padding: 12px 20px; font-weight: 700; font-family: var(--mfo-font-heading); font-size: 0.95rem;
    color: var(--mfo-muted); border-bottom: 2px solid transparent; margin-bottom: -2px;
}
.mfo-tabs-nav button.is-on { color: var(--mfo-brand); border-bottom-color: var(--mfo-brand); }
.mfo-tabs-panel { padding: 22px 2px; line-height: 1.7; max-width: 70ch; }
.mfo-acc { display: none; border-top: 1px solid var(--mfo-border); }
.mfo-acc details { border-bottom: 1px solid var(--mfo-border); }
.mfo-acc summary {
    padding: 16px 2px; font-weight: 700; font-family: var(--mfo-font-heading); color: var(--mfo-ink);
    cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center;
}
.mfo-acc summary::after { content: '+'; font-size: 1.2rem; color: var(--mfo-brand); }
.mfo-acc details[open] summary::after { content: '\2212'; }
.mfo-acc div { padding: 0 2px 18px; line-height: 1.7; max-width: 70ch; }
[data-mfo-pdp-info-style="accordion"] .mfo-tabs-nav, [data-mfo-pdp-info-style="accordion"] .mfo-tabs-panel { display: none; }
[data-mfo-pdp-info-style="accordion"] .mfo-acc { display: block; }

/* ============================================================
   BLOCK: free-shipping-bar  —  meter (placement: header | drawer)
   ============================================================ */
.mfo-shipbar { background: var(--mfo-surface); border-bottom: 1px solid var(--mfo-border); padding: 10px 0; }
.mfo-shipbar-inner { display: flex; align-items: center; gap: 14px; font-size: 0.85rem; font-weight: 600; color: var(--mfo-ink); }
.mfo-shipbar-track { flex: 1; max-width: 340px; height: 8px; border-radius: 999px; background: var(--mfo-border); overflow: hidden; }
.mfo-shipbar-fill { height: 100%; width: 72%; border-radius: 999px; background: var(--mfo-accent); transition: width 0.4s ease; }
.mfo-shipbar-note strong { color: var(--mfo-accent); }

/* ============================================================
   BLOCK: cart-experience  —  page | slide-out
   ============================================================ */
.mfo-cartpage { display: grid; grid-template-columns: 1.6fr 1fr; gap: clamp(24px, 4vw, 48px); align-items: start; }
.mfo-cart-lines { border-top: 1px solid var(--mfo-border); }
.mfo-cart-line { display: grid; grid-template-columns: 88px 1fr auto auto; gap: 18px; align-items: center; padding: 18px 0; border-bottom: 1px solid var(--mfo-border); }
.mfo-cart-line img { width: 88px; height: 88px; object-fit: cover; border-radius: var(--mfo-radius-sm); }
.mfo-cart-line-name strong { display: block; color: var(--mfo-ink); font-family: var(--mfo-font-heading); }
.mfo-cart-line-name strong a { color: inherit; text-decoration: none; }
.mfo-cart-line-name strong a:hover { text-decoration: underline; }
.mfo-cart-line > a { display: block; }
.mfo-cart-line-name span { font-size: 0.85rem; color: var(--mfo-muted); }
.mfo-cart-summary { background: var(--mfo-surface); border-radius: var(--mfo-radius); padding: calc(var(--mfo-density) * 26px); position: sticky; top: 20px; }
.mfo-cart-summary h2 { font-size: 1.15rem; margin-bottom: 16px; }
.mfo-cart-row { display: flex; justify-content: space-between; padding: 7px 0; font-size: 0.95rem; }
.mfo-cart-row--total { border-top: 1px solid var(--mfo-border); margin-top: 8px; padding-top: 14px; font-weight: 800; color: var(--mfo-ink); font-size: 1.05rem; }
.mfo-cart-summary .mfo-btn { width: 100%; margin-top: 16px; }

/* slide-out drawer */
/* z-index 80/81: must stay above the sticky header (z-index: 70, see the
   header-sticky option rule below) so the drawer always renders on top of
   a pinned/reveal header. */
.mfo-drawer-scrim {
    position: fixed; inset: 0; background: rgba(0, 0, 0, 0.42); z-index: 80;
    opacity: 0; visibility: hidden; pointer-events: none;
    transition: opacity 0.32s ease, visibility 0s linear 0.32s;
}
.mfo-drawer {
    position: fixed; top: 0; right: 0; bottom: 0; width: min(420px, 92vw); z-index: 81;
    background: var(--mfo-bg); box-shadow: -12px 0 40px rgba(0, 0, 0, 0.18);
    display: flex; flex-direction: column; visibility: hidden;
    transform: translateX(100%); transition: transform 0.32s ease, visibility 0s linear 0.32s;
}
body.mfo-drawer-open .mfo-drawer-scrim { opacity: 1; visibility: visible; pointer-events: auto; transition: opacity 0.32s ease; }
body.mfo-drawer-open .mfo-drawer { transform: none; visibility: visible; transition: transform 0.32s ease; }
.mfo-drawer-head { display: flex; justify-content: space-between; align-items: center; padding: 18px 22px; border-bottom: 1px solid var(--mfo-border); }
.mfo-drawer-head h2 { font-size: 1.1rem; }
.mfo-drawer-body { flex: 1; overflow-y: auto; padding: 6px 22px; }
.mfo-drawer .mfo-cart-line { grid-template-columns: 64px 1fr auto; }
.mfo-drawer .mfo-cart-line img { width: 64px; height: 64px; }
.mfo-drawer-upsell { background: var(--mfo-surface); border-radius: var(--mfo-radius-sm); padding: 14px; margin: 16px 0; }
.mfo-drawer-upsell h3 { font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--mfo-muted); margin-bottom: 12px; }
.mfo-drawer-upsell-item { display: flex; gap: 12px; align-items: center; }
.mfo-drawer-upsell-item img { width: 52px; height: 52px; border-radius: var(--mfo-radius-sm); object-fit: cover; }
.mfo-drawer-upsell-item strong { display: block; font-size: 0.88rem; color: var(--mfo-ink); }
.mfo-drawer-upsell-item .mfo-btn { margin-left: auto; }
.mfo-drawer-foot { padding: 16px 22px 22px; border-top: 1px solid var(--mfo-border); }
.mfo-drawer-foot .mfo-shipbar { background: transparent; border: none; padding: 0 0 12px; }
.mfo-drawer-foot .mfo-btn { width: 100%; }
.mfo-drawer-foot small { display: block; text-align: center; color: var(--mfo-muted); margin-top: 10px; }

/* ============================================================
   BLOCK: care-center  —  hub-cards | single-column
   ============================================================ */
.mfo-care-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(14px, 2vw, 24px); margin-bottom: calc(var(--mfo-density) * 40px); }
.mfo-care-card {
    background: var(--mfo-bg); border: 1px solid var(--mfo-border); border-radius: var(--mfo-radius);
    padding: calc(var(--mfo-density) * 26px); display: flex; flex-direction: column; gap: 10px;
}
.mfo-care-card .mfo-prop-ic { margin-bottom: 4px; }
.mfo-care-card strong { font-family: var(--mfo-font-heading); color: var(--mfo-ink); font-size: 1.05rem; }
.mfo-care-card span { font-size: 0.9rem; color: var(--mfo-muted); }
.mfo-care-form { max-width: 640px; }
.mfo-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.mfo-field label { font-size: 0.88rem; font-weight: 700; color: var(--mfo-ink); }
.mfo-field input, .mfo-field select, .mfo-field textarea {
    padding: 12px 14px; border-radius: var(--mfo-radius-sm); border: 1px solid var(--mfo-border);
    font: inherit; background: var(--mfo-bg); color: var(--mfo-ink);
}
.mfo-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
[data-mfo-care-center="single-column"] .mfo-care-grid { grid-template-columns: 1fr; max-width: 640px; }
[data-mfo-care-center="single-column"] .mfo-care-card { flex-direction: row; align-items: center; }

/* ============================================================
   BLOCK: custom-404  —  search-first | products-first
   ============================================================ */
.mfo-404 { text-align: center; max-width: 680px; margin: 0 auto; }
.mfo-404-code { font-size: clamp(3.4rem, 8vw, 5.5rem); font-weight: 900; font-family: var(--mfo-font-heading); color: var(--mfo-surface); -webkit-text-stroke: 2px var(--mfo-brand); line-height: 1; margin-bottom: 8px; }
.mfo-404 h1 { font-size: clamp(1.4rem, 2.6vw, 1.9rem); margin-bottom: 10px; }
.mfo-404 > p { color: var(--mfo-muted); margin-bottom: 26px; }
.mfo-404-search { display: flex; gap: 10px; max-width: 460px; margin: 0 auto 18px; }
.mfo-404-search input { flex: 1; min-width: 0; padding: 14px 16px; border-radius: var(--mfo-radius-sm); border: 1px solid var(--mfo-border); font: inherit; }
.mfo-404-links { display: flex; gap: 18px; justify-content: center; font-weight: 600; color: var(--mfo-brand); font-size: 0.92rem; }
.mfo-404-products { margin-top: calc(var(--mfo-density) * 48px); }
.mfo-404-products h2 { font-size: 1.2rem; margin-bottom: 20px; }
[data-mfo-custom-404="products-first"] .mfo-404-search { display: none; }
[data-mfo-custom-404="products-first"] .mfo-404-products { margin-top: calc(var(--mfo-density) * 30px); }

/* ============================================================
   BLOCK: blog-enhanced  —  card-grid | editorial-list | card-grid-2col
   ============================================================ */
.mfo-blog-head { text-align: center; margin-bottom: calc(var(--mfo-density) * 40px); }
[data-mfo-blog-enhanced="card-grid-2col"] .mfo-posts { grid-template-columns: repeat(2, 1fr); }
[data-mfo-blog-enhanced="editorial-list"] .mfo-posts { grid-template-columns: 1fr; max-width: 820px; margin: 0 auto; gap: 0; }
[data-mfo-blog-enhanced="editorial-list"] .mfo-post { display: grid; grid-template-columns: 280px 1fr; border: none; border-bottom: 1px solid var(--mfo-border); border-radius: 0; padding-block: 22px; align-items: center; }
[data-mfo-blog-enhanced="editorial-list"] .mfo-post img { border-radius: var(--mfo-radius); }
[data-mfo-blog-enhanced="editorial-list"] .mfo-post h3 { font-size: 1.3rem; }
[data-mfo-blog-enhanced="editorial-list"] .mfo-post-body { padding: 0 0 0 28px; }

/* ============================================================
   BLOCK: faq-module  —  single-accordion | grouped-by-topic
   ============================================================ */
.mfo-faq { max-width: 780px; margin: 0 auto; }
.mfo-faq-group h2 { display: none; }
[data-mfo-faq-module="grouped-by-topic"] .mfo-faq-group h2 {
    display: block; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.1em;
    color: var(--mfo-brand); margin: 34px 0 6px;
}
[data-mfo-faq-module="grouped-by-topic"] .mfo-faq-group:first-child h2 { margin-top: 0; }

/* ============================================================
   BLOCK: blog-detail  —  overlay-on-image | above-content
   + sub-options: header image, byline, share icons (on by default)
   ============================================================ */
.mfo-blogpost-media { position: relative; background: var(--mfo-surface); }
.mfo-blogpost-media img { width: 100%; height: clamp(320px, 52vw, 520px); object-fit: cover; display: block; }
.mfo-blogpost-heading .mfo-post-meta { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--mfo-muted); margin-bottom: 10px; }
.mfo-blogpost-heading h1 { font-size: clamp(1.7rem, 3.6vw, 2.6rem); letter-spacing: -0.02em; margin-bottom: 16px; }
.mfo-blogpost-byline { display: flex; align-items: center; gap: 10px; }
.mfo-avatar { width: 36px; height: 36px; border-radius: 50%; object-fit: cover; }
.mfo-blogpost-byline strong { display: block; font-family: var(--mfo-font-heading); color: var(--mfo-ink); font-size: 0.9rem; }
.mfo-blogpost-byline span { font-size: 0.8rem; color: var(--mfo-muted); }

.mfo-blogpost-heading--overlay {
    position: absolute; left: 0; right: 0; bottom: 0;
    padding: clamp(24px, 5vw, 56px) clamp(16px, 4vw, 56px);
    background: linear-gradient(to top, rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0));
    color: var(--mfo-on-brand);
}
.mfo-blogpost-heading--overlay h1 { color: var(--mfo-on-brand); max-width: 46ch; }
.mfo-blogpost-heading--overlay .mfo-post-meta { color: rgba(255, 255, 255, 0.75); }
.mfo-blogpost-heading--overlay .mfo-blogpost-byline span { color: rgba(255, 255, 255, 0.7); }

.mfo-blogpost-heading--standalone {
    display: none; text-align: center; max-width: 640px; margin: 0 auto calc(var(--mfo-density) * 36px);
}
.mfo-blogpost-heading--standalone .mfo-post-meta,
.mfo-blogpost-heading--standalone .mfo-blogpost-byline { justify-content: center; }

[data-mfo-blogdetail-title="above-content"] .mfo-blogpost-heading--overlay { display: none; }
[data-mfo-blogdetail-title="above-content"] .mfo-blogpost-heading--standalone { display: block; }

.mfo-blogpost-body-wrap { padding-block: calc(var(--mfo-density) * 44px); max-width: 1080px; }
.mfo-blogpost-layout { display: grid; grid-template-columns: 56px minmax(0, 760px); justify-content: center; gap: 32px; align-items: start; }
.mfo-blogpost-content { font-size: 1.05rem; line-height: 1.8; color: var(--mfo-body); display: flex; flex-direction: column; gap: 20px; }
.mfo-blogpost-content h2 { font-size: 1.35rem; margin-top: 10px; }
.mfo-blogpost-share { position: sticky; top: 32px; display: flex; flex-direction: column; align-items: center; gap: 12px; }
.mfo-blogpost-share-label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--mfo-muted); writing-mode: vertical-rl; }
.mfo-share-btn {
    width: 38px; height: 38px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center;
    background: var(--mfo-surface); color: var(--mfo-ink); border: 1px solid var(--mfo-border); transition: all 0.18s ease;
}
.mfo-share-btn:hover { background: var(--mfo-brand); color: var(--mfo-on-brand); border-color: var(--mfo-brand); }
.mfo-share-btn i { font-size: 0.95rem; }

/* sub-options, all on by default */
[data-mfo-blogdetail-image="off"] .mfo-blogpost-media img { display: none; }
[data-mfo-blogdetail-image="off"] .mfo-blogpost-media { background: none; }
[data-mfo-blogdetail-image="off"] .mfo-blogpost-heading--overlay {
    position: static; background: none; color: var(--mfo-ink);
    padding: calc(var(--mfo-density) * 40px) 0 0; max-width: 900px; margin: 0 auto;
}
[data-mfo-blogdetail-image="off"] .mfo-blogpost-heading--overlay h1 { color: var(--mfo-ink); max-width: none; }
[data-mfo-blogdetail-image="off"] .mfo-blogpost-heading--overlay .mfo-post-meta { color: var(--mfo-muted); }
[data-mfo-blogdetail-image="off"] .mfo-blogpost-heading--overlay .mfo-blogpost-byline span { color: var(--mfo-muted); }

[data-mfo-blogdetail-byline="off"] .mfo-blogpost-byline { display: none; }

[data-mfo-blogdetail-share="off"] .mfo-blogpost-share { display: none; }
[data-mfo-blogdetail-share="off"] .mfo-blogpost-layout { grid-template-columns: minmax(0, 760px); }

/* ============================================================
   BLOCK: category-seo-layout  —  copy-above | copy-below
   ============================================================ */
.mfo-seo-cat { display: flex; flex-direction: column; }
.mfo-seo-intro { max-width: 76ch; margin-bottom: calc(var(--mfo-density) * 30px); }
.mfo-seo-intro h1 { font-size: clamp(1.7rem, 3.4vw, 2.4rem); margin-bottom: 12px; letter-spacing: -0.02em; }
.mfo-seo-intro p { line-height: 1.7; color: var(--mfo-body); }
.mfo-seo-grid { order: 2; }
.mfo-seo-more { order: 3; margin-top: calc(var(--mfo-density) * 48px); max-width: 76ch; }
.mfo-seo-more h2 { font-size: 1.35rem; margin-bottom: 12px; }
.mfo-seo-more p { line-height: 1.75; margin-bottom: 14px; }
.mfo-seo-more .mfo-acc { display: block; margin-top: 26px; }
[data-mfo-category-seo-layout="copy-below"] .mfo-seo-intro { order: 1; }
[data-mfo-category-seo-layout="copy-below"] .mfo-seo-intro p { display: none; }
[data-mfo-category-seo-layout="copy-below"] .mfo-seo-grid { order: 0; margin-bottom: calc(var(--mfo-density) * 18px); }

/* ============================================================
   REVISION: free-shipping-bar — placements header | drawer | cart
   (multi-select: attribute holds space-separated placements)
   ============================================================ */
.mfo-shipbar-demo-drawer, .mfo-shipbar-demo-cart { display: none; }
[data-mfo-free-shipping-bar~="drawer"] .mfo-shipbar-demo-drawer { display: flex; }
[data-mfo-free-shipping-bar~="cart"]   .mfo-shipbar-demo-cart   { display: block; }
[data-mfo-free-shipping-bar] .mfo-shipbar-demo-header { display: none; }
[data-mfo-free-shipping-bar~="header"] .mfo-shipbar-demo-header { display: block; }

/* ============================================================
   REVISION: nav — master category dropdown (left | right)
   ============================================================ */
.mfo-nav-master { display: none; position: relative; }
[data-mfo-nav="master-left"] .mfo-nav-master, [data-mfo-nav="master-right"] .mfo-nav-master { display: block; }
[data-mfo-nav="master-left"] .mfo-navbar-row  { justify-content: flex-start; }
[data-mfo-nav="master-right"] .mfo-navbar-row { justify-content: flex-start; flex-direction: row-reverse; }
.mfo-nav-master > a {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--mfo-brand); color: var(--mfo-on-brand);
    padding: 15px 22px; font-weight: 800; font-size: 0.95rem;
    border-radius: var(--mfo-radius-sm) var(--mfo-radius-sm) 0 0;
}
.mfo-master-burger { display: inline-flex; flex-direction: column; gap: 4px; }
.mfo-master-burger i { width: 18px; height: 2.5px; border-radius: 2px; background: currentColor; }
.mfo-nav-master-panel {
    position: absolute; top: 100%; left: 0; min-width: 260px; z-index: 31;
    background: var(--mfo-bg); border: 1px solid var(--mfo-border); border-top: none;
    border-radius: 0 0 var(--mfo-radius-sm) var(--mfo-radius-sm); box-shadow: var(--mfo-shadow);
    padding: 8px 0;
}
[data-mfo-nav="master-right"] .mfo-nav-master-panel { left: auto; right: 0; }
.mfo-nav-master-panel a {
    display: flex; justify-content: space-between; align-items: center;
    padding: 11px 20px; font-size: 0.93rem; font-weight: 600; color: var(--mfo-ink);
}
.mfo-nav-master-panel a:hover { background: color-mix(in srgb, var(--mfo-nav-hover) 9%, var(--mfo-nav-bg)); color: var(--mfo-nav-hover-ink); }
.mfo-nav-master-panel a::after {
    content: ''; width: 6px; height: 6px; border-right: 2px solid var(--mfo-muted);
    border-top: 2px solid var(--mfo-muted); transform: rotate(45deg);
}

/* ============================================================
   REVISION: testimonials — google-reviews | trustpilot (pro)
   ============================================================ */
.mfo-reviews-src { display: none; align-items: center; justify-content: center; gap: 14px; margin-bottom: 26px; }
[data-mfo-testimonials="google-reviews"] .mfo-reviews-src--google,
[data-mfo-testimonials="trustpilot"] .mfo-reviews-src--trustpilot { display: flex; }
.mfo-reviews-src strong { font-size: 1.05rem; color: var(--mfo-ink); font-family: var(--mfo-font-heading); }
.mfo-reviews-src .mfo-stars { font-size: 1.05rem; }
.mfo-reviews-badge {
    display: inline-flex; align-items: center; gap: 8px; padding: 8px 16px; border-radius: 999px;
    border: 1px solid var(--mfo-border); background: var(--mfo-bg); font-weight: 700; font-size: 0.88rem; color: var(--mfo-ink);
}
.mfo-reviews-badge i { width: 18px; height: 18px; border-radius: 50%; background: var(--mfo-accent); }
[data-mfo-testimonials="google-reviews"] .mfo-quotes,
[data-mfo-testimonials="trustpilot"] .mfo-quotes { grid-template-columns: repeat(3, 1fr); }
.mfo-reviews-note { display: none; text-align: center; margin-top: 18px; font-size: 0.82rem; color: var(--mfo-muted); }
[data-mfo-testimonials="google-reviews"] .mfo-reviews-note,
[data-mfo-testimonials="trustpilot"] .mfo-reviews-note { display: block; }

/* ============================================================
   REVISION: pdp-layout — + media-grid | stacked-scroll
   ============================================================ */
[data-mfo-pdp-layout="media-grid"] .mfo-pdp-gallery { grid-template-areas: "main"; }
[data-mfo-pdp-layout="media-grid"] .mfo-pdp-thumbs { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
[data-mfo-pdp-layout="media-grid"] .mfo-pdp-thumbs img { width: 100%; border-radius: var(--mfo-radius); border: none; }
[data-mfo-pdp-layout="stacked-scroll"] .mfo-pdp-gallery { grid-template-areas: "main" "thumbs"; }
[data-mfo-pdp-layout="stacked-scroll"] .mfo-pdp-thumbs { flex-direction: column; }
[data-mfo-pdp-layout="stacked-scroll"] .mfo-pdp-thumbs img { width: 100%; border: none; border-radius: var(--mfo-radius); }
[data-mfo-pdp-layout="stacked-scroll"] .mfo-pdp-info { position: sticky; top: 20px; }

/* ============================================================
   REVISION: pdp-info-style — + tabs-below | accordion-below
   ============================================================ */
.mfo-pdp-details--below { display: none; margin-top: calc(var(--mfo-density) * 44px); }
[data-mfo-pdp-info-style="tabs-below"] .mfo-pdp-info .mfo-pdp-details,
[data-mfo-pdp-info-style="accordion-below"] .mfo-pdp-info .mfo-pdp-details { display: none; }
[data-mfo-pdp-info-style="tabs-below"] .mfo-pdp-details--below,
[data-mfo-pdp-info-style="accordion-below"] .mfo-pdp-details--below { display: block; }
[data-mfo-pdp-info-style="tabs-below"] .mfo-pdp-details--below .mfo-acc { display: none; }
[data-mfo-pdp-info-style="tabs-below"] .mfo-pdp-details--below .mfo-tabs-nav,
[data-mfo-pdp-info-style="tabs-below"] .mfo-pdp-details--below .mfo-tabs-panel { display: flex; }
[data-mfo-pdp-info-style="tabs-below"] .mfo-pdp-details--below .mfo-tabs-panel { display: block; }
[data-mfo-pdp-info-style="accordion-below"] .mfo-pdp-details--below .mfo-tabs-nav,
[data-mfo-pdp-info-style="accordion-below"] .mfo-pdp-details--below .mfo-tabs-panel { display: none; }
[data-mfo-pdp-info-style="accordion-below"] .mfo-pdp-details--below .mfo-acc { display: block; }

/* ============================================================
   REVISION: cart-experience — slide-out (basic) | slide-out-upsell (pro)
   ============================================================ */
body[data-mfo-cart-experience="slide-out"] .mfo-drawer-upsell { display: none; }

/* ============================================================
   REVISION: care-center — contact-form | enhanced | full-hub
   ============================================================ */
[data-mfo-care-center="contact-form"] .mfo-care-grid { display: none; }
[data-mfo-care-center="enhanced"] .mfo-care-grid { grid-template-columns: 1fr; max-width: 640px; }
[data-mfo-care-center="enhanced"] .mfo-care-card { flex-direction: row; align-items: center; }
[data-mfo-care-center="enhanced"] .mfo-care-card:nth-child(3) { display: none; }

/* full-hub: 3 cards (above) + a 2-col FAQ grid + contact info beside the
   form at 50/50 — the FAQ item shape mirrors faq-module's question/answer,
   the contact-line shape mirrors the footer's address/phone/email rows. */
.mfo-care-faq { display: none; }
[data-mfo-care-center="full-hub"] .mfo-care-faq {
    display: block; margin-bottom: calc(var(--mfo-density) * 40px);
}
.mfo-care-faq-title { font-size: 1.25rem; margin-bottom: 18px; }
.mfo-care-faq-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(16px, 2vw, 28px); }
.mfo-care-faq-item strong { display: block; font-family: var(--mfo-font-heading); color: var(--mfo-ink); margin-bottom: 6px; }
.mfo-care-faq-item span { font-size: 0.9rem; color: var(--mfo-muted); line-height: 1.6; }

.mfo-care-contact { display: none; }
[data-mfo-care-center="full-hub"] .mfo-care-bottom {
    display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 3vw, 48px); align-items: start;
}
[data-mfo-care-center="full-hub"] .mfo-care-contact { display: block; }
[data-mfo-care-center="full-hub"] .mfo-care-form { max-width: none; }
.mfo-care-contact h2 { font-size: 1.25rem; margin-bottom: 18px; }
.mfo-care-contact-line { display: flex; align-items: baseline; gap: 12px; margin-top: 14px; font-size: 0.92rem; }
.mfo-care-contact-line:first-of-type { margin-top: 0; }
.mfo-care-contact-line i { width: 16px; flex: none; text-align: center; color: var(--mfo-accent); font-size: 0.85rem; transform: translateY(1px); }
.mfo-care-contact-line address { font-style: normal; color: var(--mfo-body); line-height: 1.55; }
.mfo-care-contact-line a { color: var(--mfo-body); }
.mfo-care-contact-line a:hover { color: var(--mfo-brand); }

/* ============================================================
   BLOCK: social-feed — instagram | youtube | facebook (multi)
   ============================================================ */
.mfo-social { display: none; }
[data-mfo-social-feed~="instagram"] .mfo-social--ig,
[data-mfo-social-feed~="youtube"] .mfo-social--yt,
[data-mfo-social-feed~="facebook"] .mfo-social--fb { display: block; }
.mfo-social-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 18px; }
.mfo-social-head h2 { font-size: 1.25rem; }
.mfo-social-handle { font-size: 0.88rem; font-weight: 700; color: var(--mfo-brand); }
.mfo-ig-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 8px; }
.mfo-ig-grid img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: var(--mfo-radius-sm); }
.mfo-yt-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.mfo-yt-card { position: relative; border-radius: var(--mfo-radius); overflow: hidden; }
.mfo-yt-card img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.mfo-yt-play {
    position: absolute; inset: 0; margin: auto; width: 52px; height: 52px; border-radius: 50%;
    background: color-mix(in srgb, var(--mfo-ink) 78%, transparent); display: grid; place-items: center;
}
.mfo-yt-play::after { content: ''; border-left: 16px solid var(--mfo-on-brand); border-block: 10px solid transparent; margin-left: 4px; }
.mfo-yt-card strong { display: block; padding: 10px 4px 0; font-size: 0.9rem; color: var(--mfo-ink); font-family: var(--mfo-font-heading); }
.mfo-fb-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.mfo-fb-post { border: 1px solid var(--mfo-border); border-radius: var(--mfo-radius); padding: 16px; background: var(--mfo-bg); }
.mfo-fb-post-head { display: flex; gap: 10px; align-items: center; margin-bottom: 10px; }
.mfo-fb-post-head img { width: 34px; height: 34px; border-radius: 50%; }
.mfo-fb-post-head strong { font-size: 0.88rem; color: var(--mfo-ink); display: block; }
.mfo-fb-post-head span { font-size: 0.74rem; color: var(--mfo-muted); }
.mfo-fb-post p { font-size: 0.88rem; line-height: 1.5; }
.mfo-social + .mfo-social { margin-top: calc(var(--mfo-density) * 40px); }

/* ── REVISION: master menu = full-height drawer pinned to browser edge ── */
.mfo-nav-master-panel {
    position: fixed; top: var(--mfo-nav-offset, 120px); bottom: 0; left: 0; right: auto;
    width: min(320px, 84vw); min-width: 0; border-radius: 0;
    border: none; border-right: 1px solid var(--mfo-border);
    box-shadow: 18px 0 40px rgba(0, 0, 0, 0.12);
    overflow-y: auto; padding: 14px 0;
}
[data-mfo-nav="master-right"] .mfo-nav-master-panel {
    left: auto; right: 0; border-right: none; border-left: 1px solid var(--mfo-border);
    box-shadow: -18px 0 40px rgba(0, 0, 0, 0.12);
}
.mfo-nav-master-panel a { padding: 13px 22px; }


/* ── variant sub-options (data attributes from o_* / mfo:options) ── */
[data-mfo-nav-topbar="button-only"] .mfo-navbar-item { display: none; }
[data-mfo-nav-topbar="utility-only"] .mfo-navbar-item[data-role="quick"] { display: none; }
[data-mfo-master-na="off"] .mfo-master-utility a[data-link="na"] { display: none; }
[data-mfo-master-bs="off"] .mfo-master-utility a[data-link="bs"] { display: none; }
[data-mfo-master-pages="off"] .mfo-master-utility a[data-link="util"] { display: none; }
[data-mfo-master-na="off"][data-mfo-master-bs="off"][data-mfo-master-pages="off"] .mfo-master-utility { display: none; }
[data-mfo-nav-pages="off"] .mfo-navbar-item[data-role="util"] { display: none; }
[data-mfo-mega-promo="off"] .mfo-nav-mega-promo { display: none; }
[data-mfo-mega-promo="off"] .mfo-nav-mega-grid { grid-template-columns: repeat(3, 1fr); }

/* ── PDP specs = BigCommerce custom fields: label + value per line ── */
.mfo-specs { display: flex; flex-direction: column; gap: 0; max-width: 52ch; }
.mfo-specs > div {
    display: flex; justify-content: space-between; gap: 24px;
    padding: 9px 2px; border-bottom: 1px solid var(--mfo-border);
    font-size: 0.92rem;
}
.mfo-specs dt { color: var(--mfo-muted); font-weight: 600; }
.mfo-specs dd { margin: 0; color: var(--mfo-ink); font-weight: 600; text-align: right; }

/* ============================================================
   BLOCK: header  —  OPTION header-sticky: pin | reveal | off
   REVISION: 2026-07-15 sticky header option
   ============================================================ */
body[data-mfo-header-sticky="pin"] .mfo-header,
body[data-mfo-header-sticky="reveal"] .mfo-header {
    position: sticky; top: 0; z-index: 70;
    box-shadow: 0 6px 24px rgba(15, 26, 43, 0.10);
}
body[data-mfo-header-sticky="reveal"] .mfo-header { transition: transform 0.28s ease; }
body[data-mfo-header-sticky="reveal"].mfo-scrolldown .mfo-header { transform: translateY(-110%); }

/* ============================================================
   BLOCK: nav  —  REVISION 2026-07-16: master drawer closed-state contract.
   The drawer is hidden while aria-hidden="true"; mfo.js (theme) and the
   preview scripts open it by flipping aria-hidden + .is-open.
   ============================================================ */
.mfo-nav-master-panel[aria-hidden="true"] { display: none; }

/* ============================================================
   WIDGETS — REVISION 2026-07-16: placeholder boxes rendered when a
   widget has no image yet ("drop a photo here" affordance in PB).
   ============================================================ */
.mfo-widget-ph {
    width: 100%; aspect-ratio: 1; border-radius: var(--mfo-radius-sm);
    background:
        radial-gradient(120px 90px at 30% 62%, color-mix(in srgb, var(--mfo-brand) 16%, var(--mfo-surface)), transparent 70%),
        linear-gradient(150deg, var(--mfo-surface), color-mix(in srgb, var(--mfo-secondary) 12%, var(--mfo-surface)));
}
.mfo-widget-ph--wide { aspect-ratio: auto; height: 100%; min-height: 320px; border-radius: 0; }
.mfo-widget-ph--tall { aspect-ratio: 4 / 5; }
.mfo-hero-media .mfo-widget-ph { height: 100%; border-radius: 0; aspect-ratio: auto; }

/* ============================================================
   BLOCK: footer — REVISION 2026-07-16 v1.1: widget link region,
   social icon buttons, settings-driven payment marks.
   ============================================================ */
.mfo-footer-linkregion { display: flex; flex-wrap: wrap; gap: var(--mfo-space-6, 40px) 56px; grid-column: 2 / -1; }
.mfo-footer-linkregion [data-content-region],
.mfo-footer-linkregion [data-content-region] > div { display: contents; }
.mfo-footer-social { display: flex; gap: 10px; margin-top: 14px; }
.mfo-footer-social-btn {
    display: inline-flex; align-items: center; justify-content: center;
    width: 40px; height: 40px; border-radius: 50%;
    border: 1px solid color-mix(in srgb, currentColor 30%, transparent);
    color: inherit; transition: background 0.15s ease;
}
.mfo-footer-social-btn:hover { background: color-mix(in srgb, currentColor 12%, transparent); }
.mfo-paymark {
    display: inline-flex; align-items: center; padding: 3px 8px;
    border: 1px solid color-mix(in srgb, currentColor 30%, transparent);
    border-radius: 4px; font-size: 0.66rem; font-weight: 800; letter-spacing: 0.04em;
    opacity: 0.75;
}

/* ============================================================
   BLOCK: footer — REVISION 2026-07-16 v1.2: Font Awesome icons
   (social, payments, contact), contact block, settings-driven
   link-column count, richer spacing. Overrides the v1.1 rules.
   ============================================================ */
.mfo-footer-grid {
    grid-template-columns: minmax(240px, 1.15fr) 2.6fr;
    gap: clamp(32px, 5vw, 72px);
    align-items: start;
}
.mfo-footer-blurb { opacity: 0.65; font-size: 0.9rem; margin: 14px 0 0; max-width: 34ch; }

.mfo-footer-contact-line {
    display: flex; align-items: baseline; gap: 12px;
    margin-top: 14px; font-size: 0.9rem;
}
.mfo-footer-contact-line:first-of-type { margin-top: 20px; }
.mfo-footer-contact-line i {
    width: 16px; flex: none; text-align: center;
    color: var(--mfo-accent, currentColor); font-size: 0.85rem;
    transform: translateY(1px);
}
.mfo-footer-contact-line address { font-style: normal; opacity: 0.75; line-height: 1.55; }
.mfo-footer-contact-line a { opacity: 0.75; }
.mfo-footer-contact-line a:hover { opacity: 1; }

.mfo-footer-social { display: flex; gap: 10px; margin-top: 22px; }
.mfo-footer-social-btn i { font-size: 0.95rem; }

.mfo-footer-linkregion {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: var(--mfo-space-6, 40px) clamp(28px, 3.5vw, 56px);
}
[data-mfo-footer-cols="2"] .mfo-footer-linkregion { grid-template-columns: repeat(2, 1fr); }
[data-mfo-footer-cols="4"] .mfo-footer-linkregion { grid-template-columns: repeat(4, 1fr); }
.mfo-footer-linkregion [data-content-region],
.mfo-footer-linkregion [data-content-region] > div { display: contents; }

.mfo-footer-bottom { padding-block: 20px; }
.mfo-paymarks { display: flex; align-items: center; gap: 12px; }
.mfo-paymarks i.mfo-paymark {
    width: auto; height: auto; background: transparent;
    border: none; padding: 0; border-radius: 0;
    font-size: 1.85rem; line-height: 1; opacity: 0.85;
    transition: opacity 0.15s ease;
}
.mfo-paymarks i.mfo-paymark:hover { opacity: 1; }

/* Stock Cornerstone pads .body top and bottom (35px/84px) to space its
   white pages; MFO sections are full-bleed and own their spacing, so both
   read as white gaps (nav-to-hero, last-section-to-footer). Remove them. */
.body { margin-top: 0; margin-bottom: 0; }

/* Stock also pads <body> by $header-height (55px) below the "medium"
   breakpoint for ITS fixed mobile header (_global.scss). Ours is in normal
   flow, so that padding is a white strip above the announcement bar. */
body { padding-top: 0; }

/* Shipbar hardening: [hidden] must always win, and the 72% width above is
   the block-preview demo only — live bars are driven inline by mfo.js. */
.mfo-shipbar[hidden] { display: none !important; }
.mfo-shipbar.is-unlocked .mfo-shipbar-goalnote { opacity: 0.75; }

/* ============================================================
   BLOCK: footer — REVISION 2026-07-16 v1.3: the top-tier e-com
   footer. Newsletter row up top, link columns beside the brand
   column, legal bar with FA payment marks. Overrides v1.2.
   ============================================================ */
.mfo-footer { font-size: 0.92rem; }
/* The v1.0 preview rule turned the icon itself into a circle; the v1.2+
   button IS the circle, so the glyph goes back to being just a glyph. */
.mfo-footer-social i { width: auto; height: auto; background: none; border-radius: 0; }
.mfo-footer-news-row {
    display: flex; align-items: center; justify-content: space-between;
    gap: 20px 48px; flex-wrap: wrap;
    padding-block: clamp(28px, 4vw, 42px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}
.mfo-footer-news-copy h3 {
    color: var(--mfo-bg); font-size: 1.3rem; font-weight: 800;
    letter-spacing: -0.01em; margin-bottom: 5px; font-family: var(--mfo-font-heading);
}
.mfo-footer-news-copy p { opacity: 0.65; font-size: 0.9rem; }
.mfo-footer-news-form { display: flex; gap: 10px; flex: 0 1 440px; min-width: min(340px, 100%); }
.mfo-footer-news-form input {
    flex: 1; min-width: 0; padding: 13px 16px; border-radius: var(--mfo-radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.24); background: rgba(255, 255, 255, 0.08);
    color: var(--mfo-bg); font: inherit; outline: none; transition: border-color 0.15s ease;
}
.mfo-footer-news-form input::placeholder { color: var(--mfo-bg); opacity: 0.5; }
.mfo-footer-news-form input:focus { border-color: var(--mfo-accent); }

.mfo-footer-grid { padding-block: calc(var(--mfo-density) * clamp(44px, 5vw, 68px)); }
.mfo-footer .mfo-logo { margin-bottom: 2px; }

.mfo-footer-bottom {
    display: flex; justify-content: space-between; align-items: center;
    gap: 14px 28px; flex-wrap: wrap;
    padding-block: 22px; border-top: 1px solid rgba(255, 255, 255, 0.14);
    font-size: 0.8rem;
}
.mfo-footer-copy { opacity: 0.55; }
.mfo-paymarks { opacity: 1; }

/* ============================================================
   CHROME MOBILE — REVISION 2026-07-16: the theme shell finally
   answers to phones. ≤900px: burger + drawer replace the inline
   links and navbar; utility strip shows the message only; the
   footer stacks with accordion link columns; every multi-column
   block collapses to a phone-sane grid. Widgets (mf1-*) carry
   their own media queries and are untouched here.
   ============================================================ */

/* The stock icon sprite must never take up space (theme.css hides it on
   the storefront; this keeps preview parity anywhere else it renders). */
body > svg:first-child { display: none; }

/* Chrome links never underline at rest; hover states carry the affordance. */
.mfo-mobile-nav a, .mfo-footer a, .mfo-header a, .mfo-navbar a, .mfo-utility a { text-decoration: none; }

/* Mobile drawer primitives (hidden ≥901px via the toggle) */
.mfo-mobile-toggle {
    display: none; grid-area: burger; width: 42px; height: 42px;
    align-items: center; justify-content: center;
    color: var(--mfo-ink); font-size: 1.15rem;
    margin-left: -8px; cursor: pointer;
}
.mfo-mobile-scrim { position: fixed; inset: 0; background: rgba(8, 12, 20, 0.45); z-index: 90; }
.mfo-mobile-scrim[hidden] { display: none; }
.mfo-mobile-nav {
    position: fixed; top: 0; bottom: 0; left: 0; width: min(360px, 88vw); z-index: 91;
    background: var(--mfo-bg); display: flex; flex-direction: column;
    overflow-y: auto; overscroll-behavior: contain;
    transform: translateX(-103%); transition: transform 0.3s ease, visibility 0.3s;
    visibility: hidden;
}
.mfo-mobile-nav.is-open { transform: none; visibility: visible; box-shadow: 20px 0 60px rgba(0, 0, 0, 0.28); }
body.mfo-mobile-open { overflow: hidden; }

.mfo-mobile-head {
    display: flex; align-items: center; justify-content: space-between;
    padding: 16px 12px 16px 20px; border-bottom: 1px solid var(--mfo-border);
}
.mfo-mobile-title { font-family: var(--mfo-font-heading); font-weight: 800; color: var(--mfo-ink); font-size: 1.02rem; }
.mfo-mobile-close { width: 44px; height: 44px; display: grid; place-items: center; color: var(--mfo-muted); font-size: 1.1rem; cursor: pointer; }
.mfo-mobile-close:hover { color: var(--mfo-ink); }

.mfo-mobile-search {
    display: flex; align-items: center; gap: 10px;
    margin: 14px 20px 6px; padding: 0 14px;
    border: 1px solid var(--mfo-border); border-radius: var(--mfo-radius-sm);
    background: var(--mfo-surface); color: var(--mfo-muted);
}
.mfo-mobile-search input {
    flex: 1; min-width: 0; border: none; background: none; font: inherit;
    color: var(--mfo-ink); padding: 12px 0; outline: none;
}

.mfo-mobile-cats { padding: 10px 8px 6px; }
.mfo-mobile-row { display: flex; align-items: center; }
.mfo-mobile-link {
    display: flex; align-items: center; flex: 1; min-height: 48px;
    padding: 0 12px; font-weight: 600; font-size: 1rem; color: var(--mfo-ink);
    border-radius: var(--mfo-radius-sm);
}
.mfo-mobile-link:active { background: var(--mfo-surface); }
.mfo-mobile-link--feature { color: var(--mfo-brand); font-weight: 700; }
.mfo-mobile-expand {
    width: 48px; height: 48px; display: grid; place-items: center;
    color: var(--mfo-muted); font-size: 0.8rem; cursor: pointer;
}
.mfo-mobile-expand i { transition: transform 0.2s ease; }
.mfo-mobile-group.is-open .mfo-mobile-expand i { transform: rotate(180deg); }
.mfo-mobile-sub { display: none; padding: 0 0 6px 26px; }
.mfo-mobile-group.is-open .mfo-mobile-sub { display: block; }
.mfo-mobile-sub a {
    display: flex; align-items: center; min-height: 44px; padding: 0 12px;
    font-size: 0.95rem; color: var(--mfo-body);
}

.mfo-mobile-util {
    margin-top: auto; padding: 14px 20px 26px;
    border-top: 1px solid var(--mfo-border);
    display: flex; flex-direction: column;
}
.mfo-mobile-util a {
    display: flex; align-items: center; gap: 12px; min-height: 44px;
    font-size: 0.93rem; color: var(--mfo-body);
}
.mfo-mobile-util a i { width: 18px; text-align: center; color: var(--mfo-muted); font-size: 0.9rem; }

@media (max-width: 900px) {
    /* header: burger | logo | icons — one compact row, every variant */
    .mfo-utility-left, .mfo-utility-social { display: none; }
    .mfo-utility .mfo-container { grid-template-columns: 1fr; text-align: center; }
    .mfo-mobile-toggle { display: inline-flex; }
    .mfo-header-main,
    [data-mfo-header="center-stack"] .mfo-header-main,
    [data-mfo-header="split-nav"] .mfo-header-main {
        grid-template-areas: "burger logo icons";
        grid-template-columns: 42px 1fr auto;
        justify-items: center; row-gap: 0;
        padding-block: 12px;
    }
    .mfo-header .mfo-logo,
    [data-mfo-header="split-nav"] .mfo-logo { justify-self: center; }
    .mfo-header-icons { justify-self: end; gap: 14px; }
    .mfo-icon-btn--account, .mfo-account { display: none; }
    .mfo-header-nav, .mfo-header-nav--extra,
    [data-mfo-header="split-nav"] .mfo-header-nav--extra { display: none; }
    .mfo-navbar { display: none; }
    .mfo-logo svg { height: 26px; }
    .mfo-logo-img { max-height: 39px; }

    .mfo-announce { font-size: 0.78rem; padding: 8px 38px; }

    /* content blocks: phone-sane grids */
    .mfo-props { grid-template-columns: repeat(2, 1fr); gap: 18px; }
    [data-mfo-value-props="card-trio"] .mfo-props { grid-template-columns: 1fr; }
    .mfo-cats { grid-template-columns: repeat(2, 1fr); }
    [data-mfo-featured-categories="mosaic"] .mfo-cats { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; }
    .mfo-shelf { grid-template-columns: repeat(2, 1fr); }
    .mfo-crosssell .mfo-shelf { grid-template-columns: repeat(2, 1fr); }
    .mfo-promos,
    [data-mfo-promo-strip="trio"] .mfo-promos { grid-template-columns: 1fr; }
    .mfo-story { grid-template-columns: 1fr; gap: 26px; }
    .mfo-quotes,
    [data-mfo-testimonials="google-reviews"] .mfo-quotes,
    [data-mfo-testimonials="trustpilot"] .mfo-quotes { grid-template-columns: 1fr; }
    .mfo-posts { grid-template-columns: 1fr; }
    [data-mfo-blog-teaser="list-inline"] .mfo-post,
    [data-mfo-blog-enhanced="editorial-list"] .mfo-post { grid-template-columns: 1fr; }
    [data-mfo-blog-teaser="list-inline"] .mfo-post-body { padding: 14px 0 18px; }
    .mfo-news-inner { flex-direction: column; align-items: stretch; text-align: left; }
    .mfo-ig-grid { grid-template-columns: repeat(3, 1fr); }
    .mfo-yt-row, .mfo-fb-strip { grid-template-columns: 1fr; }
    .mfo-blogpost-layout { grid-template-columns: 1fr; }
    .mfo-blogpost-share { position: static; flex-direction: row; justify-content: center; margin-top: 4px; }
    .mfo-blogpost-share-label { writing-mode: horizontal-tb; }

    /* commerce pages */
    .mfo-plp-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .mfo-plp-layout { grid-template-columns: 1fr; }
    .mfo-plp-sidebar { order: 2; }
    .mfo-plp-main .mfo-plp-grid { grid-template-columns: repeat(2, 1fr); }
    [data-mfo-category-card="list-row"] .mfo-product { grid-template-columns: 1fr; }
    [data-mfo-category-card="list-row"] .mfo-product-media img { aspect-ratio: 16/9; }
    [data-mfo-category-card="list-row"] .mfo-product-actions { margin: 0 18px 18px; }
    .mfo-pdp { grid-template-columns: 1fr; }
    [data-mfo-pdp-layout="gallery-rail"] .mfo-pdp-gallery { grid-template-areas: "main" "thumbs"; grid-template-columns: 1fr; }
    [data-mfo-pdp-layout="gallery-rail"] .mfo-pdp-thumbs { flex-direction: row; }
    [data-mfo-pdp-layout="stacked-scroll"] .mfo-pdp-info { position: static; }
    .mfo-pdp-trust { flex-wrap: wrap; gap: 12px; }
    .mfo-cartpage { grid-template-columns: 1fr; }
    .mfo-cart-summary { position: static; }
    .mfo-form-row { grid-template-columns: 1fr; }
    .mfo-care-grid,
    [data-mfo-care-center="enhanced"] .mfo-care-grid { grid-template-columns: 1fr; }
    .mfo-care-faq-grid { grid-template-columns: 1fr; }
    [data-mfo-care-center="full-hub"] .mfo-care-bottom { grid-template-columns: 1fr; }
    .mfo-shipbar-inner { font-size: 0.78rem; gap: 10px; }

    /* footer: stack, accordion columns, centered legal bar */
    .mfo-footer-news-row { flex-direction: column; align-items: stretch; text-align: left; gap: 16px; }
    .mfo-footer-news-form { flex: 1 1 auto; }
    .mfo-footer-grid { grid-template-columns: 1fr; gap: 0; padding-block: clamp(30px, 6vw, 44px); }
    .mfo-footer-brand { padding-bottom: 26px; }
    .mfo-footer-linkregion,
    [data-mfo-footer-cols="2"] .mfo-footer-linkregion,
    [data-mfo-footer-cols="4"] .mfo-footer-linkregion { display: block; border-bottom: 1px solid rgba(255, 255, 255, 0.14); }
    .mfo-footer-linkregion .mf1-footer-links__heading {
        display: flex; justify-content: space-between; align-items: center;
        margin: 0; padding: 17px 2px; cursor: pointer;
        border-top: 1px solid rgba(255, 255, 255, 0.14);
        -webkit-tap-highlight-color: transparent;
    }
    .mfo-footer-linkregion .mf1-footer-links__heading::after {
        content: '\f078'; font-family: 'Font Awesome 6 Free'; font-weight: 900;
        width: auto; height: auto; margin: 0; background: none;
        font-size: 0.68rem; opacity: 0.6; transition: transform 0.2s ease;
    }
    .mfo-footer-linkregion .mf1-footer-links.is-open .mf1-footer-links__heading::after { transform: rotate(180deg); }
    .mfo-footer-linkregion .mf1-footer-links__list { display: none; }
    .mfo-footer-linkregion .mf1-footer-links.is-open .mf1-footer-links__list { display: flex; padding-bottom: 12px; }
    .mfo-footer-linkregion .mf1-footer-links__link { min-height: 44px; }
    .mfo-footer-bottom { flex-direction: column; align-items: center; text-align: center; gap: 16px; padding-block: 24px; }
    .mfo-paymarks { justify-content: center; flex-wrap: wrap; gap: 14px; }
}

@media (max-width: 560px) {
    .mfo-hero-media img { height: clamp(340px, 120vw, 480px); }
    .mfo-hero-title { font-size: clamp(1.7rem, 8.5vw, 2.2rem); }
    [data-mfo-home-hero="split"] .mfo-hero-slide.is-active { grid-template-columns: 1fr; }
    [data-mfo-home-hero="split"] .mfo-hero-media img { min-height: 260px; }
    .mfo-props { grid-template-columns: 1fr; }
    .mfo-prop { align-items: center; }
    .mfo-pdp-buy { flex-wrap: wrap; }
    .mfo-tabs-nav { overflow-x: auto; }
    .mfo-tabs-nav button { white-space: nowrap; }
}

/* Announcement bar + utility strip dedupe: when the announcement bar is
   active it owns the promo message — the utility strip keeps only its
   phone/order-status links, never a duplicate shipping line. */
body[data-mfo-announcement-bar]:not([data-mfo-announcement-bar="none"]) .mfo-utility-note { visibility: hidden; }

/* walkthrough footer social row (brand column) */
.mfo-footer-social a { opacity: 0.65; font-size: 1.05rem; }
.mfo-footer-social a:hover { opacity: 1; }

/* ============================================================
   BLOCK: footer — REVISION 2026-07-22 v1.4: signature footer.
   Brand-tinted canvas, newsletter CTA row with pill form,
   brand+contact column with circular social buttons, accent
   link hovers, legal bar, and a giant outlined wordmark
   watermark behind the legal row. Overrides v1.3.
   ============================================================ */
.mfo-footer {
    position: relative; overflow: hidden;
    background:
        radial-gradient(1000px 460px at 8% -12%, color-mix(in srgb, var(--mfo-brand) 30%, transparent), transparent 62%),
        radial-gradient(760px 420px at 96% 4%, color-mix(in srgb, var(--mfo-accent) 12%, transparent), transparent 58%),
        color-mix(in srgb, var(--mfo-ink) 96%, black 4%);
}
.mfo-footer > .mfo-container { position: relative; z-index: 1; }
/* The watermark word is the STORE NAME, so its length varies per store: no
   fixed font-size or vw value can guarantee it fits. mfo.js measures the text
   and writes an exact inline font-size into --mfo-watermark-size (fit-to-width,
   capped at 220px). The clamp below is only the pre-JS guard; max-width +
   overflow keep a too-wide word from ever reaching the page edge. */
.mfo-footer-watermark {
    position: absolute; left: 50%; bottom: -0.34em; transform: translateX(-50%);
    z-index: 0; pointer-events: none; user-select: none;
    max-width: 100%; overflow: hidden;
    font-family: var(--mfo-font-heading); font-weight: 900; line-height: 1;
    font-size: var(--mfo-watermark-size, clamp(40px, 9vw, 220px));
    letter-spacing: 0.08em; white-space: nowrap;
    color: transparent; -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.07);
}

.mfo-footer-news-row { align-items: center; padding-block: clamp(34px, 4.6vw, 52px); }
.mfo-footer-news-copy h3 { font-size: clamp(1.45rem, 2.4vw, 1.9rem); letter-spacing: -0.015em; }
.mfo-footer-news-form {
    flex: 0 1 500px; gap: 6px; padding: 6px 6px 6px 10px;
    background: rgba(255, 255, 255, 0.07); border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px; transition: border-color 0.15s ease;
}
.mfo-footer-news-form:focus-within { border-color: var(--mfo-accent); }
.mfo-footer-news-form input { background: transparent; border: none; padding: 10px 12px; }
.mfo-footer-news-form .mfo-btn { border-radius: 999px; }

.mfo-footer-social { gap: 10px; margin-top: 24px; }
.mfo-footer-social a { opacity: 1; font-size: 0.95rem; }
.mfo-footer-social-btn {
    width: 38px; height: 38px; border-radius: 50%;
    display: inline-grid; place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.22); color: var(--mfo-bg);
    transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease, transform 0.15s ease;
}
.mfo-footer-social-btn:hover { background: var(--mfo-accent); border-color: var(--mfo-accent); color: var(--mfo-on-accent, var(--mfo-ink)); transform: translateY(-2px); }

.mfo-footer h4 { opacity: 0.55; }
.mfo-footer-grid ul { gap: 12px; }
.mfo-footer-grid ul a { transition: color 0.15s ease, opacity 0.15s ease; }
.mfo-footer-grid ul a:hover { color: var(--mfo-accent); opacity: 1; }

.mfo-footer-legal { display: flex; gap: 18px; }
.mfo-footer-legal a { opacity: 0.55; }
.mfo-footer-legal a:hover { opacity: 1; }

/* ============================================================
   BLOCK: footer — REVISION 2026-07-22 v1.5: the variant pack.
   columns (signature dark) | trust-light | promo-split |
   boutique-light | slim-dark. One shared markup; each variant
   shows/hides and re-lays-out its pieces. centered-slim kept
   as a legacy alias with the v1.4 additions hidden.
   ============================================================ */

/* pieces only some variants use */
.mfo-footer-trust { display: none; }
.mfo-footer-disclaimer { display: none; }

.mfo-footer-trust-item { display: flex; align-items: center; gap: 14px; }
.mfo-footer-trust-item > i { font-size: 1.45rem; color: var(--mfo-accent); }
.mfo-footer-trust-item small { display: block; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.09em; text-transform: uppercase; opacity: 0.55; }
.mfo-footer-trust-item strong { font-size: 0.94rem; }

/* ---- light base (trust-light, boutique-light) ---- */
[data-mfo-footer="trust-light"] .mfo-footer,
[data-mfo-footer="boutique-light"] .mfo-footer {
    background: var(--mfo-bg); color: var(--mfo-body);
    border-top: 1px solid var(--mfo-border);
}
[data-mfo-footer="trust-light"] .mfo-footer .mfo-logo,
[data-mfo-footer="boutique-light"] .mfo-footer .mfo-logo,
[data-mfo-footer="trust-light"] .mfo-footer h4,
[data-mfo-footer="boutique-light"] .mfo-footer h4 { color: var(--mfo-ink); }
[data-mfo-footer="trust-light"] .mfo-footer-watermark,
[data-mfo-footer="boutique-light"] .mfo-footer-watermark,
[data-mfo-footer="trust-light"] .mfo-footer-news-row,
[data-mfo-footer="boutique-light"] .mfo-footer-news-row { display: none; }
[data-mfo-footer="trust-light"] .mfo-footer-bottom,
[data-mfo-footer="boutique-light"] .mfo-footer-bottom { border-top-color: var(--mfo-border); }
[data-mfo-footer="trust-light"] .mfo-footer-social-btn,
[data-mfo-footer="boutique-light"] .mfo-footer-social-btn { border-color: var(--mfo-border); color: var(--mfo-ink); }
[data-mfo-footer="trust-light"] .mfo-footer-social-btn:hover,
[data-mfo-footer="boutique-light"] .mfo-footer-social-btn:hover { color: var(--mfo-on-accent, var(--mfo-ink)); }
[data-mfo-footer="trust-light"] .mfo-footer-grid ul a:hover,
[data-mfo-footer="boutique-light"] .mfo-footer-grid ul a:hover { color: var(--mfo-brand); }

/* ---- trust-light: Parcel-Monkey-style trust badge row ---- */
[data-mfo-footer="trust-light"] .mfo-footer-contact-line { display: none; }
[data-mfo-footer="trust-light"] .mfo-footer-grid { padding-block: clamp(38px, 4.6vw, 58px); }
[data-mfo-footer="trust-light"] .mfo-footer-trust {
    display: grid; grid-template-columns: repeat(4, auto); justify-content: space-between;
    gap: 20px 32px; padding-block: 28px; border-top: 1px solid var(--mfo-border);
}

/* ---- promo-split: dark, links left, bold subscribe right ---- */
[data-mfo-footer="promo-split"] .mfo-footer-watermark { display: none; }
[data-mfo-footer="promo-split"] .mfo-footer > .mfo-container {
    display: grid; grid-template-columns: 1.15fr 1fr;
    column-gap: clamp(44px, 7vw, 110px); align-items: start;
    padding-top: clamp(38px, 5vw, 60px);
}
[data-mfo-footer="promo-split"] .mfo-footer-grid { order: 1; display: block; padding-block: 0; }
[data-mfo-footer="promo-split"] .mfo-footer-blurb,
[data-mfo-footer="promo-split"] .mfo-footer-contact-line { display: none; }
[data-mfo-footer="promo-split"] .mfo-footer-social { margin-top: 22px; }
[data-mfo-footer="promo-split"] .mfo-footer-linkregion { grid-template-columns: 1fr 1fr; gap: 28px clamp(24px, 3vw, 44px); margin-top: 30px; }
[data-mfo-footer="promo-split"] .mfo-footer-news-row {
    order: 2; flex-direction: column; align-items: stretch; flex-wrap: nowrap;
    border-bottom: none; padding-block: 0; gap: 8px;
}
[data-mfo-footer="promo-split"] .mfo-footer-news-form {
    flex: none; width: 100%; flex-direction: column; gap: 12px; margin-top: 10px;
    padding: 0; background: transparent; border: none; border-radius: 0;
}
[data-mfo-footer="promo-split"] .mfo-footer-news-form input {
    border: 1px solid rgba(255, 255, 255, 0.28); border-radius: var(--mfo-radius-sm); padding: 13px 15px;
}
[data-mfo-footer="promo-split"] .mfo-footer-news-form .mfo-btn { border-radius: var(--mfo-radius-sm); }
[data-mfo-footer="promo-split"] .mfo-footer-bottom { order: 3; grid-column: 1 / -1; margin-top: clamp(30px, 4vw, 46px); }
[data-mfo-footer="promo-split"] .mfo-footer-disclaimer {
    display: block; order: 4; grid-column: 1 / -1; text-align: center;
    font-size: 0.78rem; opacity: 0.5; padding-bottom: 24px;
}

/* ---- boutique-light: airy columns, centered social row ---- */
[data-mfo-footer="boutique-light"] .mfo-footer-grid { display: flex; flex-direction: column; align-items: stretch; gap: 0; }
[data-mfo-footer="boutique-light"] .mfo-footer-linkregion {
    order: 1; display: grid; grid-template-columns: repeat(3, minmax(0, 220px));
    justify-content: space-between;
}
[data-mfo-footer="boutique-light"] .mfo-footer-brand { order: 2; display: flex; justify-content: center; margin-top: clamp(30px, 4vw, 46px); }
[data-mfo-footer="boutique-light"] .mfo-footer-brand > * { display: none; }
[data-mfo-footer="boutique-light"] .mfo-footer-brand > .mfo-footer-social { display: flex; margin-top: 0; }

/* ---- slim-dark: compact columns, contact + inline signup ---- */
[data-mfo-footer="slim-dark"] .mfo-footer { background: color-mix(in srgb, var(--mfo-ink) 97%, black 3%); }
[data-mfo-footer="slim-dark"] .mfo-footer-watermark { display: none; }
[data-mfo-footer="slim-dark"] .mfo-footer > .mfo-container {
    display: grid; grid-template-columns: 2.6fr 1.3fr;
    column-gap: clamp(36px, 5vw, 80px); align-items: start;
    padding-top: clamp(32px, 4.4vw, 52px);
}
[data-mfo-footer="slim-dark"] .mfo-footer-grid {
    order: 1; padding-block: 0;
    grid-template-columns: 1.1fr 2.3fr; gap: 24px clamp(24px, 3.4vw, 48px);
}
[data-mfo-footer="slim-dark"] .mfo-footer-blurb,
[data-mfo-footer="slim-dark"] .mfo-footer-social { display: none; }
[data-mfo-footer="slim-dark"] .mfo-footer-contact-line { margin-top: 10px; font-size: 0.88rem; }
[data-mfo-footer="slim-dark"] .mfo-footer-contact-line:first-of-type { margin-top: 18px; }
[data-mfo-footer="slim-dark"] .mfo-footer-grid ul { gap: 9px; font-size: 0.88rem; }
[data-mfo-footer="slim-dark"] .mfo-footer-news-row {
    order: 2; flex-direction: column; align-items: stretch; flex-wrap: nowrap;
    border-bottom: none; padding-block: 0; gap: 6px;
}
[data-mfo-footer="slim-dark"] .mfo-footer-news-copy h3 {
    font-size: 0.8rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; opacity: 0.55;
}
[data-mfo-footer="slim-dark"] .mfo-footer-news-copy p { font-size: 0.88rem; }
[data-mfo-footer="slim-dark"] .mfo-footer-news-form {
    flex: none; width: 100%; gap: 0; margin-top: 12px;
    padding: 0; background: transparent; border: none; border-radius: 0;
}
[data-mfo-footer="slim-dark"] .mfo-footer-news-form input {
    border: 1px solid rgba(255, 255, 255, 0.25); border-right: none;
    border-radius: var(--mfo-radius-sm) 0 0 var(--mfo-radius-sm); font-size: 0.85rem;
}
[data-mfo-footer="slim-dark"] .mfo-footer-news-form .mfo-btn { border-radius: 0 var(--mfo-radius-sm) var(--mfo-radius-sm) 0; padding-inline: 16px; }
[data-mfo-footer="slim-dark"] .mfo-footer-bottom { order: 3; grid-column: 1 / -1; margin-top: clamp(28px, 4vw, 42px); }

/* ---- centered-slim (legacy alias): hide the v1.4+ additions ---- */
[data-mfo-footer="centered-slim"] .mfo-footer-watermark,
[data-mfo-footer="centered-slim"] .mfo-footer-news-row,
[data-mfo-footer="centered-slim"] .mfo-footer-contact-line,
[data-mfo-footer="centered-slim"] .mfo-footer-trust,
[data-mfo-footer="centered-slim"] .mfo-footer-blurb,
[data-mfo-footer="centered-slim"] .mfo-footer-legal { display: none; }
[data-mfo-footer="centered-slim"] .mfo-footer-linkregion { display: flex; justify-content: center; gap: 26px; }
[data-mfo-footer="centered-slim"] .mfo-footer-linkregion nav:not(:first-child) { display: none; }
[data-mfo-footer="centered-slim"] .mfo-footer-linkregion ul { flex-direction: row; gap: 22px; }

/* phones: variant grids collapse to a stack */
@media (max-width: 900px) {
    [data-mfo-footer="promo-split"] .mfo-footer > .mfo-container,
    [data-mfo-footer="slim-dark"] .mfo-footer > .mfo-container { display: block; }
    [data-mfo-footer="promo-split"] .mfo-footer-news-row,
    [data-mfo-footer="slim-dark"] .mfo-footer-news-row { padding-block: 26px 0; }
    [data-mfo-footer="trust-light"] .mfo-footer-trust { grid-template-columns: 1fr 1fr; justify-content: start; }
    [data-mfo-footer="boutique-light"] .mfo-footer-linkregion { grid-template-columns: 1fr 1fr; justify-content: start; }
    [data-mfo-footer="slim-dark"] .mfo-footer-grid { grid-template-columns: 1fr; }
}

/* ---- v1.5.1 refinements: boutique gains a fourth balanced link
   column; promo-split puts the socials under the signup form and
   sets all three link columns abreast. ---- */
.mfo-footer-col--extra { display: none; }
.mfo-footer-social--news { display: none; }

[data-mfo-footer="boutique-light"] .mfo-footer-col--extra { display: block; }
[data-mfo-footer="boutique-light"] .mfo-footer-linkregion { grid-template-columns: repeat(4, minmax(0, 200px)); }

[data-mfo-footer="promo-split"] .mfo-footer-linkregion { grid-template-columns: repeat(3, 1fr); }
[data-mfo-footer="promo-split"] .mfo-footer-brand .mfo-footer-social { display: none; }
[data-mfo-footer="promo-split"] .mfo-footer-social--news { display: flex; margin-top: 22px; }

/* ============================================================
   BLOCK: care-center — REVISION 2026-07-22 v2 layout: the hub
   reads as three distinct bands instead of one squished column.
   Help cards get hover lift + accent icons, the FAQ sits on a
   soft surface panel with accent-rule items, and the contact
   info + form become a ledger beside a floating form card.
   ============================================================ */
.mfo-care-grid {
    gap: clamp(16px, 2.2vw, 26px);
    margin-block: calc(var(--mfo-density) * clamp(30px, 3.6vw, 46px)) calc(var(--mfo-density) * clamp(44px, 5.5vw, 72px));
}
.mfo-care-card {
    padding: calc(var(--mfo-density) * 30px);
    border-radius: var(--mfo-radius-lg, 16px);
    gap: 12px;
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.mfo-care-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(15, 26, 43, 0.10);
    border-color: color-mix(in srgb, var(--mfo-accent) 45%, var(--mfo-border));
}
.mfo-care-card .mfo-prop-ic {
    background: color-mix(in srgb, var(--mfo-accent) 13%, transparent);
    color: var(--mfo-accent);
}

[data-mfo-care-center="full-hub"] .mfo-care-faq {
    background: var(--mfo-surface);
    border-radius: var(--mfo-radius-lg, 18px);
    padding: clamp(28px, 4vw, 48px);
    margin-bottom: calc(var(--mfo-density) * clamp(44px, 5.5vw, 72px));
}
.mfo-care-faq-title { font-size: 1.45rem; letter-spacing: -0.01em; margin-bottom: 26px; }
.mfo-care-faq-grid { gap: clamp(22px, 3vw, 40px) clamp(28px, 4vw, 56px); }
.mfo-care-faq-item { padding-left: 18px; border-left: 3px solid color-mix(in srgb, var(--mfo-accent) 55%, transparent); }
.mfo-care-faq-item strong { font-size: 1.02rem; margin-bottom: 8px; }
.mfo-care-faq-item span { font-size: 0.92rem; }

[data-mfo-care-center="full-hub"] .mfo-care-bottom {
    grid-template-columns: 0.85fr 1.15fr;
    gap: clamp(28px, 4vw, 56px);
    background: var(--mfo-surface);
    border-radius: var(--mfo-radius-lg, 18px);
    padding: clamp(28px, 4vw, 48px);
    margin-bottom: calc(var(--mfo-density) * clamp(36px, 4.5vw, 56px));
}
.mfo-care-contact h2, .mfo-care-form h2 { font-size: 1.45rem; letter-spacing: -0.01em; margin-bottom: 20px; }
.mfo-care-contact-line { align-items: center; gap: 14px; padding-block: 13px; margin-top: 0; font-size: 0.95rem; }
.mfo-care-contact-line + .mfo-care-contact-line { border-top: 1px solid var(--mfo-border); }
.mfo-care-contact-line i {
    width: 38px; height: 38px; border-radius: 50%; flex: none;
    background: color-mix(in srgb, var(--mfo-accent) 12%, transparent);
    display: inline-grid; place-items: center;
    transform: none; font-size: 0.95rem;
}
[data-mfo-care-center="full-hub"] .mfo-care-form {
    background: var(--mfo-bg);
    border: 1px solid var(--mfo-border);
    border-radius: var(--mfo-radius-lg, 18px);
    padding: clamp(24px, 3.4vw, 40px);
    box-shadow: 0 14px 44px rgba(15, 26, 43, 0.07);
}

@media (max-width: 900px) {
    .mfo-care-grid { grid-template-columns: 1fr; }
    .mfo-care-faq-grid { grid-template-columns: 1fr; }
    [data-mfo-care-center="full-hub"] .mfo-care-bottom { grid-template-columns: 1fr; }
}

/* ============================================================
   MOBILE PASS 2 — REVISION 2026-07-23: the footer variant pack
   (v1.4/v1.5) and header chrome, re-collapsed for phones. This
   block sits LAST on purpose: the variant layouts above appended
   after the first mobile revision and out-cascaded it.
   ============================================================ */
@media (max-width: 900px) {
    /* Announcement bar: tighter, room for the dismiss control */
    .mfo-announce { font-size: 0.76rem; padding: 8px 40px; }

    /* Utility strip: when the announcement bar owns the message, the strip
       would render as an empty band — drop it entirely on phones. */
    body[data-mfo-announcement-bar]:not([data-mfo-announcement-bar="none"]) .mfo-utility { display: none; }

    /* Footer: every variant becomes one calm column stack */
    .mfo-footer-watermark { display: none; }
    .mfo-footer-grid,
    [data-mfo-footer="slim-dark"] .mfo-footer-grid {
        display: grid; grid-template-columns: 1fr; gap: 26px;
        padding-block: clamp(28px, 6vw, 40px);
    }
    [data-mfo-footer="promo-split"] .mfo-footer > .mfo-container,
    [data-mfo-footer="slim-dark"] .mfo-footer > .mfo-container { display: block; padding-top: 0; }
    [data-mfo-footer="boutique-light"] .mfo-footer-grid { display: flex; flex-direction: column; }

    /* Link columns become stacked tap-to-open accordions (mfo.js toggles
       .is-open on the column; the chevron + hidden-list rules live in the
       first mobile block above and stay in force because this block keeps
       display:block instead of re-gridding the region). */
    .mfo-footer-linkregion,
    [data-mfo-footer="promo-split"] .mfo-footer-linkregion,
    [data-mfo-footer="boutique-light"] .mfo-footer-linkregion,
    [data-mfo-footer-cols="2"] .mfo-footer-linkregion,
    [data-mfo-footer-cols="4"] .mfo-footer-linkregion {
        display: block; border-bottom: 1px solid rgba(255, 255, 255, 0.14);
        margin-top: 0; grid-column: auto;
    }
    .mfo-footer-linkregion .mf1-footer-links { min-width: 0; }
    .mfo-footer-linkregion .mf1-footer-links__heading {
        display: flex; justify-content: space-between; align-items: center;
        margin: 0; padding: 15px 2px; cursor: pointer;
        border-top: 1px solid rgba(255, 255, 255, 0.14);
        -webkit-tap-highlight-color: transparent;
    }
    .mfo-footer-linkregion .mf1-footer-links__heading::after {
        content: '\f078'; font-family: 'Font Awesome 6 Free'; font-weight: 900;
        width: auto; height: auto; margin: 0; background: none;
        font-size: 0.68rem; opacity: 0.6; transition: transform 0.2s ease;
    }
    .mfo-footer-linkregion .mf1-footer-links.is-open .mf1-footer-links__heading::after { transform: rotate(180deg); }
    .mfo-footer-linkregion .mf1-footer-links__list { display: none; }
    .mfo-footer-linkregion .mf1-footer-links.is-open .mf1-footer-links__list { display: flex; padding-bottom: 12px; }
    .mfo-footer h4 { margin-bottom: 10px; }
    .mfo-footer-grid ul { gap: 9px; font-size: 0.9rem; }

    /* Newsletter rows: stacked, full-width form */
    .mfo-footer-news-row,
    [data-mfo-footer="promo-split"] .mfo-footer-news-row,
    [data-mfo-footer="slim-dark"] .mfo-footer-news-row {
        display: flex; flex-direction: column; align-items: stretch;
        gap: 14px; text-align: left;
        padding-block: clamp(24px, 5vw, 34px);
    }
    .mfo-footer-news-form { flex: 1 1 auto; width: 100%; }

    /* Trust row: two-up */
    [data-mfo-footer="trust-light"] .mfo-footer-trust {
        grid-template-columns: 1fr 1fr; justify-content: stretch; gap: 18px 14px;
    }

    /* Legal bar: centered stack, wrapping paymarks */
    .mfo-footer-bottom { flex-direction: column; align-items: center; text-align: center; gap: 14px; }
    .mfo-footer-legal { justify-content: center; flex-wrap: wrap; }
    .mfo-paymarks { justify-content: center; flex-wrap: wrap; }
    .mfo-footer-disclaimer { padding-inline: 8px; }
}

@media (max-width: 480px) {
    .mfo-footer-trust-item strong { font-size: 0.86rem; }
}

/* ============================================================
   REVISION: header — logo-bar tone (light | dark) and logo-bar
   search (icon | inline | popdown). Tone=dark renders the logo
   row on the nav colors with an accent utility strip (the
   "Sights and Scopes" treatment); search modes are CSS-driven
   off <body data-mfo-header-search>, popdown toggled by mfo.js.
   ============================================================ */
.mfo-header-search { display: none; align-items: stretch; }
.mfo-header-search input {
    flex: 1; min-width: 0; height: 42px; padding: 0 14px; font-size: 0.85rem;
    border: 1px solid var(--mfo-border); border-right: 0; background: var(--mfo-bg);
    color: var(--mfo-ink); border-radius: var(--mfo-radius-sm) 0 0 var(--mfo-radius-sm);
}
.mfo-header-search input:focus { outline: none; border-color: var(--mfo-accent); }
.mfo-header-search button {
    flex: 0 0 42px; width: 42px; height: 42px; border: 0; cursor: pointer;
    background: var(--mfo-accent); color: var(--mfo-utility-ink, var(--mfo-on-brand));
    border-radius: 0 var(--mfo-radius-sm) var(--mfo-radius-sm) 0;
}

body[data-mfo-header-search="inline"] .mfo-header-main {
    grid-template-areas: "logo search icons";
    grid-template-columns: auto 1fr auto;
}
body[data-mfo-header-search="inline"] .mfo-header-search {
    display: flex; grid-area: search; justify-self: center; width: min(480px, 100%);
}
body[data-mfo-header-search="inline"] .mfo-header-nav,
body[data-mfo-header-search="inline"] .mfo-icon-btn--search { display: none; }

body[data-mfo-header-search="popdown"] .mfo-header-search {
    position: absolute; top: 100%; left: 0; right: 0; z-index: 60;
    padding: 14px max(calc((100% - 560px) / 2), 20px);
    background: var(--mfo-bg); border-bottom: 1px solid var(--mfo-border);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}
body[data-mfo-header-search="popdown"] .mfo-header { position: relative; }
body[data-mfo-header-search="popdown"].mfo-search-open .mfo-header-search { display: flex; }

body[data-mfo-header-tone="dark"] .mfo-header {
    background: var(--mfo-nav-bg); border-bottom-color: rgba(255, 255, 255, 0.12);
}
body[data-mfo-header-tone="dark"] .mfo-logo,
body[data-mfo-header-tone="dark"] .mfo-logo-text,
body[data-mfo-header-tone="dark"] .mfo-header-nav,
body[data-mfo-header-tone="dark"] .mfo-header-icons,
body[data-mfo-header-tone="dark"] .mfo-header-icons .mfo-icon-btn,
body[data-mfo-header-tone="dark"] .mfo-mobile-toggle { color: var(--mfo-nav-ink); }
body[data-mfo-header-tone="dark"] .mfo-utility {
    background: var(--mfo-accent); color: var(--mfo-utility-ink, var(--mfo-on-brand));
}
body[data-mfo-header-tone="dark"] .mfo-header-search input {
    background: rgba(255, 255, 255, 0.06); border-color: rgba(255, 255, 255, 0.22);
    color: var(--mfo-nav-ink);
}
body[data-mfo-header-tone="dark"] .mfo-header-search input::placeholder { color: rgba(255, 255, 255, 0.6); }
body[data-mfo-header-tone="dark"] .mfo-header-search { --mfo-bg-popdown: var(--mfo-nav-bg); }
body[data-mfo-header-tone="dark"][data-mfo-header-search="popdown"] .mfo-header-search { background: var(--mfo-nav-bg); }

@media (max-width: 900px) {
    /* keep the stock burger row, move the inline search to its own full-width
       second row (dropping the "burger" area orphans the toggle into an
       implicit row and wrecks the bar) */
    body[data-mfo-header-search="inline"] .mfo-header-main {
        grid-template-areas: "burger logo icons" "search search search";
        grid-template-columns: 42px 1fr auto;
    }
    body[data-mfo-header-search="inline"] .mfo-header-search {
        display: flex; grid-area: search; justify-self: stretch;
        width: 100%; margin-top: 10px;
    }
    body[data-mfo-header-search="inline"] .mfo-header-search input { height: 40px; }
    body[data-mfo-header-search="inline"] .mfo-header-search button { flex-basis: 40px; width: 40px; height: 40px; }
}

/* ============================================================
   REVISION: free-shipping-bar — honor the placement list on the
   live chrome (the ~= matching previously only gated the demo
   classes, so the header strip showed regardless of placement).
   ============================================================ */
.mfo-shipbar--header, .mfo-shipbar--cart, .mfo-shipbar--drawer { display: none; }
[data-mfo-free-shipping-bar~="header"] .mfo-shipbar--header:not([hidden]) { display: block; }
[data-mfo-free-shipping-bar~="cart"] .mfo-shipbar--cart:not([hidden]) { display: block; }
[data-mfo-free-shipping-bar~="drawer"] .mfo-shipbar--drawer:not([hidden]) { display: block; }

/* ============================================================
   SIGHTS AND SCOPES PORT
   Catalog, PDP, blog, and mega-menu anatomy from the design specs
   (example-sites/pro/specs). Token-driven throughout; these rules
   intentionally override the generic primitives above.
   ============================================================ */

/* ── shared section header: crosshair + title + rule + button ── */
.mfo-secthead { display: flex; align-items: center; gap: 12px; margin-bottom: 28px; }
.mfo-secthead-icon { font-size: 26px; color: var(--mfo-ink); }
.mfo-secthead-title {
    font-family: var(--mfo-font-heading); font-size: clamp(1.4rem, 2.6vw, 2rem); font-weight: 700;
    text-transform: uppercase; color: var(--mfo-ink); margin: 0; line-height: 1.1;
}
.mfo-secthead-rule { flex: 1; height: 2px; background: var(--mfo-border); }
.mfo-secthead-btn {
    flex-shrink: 0; display: inline-flex; align-items: center; gap: 10px;
    background: var(--mfo-accent); border: 2px solid var(--mfo-accent); color: var(--mfo-on-btn);
    font-family: var(--mfo-font-heading); font-weight: 700; font-size: 0.75rem; letter-spacing: 0.04em;
    text-transform: uppercase; padding: 2px 22px; line-height: 30px; border-radius: 0;
}
.mfo-secthead-btn:hover { background: var(--mfo-btn-hover); border-color: var(--mfo-btn-hover); color: var(--mfo-on-btn); }
.mfo-secthead-btn i { font-size: 0.7em; }

/* ── product card ── */
.mfo-product { border: 0; border-radius: 0; overflow: visible; display: flex; flex-direction: column; }
.mfo-product-media { display: block; border: 1px solid var(--mfo-border); background: var(--mfo-bg); }
.mfo-product-media img { width: 100%; aspect-ratio: 1; object-fit: contain; padding: 6%; }
.mfo-product-media .mfo-badge { position: absolute; top: 5px; left: 5px; }
.mfo-badge {
    border-radius: 0; padding: 2px 9px; font-family: var(--mfo-font-heading);
    font-size: 0.66rem; letter-spacing: 0.05em; box-shadow: inset 0 0 0 0.5px rgba(255, 255, 255, 0.9);
}
.mfo-product-body { padding: 14px 0 0; gap: 5px; }
.mfo-product-sku { font-size: 0.66rem; text-transform: uppercase; letter-spacing: 0.03em; color: var(--mfo-muted); }
.mfo-product-name {
    font-size: 0.84rem; font-weight: 500; line-height: 1.38; color: var(--mfo-ink);
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
    min-height: calc(2 * 1.38em);
}
.mfo-product-name:hover { color: var(--mfo-accent); }
.mfo-product-rating { display: flex; align-items: center; gap: 7px; }
.mfo-stars { display: inline-flex; gap: 2px; font-size: 0.72rem; letter-spacing: 0; color: var(--mfo-accent); }
.mfo-product-rating-note { font-size: 0.68rem; color: var(--mfo-ink); }
.mfo-product-rating-note span { color: var(--mfo-muted); }
.mfo-product .mfo-price { font-size: 1.22rem; font-weight: 700; color: var(--mfo-accent); }
.mfo-product .mfo-price--was { font-size: 0.66rem; font-weight: 400; color: var(--mfo-ink); margin-left: 6px; }
.mfo-product-buttons { display: flex; gap: 8px; margin-top: 9px; }
.mfo-product-add {
    flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    height: 37px; border: 1px solid var(--mfo-accent); background: transparent; color: var(--mfo-accent);
    font-family: var(--mfo-font-heading); font-weight: 700; font-size: 0.75rem; letter-spacing: 0.04em;
    text-transform: uppercase; border-radius: 0; cursor: pointer; transition: background 0.15s ease, color 0.15s ease;
}
.mfo-product-add:hover, .mfo-product-add.is-busy { background: var(--mfo-accent); color: var(--mfo-on-btn); }
.mfo-product-wish {
    flex: 0 0 37px; width: 37px; height: 37px; display: inline-flex; align-items: center; justify-content: center;
    border: 1px solid var(--mfo-accent); color: var(--mfo-accent); border-radius: 0;
    transition: background 0.15s ease, color 0.15s ease;
}
.mfo-product-wish:hover { background: var(--mfo-accent); color: var(--mfo-on-btn); }
.mfo-product-hoverbtn { display: none; }

/* ── PLP toolbar ── */
.mfo-toolbar { border-block: 0; padding-block: 0; margin-bottom: 24px; }
.mfo-filter-toggle {
    display: inline-flex; align-items: center; gap: 10px; padding: 11px 15px;
    background: color-mix(in srgb, var(--mfo-accent) 9%, transparent);
    border: 1px solid var(--mfo-accent); color: var(--mfo-accent); border-radius: 0; cursor: pointer;
    font-weight: 700; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.03em;
}
.mfo-filter-toggle i { font-size: 1.05rem; }
[data-mfo-plp-filters="sidebar-static"] .mfo-filter-toggle { display: none; }
.mfo-toolbar-end { display: flex; align-items: center; gap: 15px; margin-left: auto; }
.mfo-toolbar-count { font-size: 0.75rem; color: var(--mfo-muted); }
.mfo-toolbar-sort { border-radius: 0; padding: 8px 12px; font-weight: 400; gap: 6px; }
.mfo-toolbar-sort-label { font-size: 0.75rem; color: var(--mfo-ink); }
.mfo-toolbar-sort select { font-weight: 700; font-size: 0.75rem; color: var(--mfo-ink); border: 0; background: transparent; }

/* ── PLP filter sidebar ── */
.mfo-plp-layout { grid-template-columns: 268px 1fr; gap: 14px; }
[data-mfo-plp-filters="none"] .mfo-plp-layout, .mfo-plp-layout.is-collapsed { grid-template-columns: 1fr; }
.mfo-plp-layout.is-collapsed .mfo-plp-sidebar { display: none; }
.mfo-plp-sidebar { border: 1px solid var(--mfo-border); background: var(--mfo-bg); padding: 9px; gap: 0; align-self: start; }
.mfo-filter-clear {
    display: block; text-align: center; padding: 10px; border: 1px solid var(--mfo-border); border-radius: 3px;
    font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.04em;
    color: color-mix(in srgb, var(--mfo-ink) 75%, transparent); margin-bottom: 8px;
}
.mfo-filter-clear:hover { color: var(--mfo-accent); border-color: var(--mfo-accent); }
.mfo-filter-group { border-top: 1px solid var(--mfo-border); padding: 14px 1px 16px; margin: 0; }
.mfo-filter-group:first-of-type { border-top: 0; }
.mfo-filter-group-title {
    font-family: var(--mfo-font-heading); font-size: 1rem; font-weight: 700; letter-spacing: 0.06em;
    text-transform: uppercase; color: var(--mfo-ink); margin-bottom: 12px;
}
[data-mfo-plp-filters] .mfo-filter-group-title { cursor: default; border-bottom: 0; padding-bottom: 0; }
[data-mfo-plp-filters="sidebar-collapsible"] .mfo-filter-group-title::after,
[data-mfo-plp-filters="sidebar-collapsible"] .mfo-filter-group:first-child .mfo-filter-group-title::after { content: none; }
[data-mfo-plp-filters="sidebar-collapsible"] .mfo-filter-group:not(:first-child) .mfo-filter-group-body { display: flex; }
.mfo-filter-group-body { gap: 9px; }
.mfo-filter-link { font-size: 0.8rem; color: var(--mfo-ink); line-height: 1.25; }
.mfo-filter-link:hover, .mfo-filter-link.is-on { color: var(--mfo-accent); }

/* grid: 4 across beside the sidebar, 5 across when it is hidden */
.mfo-plp-main .mfo-plp-grid { grid-template-columns: repeat(4, 1fr); gap: 10px 10px; row-gap: 26px; }
.mfo-plp-layout.is-collapsed .mfo-plp-main .mfo-plp-grid,
[data-mfo-plp-filters="none"] .mfo-plp-main .mfo-plp-grid { grid-template-columns: repeat(5, 1fr); gap: 20px; row-gap: 26px; }
@media (max-width: 1100px) {
    .mfo-plp-main .mfo-plp-grid, .mfo-plp-layout.is-collapsed .mfo-plp-main .mfo-plp-grid,
    [data-mfo-plp-filters="none"] .mfo-plp-main .mfo-plp-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
    .mfo-plp-layout { grid-template-columns: 1fr; }
    .mfo-plp-sidebar { order: -1; }
}
@media (max-width: 640px) {
    .mfo-plp-main .mfo-plp-grid, .mfo-plp-layout.is-collapsed .mfo-plp-main .mfo-plp-grid,
    [data-mfo-plp-filters="none"] .mfo-plp-main .mfo-plp-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── pagination (Cornerstone paginator, PLP + blog scope) ── */
.mfo-plp nav.pagination, .mfo-blogpage nav.pagination { margin-top: 34px; }
.mfo-plp .pagination-list, .mfo-blogpage .pagination-list { display: flex; justify-content: flex-end; margin: 0; }
.mfo-plp .pagination-item, .mfo-blogpage .pagination-item { margin: 0; }
.mfo-plp .pagination-link, .mfo-blogpage .pagination-link {
    display: flex; align-items: center; justify-content: center; width: 44px; height: 40px; padding: 0;
    border: 1px solid var(--mfo-border); border-radius: 0; margin-left: -1px;
    font-family: var(--mfo-font-heading); font-weight: 700; font-size: 0.88rem; color: var(--mfo-ink);
}
.mfo-plp .pagination-link:hover, .mfo-blogpage .pagination-link:hover { color: var(--mfo-accent); }
.mfo-plp .pagination-item--current .pagination-link, .mfo-blogpage .pagination-item--current .pagination-link {
    background: var(--mfo-accent); border-color: var(--mfo-accent); color: var(--mfo-on-btn);
}
.mfo-plp .pagination-item--previous .pagination-link, .mfo-plp .pagination-item--next .pagination-link,
.mfo-blogpage .pagination-item--previous .pagination-link, .mfo-blogpage .pagination-item--next .pagination-link { font-size: 0; }
.mfo-plp .pagination-link .icon, .mfo-blogpage .pagination-link .icon { width: 15px; height: 15px; margin: 0; }
.mfo-plp .pagination-link .icon svg, .mfo-blogpage .pagination-link .icon svg { fill: var(--mfo-ink); }

/* ── PDP ── */
.mfo-pdp-crumbs { margin: 6px 0 18px; }
.mfo-pdp-crumbs strong { color: var(--mfo-ink); font-weight: 700; }
.mfo-pdp { display: grid; grid-template-columns: 1.21fr 1fr; gap: clamp(20px, 2.8vw, 44px); align-items: start; }
@media (max-width: 900px) { .mfo-pdp { grid-template-columns: 1fr; } }

.mfo-pdp .productView-images { margin: 0; }
.mfo-pdp .productView-image { border: 1px solid var(--mfo-border); background: var(--mfo-bg); margin: 0; padding: 24px; }
.mfo-pdp .productView-image img { object-fit: contain; }
.mfo-pdp .productView-thumbnails { display: flex; gap: 3px; margin: 8px 0 0; padding: 0; list-style: none; }
.mfo-pdp .productView-thumbnail { width: 84px; max-width: 84px; padding: 0; }
.mfo-pdp .productView-thumbnail-link {
    display: block; width: 84px; height: 84px; border: 1px solid var(--mfo-border); background: var(--mfo-bg); padding: 6px;
}
.mfo-pdp .productView-thumbnail-link img { width: 100%; height: 100%; object-fit: contain; }
.mfo-pdp .productView-thumbnail-link:hover, .mfo-pdp .productView-thumbnail-link.is-active { border-color: var(--mfo-accent); }

.mfo-pdp-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; font-size: 0.75rem; text-transform: uppercase; margin-bottom: 14px; }
.mfo-pdp-meta-item { display: inline-flex; align-items: center; gap: 6px; }
.mfo-pdp-meta-item + .mfo-pdp-meta-item { border-left: 1px solid var(--mfo-border); padding-left: 10px; }
.mfo-pdp-meta-label { color: var(--mfo-ink); }
.mfo-pdp-meta-value { color: var(--mfo-muted); }
.mfo-pdp-stock-flag { color: var(--mfo-savings); font-weight: 700; }
.mfo-pdp-title {
    font-family: var(--mfo-font-heading); font-weight: 500; font-size: clamp(1.5rem, 2.6vw, 2.1rem);
    line-height: 1.12; color: var(--mfo-ink); margin: 0 0 12px;
}
.mfo-pdp-rating { display: flex; align-items: center; gap: 9px; margin-bottom: 8px; }
.mfo-pdp-rating .mfo-stars { font-size: 0.95rem; }
.mfo-pdp-rating-note { font-size: 0.85rem; color: var(--mfo-ink); }
.mfo-pdp-rating-note span { color: var(--mfo-muted); }
.mfo-pdp-taxnote { font-size: 0.75rem; color: var(--mfo-muted); margin-bottom: 12px; }
.mfo-pdp-price { display: flex; align-items: baseline; gap: 12px; margin-bottom: 4px; }
.mfo-pdp-price .price-section { display: inline-flex; align-items: baseline; gap: 12px; }
.mfo-pdp-price .price, .mfo-pdp-price .price--withoutTax, .mfo-pdp-price .price--withTax {
    font-size: 2rem; font-weight: 700; color: var(--mfo-accent);
}
.mfo-pdp-price .price-section--minor, .mfo-pdp-price .price--rrp, .mfo-pdp-price .price--non-sale {
    font-size: 0.88rem; font-weight: 400; color: var(--mfo-ink); text-decoration: line-through;
}
.mfo-pdp-price .price-section--minor .price-label, .mfo-pdp-price .price-label { display: none; }
.mfo-pdp-price .mfo-badge { margin-left: auto; align-self: center; font-size: 0.72rem; padding: 3px 13px; }
.mfo-pdp-hr { border: 0; border-top: 1px solid var(--mfo-border); margin: 18px 0; }
.mfo-pdp-label {
    display: block; font-family: var(--mfo-font-heading); font-weight: 700; font-size: 1.1rem;
    letter-spacing: 0.02em; text-transform: uppercase; color: var(--mfo-ink); margin-bottom: 12px;
}

/* buy controls: restyle Cornerstone's add-to-cart machinery */
.mfo-pdp .form-field--increments { margin: 0; }
.mfo-pdp .form-field--increments .form-label { display: none; }
.mfo-pdp #add-to-cart-wrapper { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; }
.mfo-pdp .form-increment { display: inline-flex; align-items: center; border: 1px solid var(--mfo-border); border-radius: 0; height: 45px; margin: 0; }
.mfo-pdp .form-increment .button { border: 0; background: transparent; color: var(--mfo-accent); width: 44px; height: 43px; padding: 0; margin: 0; }
.mfo-pdp .form-increment .button svg { fill: var(--mfo-accent); }
.mfo-pdp .form-increment .form-input--incrementTotal {
    width: 68px; height: 43px; border-block: 0; border-inline: 1px solid var(--mfo-border); border-radius: 0;
    font-weight: 700; font-size: 1rem; color: var(--mfo-ink); text-align: center; padding: 0;
}
.mfo-pdp .add-to-cart-buttons { flex: 1; min-width: 220px; margin: 0; padding: 0; }
.mfo-pdp .form-action { margin: 0; width: 100%; padding: 0; }
.mfo-pdp #form-action-addToCart {
    width: 100%; height: 45px; background: var(--mfo-accent); border: 1px solid var(--mfo-accent); border-radius: 0;
    color: var(--mfo-on-btn); font-family: var(--mfo-font-heading); font-weight: 700; font-size: 0.88rem;
    letter-spacing: 0.04em; text-transform: uppercase; margin: 0;
}
.mfo-pdp #form-action-addToCart:hover { background: var(--mfo-btn-hover); border-color: var(--mfo-btn-hover); }
.mfo-pdp .form-field--stock { margin: 0; display: none; }
.mfo-pdp-wishlist {
    display: flex; align-items: center; justify-content: center; gap: 10px; width: 100%; height: 45px;
    border: 1px solid var(--mfo-accent); color: var(--mfo-accent); border-radius: 0; margin-top: 12px;
    font-family: var(--mfo-font-heading); font-weight: 700; font-size: 0.88rem; letter-spacing: 0.03em; text-transform: uppercase;
}
.mfo-pdp-wishlist:hover { background: var(--mfo-accent); color: var(--mfo-on-btn); }
.mfo-pdp-shipnote { font-size: 0.85rem; color: var(--mfo-muted); margin: 16px 0 0; }
.mfo-pdp-shipnote strong { color: var(--mfo-ink); font-weight: 500; }
.mfo-pdp-urgency {
    display: flex; align-items: center; gap: 8px; margin: 10px 0 0;
    font-weight: 700; font-size: 0.92rem; color: var(--mfo-accent);
}
.mfo-pdp-urgency .fa-triangle-exclamation { font-size: 0.85em; }

.mfo-pdp-share { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; }
.mfo-pdp-share .mfo-pdp-label { margin: 0; }
.mfo-pdp-share-icons { display: inline-flex; gap: 14px; }
.mfo-pdp-share-icons a { color: var(--mfo-ink); font-size: 1.05rem; }
.mfo-pdp-share-icons a:hover { color: var(--mfo-accent); }

.mfo-pdp-trust { display: flex; flex-direction: column; gap: 6px; background: transparent; border-radius: 0; padding: 0; margin: 0; }
.mfo-pdp-trust-row { display: flex; align-items: center; gap: 11px; font-size: 0.78rem; color: var(--mfo-ink); line-height: 2; }
.mfo-pdp-trust-row i { color: var(--mfo-accent); width: 18px; text-align: center; }

.mfo-pdp-help {
    display: flex; align-items: center; gap: 16px; justify-content: space-between;
    background: var(--mfo-surface); border: 1px solid var(--mfo-border); padding: 22px 26px; margin-top: 22px;
}
.mfo-pdp-help-head { display: flex; align-items: center; gap: 12px; }
.mfo-pdp-help-head i { font-size: 1.4rem; color: var(--mfo-accent); }
.mfo-pdp-help-title {
    font-family: var(--mfo-font-heading); font-weight: 700; font-size: 1.35rem; text-transform: uppercase;
    color: var(--mfo-accent); margin: 0; line-height: 1.1;
}
.mfo-pdp-help-note { font-size: 0.85rem; color: var(--mfo-ink); margin: 4px 0 0; }
.mfo-pdp-help-btn {
    flex-shrink: 0; display: inline-flex; align-items: center; padding: 6px 16px;
    border: 1px solid var(--mfo-accent); color: var(--mfo-accent); border-radius: 0;
    font-family: var(--mfo-font-heading); font-weight: 700; font-size: 0.75rem; letter-spacing: 0.03em; text-transform: uppercase;
}
.mfo-pdp-help-btn:hover { background: var(--mfo-accent); color: var(--mfo-on-btn); }

/* PDP tabs + specs table */
.mfo-pdp-tabs { margin-top: clamp(30px, 4vw, 54px); }
.mfo-pdp-tabs-nav { display: flex; gap: 0; border-bottom: 1px solid var(--mfo-border); }
.mfo-pdp-tab {
    padding: 12px 26px; background: transparent; border: 0; border-bottom: 5px solid transparent; margin-bottom: -1px;
    font-family: var(--mfo-font-heading); font-weight: 700; font-size: 1.05rem; letter-spacing: 0.04em;
    text-transform: uppercase; color: var(--mfo-ink); cursor: pointer;
}
.mfo-pdp-tab.is-on { color: var(--mfo-accent); border-bottom-color: var(--mfo-accent); }
.mfo-pdp-panel { display: none; padding: 24px 0 0; line-height: 1.6; color: color-mix(in srgb, var(--mfo-ink) 82%, transparent); }
.mfo-pdp-panel.is-on { display: block; }
.mfo-specs { width: min(602px, 100%); border-collapse: collapse; }
.mfo-specs tr:nth-child(even) { background: var(--mfo-surface); }
.mfo-specs th, .mfo-specs td { padding: 8px 20px; font-size: 0.88rem; text-align: left; color: var(--mfo-ink); border: 0; }
.mfo-specs th { font-weight: 700; width: 50%; }
.mfo-specs td { font-weight: 400; }

.mfo-pdp-related { margin-top: clamp(34px, 4.5vw, 60px); }
.mfo-pdp-related .mfo-plp-grid { grid-template-columns: repeat(5, 1fr); gap: 20px; }
@media (max-width: 1100px) { .mfo-pdp-related .mfo-plp-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px) { .mfo-pdp-related .mfo-plp-grid { grid-template-columns: repeat(2, 1fr); } }

/* ── blog listing ── */
.mfo-bloghero { position: relative; background: var(--mfo-nav-bg); padding: clamp(44px, 6vw, 80px) 0 clamp(56px, 7vw, 96px); text-align: center; }
.mfo-bloghero h1 {
    font-family: var(--mfo-font-heading); font-weight: 700; font-size: clamp(2.1rem, 4.4vw, 4rem);
    text-transform: uppercase; color: var(--mfo-on-brand); margin: 0 0 14px;
}
.mfo-bloghero p { max-width: 860px; margin: 0 auto; color: var(--mfo-on-brand); font-size: 0.92rem; line-height: 1.6; opacity: 0.92; }
.mfo-bloghero-stripe {
    position: absolute; left: 0; right: 0; bottom: 0; height: 17px;
    background: repeating-linear-gradient(45deg, var(--mfo-accent) 0 10px, var(--mfo-nav-bg) 10px 20px);
}
.mfo-blog-pills { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin: 30px 0 34px; }
.mfo-blog-pill {
    display: inline-flex; align-items: center; padding: 2px 25px; line-height: 30px; border-radius: 0;
    border: 1px solid color-mix(in srgb, var(--mfo-ink) 75%, transparent);
    color: color-mix(in srgb, var(--mfo-ink) 75%, transparent);
    font-family: var(--mfo-font-heading); font-weight: 700; font-size: 0.75rem; letter-spacing: 0.05em; text-transform: uppercase;
}
.mfo-blog-pill:hover { border-color: var(--mfo-accent); color: var(--mfo-accent); }
.mfo-blog-pill.is-on { background: var(--mfo-accent); border: 2px solid var(--mfo-accent); color: var(--mfo-on-btn); }

.mfo-blogpage .mfo-posts { grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 900px) { .mfo-blogpage .mfo-posts { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .mfo-blogpage .mfo-posts { grid-template-columns: 1fr; } }
.mfo-blogpage .mfo-post { border: 1px solid var(--mfo-border); border-radius: 0; padding: 1px 1px 15px; background: var(--mfo-bg); display: flex; flex-direction: column; }
.mfo-post-media { position: relative; display: block; }
.mfo-post-media::after { content: ''; position: absolute; inset: 0; background: rgba(0, 0, 0, 0.2); }
.mfo-blogpage .mfo-post img { aspect-ratio: 398/235; }
.mfo-blogpage .mfo-post-body { padding: 15px 10px 0; display: flex; flex-direction: column; align-items: flex-start; gap: 9px; flex: 1; }
.mfo-blogpage .mfo-post-meta {
    display: flex; align-items: center; gap: 8px; margin: 0;
    font-size: 0.68rem; font-weight: 700; letter-spacing: 0.02em; color: var(--mfo-accent); text-transform: none;
}
.mfo-post-meta-div { width: 1px; height: 14px; background: var(--mfo-border); }
.mfo-blogpage .mfo-post h3 {
    font-family: var(--mfo-font-heading); font-weight: 700; font-size: 1.13rem; letter-spacing: 0.03em;
    line-height: 1.22; text-transform: uppercase; color: var(--mfo-ink); margin: 0;
}
.mfo-blogpage .mfo-post h3 a { color: inherit; }
.mfo-blogpage .mfo-post h3 a:hover { color: var(--mfo-accent); }
.mfo-blogpage .mfo-post p { font-size: 0.78rem; line-height: 1.6; color: var(--mfo-muted); margin: 0; }
.mfo-post-readmore {
    display: inline-flex; align-items: center; gap: 8px; margin-top: auto; padding-top: 6px;
    font-family: var(--mfo-font-heading); font-weight: 700; font-size: 0.78rem; letter-spacing: 0.05em;
    text-transform: uppercase; color: var(--mfo-accent);
}
.mfo-post-readmore i { font-size: 0.62rem; }

/* ── mega menu (SHOP ALL flyout), scoped to the mega nav variant ── */
.mfo-megamenu { display: none; }
[data-mfo-nav="mega"] .mfo-master-label { display: none; }
.mfo-master-label--mega { display: none; }
[data-mfo-nav="mega"] .mfo-master-label--mega { display: inline; text-transform: uppercase; }
[data-mfo-nav="mega"] .mfo-nav-master-panel { display: none !important; }
[data-mfo-nav="mega"] .mfo-navbar-item .mfo-nav-mega { display: none !important; }
[data-mfo-nav="mega"] .mfo-navbar-item.is-open .mfo-nav-drop { display: block; }
[data-mfo-nav="mega"] .mfo-megamenu {
    position: absolute; top: 100%; left: 0; z-index: 45;
    display: none; align-items: flex-start;
}
[data-mfo-nav="mega"] .mfo-megamenu.is-open { display: flex; }
.mfo-megamenu-panel {
    width: 384px; max-width: 92vw; background: var(--mfo-bg); border-radius: 0;
    box-shadow: 20px 40px 80px rgba(0, 0, 0, 0.5);
}
.mfo-megamenu-panel--sub { box-shadow: 24px 40px 80px rgba(0, 0, 0, 0.45); }
.mfo-megamenu-head {
    display: flex; align-items: center; justify-content: space-between; height: 60px; padding: 0 20px;
    border-bottom: 0.5px solid color-mix(in srgb, var(--mfo-border) 78%, var(--mfo-hairline));
}
.mfo-megamenu-title {
    font-family: var(--mfo-font-heading); font-weight: 700; font-size: 1.05rem; letter-spacing: 0.02em;
    text-transform: uppercase; text-decoration: underline; text-underline-offset: 3px; color: var(--mfo-ink);
}
a.mfo-megamenu-title:hover { color: var(--mfo-accent); }
.mfo-megamenu-close { background: transparent; border: 0; padding: 4px; color: var(--mfo-ink); font-size: 1rem; cursor: pointer; }
.mfo-megamenu-close:hover { color: var(--mfo-accent); }
.mfo-megamenu-row {
    display: flex; align-items: center; justify-content: space-between; width: 100%; height: 44px; padding: 0 20px;
    background: transparent; border: 0; border-bottom: 0.5px solid color-mix(in srgb, var(--mfo-border) 78%, var(--mfo-hairline));
    font-family: var(--mfo-font-body); font-weight: 500; font-size: 0.82rem; color: var(--mfo-ink);
    text-align: left; cursor: pointer;
}
.mfo-megamenu-row:hover { color: var(--mfo-accent); }
.mfo-megamenu-row i { font-size: 0.65rem; color: var(--mfo-ink); }
.mfo-megamenu-row:hover i { color: var(--mfo-accent); }
.mfo-megamenu-panel > .mfo-megamenu-row:last-child { border-bottom: 0; }

/* ── page-heading kill switch (mfo_page_heading) ── */
[data-mfo-page-heading="off"] .page-heading { display: none; }

/* neutralize Cornerstone's float/width productView layout inside the MFO grid */
.mfo-pdp.productView { display: grid; margin: 0; padding-bottom: 0; }
.mfo-pdp .productView-images, .mfo-pdp .productView-details {
    float: none; clear: none; width: auto; max-width: none;
    padding-left: 0; padding-right: 0; order: 0;
}
.mfo-pdp .productView-options { margin: 0; text-align: left; }
.mfo-pdp .productView-title { border: 0; padding: 0; }

/* PDP price partial cleanup: one price, one struck original, no labels */
.mfo-pdp-price .rrp-price--withTax, .mfo-pdp-price .rrp-price--withoutTax,
.mfo-pdp-price .price-section--saving, .mfo-pdp-price .price-now-label,
.mfo-pdp-price .price-label { display: none; }

/* Cornerstone's .productView clearfix pseudo-elements (content:" "; display:table)
   become grid items inside the MFO PDP grid and steal cell (1,1), shoving the
   gallery right and the buy box to row 2. Kill them. */
.mfo-pdp.productView::before, .mfo-pdp.productView::after { content: none; }

/* Banner category header: description headings (h3 etc. inside the SEO copy)
   otherwise pick up the chrome ink color and vanish on the dark photo. */
[data-mfo-category-header="banner"] .mfo-cathead-desc :is(h1, h2, h3, h4),
[data-mfo-category-header="banner"] .mfo-cathead-desc p { color: var(--mfo-on-brand); }

/* ============================================================
   REVISION: cart-experience — slide-out drawer, live module
   Chrome look: uppercase heading-font titles, hairline dividers,
   accent CTAs (dark ink per token contract), token-driven corners.
   The base .mfo-drawer / scrim / foot primitives live above; this
   section styles the live line items, stepper, upsell and mobile.
   ============================================================ */
body.mfo-drawer-open { overflow: hidden; }
.mfo-drawer-head h2 {
    font-family: var(--mfo-font-heading); text-transform: uppercase; letter-spacing: 0.05em;
    color: var(--mfo-ink); display: flex; align-items: baseline; gap: 8px;
}
.mfo-drawer-count { font-family: var(--mfo-font-body); font-size: 0.9rem; font-weight: 600; color: var(--mfo-muted); letter-spacing: 0; text-transform: none; }
.mfo-drawer-close { padding: 6px 8px; font-size: 1.2rem; line-height: 1; color: var(--mfo-ink); }
.mfo-drawer-close:hover { color: var(--mfo-accent); }

/* shipbar sits between head and body inside the drawer column */
.mfo-drawer .mfo-shipbar { border-bottom: 1px solid var(--mfo-border); padding: 12px 22px; }
.mfo-drawer .mfo-shipbar-inner { padding: 0; max-width: none; flex-wrap: wrap; gap: 8px; font-size: 0.8rem; }
.mfo-drawer .mfo-shipbar-track { max-width: none; flex-basis: 100%; order: 3; }

.mfo-drawer-empty { padding: 30px 0; text-align: center; color: var(--mfo-muted); }
.mfo-drawer-lines.mfo-cart-lines { border-top: 0; }
.mfo-drawer .mfo-cart-line { gap: 14px; align-items: start; }
.mfo-drawer .mfo-cart-line img { background: var(--mfo-surface); object-fit: contain; }
.mfo-drawer .mfo-cart-line-name strong { font-size: 0.92rem; line-height: 1.35; }
.mfo-drawer .mfo-cart-line-name > span { display: block; font-size: 0.8rem; color: var(--mfo-muted); margin-top: 2px; }
.mfo-drawer-qty { margin-top: 10px; }
.mfo-drawer-qty button { padding: 6px 10px; font-size: 0.68rem; color: var(--mfo-ink); }
.mfo-drawer-qty button:hover { color: var(--mfo-accent); }
.mfo-drawer-qty > span { min-width: 26px; font-size: 0.88rem; }
.mfo-cart-line-side { display: flex; flex-direction: column; align-items: flex-end; gap: 10px; }
.mfo-cart-line-side strong { color: var(--mfo-ink); font-size: 0.95rem; }
.mfo-drawer-remove { padding: 4px; font-size: 0.85rem; color: var(--mfo-muted); }
.mfo-drawer-remove:hover { color: var(--mfo-accent); }
.mfo-drawer.is-busy .mfo-drawer-body { opacity: 0.55; pointer-events: none; }

/* upsell row (hidden for plain slide-out via the rule above) */
.mfo-drawer-upsell { border: 1px solid var(--mfo-border); }
.mfo-drawer-upsell-items { display: flex; flex-direction: column; gap: 12px; }
.mfo-drawer-upsell-info { flex: 1; min-width: 0; }
.mfo-drawer-upsell-info span { display: block; font-size: 0.82rem; font-weight: 700; color: var(--mfo-accent); margin-top: 2px; }
.mfo-drawer-upsell-item img { background: var(--mfo-bg); object-fit: contain; }
.mfo-drawer-upsell-item .mfo-btn { padding: 8px 14px; font-size: 0.78rem; flex: none; }

/* footer: subtotal + stacked CTAs */
.mfo-drawer-subtotal {
    display: flex; justify-content: space-between; align-items: baseline;
    font-family: var(--mfo-font-heading); text-transform: uppercase; letter-spacing: 0.04em;
    color: var(--mfo-ink); margin-bottom: 14px;
}
.mfo-drawer-subtotal strong { font-size: 1.15rem; }
.mfo-drawer-foot .mfo-btn + .mfo-btn { margin-top: 10px; }
.mfo-drawer-foot small { font-size: 0.78rem; }

@media (max-width: 560px) {
    .mfo-drawer { width: 100%; }
}

/* ============================================================
   REVISION: care-center — Sights and Scopes contact hub port
   (Figma CONTACT US (CHANGES) 890:4236). Variant gate, body attr
   data-mfo-care-center: full-hub = everything; enhanced = hub
   minus rewards banners; contact-form / none = styled form card
   only (native contact page look). Legacy hub-cards /
   single-column rules above stay for the admin gallery preview.
   ============================================================ */
.mfo-care-bleed { margin-inline: calc(50% - 50vw); }

/* photo hero + overlaid breadcrumb + hazard strip */
.mfo-carehero {
    position: relative; text-align: center;
    background:
        linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
        url('/content/mfo/13/home/banner-precision-bg.jpg') center 28% / cover no-repeat;
    padding: clamp(30px, 4vw, 44px) 0 clamp(56px, 7vw, 96px);
}
.mfo-carehero-crumbs { display: flex; gap: 5px; align-items: center; font-size: 0.75rem; letter-spacing: -0.01em; margin-bottom: clamp(28px, 4vw, 56px); }
.mfo-carehero-crumbs a { color: color-mix(in srgb, var(--mfo-on-brand) 75%, transparent); }
.mfo-carehero-crumbs a:hover { color: var(--mfo-accent); }
.mfo-carehero-crumbs span { color: color-mix(in srgb, var(--mfo-on-brand) 75%, transparent); }
.mfo-carehero-crumbs strong { color: var(--mfo-on-brand); font-weight: 700; }
.mfo-carehero h1 {
    font-family: var(--mfo-font-heading); font-weight: 700; font-size: clamp(2.1rem, 4.4vw, 4rem);
    text-transform: uppercase; color: var(--mfo-on-brand); margin: 0 0 14px;
}
.mfo-carehero > .mfo-container > p { max-width: 860px; margin: 0 auto; color: var(--mfo-on-brand); font-size: 0.92rem; line-height: 1.6; opacity: 0.92; }
.mfo-carehero-stripe {
    position: absolute; left: 0; right: 0; bottom: 0; height: 17px;
    background: repeating-linear-gradient(45deg, var(--mfo-accent) 0 10px, var(--mfo-ink) 10px 20px);
}

/* section header: crosshair + uppercase title + rule to the right edge */
.mfo-care-sechead { display: flex; align-items: center; gap: 14px; }
.mfo-care-sechead i { color: var(--mfo-accent); font-size: 1.5rem; }
.mfo-care-sechead h2 {
    font-family: var(--mfo-font-heading); font-weight: 700; font-size: clamp(1.4rem, 2.4vw, 2rem);
    text-transform: uppercase; color: var(--mfo-ink); margin: 0; white-space: nowrap;
}
.mfo-care-sechead-rule { flex: 1; height: 2px; background: var(--mfo-border); }
.mfo-care-subline { color: var(--mfo-muted); font-size: 1rem; line-height: 1.6; margin: 12px 0 clamp(26px, 4vw, 50px); }

/* support cards: orange-tint boxes */
.mfo-care-boxes { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 3.8vw, 55px); }
.mfo-care-box {
    background: color-mix(in srgb, var(--mfo-accent) 15%, transparent);
    border: 1px solid color-mix(in srgb, var(--mfo-accent) 30%, transparent);
    border-radius: 0; padding: 28px 20px 24px; text-align: center;
    display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.mfo-care-box > i { font-size: 2.5rem; color: var(--mfo-accent); margin-bottom: 6px; }
.mfo-care-box strong {
    font-family: var(--mfo-font-heading); font-weight: 700; font-size: 1.3rem;
    letter-spacing: 0.03em; text-transform: uppercase; color: var(--mfo-ink); line-height: 1.1;
}
.mfo-care-box p { font-size: 0.78rem; line-height: 1.6; color: color-mix(in srgb, var(--mfo-ink) 65%, transparent); margin: 0; }
.mfo-care-more {
    display: inline-flex; align-items: center; gap: 7px; margin-top: 4px;
    font-family: var(--mfo-font-heading); font-weight: 700; font-size: 0.78rem;
    letter-spacing: 0.05em; text-transform: uppercase; color: var(--mfo-accent);
}
.mfo-care-more i { font-size: 0.62rem; }
.mfo-care-box:hover strong { color: var(--mfo-accent); }

/* rewards banner bitmaps */
.mfo-care-tiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.mfo-care-tiles img { display: block; width: 100%; height: auto; }
.mfo-care-tiles a:hover img { opacity: 0.92; }

/* grey band wrapping FAQ + Need Assistance */
.mfo-care-band { background: var(--mfo-surface); }

/* FAQ columns + accordion */
.mfo-care-faqcols { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(20px, 2vw, 30px); }
.mfo-care-faqcol h3 {
    font-family: var(--mfo-font-heading); font-weight: 700; font-size: 1.6rem;
    text-transform: uppercase; color: var(--mfo-ink); margin: 0 0 8px;
}
.mfo-care-faqintro { font-size: 0.78rem; line-height: 1.6; color: color-mix(in srgb, var(--mfo-ink) 75%, transparent); margin: 0 0 18px; }
.mfo-care-q { background: var(--mfo-bg); border: 1px solid var(--mfo-border); border-radius: 0; margin-bottom: 10px; }
.mfo-care-q-toggle {
    display: flex; align-items: center; justify-content: space-between; gap: 12px; width: 100%;
    background: transparent; border: 0; cursor: pointer; text-align: left;
    padding: 12px 15px; font-family: var(--mfo-font-body); font-weight: 500; font-size: 0.88rem;
    line-height: 1.55; color: var(--mfo-ink);
}
.mfo-care-q-toggle .fa-circle-plus { color: var(--mfo-muted); font-size: 1rem; }
.mfo-care-q-toggle .fa-circle-minus { color: var(--mfo-accent); font-size: 1rem; display: none; }
.mfo-care-q.is-open { border-color: var(--mfo-accent); }
.mfo-care-q.is-open .mfo-care-q-toggle { color: var(--mfo-accent); }
.mfo-care-q.is-open .fa-circle-plus { display: none; }
.mfo-care-q.is-open .fa-circle-minus { display: inline-block; }
.mfo-care-q-a { display: none; padding: 0 15px 14px; }
.mfo-care-q-a p { font-size: 0.78rem; line-height: 1.6; color: color-mix(in srgb, var(--mfo-ink) 75%, transparent); margin: 0; }
.mfo-care-q.is-open .mfo-care-q-a { display: block; }

/* Need Assistance: contact-info stack + form card */
.mfo-care-needgrid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 3vw, 50px); align-items: start; margin-top: clamp(24px, 3vw, 44px); }
.mfo-care-info-intro { font-size: 1rem; line-height: 1.6; color: var(--mfo-muted); margin: 0 0 34px; max-width: 581px; }
.mfo-care-info-item { display: flex; gap: 15px; align-items: flex-start; margin-bottom: 30px; }
.mfo-care-info-item > i { color: var(--mfo-accent); font-size: 1.4rem; margin-top: 3px; }
.mfo-care-info-item span { display: block; font-size: 0.88rem; color: color-mix(in srgb, var(--mfo-ink) 60%, transparent); line-height: 1.7; }
.mfo-care-info-item strong { display: block; font-size: 1.12rem; color: var(--mfo-ink); line-height: 1.5; }
.mfo-care-info-item strong a { color: inherit; }
.mfo-care-info-item strong a:hover { color: var(--mfo-accent); }

.mfo-care-formcard { background: var(--mfo-bg); border: 1px solid var(--mfo-border); border-radius: 0; padding: clamp(20px, 2.4vw, 30px); }
.mfo-care-formcard .form-field { margin-bottom: 15px; }
.mfo-care-formcard .form-label { font-weight: 500; font-size: 0.88rem; color: var(--mfo-ink); margin-bottom: 10px; }
.mfo-care-formcard .form-label small { color: var(--mfo-accent); }
.mfo-care-formcard .form-input {
    width: 100%; background: var(--mfo-surface); border: 1px solid var(--mfo-border); border-radius: 0;
    padding: 12px 15px; font-size: 0.85rem; color: var(--mfo-ink);
}
.mfo-care-formcard .form-input::placeholder { color: color-mix(in srgb, var(--mfo-ink) 50%, transparent); font-size: 0.78rem; }
.mfo-care-formcard .form-input:focus { border-color: var(--mfo-accent); outline: none; }
.mfo-care-formcard textarea.form-input { min-height: 128px; resize: vertical; }
.mfo-care-actions { margin-top: 18px; text-align: left; padding: 0; }
.mfo-care-send {
    display: flex; align-items: center; justify-content: center; gap: 10px; width: 100%;
    background: var(--mfo-accent); border: 1px solid var(--mfo-accent); border-radius: 0; cursor: pointer;
    font-family: var(--mfo-font-heading); font-weight: 700; font-size: 0.92rem; letter-spacing: 0.04em;
    text-transform: uppercase; color: var(--mfo-on-btn); padding: 11px 20px; margin: 0;
}
.mfo-care-send:hover { background: color-mix(in srgb, var(--mfo-accent) 85%, black); border-color: color-mix(in srgb, var(--mfo-accent) 85%, black); }
.mfo-care-send i { font-size: 0.68rem; }
.mfo-care-success { padding: 6px 0; line-height: 1.6; color: var(--mfo-ink); }
.mfo-care-pagecopy p { line-height: 1.6; color: var(--mfo-muted); }
.mfo-care-pagecopy:not(:empty) { margin-bottom: 18px; }

/* ── variant gate ── */
/* hub variants: hero carries crumb + H1, so hide the native head; page
   body copy would double the template's own copy, hide it too */
[data-mfo-care-center="full-hub"] .mfo-care-nativehead,
[data-mfo-care-center="enhanced"] .mfo-care-nativehead,
[data-mfo-care-center="full-hub"] .mfo-care-pagecopy,
[data-mfo-care-center="enhanced"] .mfo-care-pagecopy { display: none; }

/* enhanced: hub minus the rewards banners */
[data-mfo-care-center="enhanced"] .mfo-care-rewards { display: none; }

/* contact-form / none: just the styled form (current native look) */
[data-mfo-care-center="contact-form"] .mfo-carehero,
[data-mfo-care-center="contact-form"] .mfo-care-assist,
[data-mfo-care-center="contact-form"] .mfo-care-rewards,
[data-mfo-care-center="contact-form"] .mfo-care-faqsec,
[data-mfo-care-center="contact-form"] .mfo-care-info,
[data-mfo-care-center="none"] .mfo-carehero,
[data-mfo-care-center="none"] .mfo-care-assist,
[data-mfo-care-center="none"] .mfo-care-rewards,
[data-mfo-care-center="none"] .mfo-care-faqsec,
[data-mfo-care-center="none"] .mfo-care-info { display: none; }
[data-mfo-care-center="contact-form"] .mfo-care-band,
[data-mfo-care-center="none"] .mfo-care-band { background: transparent; margin-inline: 0; }
[data-mfo-care-center="contact-form"] .mfo-care-need .mfo-care-sechead,
[data-mfo-care-center="none"] .mfo-care-need .mfo-care-sechead { display: none; }
[data-mfo-care-center="contact-form"] .mfo-care-need,
[data-mfo-care-center="none"] .mfo-care-need { padding-top: 0; }
[data-mfo-care-center="contact-form"] .mfo-care-needgrid,
[data-mfo-care-center="none"] .mfo-care-needgrid { display: block; max-width: 640px; margin: 0 auto; }

@media (max-width: 900px) {
    .mfo-care-boxes, .mfo-care-tiles { grid-template-columns: 1fr; }
    .mfo-care-faqcols, .mfo-care-needgrid { grid-template-columns: 1fr; }
    .mfo-care-tiles { max-width: 480px; }
    .mfo-care-sechead h2 { white-space: normal; }
}

/* ============================================================
   REVISION: cart page rebuild — card line items + sticky order
   summary, all tokens. Markup contract: overlay pages/cart.html
   + components/cart/content.html (retagged stock partial).
   ============================================================ */
.mfo-cartshell .page-content { padding-block: calc(var(--mfo-density) * clamp(22px, 3vw, 38px)) 0; }

.mfo-cart-head { display: flex; align-items: baseline; justify-content: space-between; gap: 18px; flex-wrap: wrap; margin-bottom: 14px; }
.mfo-cart-head-title { display: flex; align-items: baseline; gap: 12px; }
.mfo-cart-head-title > .fa-crosshairs { color: var(--mfo-accent); font-size: 1.5rem; transform: translateY(2px); }
.mfo-cart-head .page-heading, .mfo-cart-head h1 {
    display: block; /* wins over the mfo_page_heading=off kill switch */
    margin: 0; font-family: var(--mfo-font-heading); text-transform: uppercase;
    font-size: clamp(1.6rem, 2.6vw, 2.2rem); letter-spacing: 0.01em;
}
.mfo-cart-count-note { color: var(--mfo-muted); font-size: 0.95rem; }
.mfo-cart-continue { color: var(--mfo-accent); font-weight: 600; text-decoration: none; display: inline-flex; align-items: center; gap: 7px; }
.mfo-cart-continue:hover { text-decoration: underline; }

.mfo-cartshell .mfo-shipbar { border: 1px solid var(--mfo-border); border-radius: var(--mfo-radius-sm); margin-bottom: 18px; }

.mfo-cartpage { margin-top: 6px; align-items: start; }

/* column header (desktop only) */
.mfo-cart-colhead {
    display: grid; grid-template-columns: 96px minmax(0, 1fr) 110px 150px 130px; gap: 18px;
    padding: 0 0 10px; border-bottom: 2px solid var(--mfo-ink);
    font-family: var(--mfo-font-heading); text-transform: uppercase; font-size: 0.82rem; letter-spacing: 0.08em;
}
.mfo-cart-colhead span:first-child { grid-column: 1 / 3; }
.mfo-cart-colhead span:nth-child(3) { text-align: center; }
.mfo-cart-colhead span:last-child { text-align: right; }

/* line item cards */
.mfo-cart-list .cart-item {
    display: grid; grid-template-columns: 96px minmax(0, 1fr) 110px 150px 130px; gap: 18px;
    align-items: center; padding: 20px 0; border-bottom: 1px solid var(--mfo-border);
}
.mfo-cart-list .cart-item-figure { margin: 0; }
.mfo-cart-list .cart-item-figure img { display: block; width: 96px; height: 96px; object-fit: contain; border: 1px solid var(--mfo-border); background: white; padding: 6px; }
.mfo-cart-list .cart-item-title { min-width: 0; }
.mfo-cart-list .cart-item-name { margin: 0 0 2px; font-size: 1rem; line-height: 1.3; }
.mfo-cart-list .cart-item-name__label { color: var(--mfo-ink); text-decoration: none; font-weight: 600; }
.mfo-cart-list .cart-item-name__label:hover { color: var(--mfo-accent); }
.mfo-cart-sku { margin: 0; color: var(--mfo-muted); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.04em; }
.mfo-cart-list .cart-item-brand { margin: 0; color: var(--mfo-muted); font-size: 0.8rem; }
.mfo-cart-list .definitionList { margin: 6px 0 0; font-size: 0.82rem; color: var(--mfo-muted); }
.mfo-cart-list .cart-item-label { display: none; }
.mfo-cart-list .cart-item-value { font-weight: 600; }
.mfo-cart-list .cart-item-info:last-of-type { text-align: right; position: relative; }
.mfo-cart-list .cart-item-info:last-of-type .cart-item-value { color: var(--mfo-accent); font-size: 1.05rem; }
.mfo-cart-list .price--discounted { text-decoration: line-through; color: var(--mfo-muted); font-weight: 400; font-size: 0.85rem; }

/* qty stepper, PDP/drawer family */
.mfo-cart-list .form-increment { display: inline-flex; align-items: stretch; border: 1px solid var(--mfo-border); }
.mfo-cart-list .form-increment .button--icon {
    width: 36px; height: 40px; display: inline-flex; align-items: center; justify-content: center;
    border: 0; background: transparent; color: var(--mfo-ink); cursor: pointer; font-size: 0.7rem;
}
.mfo-cart-list .form-increment .button--icon:hover { color: var(--mfo-accent); }
.mfo-cart-list .cart-item-qty-input {
    width: 44px; height: 40px; border: 0; border-inline: 1px solid var(--mfo-border);
    text-align: center; font-weight: 600; background: transparent; border-radius: 0;
}
.mfo-cart-list .cart-item-quantity { text-align: center; }

/* remove */
.mfo-cart-list .cart-remove {
    position: absolute; right: 0; top: calc(100% + 6px);
    border: 0; background: transparent; color: var(--mfo-muted); cursor: pointer; font-size: 0.95rem; padding: 4px;
}
.mfo-cart-list .cart-remove:hover { color: var(--mfo-accent); }

/* summary card */
.mfo-cart-summary {
    position: sticky; top: 96px;
    background: var(--mfo-surface); border: 1px solid var(--mfo-border);
    padding: 22px; display: flex; flex-direction: column; gap: 6px;
}
.mfo-cart-summary-title {
    margin: 0 0 8px; font-family: var(--mfo-font-heading); text-transform: uppercase;
    font-size: 1.05rem; letter-spacing: 0.08em; padding-bottom: 12px; border-bottom: 2px solid var(--mfo-ink);
}
/* the totals rows themselves live in the consolidated .mfo-cartshell grid
   block further down; this section keeps only the card chrome */
.mfo-cart-summary a:not(.button) { color: var(--mfo-accent); text-decoration: none; font-weight: 600; }
.mfo-cart-summary a:not(.button):hover { text-decoration: underline; }

.mfo-cart-actions { margin-top: 14px; }
.mfo-cart-checkout.button {
    display: block; width: 100%; text-align: center;
    font-family: var(--mfo-font-heading); text-transform: uppercase; letter-spacing: 0.06em; font-size: 1rem;
    padding: 15px 20px; margin: 0;
}
.mfo-cart-summary .checkoutMultiple { display: inline-block; margin-top: 10px; font-size: 0.85rem; }
.mfo-cart-summary .cart-additionalCheckoutButtons { margin-top: 10px; }

.mfo-cart-trust { margin-top: 14px; text-align: center; }
.mfo-cart-secure { margin: 0 0 6px; color: var(--mfo-muted); font-size: 0.82rem; }
.mfo-cart-secure .fa-shield-halved { color: var(--mfo-accent); margin-right: 6px; }
.mfo-cart-paymarks { margin: 0; display: flex; justify-content: center; gap: 8px; font-size: 1.55rem; color: var(--mfo-ink); opacity: 0.85; }

/* estimator + coupon form inputs inside the summary */
.mfo-cart-summary .form-input, .mfo-cart-summary .form-select { border-color: var(--mfo-border); border-radius: var(--mfo-radius-sm); }

/* sticky mobile checkout bar */
.mfo-cart-stickybar { display: none; }

/* empty state */
.mfo-cart-empty { text-align: center; padding: clamp(48px, 9vw, 90px) 0; }
.mfo-cart-empty .fa-crosshairs { font-size: 2.4rem; color: var(--mfo-accent); margin-bottom: 14px; }
.mfo-cart-empty h3 { font-family: var(--mfo-font-heading); text-transform: uppercase; font-size: 1.5rem; margin: 0 0 8px; }
.mfo-cart-empty p { color: var(--mfo-muted); margin: 0 0 20px; }

@media (max-width: 900px) {
    .mfo-cart-colhead { display: none; }
    .mfo-cart-summary { position: static; }
    .mfo-cart-list .cart-item {
        grid-template-columns: 76px minmax(0, 1fr) auto; gap: 8px 14px; align-items: start;
        grid-template-areas: "fig title title" "fig qty total";
    }
    .mfo-cart-list .cart-item-figure { grid-area: fig; }
    .mfo-cart-list .cart-item-figure img { width: 76px; height: 76px; }
    .mfo-cart-list .cart-item-title { grid-area: title; padding-right: 26px; }
    .mfo-cart-list .cart-item-quantity { grid-area: qty; text-align: left; align-self: center; }
    .mfo-cart-list .cart-item-info:not(.cart-item-quantity):not(:last-of-type) { display: none; }
    .mfo-cart-list .cart-item-info:last-of-type { grid-area: total; align-self: center; }
    .mfo-cart-list .form-increment .button--icon { width: 32px; height: 36px; }
    .mfo-cart-list .cart-item-qty-input { width: 38px; height: 36px; }
    .mfo-cart-list .cart-remove { top: auto; bottom: calc(100% + 8px); }

    .mfo-cart-stickybar {
        display: flex; align-items: center; gap: 14px;
        position: fixed; left: 0; right: 0; bottom: 0; z-index: 70;
        background: var(--mfo-nav-bg); padding: 12px max(16px, 4vw);
        box-shadow: 0 -10px 24px rgba(0, 0, 0, 0.18);
    }
    .mfo-cart-stickybar-total { color: var(--mfo-nav-ink); font-family: var(--mfo-font-heading); font-size: 1.15rem; }
    .mfo-cart-stickybar .mfo-cart-checkout { flex: 1; padding: 12px 16px; }
    .mfo-cartshell { padding-bottom: 74px; }
}

/* ============================================================
   CART v3 — one consolidated block, scoped to .mfo-cartshell
   (a class stock Cornerstone never emits, so nothing here can
   reach the preview gallery's .mfo-cart-row / .mfo-cart-line
   mocks or the live drawer). Replaces cart rebuild passes 2-4
   and the HD-proportions tail.

   Summary rows are a per-row CSS grid, Home Depot's own
   technique: label at justify-self:start, value at
   justify-self:end in the last column, full-width extras
   (estimator, gift-cert form, discount details) at 1 / -1.
   Values therefore align no matter how long a label runs, and
   nothing needs flex-wrap — which is what used to let TOTAL
   break onto two lines.

   Cornerstone's own cart rules are all single-class
   (.cart-total-label, .cart-item-block ...) and mfo-blocks.css
   loads after theme.css, so two-class selectors win outright.
   The one !important in here fights an INLINE style, the only
   thing that needs it.
   ============================================================ */

/* page columns: one definition per breakpoint, .mfo-cartshell only */
.mfo-cartshell .mfo-cartpage {
    display: grid; align-items: start;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 360px);
    gap: clamp(20px, 3vw, 34px); margin-top: 6px;
}
@media (min-width: 1100px) {
    .mfo-cartshell .mfo-cartpage { grid-template-columns: minmax(0, 1fr) 409px; }
}
@media (max-width: 900px) {
    .mfo-cartshell .mfo-cartpage { grid-template-columns: minmax(0, 1fr); }
}

/* line items: the grid owns geometry, so neutralize Cornerstone's
   percent widths, floats and table-cell display on the stock cells */
.mfo-cart-list .cart-item-block,
.mfo-cart-list .cart-item-title,
.mfo-cart-list .cart-item-figure,
.mfo-cart-list .cart-item-info,
.mfo-cart-list .cart-item-quantity,
.mfo-cart-list .cart-item-name {
    display: block; width: auto; max-width: none; min-width: 0; float: none; padding: 0;
}
/* desktop-only: mobile keeps its own grid-template-areas layout
   (max-width: 900px block above) — this unscoped 5-column definition
   used to win the cascade on mobile too and left grid-template-areas
   pointing at columns that no longer existed, which is what made the
   quantity stepper and price overlap the title/save-for-later text. */
@media (min-width: 901px) {
    .mfo-cart-colhead,
    .mfo-cart-list .cart-item {
        grid-template-columns: 88px minmax(0, 1fr) 90px 128px 104px; gap: 14px;
    }
    .mfo-cart-list .cart-item-figure img,
    .mfo-cart-list .cart-item-figure img.cart-item-image { width: 88px; height: 88px; max-width: none; }
}

/* summary rows */
.mfo-cartshell .cart-totals {
    list-style: none; margin: 0; padding: 0; width: auto; float: none; text-align: left;
}
.mfo-cartshell .cart-total {
    display: grid; grid-template-columns: repeat(4, 1fr); align-items: baseline;
    gap: 0 12px; padding: 12px 0; border-bottom: 1px solid var(--mfo-border);
    font-size: 0.92rem; clear: none;
}
.mfo-cartshell .cart-total > .cart-total-label {
    grid-column: 1 / 4; justify-self: start; text-align: left;
    width: auto; max-width: none; float: none; padding: 0; color: inherit;
}
.mfo-cartshell .cart-total > .cart-total-value {
    grid-column: 4; justify-self: end; text-align: right;
    width: auto; max-width: none; float: none; padding: 0;
}
.mfo-cartshell .cart-total > .mfo-total-wide {
    grid-column: 1 / -1; justify-self: stretch; width: 100%; float: none;
}
.mfo-cartshell .cart-total-label strong { font-weight: 500; color: var(--mfo-body); }
.mfo-cartshell .cart-total-value { font-weight: 600; color: var(--mfo-ink); }
.mfo-cartshell .cart-total:last-child { border-bottom: 0; }

/* savings: quiet green, its own token */
.mfo-cartshell .mfo-total-savings[hidden],
.mfo-cartshell .mfo-total-callout[hidden] { display: none; }
.mfo-cartshell .mfo-total-savings .cart-total-label strong,
.mfo-cartshell .mfo-total-savings .cart-total-value { color: var(--mfo-savings); font-weight: 600; }
.mfo-cartshell .mfo-total-savings .fa-tag { font-size: 0.85em; margin-right: 5px; }

/* delivery: FREE reads as a win, an un-quoted cost reads as honest */
.mfo-cartshell .mfo-total-free { color: var(--mfo-savings); font-weight: 700; letter-spacing: 0.04em; }
.mfo-cartshell .mfo-total-pending { color: var(--mfo-muted); font-weight: 500; font-size: 0.88rem; }

/* the estimator and the gift-certificate form ride in the wide cell; the
   stock partials also emit their own .cart-total-value there, which the
   row already shows */
.mfo-cartshell .mfo-total-extra { margin-top: 8px; }
.mfo-cartshell .mfo-total-extra:empty { margin-top: 0; }
.mfo-cartshell .mfo-total-extra > .cart-total-value { display: none; }
.mfo-cartshell .cart-shipping-expectation-message {
    margin: 8px 0 0; font-size: 0.82rem; color: var(--mfo-muted); clear: none;
}

/* itemized discounts (multi-coupon UI) */
.mfo-cartshell .cart-total-discounts .cart-total-label { cursor: pointer; }
.mfo-cartshell .cart-discount-list {
    list-style: none; margin: 8px 0 0; padding: 0; font-size: 0.85rem; color: var(--mfo-muted);
}
.mfo-cartshell .cart-discount-item {
    display: flex; align-items: baseline; justify-content: space-between; gap: 10px; padding: 3px 0;
}
.mfo-cartshell .cart-discount-icon { transition: transform 0.18s ease; }
.mfo-cartshell .cart-discount-icon.is-open { transform: rotate(180deg); }

/* one heavy rule, then the total on a single line */
.mfo-cartshell .mfo-total-grand {
    border-bottom: 0; border-top: 2px solid var(--mfo-ink); margin-top: 4px; padding: 15px 0 4px;
}
.mfo-cartshell .mfo-total-grand .cart-total-label strong {
    font-family: var(--mfo-font-heading); text-transform: uppercase;
    font-size: 1.15rem; font-weight: 700; color: var(--mfo-ink); letter-spacing: 0.02em;
}
.mfo-cartshell .mfo-total-grand .cart-total-grandTotal {
    font-family: var(--mfo-font-heading); font-size: 1.25rem; color: var(--mfo-accent);
    position: static; top: auto; padding: 0; white-space: nowrap;
}

/* "You saved 24%" callout under the total */
.mfo-cartshell .mfo-total-callout { border-bottom: 0; padding: 0 0 6px; }
.mfo-cartshell .mfo-total-callout .mfo-total-wide {
    justify-self: start; width: max-content;
    background: color-mix(in srgb, var(--mfo-savings) 12%, transparent);
    color: var(--mfo-savings); font-size: 0.82rem; font-weight: 700;
    padding: 4px 10px; border-radius: var(--mfo-radius-sm);
}

/* ============================================================
   REVISION: advanced full cart — promo slots (BC banner first,
   settings fallback), savings summary, promo-code accordion,
   help block, save for later, recommendation rows. Tokens only.
   ============================================================ */

/* promo slot A: banner / financing-style card above the cart head */
.mfo-cart-banner { margin-bottom: 18px; }
.mfo-cart-banner .banner { border: 1px solid var(--mfo-border); background: var(--mfo-surface); border-radius: var(--mfo-radius-sm); padding: 14px 18px; text-align: center; }
.mfo-cart-banner .banner p { margin: 0; color: var(--mfo-ink); line-height: 1.5; }
.mfo-cart-banner .banner a { color: var(--mfo-accent); font-weight: 600; text-decoration: none; }
.mfo-cart-banner .banner a:hover { text-decoration: underline; }
.mfo-cart-banner .banner img { max-width: 100%; height: auto; }
.mfo-cart-banner--card { margin: 14px 0 0; }
.mfo-cart-banner--card .banner { text-align: left; padding: 14px 16px; font-size: 0.9rem; }

.mfo-cart-promobanner {
    display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
    border: 1px solid var(--mfo-border); background: var(--mfo-surface);
    border-radius: var(--mfo-radius-sm); padding: 14px 18px; margin-bottom: 18px;
}
.mfo-cart-promobanner > .fa-credit-card { color: var(--mfo-accent); font-size: 1.5rem; }
.mfo-cart-promobanner-copy { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.mfo-cart-promobanner-copy strong { font-family: var(--mfo-font-heading); text-transform: uppercase; letter-spacing: 0.03em; }
.mfo-cart-promobanner-copy span { color: var(--mfo-muted); font-size: 0.9rem; }
.mfo-cart-promobanner-cta { margin-left: auto; white-space: nowrap; color: var(--mfo-accent); font-weight: 600; text-decoration: none; display: inline-flex; align-items: center; gap: 6px; }
.mfo-cart-promobanner-cta:hover { text-decoration: underline; }
.mfo-cart-promobanner-cta i { font-size: 0.7em; }

/* remove all, beside the title */
.mfo-cart-removeall {
    border: 0; background: transparent; cursor: pointer; padding: 4px 0;
    color: var(--mfo-muted); font-size: 0.85rem; font-weight: 600;
    display: inline-flex; align-items: center; gap: 6px; align-self: center;
}
.mfo-cart-removeall:hover { color: var(--mfo-accent); }
.mfo-cart-removeall.is-busy { opacity: 0.5; pointer-events: none; }

/* per-item price under a multi-qty line total */
.mfo-cart-peritem { display: block; color: var(--mfo-muted); font-size: 0.78rem; margin-top: 2px; }

/* save for later, subtle under the item copy */
.mfo-cart-savelater {
    border: 0; background: transparent; cursor: pointer; padding: 0; margin-top: 8px;
    display: inline-flex; align-items: center; gap: 6px;
    color: var(--mfo-muted); font-size: 0.8rem; font-weight: 600; text-decoration: none;
}
.mfo-cart-savelater:hover { color: var(--mfo-accent); }
.mfo-cart-savelater.is-busy { opacity: 0.5; pointer-events: none; }

/* Sales tax and savings are real li.cart-total rows emitted by the totals
   override now (see the consolidated .mfo-cartshell block); the hand-rolled
   flex rows that used to sit below the card are gone. */

/* promo-code accordion, now below the total */
.mfo-cart-promoacc { border-bottom: 1px solid var(--mfo-border); margin-top: 4px; }
.mfo-cart-promoacc-toggle {
    width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 12px;
    border: 0; background: transparent; cursor: pointer; padding: 12px 0;
    font: inherit; font-weight: 600; color: var(--mfo-ink); text-align: left;
}
.mfo-cart-promoacc-toggle .fa-tag { color: var(--mfo-accent); margin-right: 6px; font-size: 0.85em; }
.mfo-cart-promoacc-chevron { color: var(--mfo-muted); font-size: 0.75rem; transition: transform 0.18s ease; }
.mfo-cart-promoacc.is-open .mfo-cart-promoacc-chevron { transform: rotate(180deg); }
.mfo-cart-promoacc-body { display: none; padding-bottom: 12px; }
.mfo-cart-promoacc.is-open .mfo-cart-promoacc-body { display: block; }
.mfo-cart-promoacc .cart-coupon-link { color: var(--mfo-accent); font-weight: 600; text-decoration: none; }
.mfo-cart-promoacc .coupon-code-form .form-input { margin-bottom: 8px; }

/* express checkout: BigCommerce renders the wallet buttons, we own the frame */
.mfo-cart-express { margin-top: 14px; text-align: center; }
.mfo-cart-express-head {
    margin: 0 0 8px; color: var(--mfo-muted); font-size: 0.82rem;
    text-transform: uppercase; letter-spacing: 0.06em; font-weight: 600;
}
.mfo-cart-express .cart-additionalCheckoutButtons { margin-top: 0; }

/* promo slot B: accent-tinted offer card in the summary rail */
.mfo-cart-promocard {
    margin-top: 14px; padding: 16px;
    background: color-mix(in srgb, var(--mfo-accent) 9%, transparent);
    border: 1px solid color-mix(in srgb, var(--mfo-accent) 35%, transparent);
    border-radius: var(--mfo-radius-sm);
}
.mfo-cart-promocard > .fa-gift { color: var(--mfo-accent); font-size: 1.15rem; margin-bottom: 6px; display: block; }
.mfo-cart-promocard strong { display: block; font-family: var(--mfo-font-heading); text-transform: uppercase; letter-spacing: 0.03em; font-size: 0.95rem; }
.mfo-cart-promocard p { margin: 4px 0 8px; color: var(--mfo-muted); font-size: 0.88rem; line-height: 1.5; }
.mfo-cart-promocard a { font-size: 0.9rem; display: inline-flex; align-items: center; gap: 6px; }
.mfo-cart-promocard a i { font-size: 0.7em; }

/* help block, bottom of the summary card */
.mfo-cart-help { margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--mfo-border); }
.mfo-cart-help h3 {
    margin: 0 0 8px; font-family: var(--mfo-font-heading); text-transform: uppercase;
    font-size: 0.9rem; letter-spacing: 0.06em;
}
.mfo-cart-help ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 7px; }
.mfo-cart-help li { display: flex; align-items: baseline; gap: 9px; font-size: 0.88rem; color: var(--mfo-muted); }
.mfo-cart-help li i { color: var(--mfo-accent); width: 16px; text-align: center; font-size: 0.85rem; }
.mfo-cart-help li a { font-weight: 600; }

/* recommendation rows under the cart grid */
.mfo-cart-recos { margin-top: clamp(34px, 5vw, 56px); display: flex; flex-direction: column; gap: clamp(30px, 4vw, 48px); }
.mfo-cart-recos:not(:has([data-mfo-cart-recent]:not([hidden]), [data-mfo-cart-also]:not([hidden]))) { margin-top: 0; }
.mfo-cart-recogrid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(170px, 1fr)); gap: 16px;
}
.mfo-cart-reco {
    display: flex; flex-direction: column; gap: 6px;
    border: 1px solid var(--mfo-border); background: var(--mfo-surface);
    padding: 12px; border-radius: var(--mfo-radius-sm);
}
.mfo-cart-reco-media { display: block; aspect-ratio: 1; background: white; }
.mfo-cart-reco-media img { width: 100%; height: 100%; object-fit: contain; }
.mfo-cart-reco-name {
    color: var(--mfo-ink); text-decoration: none; font-weight: 600; font-size: 0.88rem; line-height: 1.35;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.mfo-cart-reco-name:hover { color: var(--mfo-accent); }
.mfo-cart-reco-price { color: var(--mfo-accent); font-weight: 700; font-size: 0.95rem; }
.mfo-cart-reco-add { margin-top: auto; }
.mfo-cart-reco-add.is-busy { opacity: 0.6; pointer-events: none; }

@media (max-width: 900px) {
    .mfo-cart-promobanner-cta { margin-left: 0; }
    .mfo-cart-recogrid { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); }
}

/* ============================================================
   REVISION 2026-07-27: fix-list pass (Sights and Scopes Pro).
   Utility zones, account dropdown, wishlist popover, footer
   link rhythm, cart estimator containment, demo-mode modal,
   content-page full-bleed, spacing passes. Tokens only.
   ============================================================ */

/* header icons: FA glyph sizing to match the remaining SVG icons */
.mfo-icon-btn > i { font-size: 1.16rem; line-height: 1; }
.mfo-icon-btn--wishlist > i { font-size: 1.2rem; }

/* account dropdown: hover/focus opens; every destination one hop away */
.mfo-account { position: relative; display: inline-flex; }
.mfo-account-drop {
    position: absolute; top: 100%; right: -8px; z-index: 80;
    min-width: 200px; padding: 8px 0; margin-top: 10px;
    background: var(--mfo-bg); border: 1px solid var(--mfo-border);
    border-radius: var(--mfo-radius-sm); box-shadow: 0 14px 38px rgba(15, 26, 43, 0.16);
    opacity: 0; visibility: hidden; transform: translateY(6px);
    transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s;
}
.mfo-account-drop::before {
    /* invisible hover bridge across the gap under the icon */
    content: ''; position: absolute; top: -12px; left: 0; right: 0; height: 12px;
}
.mfo-account:hover .mfo-account-drop,
.mfo-account:focus-within .mfo-account-drop {
    opacity: 1; visibility: visible; transform: none;
}
.mfo-account-drop-hi {
    display: block; padding: 8px 16px 10px; margin-bottom: 6px;
    font-size: 0.8rem; font-weight: 700; color: var(--mfo-muted);
    border-bottom: 1px solid var(--mfo-border);
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 230px;
}
.mfo-account-drop a {
    display: flex; align-items: center; gap: 10px;
    padding: 9px 16px; font-size: 0.9rem; font-weight: 600; color: var(--mfo-ink);
}
.mfo-account-drop a i { width: 16px; text-align: center; color: var(--mfo-muted); font-size: 0.85rem; }
.mfo-account-drop a:hover { background: var(--mfo-surface); color: var(--mfo-accent); }
.mfo-account-drop a:hover i { color: var(--mfo-accent); }
.mfo-account-drop .mfo-account-logout { border-top: 1px solid var(--mfo-border); margin-top: 6px; padding-top: 10px; }

/* footer link columns: Figma rhythm — 13px links, 20px line-height,
   10px gaps, no 40px tap-target inflation on desktop */
.mfo-footer-linkregion .mf1-footer-links__list { gap: 10px; }
.mfo-footer-linkregion .mf1-footer-links__link { min-height: 0; font-size: 13px; line-height: 20px; }
@media (max-width: 900px) {
    /* phones keep comfortable tap targets inside the accordions */
    .mfo-footer-linkregion .mf1-footer-links__list { gap: 0; }
    .mfo-footer-linkregion .mf1-footer-links__link { min-height: 40px; font-size: 0.9rem; }
}

/* wishlist popover (PLP cards + PDP link): fixed-position card, placed by
   mfo.js beside the button that opened it */
.mfo-wish-pop {
    position: fixed; z-index: 120; width: 250px; padding: 14px;
    background: var(--mfo-bg); border: 1px solid var(--mfo-border);
    border-radius: var(--mfo-radius-sm); box-shadow: 0 16px 44px rgba(15, 26, 43, 0.2);
}
.mfo-wish-pop[hidden] { display: none; }
.mfo-wish-pop-title {
    margin: 0 0 8px; font-family: var(--mfo-font-heading); text-transform: uppercase;
    font-size: 0.82rem; letter-spacing: 0.06em; color: var(--mfo-ink);
}
.mfo-wish-pop-note { margin: 0 0 12px; font-size: 0.85rem; color: var(--mfo-muted); line-height: 1.5; }
.mfo-wish-pop-lists { display: flex; flex-direction: column; gap: 2px; max-height: 180px; overflow-y: auto; }
.mfo-wish-pop-lists button {
    display: flex; align-items: center; justify-content: space-between; gap: 10px;
    width: 100%; border: 0; background: transparent; cursor: pointer; text-align: left;
    padding: 8px 8px; border-radius: var(--mfo-radius-sm);
    font: inherit; font-size: 0.88rem; font-weight: 600; color: var(--mfo-ink);
}
.mfo-wish-pop-lists button span { color: var(--mfo-muted); font-weight: 400; font-size: 0.8rem; }
.mfo-wish-pop-lists button:hover { background: var(--mfo-surface); color: var(--mfo-accent); }
.mfo-wish-pop-lists button.is-busy { opacity: 0.5; pointer-events: none; }
.mfo-wish-pop-newtoggle {
    display: inline-flex; align-items: center; gap: 7px; margin-top: 8px;
    border: 0; background: transparent; cursor: pointer; padding: 4px 0;
    font: inherit; font-size: 0.85rem; font-weight: 700; color: var(--mfo-accent);
}
.mfo-wish-pop-newtoggle i { font-size: 0.75rem; }
.mfo-wish-pop-new { display: flex; gap: 8px; margin-top: 10px; }
.mfo-wish-pop-new[hidden] { display: none; }
.mfo-wish-pop-new input {
    flex: 1; min-width: 0; padding: 9px 10px; font: inherit; font-size: 0.85rem;
    border: 1px solid var(--mfo-border); border-radius: var(--mfo-radius-sm);
    color: var(--mfo-ink); background: var(--mfo-bg);
}
.mfo-wish-pop-new input:focus { outline: none; border-color: var(--mfo-accent); }
.mfo-wish-pop a.mfo-btn { display: block; text-align: center; }

/* cart summary: estimator + coupon contained inside the card. The estimator
   sits in the row's full-width cell, so no flex-wrap is involved. */
.mfo-cart-summary .shipping-estimator {
    width: 100%; max-width: 100%;
    margin-top: 10px; padding: 12px; box-sizing: border-box;
    background: var(--mfo-bg); border: 1px solid var(--mfo-border); border-radius: var(--mfo-radius-sm);
}
.mfo-cart-summary .shipping-estimator.u-hidden { display: none; }
.mfo-cart-summary .estimator-form { padding-top: 0; margin: 0; }
.mfo-cart-summary .estimator-form dl { display: flex; flex-direction: column; gap: 8px; margin: 0; }
.mfo-cart-summary .estimator-form dt { margin: 0; }
.mfo-cart-summary .estimator-form dd { margin: 0; width: 100%; }
.mfo-cart-summary .estimator-form .form-label { font-size: 0.8rem; margin: 0 0 3px; }
.mfo-cart-summary .estimator-form .form-input,
.mfo-cart-summary .estimator-form .form-select {
    width: 100%; max-width: 100%; box-sizing: border-box; font-size: 0.88rem;
}
.mfo-cart-summary .shipping-estimate-submit { margin-top: 6px; width: 100%; }
.mfo-cart-summary .shipping-quotes { font-size: 0.85rem; }
.mfo-cart-summary .shipping-quotes ul { list-style: none; margin: 10px 0 0; padding: 0; }
.mfo-cart-summary .shipping-estimate-show {
    border: 0; background: transparent; cursor: pointer; padding: 0;
    color: var(--mfo-accent); font-weight: 600; font-size: 0.85rem;
}
.mfo-cart-summary .shipping-estimate-show:hover { text-decoration: underline; }
/* one-click coupon: the accordion header IS the trigger — the inner
   "Apply Coupon Code" link never shows, the form is always visible */
.mfo-cart-promoacc .cart-coupon-trigger { display: none; }
.mfo-cart-promoacc .coupon-code-form,
.mfo-cart-promoacc [data-coupon-form] { display: block !important; }
/* Cornerstone ships .cart-coupons as a floated 151px right rail and floats the
   input and button inside it, which squeezes the field and truncates the
   button label. Neutralize the wrapper, then stack the form full width. */
.mfo-cart-promoacc .cart-coupons,
.mfo-cart-promoacc .coupon-code {
    float: none; width: auto; max-width: none; padding: 0; margin: 0;
}
.mfo-cart-promoacc .coupon-form { display: grid; gap: 10px; width: auto; float: none; }
.mfo-cart-promoacc .coupon-form .form-input,
.mfo-cart-promoacc .coupon-code-form .form-input {
    float: none; width: 100%; max-width: none; min-width: 0; margin: 0;
    box-sizing: border-box; font-size: 0.9rem; height: 46px; padding: 0 14px;
}
/* Apply sits under the field, outlined so it never competes with Check Out. */
.mfo-cart-promoacc .coupon-form .button {
    float: none; width: 100%; margin: 0; white-space: nowrap;
    background: transparent; color: var(--mfo-accent);
    border: 1px solid var(--mfo-accent); border-radius: var(--mfo-radius-sm);
    font-family: var(--mfo-font-heading); text-transform: uppercase;
    letter-spacing: 0.04em; height: 46px; padding: 0 16px;
}
.mfo-cart-promoacc .coupon-form .button:hover {
    background: var(--mfo-accent); color: var(--mfo-on-btn);
}
.mfo-cart-promoacc .cart-coupon-display { margin-top: 10px; }
.mfo-cart-promoacc .cart-coupon-list { list-style: none; margin: 0; padding: 0; font-size: 0.85rem; }

/* cart page: breathing room between the reco rows and the footer */
.mfo-cartshell .page-content { padding-bottom: 56px; }
.mfo-cart-recos { margin-bottom: 0; }

/* PDP: bottom spacing under YOU MAY ALSO LIKE */
.mfo-pdp-related { margin-bottom: 56px; }

/* care hub: social row under Business Hours in the contact stack */
.mfo-care-social { display: flex; gap: 10px; margin-top: 4px; }
.mfo-care-social a {
    display: inline-flex; align-items: center; justify-content: center;
    width: 40px; height: 40px; border: 1px solid var(--mfo-border);
    color: var(--mfo-accent); font-size: 0.95rem; text-decoration: none;
    transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.mfo-care-social a:hover { background: var(--mfo-accent); border-color: var(--mfo-accent); color: var(--mfo-ink); }

/* content pages (pages/page.html): no top gap, hero widgets full bleed */
.mfo-contentpage { padding-top: 0; margin-top: 0; }
.mfo-contentpage .page-content--centered { padding: 0; }
.mfo-contentpage .page-content--centered > p:empty { display: none; }
.mfo-contentpage .mf1-hero-full,
.mfo-contentpage .mf1-hero-split,
.mfo-contentpage .mf1-hero-carousel {
    width: 100vw; max-width: 100vw;
    margin-left: calc(50% - 50vw); margin-right: calc(50% - 50vw);
}

/* demo-mode modal (mfo.js builds it when checkout is intercepted) */
.mfo-demo-scrim {
    position: fixed; inset: 0; z-index: 140;
    background: rgba(8, 12, 20, 0.55); display: grid; place-items: center; padding: 20px;
}
.mfo-demo-modal {
    max-width: 440px; width: 100%; padding: 34px 30px; text-align: center;
    background: var(--mfo-bg); border-radius: var(--mfo-radius); box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
}
.mfo-demo-modal > i { font-size: 1.9rem; color: var(--mfo-accent); margin-bottom: 12px; display: block; }
.mfo-demo-modal h3 {
    margin: 0 0 8px; font-family: var(--mfo-font-heading); text-transform: uppercase;
    font-size: 1.3rem; color: var(--mfo-ink);
}
.mfo-demo-modal p { margin: 0 0 20px; color: var(--mfo-body); line-height: 1.6; font-size: 0.95rem; }
.mfo-demo-modal .mfo-btn { width: 100%; }

/* solid brand chips take the computed contrast ink (orange brand -> dark
   ink; dark brand -> white). Fallback keeps pre-token builds unchanged. */
.mfo-nav-master > a { color: var(--mfo-brand-ink, var(--mfo-on-brand)); }
.mfo-cart-count { color: var(--mfo-brand-ink, var(--mfo-on-brand)); }

/* ============================================================
   BLOCK: nav — REVISION 2026-07-27: mega-vision (Master Menu,
   Full Width). Edge-to-edge category sheet anchored under the
   bar: left rail of departments drives a stage of subcategory
   links + live category image tiles, promo slot far right,
   quick-link footer over a 6px hazard stripe. Scoped entirely
   to [data-mfo-nav="mega-vision"]; older variants untouched.
   ============================================================ */
[data-mfo-nav="mega-vision"] .mfo-nav-master { display: block; position: static; }
[data-mfo-nav="mega-vision"] .mfo-navbar-row { justify-content: flex-start; }
[data-mfo-nav="mega-vision"] .mfo-nav-master-panel,
[data-mfo-nav="mega-vision"] .mfo-megamenu { display: none !important; }
[data-mfo-nav="mega-vision"] .mfo-master-label { display: none; }
[data-mfo-nav="mega-vision"] .mfo-master-label--mega { display: inline; text-transform: uppercase; }
[data-mfo-nav="mega-vision"] .mfo-nav-master > a {
    background: var(--mfo-accent); color: var(--mfo-utility-ink, var(--mfo-ink));
    border-radius: 0; text-transform: uppercase; letter-spacing: 0.06em;
    font-family: var(--mfo-font-heading); transition: filter 0.18s ease;
}
[data-mfo-nav="mega-vision"] .mfo-nav-master > a:hover,
[data-mfo-nav="mega-vision"] .mfo-nav-master > a[aria-expanded="true"] { filter: brightness(1.07); }

/* top-bar links: uppercase, tracking, accent underline slide */
[data-mfo-nav="mega-vision"] .mfo-navbar-item > a {
    position: relative; border-bottom: none; padding: 17px 2px;
    font-family: var(--mfo-font-heading); font-weight: 600; font-size: 0.86rem;
    text-transform: uppercase; letter-spacing: 0.08em;
}
[data-mfo-nav="mega-vision"] .mfo-navbar-item > a::after {
    content: ''; position: absolute; left: 0; right: 0; bottom: 11px; height: 2px;
    background: var(--mfo-accent); transform: scaleX(0); transform-origin: left center;
    transition: transform 0.22s ease;
}
[data-mfo-nav="mega-vision"] .mfo-navbar-item > a:hover { color: var(--mfo-nav-hover-ink); }
[data-mfo-nav="mega-vision"] .mfo-navbar-item > a:hover::after { transform: scaleX(1); }

/* the sheet: full width, squared, strong shadow, 180ms rise */
[data-mfo-nav="mega-vision"] .mfo-vision {
    position: absolute; top: 100%; left: 0; right: 0; z-index: 45;
    background: var(--mfo-bg); border-radius: 0;
    box-shadow: 0 32px 64px rgba(0, 0, 0, 0.35), 0 8px 20px rgba(0, 0, 0, 0.18);
    opacity: 0; transform: translateY(-10px); visibility: hidden; pointer-events: none;
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0s linear 0.18s;
}
[data-mfo-nav="mega-vision"] .mfo-vision.is-open {
    opacity: 1; transform: none; visibility: visible; pointer-events: auto;
    transition: opacity 0.18s ease, transform 0.18s ease;
}
.mfo-vision::after {
    content: ''; display: block; height: 6px;
    background: repeating-linear-gradient(135deg, var(--mfo-accent) 0 9px, var(--mfo-ink) 9px 18px);
}
.mfo-vision-inner {
    display: grid; grid-template-columns: 264px minmax(0, 1fr) 300px;
    gap: clamp(22px, 3vw, 40px); padding-block: 26px 30px; align-items: stretch;
}

/* left rail: departments */
.mfo-vision-rail {
    display: flex; flex-direction: column;
    border-right: 1px solid var(--mfo-border); padding-right: clamp(14px, 2vw, 26px);
}
.mfo-vision-railitem {
    position: relative; display: flex; align-items: center; justify-content: space-between; gap: 12px;
    padding: 12px 6px 12px 16px;
    font-family: var(--mfo-font-heading); font-weight: 600; font-size: 15px;
    letter-spacing: 0.04em; text-transform: uppercase; color: var(--mfo-ink);
    border-bottom: 1px solid color-mix(in srgb, var(--mfo-border) 78%, var(--mfo-hairline));
}
.mfo-vision-rail .mfo-vision-railitem:last-child { border-bottom: 0; }
.mfo-vision-railitem::before {
    content: ''; position: absolute; left: 0; top: 8px; bottom: 8px; width: 3px;
    background: var(--mfo-accent); transform: scaleY(0); transition: transform 0.15s ease;
}
.mfo-vision-railitem i { font-size: 0.6rem; color: var(--mfo-muted); }
.mfo-vision-railitem:hover, .mfo-vision-railitem.is-active { color: var(--mfo-accent); }
.mfo-vision-railitem:hover i, .mfo-vision-railitem.is-active i { color: var(--mfo-accent); }
.mfo-vision-railitem:hover::before, .mfo-vision-railitem.is-active::before { transform: none; }

/* stage: subcategory link grid + image tiles for the active department */
.mfo-vision-stage { min-height: 300px; display: flex; flex-direction: column; }
.mfo-vision-pane { display: flex; flex-direction: column; flex: 1; }
.mfo-vision-pane[hidden] { display: none; }
.mfo-vision-links {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 10px 26px; align-content: start;
}
.mfo-vision-links a { font-size: 14px; font-weight: 500; color: var(--mfo-muted); }
.mfo-vision-links a:hover { color: var(--mfo-ink); }
.mfo-vision-tiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 20px; }
.mfo-vision-tiles:empty { display: none; margin: 0; }
.mfo-vision-tiles .mfo-vision-tile:nth-child(n+4) { display: none; }
.mfo-vision-tile {
    position: relative; display: block; overflow: hidden;
    border-radius: var(--mfo-radius-sm); background: var(--mfo-surface);
}
.mfo-vision-tile img { width: 100%; height: 160px; object-fit: cover; display: block; transition: transform 0.4s ease; }
.mfo-vision-tile:hover img { transform: scale(1.05); }
.mfo-vision-tile-label {
    position: absolute; left: 0; right: 0; bottom: 0; z-index: 1; padding: 26px 12px 10px;
    font-family: var(--mfo-font-heading); font-weight: 700; font-size: 0.88rem; letter-spacing: 0.02em;
    color: var(--mfo-on-brand);
    background: linear-gradient(180deg, transparent, color-mix(in srgb, var(--mfo-ink) 82%, transparent));
}
.mfo-vision-tile--lg img { height: 240px; }
.mfo-vision-solo { display: flex; flex-direction: column; gap: 4px; }
.mfo-vision-solo .mfo-vision-tile--lg { max-width: 420px; }
.mfo-vision-shopall {
    display: inline-flex; align-items: center; gap: 8px; margin-top: 18px;
    font-family: var(--mfo-font-heading); font-weight: 700; font-size: 0.8rem;
    letter-spacing: 0.05em; text-transform: uppercase; color: var(--mfo-accent);
}
.mfo-vision-shopall:hover { color: var(--mfo-ink); }
.mfo-vision-shopall i { font-size: 0.65rem; }

/* promo slot: the wide-banner look, far right */
.mfo-vision-promo { position: relative; display: flex; overflow: hidden; min-height: 300px; background: var(--mfo-ink); }
.mfo-vision-promo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.mfo-vision-promo:hover img { transform: scale(1.04); }
.mfo-vision-promo::before {
    content: ''; position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(180deg, transparent 30%, color-mix(in srgb, var(--mfo-ink) 86%, transparent));
}
.mfo-vision-promo-body {
    position: relative; z-index: 2; margin-top: auto;
    display: flex; flex-direction: column; gap: 8px; padding: 18px;
}
.mfo-vision-promo-title {
    font-family: var(--mfo-font-heading); font-weight: 800; font-size: 1.35rem; line-height: 1.1;
    letter-spacing: 0.01em; text-transform: uppercase; color: var(--mfo-on-brand);
}
.mfo-vision-promo-title strong { color: var(--mfo-accent); font-weight: inherit; }
.mfo-vision-promo-cta { display: inline-flex; align-items: center; gap: 8px; font-size: 0.95rem; font-weight: 600; color: var(--mfo-on-brand); }
.mfo-vision-promo-cta i { font-size: 0.7rem; color: var(--mfo-accent); transition: transform 0.2s ease; }
.mfo-vision-promo:hover .mfo-vision-promo-cta i { transform: translateX(4px); }

/* footer strip: quick links on the surface tint above the stripe */
.mfo-vision-foot { border-top: 1px solid var(--mfo-border); background: var(--mfo-surface); }
.mfo-vision-footrow { display: flex; flex-wrap: wrap; gap: clamp(16px, 3vw, 34px); padding-block: 12px; }
.mfo-vision-footrow a {
    font-family: var(--mfo-font-heading); font-weight: 600; font-size: 0.78rem;
    letter-spacing: 0.08em; text-transform: uppercase; color: var(--mfo-muted);
}
.mfo-vision-footrow a:hover { color: var(--mfo-accent); }

/* narrow desktops: fold the promo away before it crowds the stage */
@media (max-width: 1180px) {
    .mfo-vision-inner { grid-template-columns: 220px minmax(0, 1fr); }
    .mfo-vision-promo { display: none; }
}
/* mobile handled by the burger drawer; never leak below 900px */
@media (max-width: 900px) {
    [data-mfo-nav="mega-vision"] .mfo-vision { display: none; }
}
@media (prefers-reduced-motion: reduce) {
    [data-mfo-nav="mega-vision"] .mfo-vision,
    [data-mfo-nav="mega-vision"] .mfo-vision.is-open,
    [data-mfo-nav="mega-vision"] .mfo-navbar-item > a::after,
    .mfo-vision-railitem::before,
    .mfo-vision-tile img, .mfo-vision-promo img, .mfo-vision-promo-cta i { transition: none; }
}

/* ============================================================
   REVISION: Pro AOV suite — PDP bundle (COMPLETE THE SETUP),
   drawer smart threshold nudge, bulk pricing table. Gates:
   bundle = body[data-mfo-pdp-plus="full"] (markup is also
   server-gated on mfo_pdpplus_style), nudge = slide-out-upsell
   markup only (belt-and-suspenders hide for plain slide-out).
   Bulk table is native BC data, every tier.
   ============================================================ */

/* PDP bulk pricing: compact table under the price */
.mfo-pdp-bulk { margin: 14px 0 4px; }
.mfo-pdp-bulk-title {
    display: flex; align-items: center; gap: 8px;
    font-family: var(--mfo-font-heading); text-transform: uppercase; letter-spacing: 0.05em;
    font-size: 0.85rem; color: var(--mfo-ink); margin-bottom: 8px;
}
.mfo-pdp-bulk-title i { color: var(--mfo-accent); }
.mfo-bulk-table { width: auto; min-width: 240px; border-collapse: collapse; font-size: 0.85rem; }
.mfo-bulk-table th, .mfo-bulk-table td { border: 1px solid var(--mfo-border); padding: 7px 16px; text-align: left; }
.mfo-bulk-table thead th {
    background: var(--mfo-surface); font-family: var(--mfo-font-heading);
    text-transform: uppercase; letter-spacing: 0.05em; font-size: 0.72rem; color: var(--mfo-muted);
}
.mfo-bulk-table td:last-child { font-weight: 700; color: var(--mfo-accent); }

/* PDP bundle: this product + related picks with one add button */
body:not([data-mfo-pdp-plus="full"]) .mfo-pdp-bundle { display: none !important; }
.mfo-pdp-bundle { margin-top: clamp(34px, 4.5vw, 60px); }
.mfo-bundle-items { display: flex; align-items: stretch; gap: 14px; flex-wrap: wrap; }
.mfo-bundle-item {
    display: flex; align-items: center; gap: 12px; flex: 1 1 260px; max-width: 380px;
    border: 1px solid var(--mfo-border); border-radius: var(--mfo-radius-sm);
    background: var(--mfo-card, white); padding: 14px; cursor: pointer;
}
.mfo-bundle-item:has(input:checked) { border-color: var(--mfo-accent); }
.mfo-bundle-item input { width: 18px; height: 18px; accent-color: var(--mfo-accent); flex: none; cursor: pointer; }
.mfo-bundle-item img { width: 72px; height: 72px; object-fit: contain; background: var(--mfo-surface); border-radius: var(--mfo-radius-sm); flex: none; }
.mfo-bundle-item-info { min-width: 0; }
.mfo-bundle-flag {
    display: inline-block; font-style: normal; font-size: 0.68rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.07em; color: var(--mfo-muted); margin-bottom: 3px;
}
.mfo-bundle-item-info strong { display: block; font-size: 0.9rem; line-height: 1.35; color: var(--mfo-ink); }
.mfo-bundle-item-price { display: block; font-size: 0.85rem; font-weight: 700; color: var(--mfo-accent); margin-top: 3px; }
.mfo-bundle-plus { display: flex; align-items: center; color: var(--mfo-muted); font-size: 0.9rem; }
.mfo-bundle-foot { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; margin-top: 18px; }
.mfo-bundle-total { font-size: 0.95rem; color: var(--mfo-ink); }
.mfo-bundle-total strong { font-family: var(--mfo-font-heading); font-size: 1.15rem; letter-spacing: 0.02em; }
.mfo-bundle-foot .mfo-btn[disabled] { opacity: 0.5; pointer-events: none; }
@media (max-width: 700px) {
    .mfo-bundle-plus { display: none; }
    .mfo-bundle-item { max-width: none; }
}

/* drawer smart threshold nudge: sits under the shipping meter */
body[data-mfo-cart-experience="slide-out"] .mfo-drawer-nudge { display: none; }
.mfo-drawer-nudge { border-bottom: 1px solid var(--mfo-border); background: var(--mfo-surface); padding: 12px 22px 14px; }
.mfo-drawer-nudge-note { font-size: 0.82rem; color: var(--mfo-ink); margin-bottom: 10px; }
.mfo-drawer-nudge-note strong { color: var(--mfo-accent); }
.mfo-drawer-nudge .mfo-drawer-upsell-items { display: flex; flex-direction: column; gap: 10px; }
.mfo-drawer-nudge .mfo-drawer-upsell-item img { background: var(--mfo-bg); }

/* drawer line qty stepper: compact, never stretched by the line grid */
.mfo-cart-line .mfo-qty { width: max-content; justify-self: start; }
.mfo-cart-line .mfo-qty button { padding: 8px 12px; }

/* ============================================================
   BLOCK: nav — REVISION 2026-07-27: Navigation v2 (NAV_STUDY).
   Deals pinning with accent, depth-3 stage columns (L2 headings
   + L3 links), width-aware priority tuck, promo fallback chain.
   Tokens only; scoped to nav classes, older variants untouched.
   ============================================================ */
/* deals pinned first: accent ink wherever the entry appears */
.mfo-navbar-item--deal > a { color: var(--mfo-accent); font-weight: 700; }
.mfo-navbar-item--deal > a:hover { color: var(--mfo-accent); }
[data-mfo-nav="mega-vision"] .mfo-navbar-item--deal > a { color: var(--mfo-accent); }
[data-mfo-nav="mega-vision"] .mfo-navbar-item--deal > a::after { transform: scaleX(1); }
[data-mfo-nav-topbar="button-only"] .mfo-navbar-item--deal,
[data-mfo-nav-topbar="utility-only"] .mfo-navbar-item--deal { display: block; }
.mfo-vision-railitem--deal, .mfo-vision-railitem--deal i { color: var(--mfo-accent); }
.mfo-vision-railitem--deal::before { transform: none; }
.mfo-nav-master-panel .mfo-master-deal { color: var(--mfo-accent); font-weight: 700; }

/* width-aware caps: items the priority pass tucked away */
.mfo-navbar-item.is-tucked { display: none !important; }

/* depth-3 stage: L2 group headings with L3 links, balanced columns */
.mfo-vision-groups { columns: 3 200px; column-gap: clamp(20px, 3vw, 40px); }
.mfo-vision-group { break-inside: avoid; margin-bottom: 20px; }
.mfo-vision-group-head {
    display: block; margin-bottom: 8px;
    font-family: var(--mfo-font-heading); font-weight: 700; font-size: 0.82rem;
    letter-spacing: 0.07em; text-transform: uppercase; color: var(--mfo-ink);
}
.mfo-vision-group-head:hover { color: var(--mfo-accent); }
.mfo-vision-group-link { display: block; padding: 3px 0; font-size: 14px; font-weight: 500; color: var(--mfo-muted); }
.mfo-vision-group-link:hover { color: var(--mfo-ink); }
.mfo-vision-group-more {
    display: inline-flex; align-items: center; gap: 6px; margin-top: 4px;
    font-size: 0.76rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.05em; color: var(--mfo-accent);
}
.mfo-vision-group-more i { font-size: 0.6rem; }

/* promo chain, banner link: BC marketing banner HTML in the slot */
.mfo-vision-promo--banner {
    display: flex; flex-direction: column; justify-content: center;
    padding: 20px; color: var(--mfo-on-brand); font-size: 0.95rem; line-height: 1.5;
}
.mfo-vision-promo--banner a { color: var(--mfo-accent); text-decoration: underline; }
.mfo-vision-promo--banner p { margin: 0 0 8px; }

/* mega-vision footer: All Departments directory link leads the row */
.mfo-vision-footrow-all { color: var(--mfo-accent) !important; display: inline-flex; align-items: center; gap: 7px; }
.mfo-vision-footrow-all:hover { color: var(--mfo-ink) !important; }
.mfo-vision-footrow-all i { font-size: 0.7rem; }

/* ── mobile chip bar: swipeable L1 chips under the header (<=900px) ──
   Sticky under the top edge; mfo.js adds is-collapsed on scroll down
   and removes it on scroll up. Desktop never sees it. */
.mfo-chipbar { display: none; }
@media (max-width: 900px) {
    .mfo-chipbar {
        display: block; position: sticky; top: 0; z-index: 60;
        background: var(--mfo-nav-bg); border-bottom: 1px solid var(--mfo-border);
        transition: transform 0.24s ease, opacity 0.18s ease;
    }
    .mfo-chipbar.is-collapsed { transform: translateY(-110%); opacity: 0; pointer-events: none; }
    .mfo-chipbar-track {
        display: flex; gap: 8px; padding: 10px 14px;
        overflow-x: auto; scroll-snap-type: x proximity;
        -webkit-overflow-scrolling: touch; scrollbar-width: none;
    }
    .mfo-chipbar-track::-webkit-scrollbar { display: none; }
    .mfo-chipbar-chip {
        flex: 0 0 auto; scroll-snap-align: start; white-space: nowrap;
        padding: 7px 14px; border: 1px solid var(--mfo-border);
        border-radius: 999px; font-size: 0.82rem; font-weight: 600;
        font-family: var(--mfo-font-heading); letter-spacing: 0.02em;
        color: var(--mfo-nav-ink); background: var(--mfo-nav-bg);
    }
    .mfo-chipbar-chip:active { background: var(--mfo-surface); }
    .mfo-chipbar-chip--deal {
        border-color: var(--mfo-accent); background: var(--mfo-accent);
        color: var(--mfo-utility-ink, var(--mfo-ink)); font-weight: 700;
    }
    .mfo-chipbar-chip--feature { border-color: color-mix(in srgb, var(--mfo-accent) 55%, var(--mfo-border)); color: var(--mfo-accent); }
}
@media (prefers-reduced-motion: reduce) {
    .mfo-chipbar { transition: none; }
}

/* ============================================================
   BLOCK: nav — REVISION 2026-07-27 (density polish): bar labels
   never wrap, one consistent row height center-aligned, and the
   vision empty-state pane (childless + imageless category) fills
   with a compact product tile row that mfo.js populates.
   ============================================================ */
/* labels on one line, always: the priority-fit JS measures true
   overflow and tucks, instead of flexbox squeezing text onto 2-3
   ragged lines (the old NIGHT VISION SCOPES three-liner). */
.mfo-navbar-item > a { white-space: nowrap; }
.mfo-navbar-row { align-items: center; }
.mfo-navbar-item { display: flex; align-items: center; }

/* empty-state pane: Shop all link reads as the pane header */
.mfo-vision-shopall--head {
    margin-top: 0; margin-bottom: 4px;
    font-family: var(--mfo-font-heading); font-weight: 700;
    font-size: 0.9rem; letter-spacing: 0.06em; text-transform: uppercase;
    color: var(--mfo-ink);
}
.mfo-vision-shopall--head:hover { color: var(--mfo-accent); }

/* compact product cards (image / name / price), max 4 across */
.mfo-vision-products {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 14px; margin-top: 14px;
}
.mfo-vision-products:empty { display: none; margin: 0; }
.mfo-vision-product {
    display: flex; flex-direction: column; gap: 6px;
    background: var(--mfo-surface); border: 1px solid var(--mfo-border);
    padding: 10px; text-decoration: none;
}
.mfo-vision-product img {
    width: 100%; aspect-ratio: 4 / 3; object-fit: contain;
    background: var(--mfo-bg); display: block;
}
.mfo-vision-product-name {
    font-size: 13px; font-weight: 600; color: var(--mfo-ink); line-height: 1.35;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.mfo-vision-product-price { font-size: 13px; font-weight: 700; color: var(--mfo-accent); }
.mfo-vision-product:hover .mfo-vision-product-name { color: var(--mfo-accent); }

/* utility note as a link (mfo_announce_link): inherits the strip's ink so it
   never looks like a stray blue link, underlines only on hover/focus. */
.mfo-utility-note--link { color: inherit; text-decoration: none; }
.mfo-utility-note--link:hover,
.mfo-utility-note--link:focus-visible { text-decoration: underline; }

/* Anchor buttons inside MFO blocks: the containment reset in mfo-theme-base.css
   (`:is(.mfo-drawer, ...) a { color: inherit }`, specificity 0-1-1) out-ranks
   `.mfo-btn` (0-1-0), so drawer/hero CTAs were inheriting Cornerstone's body
   gray instead of the button ink. This 0-2-1 rule restores the token. */
:is(.mfo-utility, .mfo-header, .mfo-navbar, .mfo-nav-master-panel, .mfo-announce, .mfo-hero,
    .mfo-section, .mfo-home, .mfo-footer, .mfo-news, .mfo-cathead, .mfo-toolbar,
    .mfo-404, .mfo-shipbar, .mfo-drawer, .mfo-cartpage, .mfo-cartshell, .mfo-plp)
    :is(a.mfo-btn, a.button--primary):not(.mfo-btn--ghost) {
    color: var(--mfo-on-btn);
}

/* the drawer's "View Cart" is a ghost/outline button beside the solid-fill
   "Checkout" — it has no orange background, so forcing on-btn (white) ink
   on it made it invisible. Keep it in the accent orange it was designed
   for instead of the ghost default's brand-teal. */
.mfo-drawer-foot .mfo-btn--ghost {
    color: var(--mfo-accent);
    box-shadow: inset 0 0 0 2px var(--mfo-accent);
}
.mfo-drawer-foot .mfo-btn--ghost:hover { background: color-mix(in srgb, var(--mfo-accent) 8%, transparent); }
