/*
Theme Name: Midwest Monica
Theme URI: https://midwestmonica.com/
Author: Monica Hillenbrand
Author URI: https://midwestmonica.com/
Description: A one-page StoryBrand landing theme for Monica Hillenbrand — Private Label Strategist. Full Site Editing (block) theme: header, footer, and every section are editable in the WordPress Site Editor, with each section available as a block pattern. Earthy, credible, down-to-earth, built on the Reliance Vitamin brand palette.
Version: 2.28.0
Requires at least: 6.1
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: custom-theme
Tags: one-page, landing-page, full-site-editing, block-patterns, custom-colors, editor-style, translation-ready
*/

/* ============================================================
   Midwest Monica — Private Label Strategist
   Landing page styles
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  /* Earthy Reliance palette — extracted from Why Reliance brochure */
  --cream:       #F6EDDA;   /* warm parchment */
  --cream-deep:  #EDE1C6;   /* deeper parchment */
  --paper:       #FAF6EC;   /* near-white cream */
  --sand:        #E9DECA;   /* warm sand for banded sections */
  --ink:         #414042;   /* brochure warm charcoal — not cold black */
  --ink-soft:    #666968;   /* brochure warm gray */
  --ink-faint:   #8a8c87;   /* muted mid-tone */
  --forest:      #2E3D1E;   /* deep earthy olive-forest (anchor / footer) */
  --forest-2:    #3D5126;   /* lifted olive */
  --brand-green: #00903f;   /* exact brochure primary green */
  --leaf:        #67d045;   /* exact brochure bright leaf */
  --sage:        #8caa73;   /* brochure earthy muted sage */
  --olive:       #93a674;   /* brochure warm olive */
  --olive-deep:  #70895c;   /* brochure deep olive */
  --reliance-gray:#666968;
  --line:        rgba(65,64,66,0.13);
  --line-soft:   rgba(65,64,66,0.07);

  --accent:      var(--brand-green);
  --accent-deep: #007a35;

  --font-display: 'Newsreader', Georgia, 'Times New Roman', serif;
  --font-body:    'Hanken Grotesk', system-ui, -apple-system, sans-serif;
  --font-hand:    'Caveat', cursive;

  --maxw: 1180px;
  --gutter: clamp(20px, 5vw, 64px);
  --radius: 18px;
  --radius-lg: 28px;

  --shadow-sm: 0 2px 10px rgba(46,61,30,0.07);
  --shadow:    0 18px 50px -22px rgba(46,61,30,0.30);
  --shadow-lg: 0 40px 90px -40px rgba(46,61,30,0.42);
}

/* Palette themes — all grounded in the brochure palette */
[data-theme="sage"] {
  /* Sage-forward: sage as the primary accent */
  --accent:      #70895c;   /* brochure deep olive */
  --accent-deep: #556b46;
  --leaf:        #8caa73;
  --forest:      #2E3D1E;
  --forest-2:    #3D5126;
  --cream:       #F6EDDA;
  --sand:        #E6DCC6;
}
[data-theme="olive"] {
  /* Warm olive — brochure secondary palette */
  --accent:      #93a674;   /* brochure warm olive */
  --accent-deep: #70895c;
  --leaf:        #8caa73;
  --forest:      #2E3D1E;
  --forest-2:    #3A4A25;
  --cream:       #F8F2E2;
  --sand:        #EAE0CA;
}
[data-theme="forest"] {
  /* Default — primary brand green anchored to brochure */
}

[data-accent="sage"]  { --accent: #8caa73; --accent-deep: #70895c; }
[data-accent="olive"] { --accent: #93a674; --accent-deep: #70895c; }

/* ---------- Reset / base ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  font-size: 18px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1,h2,h3,h4 { margin: 0; font-weight: 500; }
p { margin: 0; text-wrap: pretty; }

/* ---------- Type helpers ---------- */
/* eyebrow accent line color */
.eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--olive-deep);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 1.5px;
  background: var(--accent);
  display: inline-block;
}
.eyebrow.center::after {
  content: "";
  width: 26px; height: 1.5px;
  background: var(--accent);
  display: inline-block;
}
.hand {
  font-family: var(--font-hand);
  font-weight: 600;
  color: var(--olive-deep);
  line-height: 1;
}
body[data-hand="off"] .hand-swap { display: none !important; }

.display {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -0.01em;
}
body[data-headline="sans"] .display {
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: -0.02em;
}
.h1 { font-size: clamp(40px, 6.2vw, 78px); }
.h2 { font-size: clamp(31px, 4.4vw, 52px); }
.h3 { font-size: clamp(23px, 2.6vw, 31px); }
.lead { font-size: clamp(18px, 2.1vw, 22px); color: var(--ink-soft); line-height: 1.55; }
.muted { color: var(--ink-soft); }

