:root {
  --black: #0a0a0a;
  --black-soft: #141414;
  --green: #1a6b3c;
  --green-bright: #7cfc00;
  --green-dark: #0b2e1a;
  --gold: #c9a227;
  --bg: #f5f5f5;
  --surface: #ffffff;
  --text: #111111;
  --muted: #666666;
  --border: #e5e5e5;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  --radius: 14px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

a { color: var(--green); }

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

.container {
  width: min(1200px, calc(100% - 2rem));
  margin: 0 auto;
}

.topbar {
  background: var(--black);
  color: #ddd;
  font-size: 0.82rem;
  text-align: center;
  padding: 0.55rem 1rem;
}

.site-header {
  background: var(--black-soft);
  border-bottom: 1px solid #222;
  position: sticky;
  top: 0;
  z-index: 30;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.logo {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: #fff;
}

.logo strong {
  font-size: 1.2rem;
  letter-spacing: 0.04em;
}

.logo span {
  font-size: 0.72rem;
  color: #aaa;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
}

.site-nav a {
  color: #ddd;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--green-bright);
}

.nav-toggle {
  display: none;
  border: 1px solid #444;
  background: transparent;
  color: #fff;
  padding: 0.55rem 0.9rem;
  border-radius: 8px;
}

.hero {
  background:
    linear-gradient(120deg, rgba(0, 0, 0, 0.78), rgba(26, 107, 60, 0.62)),
    url("images/momentec/hero-banner.jpg") center / cover no-repeat,
    linear-gradient(135deg, #111, #1a6b3c);
  color: #fff;
}

.hero-logo {
  height: 42px;
  width: auto;
  margin-bottom: 1rem;
}

.hero-inner { padding: 5rem 0 4rem; max-width: 760px; }

.page-hero {
  background: linear-gradient(135deg, var(--black), var(--green-dark));
  color: #fff;
  padding: 3.5rem 0;
}

.hero h1, .page-hero h1 {
  margin: 0.6rem 0 1rem;
  line-height: 1.05;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800;
}

.eyebrow {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--green-bright);
}

.hero-text, .page-lead {
  font-size: 1.1rem;
  opacity: 0.95;
  max-width: 680px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.5rem;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.82rem;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: #fff;
  color: var(--black);
}

.btn-primary:hover { background: var(--green-bright); }

.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.7);
  color: #fff;
}

.btn-secondary:hover { background: rgba(255, 255, 255, 0.08); }

.btn-outline {
  border: 2px solid var(--green);
  color: var(--green);
  background: transparent;
}

.section { padding: 4rem 0; }
.section-dark { background: var(--black-soft); color: #eee; }
.section-muted { background: var(--surface); }

.section-heading { margin-bottom: 2rem; max-width: 720px; }
.section-heading h2, .section h2 { margin-top: 0; font-size: clamp(1.8rem, 3vw, 2.5rem); }

.dealer-badge {
  display: inline-block;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: rgba(124, 252, 0, 0.12);
  border: 1px solid rgba(124, 252, 0, 0.35);
  color: var(--green-bright);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.promo-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 1rem;
  min-height: 320px;
}

.promo-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: #222;
  color: #fff;
  min-height: 280px;
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  text-decoration: none;
}

.promo-card.large {
  background: linear-gradient(135deg, #b91c1c, #7f1d1d);
  grid-row: span 1;
}

.promo-card h3 {
  margin: 0;
  font-size: 1.5rem;
  line-height: 1.15;
}

.promo-card p {
  margin: 0.5rem 0 0;
  opacity: 0.9;
  font-size: 0.95rem;
}

.trust-bar, .cards, .guide-grid, .info-grid, .contact-grid, .footer-grid, .category-grid {
  display: grid;
  gap: 1.25rem;
}

.trust-bar { grid-template-columns: repeat(4, 1fr); margin-top: -2rem; position: relative; z-index: 2; }
.cards { grid-template-columns: repeat(3, 1fr); }
.category-grid { grid-template-columns: repeat(4, 1fr); }
.guide-grid { grid-template-columns: repeat(2, 1fr); }
.contact-grid { grid-template-columns: repeat(3, 1fr); }
.footer-grid { grid-template-columns: 2fr 1fr 1fr; margin-bottom: 1.5rem; }

.trust-card, .card, .guide-card, .contact-card, .highlight-box, .policy-box, .category-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.5rem;
}

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(26, 107, 60, 0.1);
  color: var(--green);
  font-weight: 800;
  margin-bottom: 1rem;
}

