/* ==========================================================================
   Green Supply Solutions Inc. — Shared Stylesheet
   ========================================================================== */

:root {
  --dark-green: #0f4d2a;
  --primary-green: #157a3c;
  --mid-green: #2e9e4d;
  --bright-green: #57b84a;
  --lime: #8fc93a;
  --text-dark: #1a2420;
  --text-mid: #4b5a53;
  --text-light: #7c8a83;
  --bg-white: #ffffff;
  --bg-soft: #f6f6f0;
  --bg-soft-2: #edf2e6;
  --border-soft: #dfe8e2;
  --amber: #e08a1e;
  --amber-bg: #fdf1e0;
  --shadow-sm: 0 2px 8px rgba(15, 77, 42, 0.06);
  --shadow-md: 0 10px 28px rgba(15, 77, 42, 0.09);
  --shadow-lg: 0 22px 54px rgba(15, 77, 42, 0.14);
  --radius: 14px;
  --radius-lg: 22px;
  --max-width: 1240px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Figtree', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text-dark);
  background: var(--bg-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Figtree', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--dark-green);
  margin: 0 0 0.5em;
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: -0.01em;
}

p { margin: 0 0 1em; color: var(--text-mid); }

a { color: inherit; text-decoration: none; }

img { max-width: 100%; display: block; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mid-green);
  background: var(--bg-soft-2);
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 14px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
a.btn.header-quote:hover { transform: translateY(-50%); }

.btn-primary {
  background: linear-gradient(135deg, var(--mid-green), var(--primary-green));
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { box-shadow: var(--shadow-md); }

.btn-outline {
  background: transparent;
  border-color: var(--primary-green);
  color: var(--primary-green);
}
.btn-outline:hover { background: var(--bg-soft-2); }

.btn-white {
  background: #fff;
  color: var(--dark-green);
}
.btn-white:hover {
  background: var(--primary-green);
  color: #fff;
  box-shadow: var(--shadow-md);
}
.btn-white-outline {
  background: transparent;
  border-color: rgba(255,255,255,0.6);
  color: #fff;
}
.btn-white-outline:hover { background: rgba(255,255,255,0.12); }

.btn-quote {
  background: var(--amber-bg);
  color: var(--amber);
  border-color: var(--amber);
}
.btn-quote:hover { background: var(--amber); color: #fff; }

.btn-block { width: 100%; }
.btn-sm { padding: 9px 16px; font-size: 0.85rem; }

/* ---------- Top utility bar ---------- */
.utility-bar {
  background: var(--primary-green);
  color: rgba(255,255,255,0.85);
  font-size: 0.8rem;
}
.utility-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 8px;
  padding-bottom: 8px;
  gap: 16px;
  flex-wrap: wrap;
}
.utility-bar a { color: rgba(255,255,255,0.85); }
.utility-bar a:hover { color: #fff; }
.utility-left, .utility-right { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.utility-right { gap: 20px; }
.usa-flag-icon { height: 18px; width: auto; flex-shrink: 0; }
.contact-icon { height: 14px; width: auto; flex-shrink: 0; }
.utility-right span, .footer-contact span { display: inline-flex; align-items: center; gap: 5px; }

/* ---------- Header ---------- */
header.site-header {
  background: #fff;
  border-bottom: 1px solid var(--border-soft);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 14px 24px;
  position: relative;
}
.logo-link { display: flex; align-items: center; flex-shrink: 0; }
.logo-link img { height: 82px; width: auto; }

.header-quote {
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
}
.header-quote .nav-quote-icon { height: 16px; }

.search-bar {
  flex: 1;
  display: flex;
  max-width: 560px;
  border: 2px solid var(--border-soft);
  border-radius: 10px;
  overflow: hidden;
}
.search-bar input {
  flex: 1;
  border: none;
  padding: 11px 14px;
  font-size: 0.9rem;
  outline: none;
  font-family: inherit;
}
.search-bar button {
  background: var(--primary-green);
  border: none;
  color: #fff;
  padding: 0 18px;
  cursor: pointer;
  font-size: 1rem;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-left: auto;
  flex-shrink: 0;
}
.header-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 0.72rem;
  color: var(--text-mid);
  gap: 3px;
  position: relative;
}
.header-action .icon { font-size: 1.25rem; }
.header-action .badge {
  position: absolute;
  top: -6px;
  right: -10px;
  background: var(--amber);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  border-radius: 100px;
  padding: 1px 6px;
}

nav.main-nav {
  background: var(--bg-soft);
  border-bottom: 1px solid var(--border-soft);
}
nav.main-nav .container {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
}
nav.main-nav a {
  display: block;
  padding: 13px 13px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-dark);
  border-bottom: 3px solid transparent;
  white-space: nowrap;
}
nav.main-nav a:hover,
nav.main-nav a.active {
  color: var(--primary-green);
  border-bottom-color: var(--primary-green);
}
nav.main-nav .nav-quote {
  margin-left: auto;
  color: var(--amber);
  display: flex;
  align-items: center;
  gap: 7px;
}
.nav-quote-icon { height: 18px; width: auto; flex-shrink: 0; }

.mobile-nav-toggle {
  display: none;
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--dark-green);
}

/* ---------- Hero ---------- */
.hero {
  background: radial-gradient(circle at 15% 20%, rgba(255,255,255,0.10), transparent 45%),
              linear-gradient(120deg, var(--dark-green), var(--primary-green) 55%, var(--mid-green));
  color: #fff;
  position: relative;
  overflow: hidden;
}
.hero .container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 40px;
  padding-top: 70px;
  padding-bottom: 70px;
}
.hero h1 { color: #fff; font-size: 2.6rem; margin-bottom: 18px; }
.hero p.lead { color: rgba(255,255,255,0.88); font-size: 1.1rem; max-width: 480px; }
.hero-ctas { display: flex; gap: 14px; margin-top: 28px; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 30px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.hero-stats div { }
.hero-stats strong { display: block; font-size: 1.6rem; font-family: 'Figtree', sans-serif; }
.hero-stats span { font-size: 0.8rem; color: rgba(255,255,255,0.75); }

.hero-visual {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-lg);
  padding: 26px;
  backdrop-filter: blur(6px);
}
.hero-visual-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 18px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--text-dark);
  box-shadow: var(--shadow-md);
}
.hero-visual-card:last-child { margin-bottom: 0; }
.hero-visual-card .swatch {
  width: 42px; height: 42px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; flex-shrink: 0;
}
.hero-visual-card small { color: var(--text-light); display: block; margin-top: 2px; }