/* ---------- Layout ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gutter); }
section { position: relative; }
.section-pad { padding-block: clamp(72px, 11vw, 138px); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 15px 28px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .25s cubic-bezier(.2,.8,.2,1), box-shadow .25s, background .25s, color .25s;
  white-space: nowrap;
  line-height: 1;
}
.btn svg { width: 17px; height: 17px; transition: transform .25s; }
.btn:hover svg { transform: translateX(3px); }
.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 12px 26px -12px color-mix(in srgb, var(--accent) 80%, #000);
}
.btn-primary:hover { background: var(--accent-deep); transform: translateY(-2px); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-ghost:hover { border-color: var(--ink); transform: translateY(-2px); }
.btn-light {
  background: var(--cream);
  color: var(--forest);
}
.btn-light:hover { background: #fff; transform: translateY(-2px); }
.btn-outline-light {
  background: transparent; color: var(--cream);
  border-color: rgba(244,238,226,0.4);
}
.btn-outline-light:hover { border-color: var(--cream); transform: translateY(-2px); }

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px var(--gutter);
  transition: background .35s, box-shadow .35s, padding .35s, border-color .35s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: color-mix(in srgb, var(--cream) 88%, transparent);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  border-color: var(--line-soft);
  padding-block: 12px;
  box-shadow: 0 8px 30px -22px rgba(27,59,42,0.4);
}
.brand { display: flex; flex-direction: column; line-height: 1; }
.brand .name {
  font-family: var(--font-display);
  font-size: 25px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.brand .role {
  font-size: 10.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--olive-deep);
  margin-top: 4px;
  font-weight: 600;
}
.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links .lnk {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-soft);
  position: relative;
  transition: color .2s;
}
.nav-links .lnk::after {
  content: ""; position: absolute; left: 0; bottom: -6px; height: 1.5px; width: 0;
  background: var(--accent); transition: width .25s;
}
.nav-links .lnk:hover { color: var(--ink); }
.nav-links .lnk:hover::after { width: 100%; }
.nav .btn { padding: 11px 22px; font-size: 15px; }
.nav-toggle { display: none; }

/* wp_nav_menu output normalization — works for both the assigned menu
   (bare <li> items) and the anchor fallback (<ul class="nav-menu">). */
.nav-links ul,
.nav-links li,
.footer .links ul,
.footer .links li { list-style: none; margin: 0; padding: 0; }
.nav-links ul { display: contents; }
.nav-links li a,
.nav-links .lnk {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-soft);
  position: relative;
  transition: color .2s;
}
.nav-links li a::after,
.nav-links .lnk::after {
  content: ""; position: absolute; left: 0; bottom: -6px; height: 1.5px; width: 0;
  background: var(--accent); transition: width .25s;
}
.nav-links li a:hover,
.nav-links .lnk:hover { color: var(--ink); }
.nav-links li a:hover::after,
.nav-links .lnk:hover::after { width: 100%; }
.footer .links ul { display: contents; }
.footer .links li a { font-size: 15px; transition: color .2s; }
.footer .links li a:hover { color: var(--cream); }

/* ---------- Hero ---------- */
.hero { padding-top: 132px; padding-bottom: clamp(60px,9vw,110px); overflow: hidden; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(36px, 6vw, 88px);
  align-items: center;
}
.hero h1 { margin: 22px 0 0; }
.hero h1 em {
  font-style: italic;
  color: var(--olive-deep);
}
.hero .lead { margin-top: 26px; max-width: 30ch; }
.hero-cta { margin-top: 38px; display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.hero-note { margin-top: 22px; font-size: 14.5px; color: var(--ink-soft); display: flex; align-items: center; gap: 9px; }
.hero-hand {
  font-size: 30px;
  transform: rotate(-4deg);
  display: inline-block;
  margin-bottom: -4px;
}

/* layered photo */
.hero-figure { position: relative; justify-self: center; width: 100%; max-width: 440px; }
.hero-figure .blob {
  position: absolute; inset: -6% -8% -10% 6%;
  background: var(--sage);
  border-radius: 49% 51% 47% 53% / 58% 56% 44% 42%;
  z-index: 0;
  opacity: 0.85;
}
.hero-figure .ring {
  position: absolute; inset: 2% -4% -8% -8%;
  border: 1.5px solid var(--line);
  border-radius: 52% 48% 53% 47% / 55% 52% 48% 45%;
  z-index: 0;
}
.hero-figure .image-slot {
  position: relative; z-index: 2;
  width: 100%; height: auto; aspect-ratio: 4/5;
  border-radius: 220px 220px 22px 22px;
  box-shadow: var(--shadow-lg);
}
.hero-badge {
  position: absolute; z-index: 3;
  bottom: 26px; left: -28px;
  background: var(--paper);
  border-radius: 16px;
  padding: 14px 18px;
  box-shadow: var(--shadow);
  display: flex; align-items: center; gap: 12px;
  border: 1px solid var(--line-soft);
}
.hero-badge .num { font-family: var(--font-display); font-size: 30px; color: var(--olive-deep); line-height: 1; }
.hero-badge .lbl { font-size: 12px; line-height: 1.3; color: var(--ink-soft); max-width: 13ch; }

/* ---------- Image slots ----------
   In the prototype these were a custom <image-slot> drag-to-fill element.
   For production they are real, replaceable photo frames: drop an <img> in
   (or set a CSS background) to swap in a real photo. Empty frames render a
   warm placeholder with the caption from data-placeholder. */
.image-slot {
  background: var(--cream-deep);
  color: var(--ink-soft);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 24px;
  overflow: hidden;
}
.image-slot img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: inherit;
}
.image-slot::after {
  content: attr(data-placeholder);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .02em;
  color: var(--ink-faint);
  max-width: 22ch;
  line-height: 1.4;
}
.image-slot.has-image { padding: 0; }
.image-slot.has-image::after { content: none; }

/* leaf motif */
.leaf-mark { width: 1em; height: 1em; flex: none; color: var(--olive-deep); }