.category-card {
  text-decoration: none;
  color: inherit;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  overflow: hidden;
  padding: 0;
}

.category-card-image {
  height: 160px;
  background: #eee center / cover no-repeat;
}

.category-card-body {
  padding: 1.25rem 1.5rem 1.5rem;
}

.category-card-body h3 {
  margin: 0 0 0.35rem;
}

.category-card-body p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.promo-banner {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: block;
}

.category-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.14);
}

.split { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 2rem; align-items: start; }

.check-list { list-style: none; padding: 0; margin: 0; }
.check-list li { position: relative; padding-left: 1.5rem; margin-bottom: 0.8rem; }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--green); font-weight: 800; }

.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 2rem;
  border-radius: calc(var(--radius) + 4px);
  background: linear-gradient(135deg, var(--black), var(--green-dark));
  color: #fff;
}

.resource-layout { display: grid; grid-template-columns: 260px 1fr; gap: 2rem; align-items: start; }
.resource-sidebar, .resource-content {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.5rem;
}
.resource-sidebar { position: sticky; top: 6rem; }
.resource-sidebar h2 { margin: 1rem 0 0.6rem; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); }
.resource-sidebar h2:first-child { margin-top: 0; }
.resource-sidebar a { display: block; padding: 0.4rem 0; text-decoration: none; font-weight: 600; color: var(--green-dark); }
.resource-sidebar a.active { color: var(--green); text-decoration: underline; }

.faq-item { padding-bottom: 1.25rem; margin-bottom: 1.25rem; border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.faq-item h2 { margin-top: 0; font-size: 1.15rem; }
.faq-item p { color: var(--muted); margin-bottom: 0; }

.lookup-form { display: grid; gap: 0.75rem; max-width: 520px; }
.lookup-form label { font-weight: 700; }
.lookup-form input, .lookup-form select {
  width: 100%;
  padding: 0.8rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  font: inherit;
}
.lookup-status { margin-top: 1rem; padding: 0.9rem 1rem; border-radius: 10px; background: rgba(26, 107, 60, 0.08); }
.lookup-status.error { background: rgba(180, 35, 24, 0.08); color: #8a1f17; }
.lookup-result {
  margin-top: 1rem;
  padding: 1rem;
  background: #111;
  color: #eee;
  border-radius: 12px;
  overflow: auto;
  font-size: 0.85rem;
}
.lookup-result.formatted {
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--border);
  font-size: 1rem;
}

.catalog-toolbar {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.catalog-toolbar input,
.catalog-toolbar select {
  padding: 0.85rem 1rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  font: inherit;
}
.catalog-status { color: var(--muted); margin-bottom: 1rem; }
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
}
.catalog-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: var(--shadow);
}
.catalog-card:hover { transform: translateY(-2px); }
.catalog-card-image {
  aspect-ratio: 1;
  background: #f4f4f4;
  display: grid;
  place-items: center;
}
.catalog-card-image img { width: 100%; height: 100%; object-fit: contain; }
.catalog-card-placeholder { color: var(--muted); font-size: 0.85rem; }
.catalog-card-body { padding: 1rem; }
.catalog-card-type {
  display: inline-block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--green);
  font-weight: 700;
}
.catalog-card-body h3 { margin: 0.35rem 0; font-size: 1rem; }
.catalog-card-meta { color: var(--muted); font-size: 0.85rem; margin: 0.35rem 0; }
.catalog-card-price { font-weight: 700; margin: 0; color: var(--green-dark); }
.catalog-card-msrp { margin: 0.15rem 0 0; font-size: 0.85rem; color: var(--muted); }
.catalog-pagination {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
}
.catalog-pagination button {
  padding: 0.65rem 1rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--surface);
  cursor: pointer;
}

.product-detail-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
.product-detail-media img {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: #fff;
}
.product-detail-price { font-size: 1.2rem; font-weight: 700; }