/* ---------- Trust strip ---------- */
.trust-strip {
  background: var(--dark-green);
  border-top: 1px solid rgba(255,255,255,0.1);
}
.trust-strip .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding-top: 22px;
  padding-bottom: 22px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
}
.trust-item .icon { font-size: 1.6rem; flex-shrink: 0; }
.trust-item strong { display: block; font-size: 0.88rem; }
.trust-item span { font-size: 0.76rem; color: rgba(255,255,255,0.7); }

/* ---------- Sections ---------- */
section { padding: 64px 0; }
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 32px;
  gap: 20px;
  flex-wrap: wrap;
}
.section-head h2 { margin-bottom: 6px; font-size: 1.9rem; }
.section-head p { margin: 0; max-width: 560px; }
.bg-soft { background: var(--bg-soft); }

/* ---------- Category grid ---------- */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.cat-card {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
  display: block;
}
.cat-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--mid-green);
}
.cat-card .icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: var(--bg-soft-2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 16px;
}
.cat-card h3 { font-size: 1.1rem; margin-bottom: 6px; }
.cat-card p { font-size: 0.88rem; margin-bottom: 10px; }
.cat-card .link { font-size: 0.85rem; font-weight: 700; color: var(--primary-green); }

/* ---------- Brand strip ---------- */
.brand-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.brand-tile {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 20px 16px 18px;
  text-align: center;
  transition: box-shadow 0.15s ease, transform 0.15s ease, border-color 0.15s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.brand-tile:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); border-color: var(--mid-green); }