/* ---------- Lead magnet ---------- */
.leadmag { margin-top: -10px; }
.leadmag-card {
  position: relative;
  background: var(--forest);
  color: var(--cream);
  border-radius: var(--radius-lg);
  padding: clamp(30px, 4vw, 48px) clamp(28px, 4vw, 56px);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.leadmag-card::after {
  content: ""; position: absolute; right: -60px; top: -60px;
  width: 260px; height: 260px; border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, color-mix(in srgb, var(--sage) 60%, transparent), transparent 70%);
}
.leadmag-card .eyebrow { color: var(--sage); }
.leadmag-card .eyebrow::before { background: var(--sage); }
.leadmag h3 { color: var(--cream); margin-top: 14px; }
.leadmag p { color: color-mix(in srgb, var(--cream) 78%, transparent); margin-top: 10px; }
.lm-form { display: flex; gap: 10px; flex-wrap: wrap; position: relative; z-index: 2; }
.lm-form input {
  flex: 1 1 200px;
  font-family: var(--font-body);
  font-size: 15px;
  padding: 15px 18px;
  border-radius: 999px;
  border: 1.5px solid rgba(244,238,226,0.25);
  background: rgba(244,238,226,0.08);
  color: var(--cream);
  outline: none;
  transition: border-color .2s, background .2s;
}
.lm-form input::placeholder { color: rgba(244,238,226,0.55); }
.lm-form input:focus { border-color: var(--sage); background: rgba(244,238,226,0.14); }
.lm-form .btn-light { background: var(--sage); color: var(--forest); }
.lm-form .btn-light:hover { background: #9abf84; }
.lm-ok { font-size: 14px; color: var(--sage); margin-top: 12px; min-height: 18px; }

/* ---------- Problem ---------- */
.lines { display: flex; flex-direction: column; gap: 4px; margin-top: 30px; }
.lines .line {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.3vw, 27px);
  color: var(--ink);
  padding: 14px 0;
  border-bottom: 1px solid var(--line-soft);
  display: flex; align-items: baseline; gap: 16px;
}
.lines .line:first-child { border-top: 1px solid var(--line-soft); }
.lines .line .k {
  font-family: var(--font-body);
  font-size: 13px; font-weight: 700;
  color: var(--olive-deep);
  letter-spacing: 0.1em;
  flex: none; width: 28px;
}
.two-col { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(34px,6vw,80px); align-items: center; }
.two-col.flip { grid-template-columns: 1.1fr 0.9fr; }

.stat-figure { position: relative; }
.stat-figure .image-slot {
  width: 100%; height: auto; aspect-ratio: 5/6; border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.stat-figure .tag {
  position: absolute; bottom: -18px; right: -10px;
  background: var(--olive-deep); color: var(--cream);
  font-family: var(--font-display); font-size: 15px;
  padding: 12px 18px; border-radius: 14px;
  box-shadow: var(--shadow); font-style: italic;
}

/* ---------- Stakes (sand) ---------- */
.band-sand { background: var(--sand); }
.stakes-inner { max-width: 760px; }
.stakes-inner .lead { margin-top: 22px; }

/* ---------- Solution (dark) ---------- */
.band-forest {
  background:
    radial-gradient(900px 500px at 85% -10%, color-mix(in srgb, var(--forest-2) 90%, var(--olive) 22%), transparent 60%),
    var(--forest);
  color: var(--cream);
}
.band-forest .eyebrow { color: var(--sage); }
.band-forest .eyebrow::before, .band-forest .eyebrow.center::after { background: var(--sage); }
.band-forest .lead { color: color-mix(in srgb, var(--cream) 80%, transparent); }
.band-forest h2 { color: var(--cream); }
.solution-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(34px,6vw,72px); align-items: center; }
.versus { display: grid; gap: 16px; }
.versus .row {
  display: flex; align-items: center; gap: 16px;
  padding: 18px 22px; border-radius: 16px;
  background: rgba(244,238,226,0.06);
  border: 1px solid rgba(244,238,226,0.12);
}
.versus .row .ic { width: 36px; height: 36px; flex: none; display: grid; place-items: center; border-radius: 50%; }
.versus .row.no .ic { background: rgba(244,238,226,0.1); color: color-mix(in srgb, var(--cream) 60%, transparent); }
.versus .row.yes { background: rgba(140,170,115,0.16); border-color: rgba(140,170,115,0.45); }
.versus .row.yes .ic { background: var(--sage); color: var(--forest); }
.versus .row .txt b { display: block; font-size: 16.5px; }
.versus .row .txt span { font-size: 14.5px; color: color-mix(in srgb, var(--cream) 68%, transparent); }
.versus .row.no .txt b { text-decoration: line-through; text-decoration-color: rgba(244,238,226,0.4); }