.result-summary { margin-bottom: 1rem; }
.result-table-wrap { overflow: auto; }
.result-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}
.result-table th,
.result-table td {
  padding: 0.65rem 0.75rem;
  border-bottom: 1px solid var(--border);
  text-align: left;
}
.result-table th {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
}
.style-result { margin-top: 1.5rem; }
.style-result-header {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
.style-result-header img {
  width: 100%;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: #fff;
}
.result-note { color: var(--muted); font-size: 0.9rem; }

.inventory-page { display: grid; gap: 1rem; }
.inventory-search-card {
  padding: 1.25rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fafafa;
}
.inventory-search-form label { font-weight: 700; display: block; margin-bottom: 0.5rem; }
.inventory-search-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.75rem;
}
.inventory-search-row input {
  padding: 0.9rem 1rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  font: inherit;
}
.inventory-help { color: var(--muted); font-size: 0.92rem; margin: 0.75rem 0 0; }

.inventory-results { margin-top: 0.5rem; }
.inventory-product-header {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 1.25rem;
  padding: 1.25rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  margin-bottom: 1rem;
}
.inventory-product-header img {
  width: 100%;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: #fff;
}
.inventory-style-label {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 700;
}
.inventory-product-title { margin: 0.25rem 0; font-size: 1.6rem; }
.inventory-msrp { margin: 0.25rem 0; font-weight: 700; }
.inventory-feed-note { color: var(--muted); margin: 0.5rem 0 1rem; }
.inventory-header-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.inventory-results-count { color: var(--muted); margin: 0 0 1rem; }

.inventory-color-block {
  margin-bottom: 1.25rem;
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
}
.inventory-color-block h3 {
  margin: 0 0 0.85rem;
  font-size: 1.05rem;
  text-transform: capitalize;
}
.inventory-size-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(88px, 1fr));
  gap: 0.65rem;
}
.inventory-size-cell {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.65rem 0.5rem;
  text-align: center;
  background: #fafafa;
}
.inventory-size-cell.in { border-color: rgba(26, 107, 60, 0.35); background: rgba(26, 107, 60, 0.06); }
.inventory-size-cell.low { border-color: rgba(201, 162, 39, 0.5); background: rgba(201, 162, 39, 0.08); }
.inventory-size-cell.out { border-color: rgba(180, 35, 24, 0.25); background: rgba(180, 35, 24, 0.05); opacity: 0.75; }
.inventory-size-cell .size-label {
  display: block;
  font-weight: 800;
  font-size: 0.95rem;
}
.inventory-size-cell .size-qty {
  display: block;
  font-size: 1.1rem;
  margin: 0.15rem 0;
}
.inventory-size-cell .size-sku {
  display: block;
  font-size: 0.62rem;
  color: var(--muted);
  word-break: break-all;
}
.inventory-order-note {
  margin-top: 1.25rem;
  padding: 1rem 1.15rem;
  border-left: 4px solid var(--green);
  background: rgba(26, 107, 60, 0.06);
  border-radius: 0 10px 10px 0;
}
.inventory-order-note h4 { margin: 0 0 0.5rem; }
.inventory-order-note ul { margin: 0; padding-left: 1.2rem; }
.inventory-order-note li { margin-bottom: 0.35rem; }
.inventory-live-note { margin: 0.75rem 0 0; color: var(--muted); font-size: 0.92rem; }
.inventory-empty { padding: 1rem; color: var(--muted); }
.inventory-results-error { color: #8a1f17; }

.plugin-shell { width: 100%; min-height: 70vh; background: #fff; }
.plugin-note {
  background: #fff8e1;
  border: 1px solid #f0d98c;
  color: #6b5a1d;
  padding: 1rem 1.2rem;
  border-radius: 12px;
  margin-bottom: 1rem;
}

/* ——— Homepage & designer showcase ——— */
.hero-brands {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

.hero-brands img {
  height: 42px;
  width: auto;
}

.hero-brands-divider {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, 0.25);
}

.designer-showcase {
  background:
    linear-gradient(180deg, var(--black-soft) 0%, #0f2418 100%);
  color: #fff;
}

.designer-showcase .section-heading p {
  color: rgba(255, 255, 255, 0.78);
}

.designer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.designer-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: end;
  min-height: 280px;
  padding: 1.75rem;
  border-radius: calc(var(--radius) + 2px);
  text-decoration: none;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.designer-panel:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.42);
}

.designer-panel--uniforms {
  background:
    linear-gradient(135deg, rgba(0, 0, 0, 0.55), rgba(26, 107, 60, 0.75)),
    url("images/momentec/hero-banner.jpg") center / cover no-repeat;
}

.designer-panel--headwear {
  background:
    linear-gradient(135deg, rgba(0, 0, 0, 0.62), rgba(120, 20, 20, 0.55)),
    url("images/momentec/headwear/headwear-banner-card.jpg") center / cover no-repeat;
}

.designer-panel-logo {
  height: 38px;
  width: auto;
  margin-bottom: 1rem;
}

.designer-panel h3 {
  margin: 0 0 0.35rem;
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  line-height: 1.1;
}

.designer-panel p {
  margin: 0 0 1rem;
  opacity: 0.92;
  max-width: 28rem;
}

.designer-panel-cta {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-bright);
}