.brand-tile .logo-box {
  height: 46px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
  flex-shrink: 0;
}
.brand-tile .logo-box img {
  max-height: 100%;
  max-width: 100%;
  width: auto;
  object-fit: contain;
}
.brand-tile strong { display: block; font-size: 0.86rem; color: var(--text-dark); }
.brand-tile span { display: block; margin-top: 3px; font-size: 0.72rem; color: var(--text-light); }

.brand-logo-lg {
  height: 56px;
  display: flex; align-items: center; justify-content: flex-start;
  margin-bottom: 16px;
}
.brand-logo-lg img { max-height: 100%; max-width: 180px; width: auto; object-fit: contain; }

/* ---------- Why us ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px 40px;
}
.why-item { display: flex; gap: 16px; }
.why-item .num {
  font-family: 'Figtree', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--mid-green);
  flex-shrink: 0;
  width: 40px;
}
.why-item h3 { font-size: 1.05rem; margin-bottom: 6px; }
.why-item p { font-size: 0.9rem; margin: 0; }

/* ---------- Product cards ---------- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.product-card {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.15s ease, transform 0.15s ease;
  position: relative;
}
.product-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.product-thumb {
  aspect-ratio: 4/3;
  background: var(--bg-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  color: var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}
.product-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  padding: 4px 9px;
  border-radius: 100px;
  z-index: 2;
}
.tag-instock { background: #e6f5ea; color: var(--primary-green); }
.tag-quote { background: var(--amber-bg); color: var(--amber); }
.tag-factory { background: #eaf1fb; color: #2c5fa8; }
.product-body { padding: 16px; display: flex; flex-direction: column; flex: 1; }
.product-brand { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; color: var(--text-light); margin-bottom: 4px; }
.product-name { font-size: 0.95rem; font-weight: 600; color: var(--text-dark); margin-bottom: 6px; }
.product-spec { font-size: 0.8rem; color: var(--text-light); margin-bottom: 12px; flex: 1; }
.product-price { font-family: 'Figtree', sans-serif; font-weight: 700; font-size: 1.05rem; color: var(--dark-green); margin-bottom: 12px; }
.product-price small { font-weight: 400; font-size: 0.72rem; color: var(--text-light); display:block; }

/* ---------- Restaurant band ---------- */
.split-band { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 50px; }
.split-band .photo-block {
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--dark-green), var(--mid-green));
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.85);
  font-size: 3rem;
}

/* ---------- Text-wordmark brand tiles (no logo file on hand yet) ---------- */
.text-logo {
  font-family: 'Figtree', sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  line-height: 1.1;
}
.brand-logo-lg .text-logo { font-size: 1.4rem; }