/* ---------- Guide / About ---------- */
.guide-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(36px,6vw,80px); align-items: center; }
.guide-figure { position: relative; max-width: 420px; }
.guide-figure .frame {
  position: absolute; inset: 16px -16px -16px 16px;
  border: 1.5px solid var(--olive); border-radius: var(--radius-lg);
  z-index: 0;
}
.guide-figure .image-slot {
  position: relative; z-index: 1;
  width: 100%; height: auto; aspect-ratio: 4/5; border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.sig { font-family: var(--font-hand); font-size: 38px; color: var(--olive-deep); margin-top: 20px; }
.credit-row {
  margin-top: 28px; display: flex; align-items: center; gap: 22px; flex-wrap: wrap;
  padding-top: 24px; border-top: 1px solid var(--line);
}
.credit-row .reliance-lock { display: flex; align-items: center; gap: 12px; }
.credit-row .reliance-lock img { height: 34px; width: auto; }
.credit-row .since { display: flex; gap: 26px; }
.credit-row .since .s b { font-family: var(--font-display); font-size: 26px; color: var(--olive-deep); display:block; line-height:1; }
.credit-row .since .s span { font-size: 12.5px; color: var(--ink-faint); letter-spacing: .04em; }

/* ---------- Offer ---------- */
.offer-card {
  background: var(--paper);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow);
  display: grid; grid-template-columns: 1fr 1fr;
  overflow: hidden;
}
.offer-left { padding: clamp(34px,4vw,56px); }
.offer-left .formulas {
  margin-top: 26px; display: flex; align-items: center; gap: 16px;
  background: var(--cream); border-radius: 16px; padding: 18px 22px;
}
.offer-left .formulas .big { font-family: var(--font-display); font-size: 46px; color: var(--olive-deep); line-height: 1; }
.offer-left .formulas .big span { font-size: 22px; vertical-align: super; }
.offer-left .formulas .cap { font-size: 14.5px; color: var(--ink-soft); line-height: 1.35; }
.offer-right {
  padding: clamp(34px,4vw,56px);
  background: var(--forest); color: var(--cream);
  background-image: radial-gradient(500px 400px at 110% 120%, color-mix(in srgb, var(--olive-deep) 50%, transparent), transparent 60%);
}
.offer-right h3 { color: var(--cream); }
.offer-right .eyebrow { color: var(--sage); }
.offer-right .eyebrow::before { background: var(--sage); }
.checklist { list-style: none; margin: 26px 0 0; padding: 0; display: flex; flex-direction: column; gap: 18px; }
.checklist li { display: flex; gap: 14px; align-items: flex-start; font-size: 17px; line-height: 1.4; }
.checklist li .ck {
  flex: none; width: 26px; height: 26px; border-radius: 50%;
  background: var(--sage); color: var(--forest);
  display: grid; place-items: center; margin-top: 1px;
}
.checklist li .ck svg { width: 14px; height: 14px; }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 52px; }
.step {
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 34px 30px;
  position: relative;
  transition: transform .3s, box-shadow .3s;
}
.step:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.step .n {
  font-family: var(--font-display);
  font-size: 58px; color: var(--olive-deep);
  line-height: 1; opacity: .9;
}
.step .leaf-mark { width: 22px; height: 22px; position: absolute; top: 30px; right: 28px; opacity: .4; color: var(--olive-deep); }
.step h3 { margin-top: 16px; font-size: 22px; }
.step-connect { display: none; }

/* ---------- Proof ---------- */
.quotes { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 52px; }
.quote {
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 34px 30px;
  display: flex; flex-direction: column;
}
.quote .mark { font-family: var(--font-display); font-size: 64px; line-height: .6; color: var(--olive-deep); opacity: .45; height: 30px; margin: 0; }
.quote .quote-text {
  font-family: var(--font-display);
  font-size: 20px; line-height: 1.45; color: var(--ink);
  flex: 1; margin-top: 8px;
}
.quote .who { margin-top: 22px; display: flex; align-items: center; gap: 13px; padding-top: 18px; border-top: 1px solid var(--line-soft); }
.quote .who .av {
  width: 44px; height: 44px; border-radius: 50%; flex: none;
  background: var(--sand); color: var(--olive-deep);
  display: grid; place-items: center; font-family: var(--font-display); font-size: 19px;
}
.quote .who-meta { display: flex; flex-direction: column; }
.quote .who-name { display: block; font-size: 15px; font-weight: 700; color: var(--ink); margin: 0; }
.quote .who-biz { font-size: 13px; color: var(--ink-faint); margin: 0; }

/* ---------- Final CTA ---------- */
.final { text-align: center; overflow: hidden; }
.final h2 { max-width: 18ch; margin: 18px auto 0; }
.final h2 em { font-style: italic; color: var(--sage); }
.final .btn { margin-top: 38px; padding: 18px 40px; font-size: 17px; }
.final .hand-flourish { font-size: 34px; margin-top: 24px; color: var(--sage); transform: rotate(-3deg); }

/* ---------- Footer ---------- */
.footer { background: var(--forest); color: color-mix(in srgb, var(--cream) 70%, transparent); padding-block: 56px 32px; }
.footer .top { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; align-items: flex-start; padding-bottom: 36px; border-bottom: 1px solid rgba(244,238,226,0.14); }
.footer .name { font-family: var(--font-display); font-size: 27px; color: var(--cream); }
.footer .name + .role { font-size: 11px; letter-spacing: .24em; text-transform: uppercase; color: var(--sage); margin-top: 6px; }
.footer .links { display: flex; gap: 30px; flex-wrap: wrap; }
.footer .links a { font-size: 15px; transition: color .2s; }
.footer .links a:hover { color: var(--cream); }
.footer .reliance-foot { display: flex; align-items: center; gap: 12px; }
.footer .reliance-foot img { height: 30px; filter: brightness(0) invert(1); opacity: .85; }
.footer .reliance-foot span { font-size: 12px; max-width: 16ch; line-height: 1.3; }
.footer .bottom { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; margin-top: 26px; font-size: 13px; color: rgba(244,238,226,0.5); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.8,.2,1); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Responsive ---------- */
@media (max-width: 940px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column; align-items: flex-start; gap: 20px;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--cream); padding: 24px var(--gutter) 30px;
    border-bottom: 1px solid var(--line); box-shadow: var(--shadow);
  }
  .nav-toggle {
    display: grid; place-items: center; width: 44px; height: 44px;
    background: transparent; border: 1.5px solid var(--line); border-radius: 12px; cursor: pointer;
  }
  .nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
    content: ""; display: block; width: 18px; height: 2px; background: var(--ink); position: relative; transition: .25s;
  }
  .nav-toggle span::before { position: absolute; top: -6px; }
  .nav-toggle span::after { position: absolute; top: 6px; }
  .hero-grid, .two-col, .two-col.flip, .solution-grid, .guide-grid,
  .leadmag-card, .offer-card { grid-template-columns: 1fr; }
  .hero-figure, .guide-figure { max-width: 380px; order: -1; }
  .steps, .quotes { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  body { font-size: 17px; }
  .hero-badge { left: 0; }
  .stat-figure .tag { right: 8px; }
}