.designer-panel--headwear .designer-panel-cta {
  color: #ffb4b4;
}

.designer-panel-visual {
  width: min(160px, 34vw);
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.promo-duo {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.promo-duo a {
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.15s ease;
}

.promo-duo a:hover { transform: translateY(-3px); }

.promo-duo img {
  width: 100%;
  height: auto;
  display: block;
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.feature-strip article {
  padding: 1.35rem 1.5rem;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.feature-strip strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 1rem;
}

.feature-strip span {
  color: var(--muted);
  font-size: 0.92rem;
}

.brands-section .section-heading {
  text-align: center;
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
}

.brand-logo-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.brand-logo-card {
  display: grid;
  place-items: center;
  min-height: 96px;
  padding: 1.25rem 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.brand-logo-card img {
  max-width: 100%;
  max-height: 52px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.brand-logo-card.is-missing img {
  display: none;
}

.brand-logo-card.is-missing::before {
  content: attr(data-brand);
  font-size: 0.88rem;
  font-weight: 700;
  text-align: center;
  color: var(--muted);
  line-height: 1.3;
}

/* ——— Configurator page heroes ——— */
.plugin-page main {
  background: #fff;
}

.plugin-hero {
  color: #fff;
  padding: 2rem 0 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.plugin-hero--uniforms {
  background:
    linear-gradient(120deg, rgba(0, 0, 0, 0.82), rgba(26, 107, 60, 0.72)),
    url("../images/momentec/hero-banner.jpg") center / cover no-repeat;
}

.plugin-hero--headwear {
  background:
    linear-gradient(120deg, rgba(0, 0, 0, 0.84), rgba(90, 15, 15, 0.68)),
    url("../images/momentec/headwear/headwear-banner-wide.jpg") center / cover no-repeat;
}

.plugin-hero-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.5rem;
  align-items: center;
}

.plugin-hero-logo {
  height: 52px;
  width: auto;
}

.plugin-hero-copy h1 {
  margin: 0.25rem 0 0.5rem;
  font-size: clamp(1.6rem, 3vw, 2.35rem);
  line-height: 1.05;
}

.plugin-hero-copy p {
  margin: 0;
  opacity: 0.92;
  max-width: 42rem;
}

.plugin-hero-visual {
  width: min(140px, 22vw);
  border-radius: 12px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.plugin-hero--uniforms .plugin-hero-inner {
  grid-template-columns: auto 1fr;
}

.plugin-shell .plugin-frame-wrap {
  background: #fff;
}

.plugin-shell #loaderAlign {
  height: 50vh;
}

.category-card-image--headwear {
  background-image: url("images/momentec/headwear/headwear-banner-card.jpg");
}

.site-footer {
  background: var(--black);
  color: #ccc;
  padding: 2.5rem 0 1.5rem;
}

.footer-grid a {
  display: block;
  color: #ccc;
  text-decoration: none;
  margin-bottom: 0.45rem;
}

.footer-grid a:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 1rem;
  font-size: 0.88rem;
  color: #888;
}

@media (max-width: 1100px) {
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .brand-logo-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 900px) {
  .trust-bar, .cards, .category-grid, .guide-grid, .split, .contact-grid, .footer-grid, .cta-panel, .resource-layout, .promo-grid, .catalog-toolbar, .product-detail-grid, .style-result-header, .inventory-search-row, .inventory-product-header, .designer-grid, .promo-duo, .feature-strip, .plugin-hero-inner {
    grid-template-columns: 1fr;
  }
  .nav-toggle { display: inline-block; }
  .site-nav { display: none; width: 100%; flex-direction: column; }
  .site-nav.open { display: flex; }
  .header-inner { flex-wrap: wrap; }
  .hero-inner, .page-hero { padding-top: 3rem; padding-bottom: 3rem; }
  .resource-sidebar { position: static; }
}