/* ---------- CTA banner ---------- */
.cta-banner {
  background: linear-gradient(120deg, var(--dark-green), var(--primary-green));
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.cta-banner h2 { color: #fff; margin-bottom: 8px; }
.cta-banner p { color: rgba(255,255,255,0.85); margin: 0; }

/* ---------- Testimonials ---------- */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.testi-card {
  background: #fff; border: 1px solid var(--border-soft); border-radius: var(--radius-lg);
  padding: 24px;
}
.testi-stars { color: var(--amber); margin-bottom: 12px; font-size: 0.9rem; }
.testi-card p { font-size: 0.92rem; color: var(--text-dark); }
.testi-name { font-size: 0.82rem; font-weight: 700; color: var(--dark-green); margin-top: 12px; }
.testi-role { font-size: 0.76rem; color: var(--text-light); }

/* ---------- Footer ---------- */
footer.site-footer {
  background: var(--primary-green);
  color: rgba(255,255,255,0.8);
  padding: 26px 0;
}
.footer-simple {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-contact {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.85rem;
}
.footer-contact strong {
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.footer-copy { font-size: 0.78rem; color: rgba(255,255,255,0.75); }
.footer-simple .socials { display: flex; gap: 12px; }
.footer-simple .socials a {
  width: 32px; height: 32px; border-radius: 50%; background: rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 700; font-size: 0.85rem;
}
.footer-simple .socials a:hover { background: rgba(255,255,255,0.28); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1.2fr;
  gap: 30px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-grid h4 {
  color: #fff;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: 10px; font-size: 0.86rem; }
.footer-grid a:hover { color: #fff; }
.footer-logo img { height: 48px; margin-bottom: 14px; filter: brightness(0) invert(1); }
.footer-grid p { font-size: 0.85rem; color: rgba(255,255,255,0.65); }
.footer-newsletter { display: flex; margin-top: 14px; border-radius: 8px; overflow: hidden; border: 1px solid rgba(255,255,255,0.25); }
.footer-newsletter input { flex: 1; border: none; padding: 10px 12px; font-size: 0.85rem; background: rgba(255,255,255,0.06); color: #fff; }
.footer-newsletter input::placeholder { color: rgba(255,255,255,0.5); }
.footer-newsletter button { border: none; background: var(--mid-green); color: #fff; padding: 0 16px; cursor: pointer; font-weight: 600; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 0; font-size: 0.78rem; color: rgba(255,255,255,0.55);
  flex-wrap: wrap; gap: 10px;
}
.footer-bottom .socials { display: flex; gap: 12px; }
.footer-bottom .socials a {
  width: 32px; height: 32px; border-radius: 50%; background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
}

/* ---------- Breadcrumb ---------- */
.breadcrumb { font-size: 0.82rem; color: var(--text-light); padding: 18px 0; }
.breadcrumb a { color: var(--primary-green); }
.breadcrumb span { margin: 0 6px; }

/* ---------- Shop layout ---------- */
.shop-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 30px;
  align-items: flex-start;
}
.filter-panel {
  background: var(--bg-soft);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 20px;
  position: sticky;
  top: 100px;
}
.filter-group { border-bottom: 1px solid var(--border-soft); padding-bottom: 16px; margin-bottom: 16px; }
.filter-group:last-child { border-bottom: none; margin-bottom: 0; }
.filter-group h4 { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.03em; margin-bottom: 10px; color: var(--text-dark); }
.filter-option { display: flex; align-items: center; gap: 8px; font-size: 0.86rem; margin-bottom: 8px; color: var(--text-mid); }
.shop-toolbar {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 20px; flex-wrap: wrap; gap: 12px;
}
.shop-toolbar select {
  padding: 8px 12px; border-radius: 6px; border: 1px solid var(--border-soft); font-size: 0.85rem;
}
.pagination { display: flex; gap: 8px; justify-content: center; margin-top: 36px; }
.pagination a {
  width: 36px; height: 36px; border-radius: 6px; border: 1px solid var(--border-soft);
  display: flex; align-items: center; justify-content: center; font-size: 0.85rem; font-weight: 600;
}
.pagination a.active { background: var(--primary-green); color: #fff; border-color: var(--primary-green); }

/* ---------- Page intro (About) ---------- */
.page-hero {
  background: var(--bg-soft);
  border-bottom: 1px solid var(--border-soft);
  padding: 48px 0;
}
.page-hero h1 { font-size: 2.2rem; margin-bottom: 10px; }
.page-hero p { max-width: 640px; font-size: 1.02rem; }

.trades-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.trade-card {
  text-align: center; padding: 26px 18px; border-radius: var(--radius); background: #fff; border: 1px solid var(--border-soft);
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}
.trade-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--mid-green);
}
.trade-card .icon { font-size: 2rem; margin-bottom: 12px; }
.trade-card .icon-img { height: 34px; width: auto; margin: 0 auto 12px; display: block; }
.trade-card h3 { font-size: 1rem; }
.trade-card p { font-size: 0.84rem; }

.timeline { border-left: 3px solid var(--border-soft); padding-left: 24px; }
.timeline-item { margin-bottom: 26px; position: relative; }
.timeline-item::before {
  content: ''; position: absolute; left: -30px; top: 4px;
  width: 12px; height: 12px; border-radius: 50%; background: var(--mid-green); border: 2px solid #fff; box-shadow: 0 0 0 2px var(--mid-green);
}

/* ---------- Manufacturer directory (About page) ---------- */
.mfr-directory { display: flex; flex-direction: column; gap: 46px; }
.mfr-category-head { display: flex; align-items: baseline; gap: 14px; margin-bottom: 4px; }
.mfr-category-head h3 {
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--primary-green);
  margin: 0;
  white-space: nowrap;
}
.mfr-category-head .rule { flex: 1; height: 1px; background: var(--border-soft); }
.mfr-list {
  column-count: 2;
  column-gap: 40px;
}
.mfr-row {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 6px;
  border-bottom: 1px solid var(--border-soft);
  transition: background 0.15s ease;
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
}
.mfr-row:hover { background: var(--bg-soft); border-radius: var(--radius); }
.mfr-row:last-child { border-bottom: none; }
.mfr-row .mfr-logo {
  width: 130px;
  flex-shrink: 0;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-top: 2px;
}
.mfr-row .mfr-logo img { max-height: 100%; max-width: 100%; object-fit: contain; }
.mfr-row .mfr-text h4 { margin: 0 0 4px; font-size: 0.98rem; color: var(--text-dark); font-weight: 700; }
.mfr-row .mfr-text p { margin: 0; font-size: 0.85rem; color: var(--text-mid); line-height: 1.5; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero .container { grid-template-columns: 1fr; }
  .trust-strip .container { grid-template-columns: repeat(2, 1fr); }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .brand-grid { grid-template-columns: repeat(3, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .split-band { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .shop-layout { grid-template-columns: 1fr; }
  .filter-panel { position: static; }
  .trades-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: 1fr; }
}
@media (min-width: 641px) {
  nav.main-nav .nav-quote { display: none; }
  .utility-bar .container, .utility-left, .utility-right, .footer-simple, .footer-contact { flex-wrap: nowrap; }
  .footer-copy, .footer-contact span, .utility-left span, .utility-right span { white-space: nowrap; }
}
@media (max-width: 1060px) and (min-width: 641px) {
  .utility-bar { font-size: 0.68rem; }
  .utility-left, .utility-right { gap: 5px; }
  .usa-flag-icon { height: 14px; }
  .footer-contact { font-size: 0.68rem; gap: 7px; }
  .footer-contact strong { font-size: 0.58rem; }
  .footer-copy { font-size: 0.6rem; }
  .footer-simple { gap: 6px; }
  .footer-simple .socials a { width: 26px; height: 26px; font-size: 0.72rem; }
  .contact-icon { height: 12px; }
}
@media (max-width: 820px) and (min-width: 641px) {
  .footer-contact strong { display: none; }
}
@media (max-width: 640px) {
  .search-bar { display: none; }
  nav.main-nav .container { display: none; }
  .mobile-nav-toggle { display: block; }
  .header-quote { display: none; }
  nav.main-nav.open .container { display: flex; flex-direction: column; }
  .cat-grid, .brand-grid, .product-grid, .trades-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2rem; }
  .cta-banner { flex-direction: column; text-align: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .mfr-list { column-count: 1; }
  .mfr-row { flex-direction: column; align-items: flex-start; gap: 12px; }
  .mfr-row .mfr-logo { width: 130px; }
}
@media (max-width: 780px) and (min-width: 641px) {
  .mfr-list { column-count: 1; }
}