/* ============================================================
   Block (FSE) accommodations
   The section markup is produced by core blocks (group / heading /
   paragraph) carrying the design's helper classes. These rules keep
   core block wrappers from interfering with the design's own spacing.
   ============================================================ */
/* The design drives all vertical rhythm via explicit margins, and core's
   flow block-gap is set to 0 in theme.json, so no blanket margin reset is
   needed on .wp-block-group — and a blanket reset would clobber the
   margin:0 auto centering on the .wrap sections (which are also groups). */
.image-slot p { margin: 0; }
.image-slot.is-layout-flow > * { margin-block: 0; }
/* Constrained page content (page.html) sits below the fixed nav. */
.site-content { padding-top: 120px; }
/* Logged-in users (customers, sales reps, managers, admins) are inside the
   portal/app, so hide the marketing site header and pull content up to fill
   the space the fixed nav left behind. */
body.mm-auth .nav { display: none; }
body.mm-auth .site-content { padding-top: 32px; }
body.mm-auth .site-content.section-pad { padding-top: 32px; }
/* The editor canvas should read on the warm cream paper too. */
.editor-styles-wrapper { background: var(--cream); }
/* The scroll-reveal animation hides content until the front-end JS runs.
   That JS doesn't run in the Site Editor, so force sections visible there. */
.editor-styles-wrapper .reveal { opacity: 1 !important; transform: none !important; }

/* ---------- Pattern layout utilities ----------
   These replace the prototype's one-off inline styles so the section
   blocks carry only clean class names (and so they validate in the editor).
   Vertical spacing is applied per-block via the editor's margin controls. */
.u-center      { text-align: center; }
.u-mx-auto     { margin-inline: auto; }
.u-mb-52       { margin-bottom: 52px; }
.measure-46    { max-width: 46ch; }
.measure-50    { max-width: 50ch; }
.measure-54    { max-width: 54ch; margin-inline: auto; }
.measure-640   { max-width: 640px; }
.measure-680   { max-width: 680px; }
.offer-left .lead { color: var(--ink); }
.band-forest .soft-cream { color: color-mix(in srgb, var(--cream) 80%, transparent); }
.hand-30 { font-size: 30px; }

/* ---------- Native core/button blocks styled as design buttons ----------
   Flag a button block with the helper classes: is-btn + a variant
   (is-primary | is-light | is-ghost), optionally with-arrow. This lets the
   CTAs be edited as normal buttons in the editor while matching the design. */
:root {
  --arrow-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14M13 6l6 6-6 6'/%3E%3C/svg%3E");
}
.wp-block-buttons { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; }
.final .wp-block-buttons { justify-content: center; }
.wp-block-button.is-btn { margin: 0; }
.wp-block-button.is-btn > .wp-block-button__link {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body); font-size: 16px; font-weight: 600;
  letter-spacing: 0.01em; padding: 15px 28px; border-radius: 999px;
  border: 1.5px solid transparent; line-height: 1; white-space: nowrap;
  transition: transform .25s cubic-bezier(.2,.8,.2,1), box-shadow .25s, background .25s, color .25s;
}
.wp-block-button.is-btn.is-primary > .wp-block-button__link {
  background: var(--accent); color: #fff;
  box-shadow: 0 12px 26px -12px color-mix(in srgb, var(--accent) 80%, #000);
}
.wp-block-button.is-btn.is-primary > .wp-block-button__link:hover { background: var(--accent-deep); transform: translateY(-2px); }
.wp-block-button.is-btn.is-light > .wp-block-button__link { background: var(--cream); color: var(--forest); }
.wp-block-button.is-btn.is-light > .wp-block-button__link:hover { background: #fff; transform: translateY(-2px); }
.wp-block-button.is-btn.is-ghost > .wp-block-button__link { background: transparent; color: var(--ink); border-color: var(--line); }
.wp-block-button.is-btn.is-ghost > .wp-block-button__link:hover { border-color: var(--ink); transform: translateY(-2px); }
/* trailing arrow icon (kept on the native button via a CSS mask) */
.wp-block-button.is-btn.with-arrow > .wp-block-button__link::after {
  content: ""; width: 17px; height: 17px; flex: none; background: currentColor;
  -webkit-mask: var(--arrow-mask) center / contain no-repeat;
          mask: var(--arrow-mask) center / contain no-repeat;
  transition: transform .25s;
}
.wp-block-button.is-btn.with-arrow > .wp-block-button__link:hover::after { transform: translateX(3px); }
/* the final-CTA button is larger, like the design */
.final .wp-block-button.is-btn > .wp-block-button__link { padding: 18px 40px; font-size: 17px; }

/* ============================================================
   Customer portal — login (/login) and member landing (/portal)
   ============================================================ */

/* ---------- Login card ---------- */
.auth-wrap { display: flex; justify-content: center; }
.auth-card {
  width: 100%;
  max-width: 440px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 44px);
  box-shadow: var(--shadow);
}
.auth-card h1 { margin-top: 14px; }
.auth-sub { margin-top: 10px; }
.auth-error {
  margin-top: 18px;
  padding: 12px 15px;
  border-radius: 12px;
  background: color-mix(in srgb, #c0392b 9%, var(--paper));
  border: 1px solid color-mix(in srgb, #c0392b 28%, transparent);
  color: #9a2f23;
  font-size: 15px;
}

/* native wp_login_form() output, themed */
#customer-loginform { display: flex; flex-direction: column; gap: 16px; margin-top: 24px; }
#customer-loginform p { margin: 0; }
#customer-loginform label { display: block; font-size: 14px; font-weight: 600; color: var(--ink); margin-bottom: 7px; }
#customer-loginform .input {
  width: 100%;
  padding: 13px 15px;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  background: #fff;
  font: inherit;
  font-size: 16px;
  color: var(--ink);
  transition: border-color .2s, box-shadow .2s;
}
#customer-loginform .input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 18%, transparent);
  outline: none;
}
#customer-loginform .login-remember label {
  display: flex; align-items: center; gap: 9px;
  font-size: 15px; font-weight: 500; color: var(--ink-soft); margin: 0;
}
#customer-loginform .login-remember input { width: auto; margin: 0; }
#customer-loginform #wp-submit {
  width: 100%;
  margin-top: 4px;
  padding: 15px 28px;
  border: none;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: transform .25s cubic-bezier(.2,.8,.2,1), background .25s, box-shadow .25s;
  box-shadow: 0 12px 26px -12px color-mix(in srgb, var(--accent) 80%, #000);
}
#customer-loginform #wp-submit:hover { background: var(--accent-deep); transform: translateY(-2px); }
.auth-foot { margin-top: 22px; font-size: 14.5px; display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.auth-foot a { color: var(--accent-deep); font-weight: 600; }
.auth-foot a:hover { text-decoration: underline; }
.auth-foot-sep { color: var(--ink-faint); }

/* ---------- Portal landing ---------- */
.portal-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; flex-wrap: wrap; }
.portal-head h1 { margin-top: 10px; }
.portal-head .lead { margin-top: 12px; max-width: 560px; }
.portal-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 48px; }
.portal-card {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 34px);
  transition: transform .3s, box-shadow .3s;
}
.portal-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.portal-card .leaf-mark { width: 22px; height: 22px; position: absolute; top: 26px; right: 26px; opacity: .4; color: var(--olive-deep); }
.portal-card h2 { font-size: 24px; }
.portal-card p.muted { margin-top: 10px; }
.portal-list { list-style: none; margin: 18px 0 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.portal-list li { display: flex; justify-content: space-between; gap: 16px; font-size: 15.5px; padding-bottom: 10px; border-bottom: 1px solid var(--line-soft); }
.portal-list li span { color: var(--ink-soft); }
.portal-list--plain li { display: block; color: var(--ink-soft); border-bottom: none; padding-bottom: 0; font-style: italic; }
.portal-actions { margin-top: 20px; }
.lnk-arrow { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; color: var(--accent-deep); }
.lnk-arrow::after { content: "\2192"; transition: transform .2s; }
.lnk-arrow:hover::after { transform: translateX(3px); }

@media (max-width: 760px) {
  .portal-grid { grid-template-columns: 1fr; }
  .portal-head { align-items: flex-start; }
}

/* ---------- Account settings (front-end profile) ---------- */
.account-form { max-width: 720px; margin-top: 40px; display: flex; flex-direction: column; gap: 24px; }
.account-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 36px);
}
.account-card h2 { font-size: 24px; }
.account-card > .muted { margin-top: 8px; }
.account-card h2 + .field-row,
.account-card h2 + .field { margin-top: 22px; }
.field { margin-top: 18px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field-row .field { margin-top: 0; }
.account-form label { display: block; font-size: 14px; font-weight: 600; color: var(--ink); margin-bottom: 7px; }
.account-form .input {
  width: 100%;
  padding: 13px 15px;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  background: #fff;
  font: inherit;
  font-size: 16px;
  color: var(--ink);
  transition: border-color .2s, box-shadow .2s;
}
.account-form .input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 18%, transparent);
  outline: none;
}
.account-form .input[readonly] { background: var(--cream-deep); color: var(--ink-soft); cursor: not-allowed; }
.account-hint { margin-top: 16px; font-size: 14px; }
.account-actions { margin-top: 4px; }
.account-notice {
  margin-top: 28px;
  padding: 14px 18px;
  border-radius: 14px;
  font-size: 15.5px;
  font-weight: 500;
}
.account-notice--success {
  background: color-mix(in srgb, var(--accent) 12%, var(--paper));
  border: 1px solid color-mix(in srgb, var(--accent) 35%, transparent);
  color: var(--accent-deep);
}
.account-notice--error {
  background: color-mix(in srgb, #c0392b 9%, var(--paper));
  border: 1px solid color-mix(in srgb, #c0392b 28%, transparent);
  color: #9a2f23;
}
.portal-head .lead .lnk-arrow { margin-left: 6px; font-size: 16px; }

@media (max-width: 560px) {
  .field-row { grid-template-columns: 1fr; }
}

/* square business-photo field */
.photo-field-row { display: flex; align-items: flex-start; gap: 18px; flex-wrap: wrap; margin-top: 4px; }
.photo-preview {
  width: 96px; height: 96px; flex: none;
  border-radius: 14px; overflow: hidden;
  border: 1px solid var(--line); background: var(--cream-deep);
  display: grid; place-items: center;
}
.photo-preview img { width: 100%; height: 100%; object-fit: cover; }
.photo-placeholder { font-size: 12px; color: var(--ink-faint); text-align: center; padding: 0 6px; }
.photo-controls { flex: 1 1 240px; }
.photo-controls .input-file { font: inherit; font-size: 15px; max-width: 100%; }
.photo-controls .account-hint { margin-top: 8px; }
.photo-remove { display: inline-flex; align-items: center; gap: 8px; margin-top: 12px; font-size: 14px; color: var(--ink-soft); }
.photo-remove input { width: auto; margin: 0; }
.account-readonly { margin-top: 24px; padding-top: 22px; border-top: 1px solid var(--line-soft); }

/* portal account-card avatar */
.portal-card .portal-avatar {
  display: block;
  width: 64px; height: 64px; object-fit: cover;
  border-radius: 14px; border: 1px solid var(--line);
  margin-bottom: 14px;
}

/* data tables (sales portal) */
.data-table { width: 100%; border-collapse: collapse; margin-top: 16px; font-size: 15px; }
.data-table th, .data-table td { text-align: left; padding: 10px 14px; border-bottom: 1px solid var(--line-soft); white-space: nowrap; }
.data-table th { font-size: 12px; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-soft); font-weight: 600; }
.data-table td:last-child, .data-table th:last-child { text-align: right; }
.data-table tbody tr:hover { background: color-mix(in srgb, var(--accent) 5%, transparent); }
/* fit-to-width tables: no horizontal scroll, truncate long cells (e.g. descriptions) */
.data-table.mm-fit { table-layout: fixed; width: 100%; }
.data-table.mm-fit th, .data-table.mm-fit td { overflow: hidden; text-overflow: ellipsis; }

/* portal header actions (sales dashboard) */
.portal-head-actions { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }

/* tabs (account detail) */
.mm-tabs { margin-top: 40px; }
.mm-tab-nav { display: flex; flex-wrap: wrap; gap: 4px; border-bottom: 1px solid var(--line); margin-bottom: 26px; }
.mm-tab-btn {
  appearance: none; background: transparent; border: none;
  border-bottom: 2px solid transparent; margin-bottom: -1px;
  padding: 11px 18px; font: inherit; font-size: 15px; font-weight: 600;
  color: var(--ink-soft); cursor: pointer; transition: color .2s, border-color .2s;
}
.mm-tab-btn:hover { color: var(--ink); }
.mm-tab-btn.is-active { color: var(--accent-deep); border-bottom-color: var(--accent); }
.mm-tab-panel[hidden] { display: none; }

/* customer My-Sales account/location filter */
.mm-filter { margin-bottom: 8px; }
.mm-filter-group { border: 1px solid var(--line-soft); border-radius: 8px; padding: 10px 14px; margin: 0 0 14px; }
.mm-filter-group legend { padding: 0 6px; font-size: 14px; }
.mm-filter-group { max-height: 230px; overflow: auto; }
.mm-chk { display: block; margin: 4px 0; font-size: 14px; line-height: 1.4; cursor: pointer; }
.mm-chk input { margin-right: 7px; }
.mm-input { padding: 9px 12px; border: 1px solid var(--line); border-radius: 8px; font: inherit; }

/* manager/rep view toggle */
.mm-viewtoggle { display: inline-flex; gap: 4px; margin: 22px 0 0; padding: 4px; background: var(--cream-dark, #f0e9d8); border-radius: 999px; }
.mm-vt { padding: 8px 18px; border-radius: 999px; font-size: 14px; font-weight: 600; color: var(--ink-soft); text-decoration: none; transition: background .2s, color .2s; }
.mm-vt:hover { color: var(--ink); }
.mm-vt.is-active { background: #fff; color: var(--accent-deep); box-shadow: 0 1px 4px rgba(0,0,0,.08); }
/* account search row */
.mm-acct-search { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; margin: 6px 0 0; }
.mm-acct-search .mm-input { min-width: 220px; }
/* picker action row: Run / Reset left, Download PDF pushed right */
.mm-pick-actions { display: flex; gap: 10px; align-items: center; margin-top: 16px; flex-wrap: wrap; }
.mm-pick-actions .mm-pdf-btn { margin-left: auto; }
/* customer picker — Excel-style dropdowns */
.mm-cust-form { margin-top: 4px; }
.mm-pick-row { display: flex; align-items: center; gap: 14px; margin: 0 0 12px; flex-wrap: wrap; }
.mm-pick-label { min-width: 140px; font-weight: 600; }
.mm-pick-select { min-width: 340px; max-width: 100%; }
.mm-pick-select[disabled] { opacity: .55; }
/* combined account browser (scrollable multi-select list) */
.mm-acctlist { max-height: 290px; overflow: auto; border: 1px solid var(--line-soft); border-radius: 8px; padding: 8px 12px; margin-top: 12px; }
.mm-acctlist .mm-chk { display: block; margin: 3px 0; font-size: 14px; line-height: 1.45; cursor: pointer; }
.mm-acctlist .mm-chk input { margin-right: 7px; }
.mm-acctlist-tools { margin: 8px 2px 0; font-size: 13px; }
.mm-acctbrowser .mm-listfilter { min-width: 280px; }
/* manager stat-card YTD growth note */
.mm-growth { font-size: 13px; font-weight: 600; }
.mm-growth.up { color: var(--accent-deep); }
.mm-growth.down { color: #b3261e; }
/* Wide sales-portal pages: room for the monthly/quarterly grids so they don't scroll. */
.wrap.portal.mm-wide { max-width: min( 1760px, 97vw ); padding-inline: clamp( 14px, 2vw, 28px ); }
/* sales-by-rep monthly trend grid (compact so 18 columns fit without horizontal scroll) */
.mm-monthtable, .mm-mqtable { font-size: 12px; width: 100%; }
.mm-monthtable th, .mm-monthtable td, .mm-mqtable th, .mm-mqtable td { padding: 5px 6px; }
.mm-monthtable .mm-rep { white-space: nowrap; font-weight: 600; text-align: left; position: sticky; left: 0; background: var(--paper); }
.mm-monthtable thead .mm-rep { z-index: 1; }
.mm-delta { font-size: 11px; vertical-align: middle; }
.mm-delta.up { color: var(--accent-deep); }
.mm-delta.down { color: #b3261e; }
.mm-delta.flat { color: #e0a200; font-size: 9px; } /* within 1.5% of last year */
/* small muted goal line under each sales-by-rep cell */
.mm-goal-sub { display: block; font-size: 10px; line-height: 1.2; color: var(--ink-faint, #8a8c87); margin-top: 1px; font-style: italic; }
/* rep monthly & quarterly table (months as columns) */
.mm-mqtable { font-size: 13px; }
.mm-mqtable th, .mm-mqtable td { padding: 7px 9px; }
.mm-mqtable .mm-rep { white-space: nowrap; font-weight: 600; text-align: left; position: sticky; left: 0; background: var(--paper); }
.mm-mqtable .mm-qcol, .mm-monthtable .mm-qcol { background: var(--cream-deep, #f0e9d8); font-weight: 600; }
.mm-mqtable .mm-totcol, .mm-monthtable .mm-totcol { font-weight: 700; border-left: 2px solid var(--line); }
/* portal "sales data last updated" stamp */
.portal-data-stamp { margin-top: 8px; font-size: 13px; }
/* goal progress bars */
.mm-bar { display: block; height: 9px; border-radius: 6px; background: var(--line-soft, #e7e2d4); overflow: hidden; min-width: 140px; }
.mm-bar-fill { display: block; height: 100%; border-radius: 6px; background: #c9a227; transition: width .4s ease; }
.mm-bar-fill.is-mid { background: #6f9f3f; }
.mm-bar-fill.is-full { background: var(--accent-deep, #2e7d32); }
.mm-bar-label { display: inline-block; margin-top: 5px; font-size: 13px; color: var(--ink-soft); }
/* inline link-styled submit buttons (duplicate/delete in tables) */
.mm-linkbtn { background: none; border: 0; padding: 0; font: inherit; cursor: pointer; color: var(--accent-deep); }
.mm-linkbtn:hover { text-decoration: underline; }
.mm-linkbtn--danger { color: #b3261e; }
/* cross-tab totals row */
.data-table tr.mm-totalrow td, .mm-monthtable tr.mm-totalrow td { font-weight: 700; border-top: 2px solid var(--line); }
/* new-accounts table: collapsible account list */
.mm-na-details summary { cursor: pointer; }
.mm-na-list { max-height: 220px; overflow: auto; margin-top: 6px; font-size: 13px; color: var(--ink-soft); line-height: 1.5; }
.mm-na-row { display: flex; justify-content: space-between; gap: 16px; padding: 3px 0; border-bottom: 1px solid var(--line-soft); }
.mm-na-row:last-child { border-bottom: 0; }
.mm-na-name { min-width: 0; }
.mm-na-rev { white-space: nowrap; font-variant-numeric: tabular-nums; color: var(--ink); font-weight: 600; }
@media ( min-width: 720px ) {
  .mm-filter .mm-filter-group { display: inline-block; vertical-align: top; width: calc( 50% - 9px ); }
  .mm-filter .mm-filter-group:first-of-type { margin-right: 14px; }
}

/* highlight 0-or-less rows (best-seller lists) */
.data-table tr.mm-zero td {
  background: #ffe6e6;
  -webkit-print-color-adjust: exact;
          print-color-adjust: exact;
}

/* printable account report */
.mm-report { max-width: 920px; margin: 0 auto; }
.mm-report-actions { display: flex; gap: 12px; margin-bottom: 22px; }
.mm-report-head { margin-bottom: 22px; }
.mm-report .portal-card { margin: 0 0 22px !important; }

@media print {
  .nav, .footer, .nav-toggle, .mm-report-actions { display: none !important; }
  .site-content, .section-pad { padding: 0 !important; }
  body { background: #fff !important; }
  .mm-report { max-width: none; }
  .mm-report .portal-card { box-shadow: none !important; border: 1px solid #ccc; page-break-inside: avoid; }
  .data-table { font-size: 12px; }
}

/* date-range filter (My sales) */
.mm-daterange { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; margin: 14px 0 6px; font-size: 14px; }
.mm-daterange label { display: inline-flex; align-items: center; gap: 6px; color: var(--ink-soft); }
.mm-daterange input[type="date"] { padding: 7px 10px; border: 1.5px solid var(--line); border-radius: 8px; background: #fff; font: inherit; font-size: 14px; }
.mm-daterange .btn { padding: 8px 16px; font-size: 14px; }
