/* ==========================================================================
   Microscope Manufacturers — Modern Theme
   Overrides + new sections for microscopemanufacturers.com
   Loads AFTER style1.css so these rules take precedence.
   ========================================================================== */

:root {
  --mm-navy:        #0b1b34;
  --mm-navy-2:      #0f213d;
  --mm-navy-3:      #142a4d;
  --mm-orange:      #f6a01f;
  --mm-orange-2:    #ffb84d;
  --mm-text:        #1c2434;
  --mm-muted:       #5a6477;
  --mm-line:        #e6eaf0;
  --mm-bg-soft:     #f5f7fb;
  --mm-bg-card:     #ffffff;
  --mm-radius:      14px;
  --mm-radius-lg:   22px;
  --mm-shadow:      0 10px 30px rgba(11,27,52,0.08);
  --mm-shadow-lg:   0 20px 60px rgba(11,27,52,0.18);
  --mm-font:        'Montserrat', system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --mm-serif:       'Georgia', 'Times New Roman', serif;
}

/* Base typography polish ----------------------------------------------------*/
body {
  font-family: var(--mm-font);
  color: var(--mm-text);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.mm-italic { font-style: italic; font-family: var(--mm-serif); font-weight: 500; color: var(--mm-orange); }

a { transition: color .2s ease, background .2s ease, transform .2s ease; }
img { max-width: 100%; height: auto; }

/* Buttons -------------------------------------------------------------------*/
.mm-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 26px;
  background: var(--mm-navy);
  color: #fff !important;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  border: 1px solid var(--mm-navy);
  line-height: 1;
  transition: all .25s ease;
}
.mm-btn:hover { background: var(--mm-orange); border-color: var(--mm-orange); color: #fff !important; transform: translateY(-1px); }
.mm-btn--ghost { background: transparent; color: var(--mm-navy) !important; }
.mm-btn--ghost:hover { background: var(--mm-navy); color: #fff !important; }
.mm-btn--orange { background: var(--mm-orange); border-color: var(--mm-orange); }
.mm-btn--orange:hover { background: var(--mm-navy); border-color: var(--mm-navy); }
.mm-btn--sm { padding: 10px 18px; font-size: 13px; }

/* ============================================================
   HEADER NAVIGATION + DROPDOWN
   ============================================================ */

/* Logo — inline aperture mark + serif wordmark (matches reference) */
.mm-logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: var(--mm-navy);
  line-height: 1;
}
.mm-logo:hover { text-decoration: none; }
.mm-logo__mark {
  width: 48px;
  height: 48px;
  color: #2563EB; /* blue ring (matches reference image) */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.mm-logo__mark svg { width: 100%; height: 100%; display: block; }
.mm-logo__text {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
}
.mm-logo__word {
  font-family: 'Lora', Georgia, 'Times New Roman', serif;
  font-weight: 700;
  font-size: 28px;
  letter-spacing: -0.01em;
  color: var(--mm-navy);
  line-height: 1;
}
.mm-logo__sub {
  font-family: var(--mm-font);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .2em;
  color: var(--mm-muted);
  text-transform: uppercase;
  line-height: 1;
}
@media (max-width: 860px) {
  .mm-logo__mark { width: 40px; height: 40px; }
  .mm-logo__word { font-size: 22px; }
  .mm-logo__sub { font-size: 10px; letter-spacing: .18em; }
}
@media (max-width: 520px) {
  .mm-logo { gap: 10px; }
  .mm-logo__mark { width: 36px; height: 36px; }
  .mm-logo__word { font-size: 20px; }
  .mm-logo__sub { font-size: 9px; }
}

/* Menu */
.mm-header .topmenu > ul {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  padding: 0;
  margin: 0;
  justify-content: center;
}
.mm-header .topmenu > ul > li {
  position: relative;
}
.mm-header .topmenu > ul > li > a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 18px;
  color: var(--mm-text);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0;
  text-decoration: none;
  border-radius: 8px;
  text-transform: capitalize;
  transition: color .2s ease, background .2s ease;
}
.mm-header .topmenu > ul > li:hover > a,
.mm-header .topmenu > ul > li.active > a {
  color: var(--mm-orange);
}

/* Caret on dropdown trigger */
.mm-header .mm-caret {
  transition: transform .25s ease;
  margin-left: 2px;
  color: currentColor;
  flex-shrink: 0;
}
.mm-header .mm-has-dropdown:hover > a .mm-caret,
.mm-header .mm-has-dropdown.is-open > a .mm-caret {
  transform: rotate(180deg);
}

/* Mega-menu dropdown panel */
.mm-megamenu {
  position: absolute;
  top: calc(100% + 4px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  width: 580px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(11,27,52,.18), 0 4px 12px rgba(11,27,52,.06);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .22s ease, transform .22s ease, visibility 0s linear .22s;
  z-index: 200;
}
.mm-megamenu::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 0;
  width: 100%;
  height: 8px;
  background: transparent;
}
.mm-megamenu::after {
  content: "";
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 12px;
  height: 12px;
  background: #fff;
  border-radius: 2px;
  box-shadow: -2px -2px 6px rgba(11,27,52,.04);
}
.mm-has-dropdown:hover > .mm-megamenu,
.mm-has-dropdown.is-open > .mm-megamenu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
  transition: opacity .22s ease, transform .22s ease, visibility 0s linear 0s;
}

.mm-megamenu__inner {
  padding: 22px 24px;
}
.mm-megamenu__eyebrow {
  display: block;
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--mm-orange);
  font-weight: 700;
  margin-bottom: 14px;
}
.mm-megamenu__list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.mm-megamenu__list li { list-style: none; }
.mm-megamenu__list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 11px 12px;
  border-radius: 8px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--mm-text);
  text-decoration: none;
  line-height: 1.35;
  transition: background .15s ease, color .15s ease;
}
.mm-megamenu__list a:hover {
  background: var(--mm-bg-soft);
  color: var(--mm-orange);
}
.mm-megamenu__list a svg {
  color: var(--mm-muted);
  flex-shrink: 0;
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity .2s, transform .2s, color .2s;
}
.mm-megamenu__list a:hover svg {
  color: var(--mm-orange);
  opacity: 1;
  transform: translateX(0);
}

/* View All button at the bottom of the dropdown */
.mm-megamenu__viewall {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  background: var(--mm-navy);
  color: #fff !important;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  width: 100%;
  margin-top: 4px;
  transition: background .2s ease, transform .2s ease;
}
.mm-megamenu__viewall:hover {
  background: var(--mm-orange);
  transform: translateY(-1px);
}
.mm-megamenu__viewall svg { transition: transform .2s; }
.mm-megamenu__viewall:hover svg { transform: translateX(3px); }

/* Mobile / small-screen behaviour for the dropdown */
@media (max-width: 992px) {
  .mm-megamenu {
    position: static;
    transform: none !important;
    width: 100%;
    box-shadow: none;
    border-radius: 0;
    background: var(--mm-bg-soft);
    margin-top: 4px;
    opacity: 1;
    visibility: hidden;
    pointer-events: none;
    max-height: 0;
    overflow: hidden;
    padding: 0;
    transition: max-height .25s ease, padding .25s ease, visibility 0s linear .25s;
  }
  .mm-megamenu::after { display: none; }
  .mm-has-dropdown.is-open > .mm-megamenu {
    visibility: visible;
    pointer-events: auto;
    max-height: 600px;
    transition: max-height .35s ease, padding .25s ease, visibility 0s linear 0s;
  }
  .mm-megamenu__inner { padding: 14px 18px; }
  .mm-megamenu__list { grid-template-columns: 1fr; gap: 0; }
  .mm-megamenu__list a { padding: 12px 0; border-bottom: 1px solid var(--mm-line); border-radius: 0; }
  .mm-megamenu__list li:last-child a { border-bottom: none; }
  .mm-megamenu__list a svg { opacity: 1; transform: none; }
  .mm-header .mm-caret {
    /* Make the caret tappable on mobile */
    padding: 8px;
    margin: -8px -8px -8px 0;
    width: 26px;
    height: 26px;
  }
}

/* Section common ------------------------------------------------------------*/
.mm-section { padding: 80px 0; }
.mm-section--tight { padding: 60px 0; }
.mm-eyebrow {
  display: inline-block;
  font-size: 12px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--mm-orange); font-weight: 600;
  margin-bottom: 14px;
}
.mm-section-title {
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 700;
  color: var(--mm-navy);
  margin: 0 0 14px;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.mm-section-sub {
  color: var(--mm-muted);
  font-size: 16px;
  max-width: 680px;
  margin: 0 auto 40px;
}
.mm-section-head { text-align: center; margin-bottom: 50px; }
.mm-section-head--left { text-align: left; }

/* ============================================================
   1. HERO
   ============================================================ */
.mm-hero {
  background: linear-gradient(180deg, #eef2fb 0%, #f7f9fd 100%);
  padding: 70px 0 60px;
  position: relative;
  overflow: hidden;
}
.mm-hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 50px;
  align-items: center;
}
.mm-hero__badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff;
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 12px; font-weight: 600;
  color: var(--mm-navy);
  box-shadow: var(--mm-shadow);
  margin-bottom: 22px;
}
.mm-hero__badge::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%;
  background: #2dd86b; box-shadow: 0 0 0 4px rgba(45,216,107,.18);
}
.mm-hero__title {
  font-size: clamp(34px, 4.6vw, 60px);
  font-weight: 700;
  color: var(--mm-navy);
  line-height: 1.07;
  letter-spacing: -0.02em;
  margin: 0 0 22px;
}
.mm-hero__title em { font-style: italic; color: var(--mm-orange); font-family: var(--mm-serif); font-weight: 600; }
.mm-hero__lead {
  font-size: 16px;
  color: var(--mm-muted);
  max-width: 540px;
  margin: 0 0 30px;
  line-height: 1.65;
}
.mm-hero__cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }
.mm-hero__stats {
  display: flex; gap: 38px; flex-wrap: wrap;
  padding-top: 26px;
  border-top: 1px solid rgba(11,27,52,.1);
}
.mm-hero__stat strong {
  display: block;
  font-size: 28px; font-weight: 700;
  color: var(--mm-navy);
}
.mm-hero__stat span {
  font-size: 12px; color: var(--mm-muted);
  letter-spacing: .05em;
}
.mm-hero__visual {
  position: relative;
  border-radius: var(--mm-radius-lg);
  overflow: hidden;
  aspect-ratio: 1/1;
  background: var(--mm-navy);
  box-shadow: var(--mm-shadow-lg);
}
.mm-hero__visual img {
  width: 100%; height: 100%; object-fit: cover;
  display: block;
}
.mm-hero__visual::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(246,160,31,.18), transparent 60%);
  pointer-events: none;
}

/* ============================================================
   2. BEST-SELLING PRODUCTS
   ============================================================ */
.mm-bestsell { background: #fff; padding: 90px 0; }
.mm-prod-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.mm-prod-card {
  background: #fff;
  border: 1px solid var(--mm-line);
  border-radius: var(--mm-radius);
  padding: 18px;
  transition: all .3s ease;
  display: flex; flex-direction: column;
}
.mm-prod-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--mm-shadow-lg);
  border-color: transparent;
}
.mm-prod-card__img {
  aspect-ratio: 1/1;
  background: var(--mm-bg-soft);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 16px;
  display: flex; align-items: center; justify-content: center;
}
.mm-prod-card__img img { width: 100%; height: 100%; object-fit: cover; }
.mm-prod-card__title {
  font-size: 14px; font-weight: 600;
  color: var(--mm-navy);
  min-height: 42px;
  margin: 0 0 8px;
  line-height: 1.4;
}
.mm-prod-card__title a { color: inherit; text-decoration: none; }
.mm-prod-card__title a:hover { color: var(--mm-orange); }
.mm-prod-card__meta {
  font-size: 11px; color: var(--mm-muted);
  margin-bottom: 12px; line-height: 1.5;
}
.mm-prod-card__price {
  font-size: 20px; font-weight: 700;
  color: var(--mm-navy);
  margin-bottom: 14px;
}
.mm-prod-card__price small { font-size: 11px; color: var(--mm-muted); font-weight: 500; margin-left: 6px; }
.mm-prod-card .mm-btn { margin-top: auto; width: 100%; justify-content: center; }
.mm-bestsell__more { text-align: center; margin-top: 40px; }

/* ============================================================
   3. SHOP BY INDUSTRY (Mosaic)
   ============================================================ */
.mm-industry { background: var(--mm-bg-soft); padding: 90px 0; }
.mm-industry__head {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 40px; gap: 30px; flex-wrap: wrap;
}
.mm-industry__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.mm-ind-card {
  position: relative;
  border-radius: var(--mm-radius);
  overflow: hidden;
  min-height: 220px;
  background: var(--mm-navy);
  display: flex; align-items: flex-end;
  padding: 24px;
  color: #fff;
  text-decoration: none;
}
.mm-ind-card__img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform .6s ease;
}
.mm-ind-card:hover .mm-ind-card__img { transform: scale(1.06); }
.mm-ind-card__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(11,27,52,.85) 0%, rgba(11,27,52,.35) 60%);
}
.mm-ind-card__body { position: relative; z-index: 2; max-width: 60%; }
.mm-ind-card__title {
  font-size: 22px; font-weight: 700; color: #fff;
  margin: 0 0 6px;
}
.mm-ind-card__text { font-size: 13px; color: rgba(255,255,255,.85); margin: 0 0 12px; line-height: 1.5; }
.mm-ind-card__explore {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--mm-orange);
}

.mm-ind-card--teal .mm-ind-card__overlay { background: linear-gradient(135deg, rgba(20,90,90,.85) 0%, rgba(20,90,90,.4) 60%); }
.mm-ind-card--green .mm-ind-card__overlay { background: linear-gradient(135deg, rgba(36,80,52,.85) 0%, rgba(36,80,52,.4) 60%); }
.mm-ind-card--orange .mm-ind-card__overlay { background: linear-gradient(135deg, rgba(180,90,30,.85) 0%, rgba(180,90,30,.4) 60%); }

/* ============================================================
   4. FEATURED PRODUCT BANNER (Image-matched: 3 cards in a row)
   ============================================================ */
.mm-featured { background: var(--mm-bg-soft); padding: 60px 0; }
.mm-featured__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}

/* Big blue "Featured Product" callout */
.mm-feat-banner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #7E97C5; /* slate blue from reference */
  border-radius: 20px;
  padding: 38px 38px 32px;
  color: #fff;
  text-decoration: none;
  min-height: 460px;
  position: relative;
  overflow: hidden;
  transition: box-shadow .3s ease, transform .3s ease;
}
.mm-feat-banner:hover {
  text-decoration: none;
  color: #fff;
  box-shadow: 0 24px 60px rgba(126,151,197,.45);
  transform: translateY(-2px);
}
.mm-feat-banner__body { max-width: 90%; }
.mm-feat-banner__eyebrow {
  display: inline-block;
  font-size: 11px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: rgba(255,255,255,.95);
  font-weight: 700;
  margin-bottom: 18px;
}
.mm-feat-banner__title {
  font-family: var(--mm-serif);
  font-weight: 600;
  font-size: clamp(36px, 4vw, 50px);
  line-height: 1.08;
  color: #fff;
  letter-spacing: -0.01em;
  margin: 0 0 22px;
}
.mm-feat-banner__text {
  font-size: 14.5px;
  line-height: 1.7;
  color: rgba(255,255,255,.92);
  margin: 0 0 28px;
  max-width: 32ch;
}
.mm-feat-banner__cta {
  display: inline-flex;
  align-items: center;
  gap: 26px;
  align-self: flex-start;
  background: #fff;
  color: var(--mm-navy);
  padding: 14px 22px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  line-height: 1.05;
  transition: background .2s ease, color .2s ease;
  margin-top: auto;
}
.mm-feat-banner__cta svg {
  flex-shrink: 0;
  transition: transform .25s ease;
}
.mm-feat-banner:hover .mm-feat-banner__cta { background: var(--mm-navy); color: #fff; }
.mm-feat-banner:hover .mm-feat-banner__cta svg { transform: translateX(4px); }

/* The two product cards beside the banner */
.mm-feat-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none;
  color: var(--mm-text);
  transition: transform .3s ease, box-shadow .3s ease;
  min-height: 460px;
}
.mm-feat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 50px rgba(11,27,52,.14);
  text-decoration: none;
  color: var(--mm-text);
}
.mm-feat-card__img {
  background: #eef0f5;
  aspect-ratio: 16/11;
  padding: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.mm-feat-card__img img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform .4s ease;
}
.mm-feat-card:hover .mm-feat-card__img img { transform: scale(1.04); }

.mm-feat-card__body {
  display: flex;
  flex-direction: column;
  padding: 22px 26px 24px;
  flex: 1;
}
.mm-feat-card__title {
  font-size: 17px;
  font-weight: 700;
  color: var(--mm-navy);
  line-height: 1.35;
  margin: 0 0 8px;
  letter-spacing: -0.005em;
}
.mm-feat-card__meta {
  font-size: 13px;
  line-height: 1.55;
  color: var(--mm-muted);
  margin-bottom: 14px;
}
.mm-feat-card__price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--mm-line);
  margin-bottom: 14px;
}
.mm-feat-card__price {
  font-size: 22px;
  font-weight: 700;
  color: var(--mm-navy);
  letter-spacing: -0.01em;
}
.mm-feat-card__mrp {
  font-size: 13px;
  color: var(--mm-muted);
  text-decoration: line-through;
}
.mm-feat-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #4262B5; /* blue link from reference */
}
.mm-feat-card__link svg { transition: transform .2s ease; }
.mm-feat-card:hover .mm-feat-card__link svg { transform: translateX(4px); }

/* ============================================================
   4b. SHOP BY CATEGORY — full category grid
   ============================================================ */
.mm-shopcat { background: #fff; padding: 80px 0; }
.mm-shopcat__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.mm-shopcat-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--mm-line);
  border-radius: var(--mm-radius);
  overflow: hidden;
  text-decoration: none;
  color: var(--mm-text);
  transition: all .3s ease;
}
.mm-shopcat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--mm-shadow-lg);
  border-color: transparent;
  text-decoration: none;
  color: var(--mm-text);
}
.mm-shopcat-card__img {
  aspect-ratio: 4/3;
  background: var(--mm-bg-soft);
  overflow: hidden;
}
.mm-shopcat-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.mm-shopcat-card:hover .mm-shopcat-card__img img { transform: scale(1.06); }
.mm-shopcat-card__body {
  padding: 16px 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}
.mm-shopcat-card__parent {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--mm-orange);
}
.mm-shopcat-card__title {
  font-size: 15px;
  font-weight: 600;
  color: var(--mm-navy);
  margin: 0;
  line-height: 1.35;
  letter-spacing: -0.005em;
}
.mm-shopcat-card__row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
}
.mm-shopcat-card__count {
  font-size: 11px;
  font-weight: 600;
  color: var(--mm-muted);
  background: var(--mm-bg-soft);
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: 0;
}
.mm-shopcat-card__arrow {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--mm-bg-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--mm-navy);
  margin-left: auto;
  transition: all .2s ease;
  flex-shrink: 0;
}
.mm-shopcat-card:hover .mm-shopcat-card__arrow {
  background: var(--mm-orange);
  color: #fff;
  transform: translateX(2px);
}
.mm-shopcat__more {
  text-align: center;
  margin-top: 40px;
}

/* ============================================================
   5. STATS BAR
   ============================================================ */
.mm-statsbar {
  background: var(--mm-navy);
  background-image:
    radial-gradient(circle at 20% 50%, rgba(246,160,31,.08) 0%, transparent 40%),
    radial-gradient(circle at 80% 50%, rgba(246,160,31,.08) 0%, transparent 40%);
  padding: 60px 0;
  color: #fff;
}
.mm-statsbar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}
.mm-statsbar__item { padding: 10px; }
.mm-statsbar__num {
  font-size: 48px; font-weight: 700;
  color: var(--mm-orange);
  line-height: 1; margin-bottom: 10px;
  font-variant-numeric: tabular-nums;
}
.mm-statsbar__label {
  font-size: 11px; letter-spacing: .22em; text-transform: uppercase;
  color: rgba(255,255,255,.7);
}

/* ============================================================
   6. SEE OUR MICROSCOPES IN ACTION
   ============================================================ */
.mm-action {
  background: var(--mm-navy);
  background-image: linear-gradient(rgba(11,27,52,.85), rgba(11,27,52,.85)),
                    url('/images/microscope-bg.jpg');
  background-size: cover; background-position: center;
  padding: 90px 0;
  color: #fff;
}
.mm-action__grid {
  max-width: 720px;
}
.mm-action h2 { color: #fff; font-size: clamp(30px, 4vw, 48px); font-weight: 700; margin: 0 0 20px; letter-spacing: -0.01em; line-height: 1.1; }
.mm-action h2 em { color: var(--mm-orange); font-style: italic; font-family: var(--mm-serif); }
.mm-action p { color: rgba(255,255,255,.8); font-size: 15px; line-height: 1.7; max-width: 600px; margin: 0 0 30px; }
.mm-action .mm-btn { background: var(--mm-orange); border-color: var(--mm-orange); }
.mm-action .mm-btn:hover { background: #fff; color: var(--mm-navy) !important; border-color: #fff; }

/* ============================================================
   7. GUIDES FOR CUSTOMERS
   ============================================================ */
.mm-guides { background: #fff; padding: 90px 0; }
.mm-guides__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.mm-guide-card { text-decoration: none; color: inherit; display: block; }
.mm-guide-card__img {
  aspect-ratio: 4/3;
  border-radius: var(--mm-radius);
  overflow: hidden;
  margin-bottom: 16px;
  background: var(--mm-bg-soft);
}
.mm-guide-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.mm-guide-card:hover .mm-guide-card__img img { transform: scale(1.06); }
.mm-guide-card__title { font-size: 16px; font-weight: 600; color: var(--mm-navy); margin: 0 0 6px; }
.mm-guide-card__text { font-size: 13px; color: var(--mm-muted); margin: 0; line-height: 1.5; }

/* ============================================================
   8. MARQUEE — Compact trust-keyword ticker with icons
   ============================================================ */
.mm-marquee {
  background: #fff;
  padding: 16px 0;
  overflow: hidden;
  border-top: 1px solid var(--mm-line);
  border-bottom: 1px solid var(--mm-line);
  position: relative;
}
.mm-marquee::before,
.mm-marquee::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.mm-marquee::before { left: 0;  background: linear-gradient(to right, #fff 20%, transparent); }
.mm-marquee::after  { right: 0; background: linear-gradient(to left,  #fff 20%, transparent); }

.mm-marquee__track {
  display: flex;
  align-items: center;
  gap: 14px;
  white-space: nowrap;
  width: max-content;
  animation: mm-scroll 40s linear infinite;
}
.mm-marquee:hover .mm-marquee__track { animation-play-state: paused; }

.mm-marquee__chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--mm-navy);
  line-height: 1;
  flex-shrink: 0;
  border: 1px solid transparent;
  transition: transform .2s ease;
}
.mm-marquee__chip:hover { transform: translateY(-1px); }

.mm-marquee__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  flex-shrink: 0;
}
.mm-marquee__icon svg { display: block; }
.mm-marquee__label { letter-spacing: 0.01em; }

/* 5 colour variants alternating across the keyword set */
.mm-marquee__chip--a { background: rgba(246,160,31,.12); color: var(--mm-navy); }
.mm-marquee__chip--a .mm-marquee__icon { background: var(--mm-orange); color: #fff; }

.mm-marquee__chip--b { background: rgba(45,216,107,.12); color: var(--mm-navy); }
.mm-marquee__chip--b .mm-marquee__icon { background: #2dd86b; color: #fff; }

.mm-marquee__chip--c { background: rgba(66,98,181,.12); color: var(--mm-navy); }
.mm-marquee__chip--c .mm-marquee__icon { background: #4262B5; color: #fff; }

.mm-marquee__chip--d { background: rgba(11,27,52,.08); color: var(--mm-navy); }
.mm-marquee__chip--d .mm-marquee__icon { background: var(--mm-navy); color: var(--mm-orange); }

.mm-marquee__chip--e { background: rgba(217,70,239,.10); color: var(--mm-navy); }
.mm-marquee__chip--e .mm-marquee__icon { background: #b04ad6; color: #fff; }

@keyframes mm-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@media (max-width: 600px) {
  .mm-marquee { padding: 12px 0; }
  .mm-marquee__chip { font-size: 12px; padding: 7px 13px; gap: 6px; }
  .mm-marquee__icon { width: 20px; height: 20px; }
  .mm-marquee__icon svg { width: 13px; height: 13px; }
  .mm-marquee__track { animation-duration: 30s; }
  .mm-marquee::before, .mm-marquee::after { width: 40px; }
}

/* ============================================================
   9. HAPPY CUSTOMERS
   ============================================================ */
.mm-reviews { background: var(--mm-bg-soft); padding: 90px 0; }
.mm-reviews__head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 40px; flex-wrap: wrap; gap: 20px; }
.mm-reviews__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.mm-review-card {
  background: #fff;
  border-radius: var(--mm-radius);
  padding: 36px 32px;
  border: 1px solid var(--mm-line);
}
.mm-review-card__quote {
  font-size: 16px; line-height: 1.7;
  color: var(--mm-text);
  margin: 0 0 24px;
}
.mm-review-card__person { display: flex; align-items: center; gap: 14px; }
.mm-review-card__avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--mm-bg-soft);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: var(--mm-navy);
}
.mm-review-card__name { font-weight: 600; color: var(--mm-navy); font-size: 14px; }
.mm-review-card__role { font-size: 12px; color: var(--mm-muted); }

/* ============================================================
   10. TRUSTED BY (Certifications strip)
   ============================================================ */
.mm-trustedby {
  background: var(--mm-bg-soft);
  padding: 30px 0;
  border-top: 1px solid var(--mm-line);
}
.mm-trustedby__row {
  display: flex; justify-content: center; align-items: center;
  gap: 50px; flex-wrap: wrap;
}
.mm-trustedby__label {
  font-size: 11px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--mm-muted); font-weight: 600;
}
.mm-trustedby__logo {
  font-size: 14px; font-weight: 600; color: var(--mm-navy);
  opacity: .55; transition: opacity .2s;
}
.mm-trustedby__logo:hover { opacity: 1; }
.mm-trustedby__logo i { color: var(--mm-orange); margin-right: 6px; }

/* ============================================================
   11. FAMILY OWNED banner
   ============================================================ */
.mm-family {
  position: relative;
  border-radius: 0;
  overflow: hidden;
  min-height: 420px;
  display: flex; align-items: center;
  background: var(--mm-navy);
}
.mm-family__bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: .35;
}
.mm-family__content {
  position: relative; z-index: 2;
  padding: 60px;
  max-width: 600px;
  color: #fff;
}
.mm-family__eyebrow { font-size: 11px; letter-spacing: .25em; text-transform: uppercase; color: var(--mm-orange); margin-bottom: 16px; font-weight: 600; }
.mm-family h2 { font-size: clamp(28px, 3.6vw, 44px); font-weight: 700; color: #fff; margin: 0 0 18px; line-height: 1.15; letter-spacing: -0.01em; }
.mm-family h2 em { color: var(--mm-orange); font-style: italic; font-family: var(--mm-serif); }
.mm-family p { color: rgba(255,255,255,.8); font-size: 15px; line-height: 1.7; margin: 0 0 28px; }

/* ============================================================
   12. LEADING MANUFACTURERS (Content block)
   ============================================================ */
.mm-leading { background: #fff; padding: 90px 0; }
.mm-leading__inner { max-width: 920px; margin: 0 auto; }
.mm-leading h2 {
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 700; color: var(--mm-navy);
  margin: 0 0 18px; line-height: 1.2;
}
.mm-leading h3 {
  font-size: 20px; font-weight: 700; color: var(--mm-navy);
  margin: 32px 0 14px;
}
.mm-leading p { color: var(--mm-text); font-size: 15px; line-height: 1.75; margin: 0 0 16px; }
.mm-leading ul { padding: 0; margin: 0 0 16px; list-style: none; }
.mm-leading ul li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 8px;
  font-size: 14px; line-height: 1.65;
  color: var(--mm-text);
}
.mm-leading ul li::before {
  content: "";
  position: absolute; left: 0; top: 8px;
  width: 14px; height: 14px;
  border-radius: 4px;
  background: var(--mm-orange);
  background-image: linear-gradient(45deg, transparent 45%, #fff 50%, transparent 55%);
}

/* ============================================================
   13. FAQ
   ============================================================ */
.mm-faq { background: var(--mm-bg-soft); padding: 90px 0; }
.mm-faq__layout { display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; align-items: start; }
.mm-faq__head h2 { font-size: clamp(28px, 3.4vw, 44px); font-weight: 700; color: var(--mm-navy); margin: 0 0 18px; line-height: 1.15; }
.mm-faq__head h2 em { color: var(--mm-orange); font-style: italic; font-family: var(--mm-serif); }
.mm-faq__head p { color: var(--mm-muted); font-size: 14px; line-height: 1.6; margin: 0 0 24px; }
.mm-faq__list { display: flex; flex-direction: column; gap: 0; }
.mm-faq__item {
  border-bottom: 1px solid var(--mm-line);
  padding: 22px 0;
  cursor: pointer;
}
.mm-faq__item:first-child { border-top: 1px solid var(--mm-line); }
.mm-faq__q {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 16px; font-weight: 600; color: var(--mm-navy);
  margin: 0;
}
.mm-faq__q::after {
  content: "+";
  font-size: 24px; font-weight: 400; color: var(--mm-orange);
  transition: transform .3s;
  margin-left: 20px;
  flex-shrink: 0;
}
.mm-faq__item.is-open .mm-faq__q::after { content: "−"; }
.mm-faq__a {
  display: none;
  margin: 14px 0 0;
  font-size: 14px; line-height: 1.7; color: var(--mm-muted);
  padding-right: 40px;
}
.mm-faq__item.is-open .mm-faq__a { display: block; }

/* ============================================================
   14. CTA BANNER
   ============================================================ */
.mm-cta {
  background: linear-gradient(135deg, var(--mm-navy) 0%, var(--mm-navy-3) 100%);
  padding: 50px 0;
  color: #fff;
}
.mm-cta__row { display: flex; justify-content: space-between; align-items: center; gap: 30px; flex-wrap: wrap; }
.mm-cta__text h3 { font-size: clamp(22px, 2.6vw, 32px); font-weight: 700; color: #fff; margin: 0 0 6px; }
.mm-cta__text p { color: rgba(255,255,255,.7); font-size: 14px; margin: 0; }
.mm-cta__actions { display: flex; gap: 12px; flex-wrap: wrap; }
.mm-cta .mm-btn { background: var(--mm-orange); border-color: var(--mm-orange); }
.mm-cta .mm-btn:hover { background: #fff; color: var(--mm-navy) !important; border-color: #fff; }
.mm-cta .mm-btn--ghost { background: transparent; color: #fff !important; border-color: rgba(255,255,255,.3); }
.mm-cta .mm-btn--ghost:hover { background: #fff; color: var(--mm-navy) !important; border-color: #fff; }

/* ============================================================
   15. DARK FOOTER  (overrides .footersec)
   ============================================================ */
.mm-footer {
  background: var(--mm-navy);
  color: rgba(255,255,255,.75);
  padding: 80px 0 0;
  font-size: 14px;
  position: relative;
}
.mm-footer .container { max-width: 1280px; }
.mm-footer__hero {
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.mm-footer__hero h2 {
  font-size: clamp(28px, 3.6vw, 44px);
  font-weight: 700; color: #fff;
  margin: 0 0 22px; line-height: 1.15; letter-spacing: -0.01em;
}
.mm-footer__hero h2 em {
  color: var(--mm-orange); font-style: italic; font-family: var(--mm-serif);
}
.mm-footer__hero p { color: rgba(255,255,255,.65); font-size: 15px; line-height: 1.7; max-width: 1000px; margin: 0; }

.mm-footer__cols {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 50px;
  padding: 60px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.mm-footer__brand { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.mm-footer__brand-icon {
  width: 44px; height: 44px;
  border: 1.5px solid rgba(255,255,255,.25);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
}
.mm-footer__brand-text strong { display: block; font-size: 17px; font-weight: 700; color: #fff; letter-spacing: -0.01em; }
.mm-footer__brand-text small { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.6); }
.mm-footer__about { font-size: 13px; line-height: 1.65; color: rgba(255,255,255,.65); margin: 0 0 24px; max-width: 320px; }
.mm-footer__contact { display: flex; flex-direction: column; gap: 10px; margin-bottom: 22px; }
.mm-footer__contact a, .mm-footer__contact span {
  display: flex; align-items: flex-start; gap: 10px;
  color: rgba(255,255,255,.75); text-decoration: none;
  font-size: 13px; line-height: 1.5;
}
.mm-footer__contact a:hover { color: var(--mm-orange); }
.mm-footer__contact i { color: var(--mm-orange); margin-top: 2px; flex-shrink: 0; }

.mm-footer__social { display: flex; gap: 8px; }
.mm-footer__social a {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: inline-flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.85);
  text-decoration: none;
  transition: all .2s;
}
.mm-footer__social a:hover { background: var(--mm-orange); color: #fff; }

.mm-footer__heading {
  font-size: 11px; letter-spacing: .22em; text-transform: uppercase;
  color: #fff; font-weight: 700;
  margin: 0 0 22px;
}
.mm-footer__list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.mm-footer__list a {
  color: rgba(255,255,255,.7);
  text-decoration: none;
  font-size: 14px;
  transition: color .2s;
}
.mm-footer__list a:hover { color: var(--mm-orange); }

.mm-footer__regions {
  padding: 35px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.mm-footer__regions-label {
  font-size: 11px; letter-spacing: .22em; text-transform: uppercase;
  color: #fff; font-weight: 700;
  margin-bottom: 18px;
}
.mm-footer__chips { display: flex; flex-wrap: wrap; gap: 10px; }
.mm-footer__chips a {
  display: inline-block;
  padding: 7px 16px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 999px;
  font-size: 12px;
  color: rgba(255,255,255,.8);
  text-decoration: none;
  transition: all .2s;
}
.mm-footer__chips a:hover { background: var(--mm-orange); border-color: var(--mm-orange); color: #fff; }

.mm-footer__bottom {
  padding: 24px 0;
  display: flex; justify-content: space-between; align-items: center;
  gap: 20px; flex-wrap: wrap;
  font-size: 12px; color: rgba(255,255,255,.55);
}
.mm-footer__bottom-links { display: flex; gap: 26px; flex-wrap: wrap; }
.mm-footer__bottom-links a { color: rgba(255,255,255,.7); text-decoration: none; font-size: 13px; }
.mm-footer__bottom-links a:hover { color: var(--mm-orange); }

/* Hide the old footer when modern footer is in use */
body.mm-modern footer.footersec { display: none !important; }

/* ============================================================
   16. INNER PAGE BANNER (Breadcrumb header)
   ============================================================ */
.mm-innerbanner {
  background: linear-gradient(135deg, var(--mm-navy) 0%, var(--mm-navy-3) 100%);
  background-image:
    radial-gradient(circle at 15% 20%, rgba(246,160,31,.10) 0%, transparent 40%),
    radial-gradient(circle at 85% 80%, rgba(246,160,31,.08) 0%, transparent 40%),
    linear-gradient(135deg, var(--mm-navy) 0%, var(--mm-navy-3) 100%);
  padding: 70px 0 60px;
  color: #fff;
}
.mm-innerbanner h1 {
  font-size: clamp(28px, 3.6vw, 44px);
  font-weight: 700;
  color: #fff;
  margin: 0 0 14px;
  letter-spacing: -0.01em;
  line-height: 1.15;
}
.mm-innerbanner h1 em { color: var(--mm-orange); font-style: italic; font-family: var(--mm-serif); font-weight: 600; }
.mm-breadcrumbs {
  font-size: 13px;
  color: rgba(255,255,255,.7);
}
.mm-breadcrumbs a {
  color: rgba(255,255,255,.85);
  text-decoration: none;
  transition: color .2s;
}
.mm-breadcrumbs a:hover { color: var(--mm-orange); }
.mm-breadcrumbs span,
.mm-breadcrumbs strong {
  color: var(--mm-orange);
  font-weight: 600;
}

/* ============================================================
   17. PRODUCT LISTING LAYOUT (with sidebar)
   ============================================================ */
.mm-listing { background: var(--mm-bg-soft); padding: 60px 0 80px; }
.mm-listing__grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 32px;
  align-items: start;
}

/* Sidebar -------- */
.mm-sidebar {
  background: #fff;
  border-radius: var(--mm-radius);
  padding: 24px 22px;
  box-shadow: 0 2px 12px rgba(11,27,52,.04);
}
.mm-sidebar__heading {
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--mm-orange);
  font-weight: 700;
  margin: 0 0 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--mm-line);
}
.mm-sidebar__menu { list-style: none; padding: 0; margin: 0; }
.mm-sidebar__menu > li {
  border-bottom: 1px solid var(--mm-line);
  padding: 6px 0 10px;
}
.mm-sidebar__menu > li:last-child { border-bottom: none; padding-bottom: 0; }
.mm-sidebar__menu > li:first-child { padding-top: 0; }

/* MAIN CATEGORY — bigger, bolder, navy */
.mm-sidebar__menu > li > a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 0 8px;
  color: var(--mm-navy);
  text-decoration: none;
  font-size: 14.5px;
  font-weight: 700;
  letter-spacing: -0.005em;
  line-height: 1.3;
  transition: color .2s;
}
.mm-sidebar__menu > li > a::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 2px;
  background: var(--mm-orange);
  flex-shrink: 0;
  transition: transform .2s, background .2s;
}
.mm-sidebar__menu > li > a:hover { color: var(--mm-orange); }
.mm-sidebar__menu > li.is-active > a {
  color: var(--mm-orange);
}
.mm-sidebar__menu > li.is-active > a::before {
  background: var(--mm-orange);
  transform: scale(1.4);
}
.mm-sidebar__menu > li > a span {
  flex: 1;
}

/* Hide the +/− toggle — sub-categories are always visible */
.mm-sidebar__menu .submenu-toogle { display: none; }

/* SUB-CATEGORIES — always visible, indented, lighter */
.mm-sidebar__menu .submenu {
  list-style: none;
  padding: 4px 0 4px 14px;
  margin: 0;
  display: block;            /* always shown — no accordion */
  border-left: 1px solid var(--mm-line);
  margin-left: 3px;
}
.mm-sidebar__menu .submenu li a {
  display: block;
  padding: 6px 0 6px 12px;
  font-size: 13px;
  font-weight: 500;
  color: var(--mm-muted);
  text-decoration: none;
  line-height: 1.4;
  position: relative;
  transition: all .15s;
}
.mm-sidebar__menu .submenu li a::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 1px;
  background: var(--mm-line);
  transition: all .15s;
}
.mm-sidebar__menu .submenu li a:hover {
  color: var(--mm-orange);
  padding-left: 14px;
}
.mm-sidebar__menu .submenu li a:hover::before {
  background: var(--mm-orange);
  width: 8px;
}
.mm-sidebar__menu .submenu li.is-active a {
  color: var(--mm-orange);
  font-weight: 600;
}
.mm-sidebar__menu .submenu li.is-active a::before {
  background: var(--mm-orange);
  width: 8px;
}

/* Listing main column ------ */
.mm-listing__main { min-width: 0; }
.mm-listing__header {
  background: #fff;
  border-radius: var(--mm-radius);
  padding: 28px 30px;
  margin-bottom: 24px;
  box-shadow: 0 2px 12px rgba(11,27,52,.04);
}
.mm-listing__header h1,
.mm-listing__header h2 {
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 700;
  color: var(--mm-navy);
  margin: 0 0 12px;
  letter-spacing: -0.01em;
}
.mm-listing__header p,
.mm-listing__header div {
  color: var(--mm-muted);
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
}

/* Sub-category cards (mosaic) ---------- */
.mm-subcat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}
.mm-subcat-card {
  background: #fff;
  border-radius: var(--mm-radius);
  overflow: hidden;
  text-decoration: none;
  display: flex; flex-direction: column;
  transition: all .3s ease;
  box-shadow: 0 2px 12px rgba(11,27,52,.04);
}
.mm-subcat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--mm-shadow-lg);
}
.mm-subcat-card__img {
  aspect-ratio: 4/3;
  background: var(--mm-bg-soft);
  overflow: hidden;
}
.mm-subcat-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s;
}
.mm-subcat-card:hover .mm-subcat-card__img img { transform: scale(1.05); }
.mm-subcat-card__body {
  padding: 16px 20px;
}
.mm-subcat-card__body h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--mm-navy);
  margin: 0;
  line-height: 1.4;
}

/* Product detail rows in listing ----------- */
.mm-listing__items {
  background: #fff;
  border-radius: var(--mm-radius);
  padding: 0;
  box-shadow: 0 2px 12px rgba(11,27,52,.04);
  overflow: hidden;
}
.mm-prod-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 28px;
  padding: 24px 28px;
  border-bottom: 1px solid var(--mm-line);
  transition: background .2s;
}
.mm-prod-row:last-child { border-bottom: none; }
.mm-prod-row:hover { background: var(--mm-bg-soft); }
.mm-prod-row__img {
  aspect-ratio: 1/1;
  border-radius: 10px;
  overflow: hidden;
  background: var(--mm-bg-soft);
  display: block;
}
.mm-prod-row__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s;
}
.mm-prod-row__img:hover img { transform: scale(1.05); }
.mm-prod-row__body { display: flex; flex-direction: column; }
.mm-prod-row__title {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.005em;
}
.mm-prod-row__title a { color: var(--mm-navy); text-decoration: none; }
.mm-prod-row__title a:hover { color: var(--mm-orange); }
.mm-prod-row__code {
  font-size: 12px;
  color: var(--mm-muted);
  margin-bottom: 12px;
}
.mm-prod-row__code strong { color: var(--mm-navy); }
.mm-prod-row__desc {
  font-size: 14px;
  color: var(--mm-muted);
  line-height: 1.6;
  margin: 0 0 16px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.mm-prod-row__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: auto;
}

/* Pagination ---------------- */
.mm-pagination {
  display: flex;
  justify-content: center;
  gap: 6px;
  padding: 30px 0 10px;
  flex-wrap: wrap;
}
.mm-pagination a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px;
  border-radius: 8px;
  background: #fff;
  color: var(--mm-navy);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  border: 1px solid var(--mm-line);
  transition: all .2s;
}
.mm-pagination a:hover,
.mm-pagination a.is-active {
  background: var(--mm-navy);
  color: #fff;
  border-color: var(--mm-navy);
}

/* Long description block under listing ---------- */
.mm-listing__longdesc {
  background: #fff;
  border-radius: var(--mm-radius);
  padding: 30px 32px;
  margin-top: 24px;
  box-shadow: 0 2px 12px rgba(11,27,52,.04);
  color: var(--mm-text);
  font-size: 14px;
  line-height: 1.75;
}
.mm-listing__longdesc h2, .mm-listing__longdesc h3 {
  color: var(--mm-navy);
  font-weight: 700;
  margin: 18px 0 12px;
}
.mm-listing__longdesc h2 { font-size: 22px; }
.mm-listing__longdesc h3 { font-size: 17px; }
.mm-listing__longdesc p { margin: 0 0 12px; }
.mm-listing__longdesc ul { padding-left: 22px; }
.mm-listing__longdesc a { color: var(--mm-orange); }

/* ============================================================
   18. PRODUCT DETAIL PAGE
   ============================================================ */
.mm-pdp { background: var(--mm-bg-soft); padding: 50px 0 80px; }
.mm-pdp__top {
  background: #fff;
  border-radius: var(--mm-radius);
  padding: 36px;
  box-shadow: 0 2px 12px rgba(11,27,52,.04);
  margin-bottom: 30px;
}
.mm-pdp__top-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 40px;
  align-items: start;
}
.mm-pdp__gallery {
  background: linear-gradient(135deg, #eef2fb 0%, #f7f9fd 50%, #eef2fb 100%);
  border-radius: var(--mm-radius);
  padding: 28px 28px 22px;
  text-align: center;
  position: sticky;
  top: 90px;
  border: 1px solid rgba(11,27,52,.04);
  overflow: hidden;
}
.mm-pdp__gallery::before {
  content: "";
  position: absolute;
  width: 240px; height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(246,160,31,.18), transparent 70%);
  top: -60px; right: -60px;
  pointer-events: none;
}
.mm-pdp__gallery::after {
  content: "";
  position: absolute;
  width: 180px; height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(66,98,181,.14), transparent 70%);
  bottom: -40px; left: -40px;
  pointer-events: none;
}
.mm-pdp__gallery-stage {
  position: relative;
  z-index: 2;
  background: rgba(255,255,255,.65);
  border-radius: 12px;
  padding: 28px 18px;
  backdrop-filter: blur(4px);
}
.mm-pdp__gallery img {
  max-width: 100%;
  max-height: 380px;
  width: auto;
  height: auto;
  border-radius: 8px;
  cursor: zoom-in;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 12px 24px rgba(11,27,52,.12));
  transition: transform .35s ease;
}
.mm-pdp__gallery:hover img { transform: scale(1.02); }
.mm-pdp__gallery-badge {
  position: absolute;
  top: 18px; left: 18px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  background: var(--mm-orange);
  color: #fff;
  padding: 6px 11px;
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(246,160,31,.35);
}
.mm-pdp__gallery-foot {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 11px;
  font-weight: 600;
  color: var(--mm-muted);
  margin-top: 14px;
  padding: 0 4px;
}
.mm-pdp__gallery-foot span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.mm-pdp__gallery-foot svg { color: var(--mm-orange); flex-shrink: 0; }

/* Info column */
.mm-pdp__cat-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--mm-orange);
  margin-bottom: 12px;
}
.mm-pdp__cat-tag svg { color: var(--mm-orange); }
.mm-pdp__info h1 {
  font-size: clamp(26px, 2.8vw, 36px);
  font-weight: 700;
  color: var(--mm-navy);
  letter-spacing: -0.015em;
  line-height: 1.15;
  margin: 0 0 14px;
}
.mm-pdp__intro {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--mm-muted);
  margin-bottom: 22px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--mm-line);
}

/* Trust pills — coloured by purpose */
.mm-pdp__pillrow {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 24px;
}
.mm-pdp__pill {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px;
  font-weight: 700;
  padding: 7px 14px 7px 7px;
  border-radius: 999px;
  letter-spacing: .03em;
  background: var(--mm-bg-soft);
  color: var(--mm-navy);
  transition: transform .2s ease;
}
.mm-pdp__pill:hover { transform: translateY(-1px); }
.mm-pdp__pill-icon {
  width: 22px; height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}
.mm-pdp__pill--blue   { background: rgba(66,98,181,.10); }
.mm-pdp__pill--blue   .mm-pdp__pill-icon { background: #4262B5; }
.mm-pdp__pill--green  { background: rgba(45,180,107,.12); }
.mm-pdp__pill--green  .mm-pdp__pill-icon { background: #2db46b; }
.mm-pdp__pill--orange { background: rgba(246,160,31,.14); }
.mm-pdp__pill--orange .mm-pdp__pill-icon { background: var(--mm-orange); }
.mm-pdp__pill--purple { background: rgba(176,74,214,.12); }
.mm-pdp__pill--purple .mm-pdp__pill-icon { background: #b04ad6; }

/* Quantity + Add to Cart row */
.mm-pdp__buyrow {
  display: flex;
  align-items: stretch;
  gap: 14px;
  margin-top: 8px;
  margin-bottom: 12px;
}
.mm-pdp__qty {
  display: inline-flex;
  align-items: stretch;
  border: 1.5px solid var(--mm-line);
  border-radius: 999px;
  overflow: hidden;
  background: #fff;
}
.mm-pdp__qty-btn {
  width: 44px;
  border: none;
  background: transparent;
  font-size: 20px;
  font-weight: 500;
  color: var(--mm-navy);
  cursor: pointer;
  transition: background .15s ease;
  line-height: 1;
}
.mm-pdp__qty-btn:hover { background: var(--mm-bg-soft); color: var(--mm-orange); }
.mm-pdp__qty-input {
  width: 56px;
  border: none;
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  color: var(--mm-navy);
  background: transparent;
  font-family: var(--mm-font);
  -moz-appearance: textfield;
}
.mm-pdp__qty-input::-webkit-outer-spin-button,
.mm-pdp__qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.mm-pdp__qty-input:focus { outline: none; }

.mm-pdp__add {
  flex: 1;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  padding: 14px 24px;
  background: var(--mm-orange);
  border-color: var(--mm-orange);
}
.mm-pdp__add:hover {
  background: var(--mm-navy);
  border-color: var(--mm-navy);
  transform: translateY(-1px);
}

.mm-pdp__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.mm-pdp__action {
  flex: 1;
  justify-content: center;
  min-width: 0;
}
.mm-pdp-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 24px;
}
.mm-pdp-table td {
  padding: 12px 16px;
  font-size: 14px;
  border-bottom: 1px solid var(--mm-line);
  vertical-align: top;
  line-height: 1.6;
}
.mm-pdp-table tr:last-child td { border-bottom: none; }
.mm-pdp-table td:first-child {
  width: 35%;
  font-weight: 600;
  color: var(--mm-navy);
  background: var(--mm-bg-soft);
}
.mm-pdp-table td:last-child {
  color: var(--mm-text);
}
.mm-pdp-table td a {
  color: var(--mm-orange);
  text-decoration: none;
}
.mm-pdp-table td a:hover { text-decoration: underline; }

/* Tabs / Description / Specification block ----- */
.mm-pdp__tabs {
  background: #fff;
  border-radius: var(--mm-radius);
  padding: 32px 36px;
  box-shadow: 0 2px 12px rgba(11,27,52,.04);
  margin-bottom: 30px;
}
.mm-pdp__tabs-head {
  display: flex; gap: 8px;
  border-bottom: 1px solid var(--mm-line);
  margin-bottom: 26px;
  padding-bottom: 0;
}
.mm-pdp__tab {
  padding: 12px 22px;
  font-size: 14px;
  font-weight: 600;
  color: var(--mm-muted);
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  cursor: pointer;
}
.mm-pdp__tab.is-active {
  color: var(--mm-navy);
  border-bottom-color: var(--mm-orange);
}
.mm-pdp__tab-body {
  font-size: 14px;
  line-height: 1.75;
  color: var(--mm-text);
}
.mm-pdp__tab-body h2,
.mm-pdp__tab-body h3 {
  color: var(--mm-navy);
  font-weight: 700;
  margin: 22px 0 12px;
}
.mm-pdp__tab-body h2 { font-size: 22px; }
.mm-pdp__tab-body h3 { font-size: 17px; }
.mm-pdp__tab-body .heading2 {
  font-size: 18px; font-weight: 700; color: var(--mm-navy);
  margin: 22px 0 12px;
  padding-top: 12px;
  border-top: 1px solid var(--mm-line);
}
.mm-pdp__tab-body p { margin: 0 0 12px; }
.mm-pdp__tab-body ul { padding-left: 22px; margin: 0 0 12px; }
.mm-pdp__tab-body img { max-width: 100%; height: auto; border-radius: 8px; }
.mm-pdp__tab-body table {
  width: 100%; border-collapse: collapse; margin: 12px 0;
}
.mm-pdp__tab-body table td,
.mm-pdp__tab-body table th {
  padding: 10px 14px;
  border: 1px solid var(--mm-line);
  font-size: 14px;
}
.mm-pdp__tab-body table th {
  background: var(--mm-bg-soft);
  color: var(--mm-navy);
  font-weight: 600;
}

/* Related products ----------- */
.mm-related {
  background: #fff;
  border-radius: var(--mm-radius);
  padding: 32px 36px;
  box-shadow: 0 2px 12px rgba(11,27,52,.04);
}
.mm-related__head { margin-bottom: 24px; }
.mm-related__head h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--mm-navy);
  margin: 0 0 6px;
  letter-spacing: -0.01em;
}
.mm-related__head p {
  font-size: 14px;
  color: var(--mm-muted);
  margin: 0;
}
.mm-related__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.mm-related__grid li { list-style: none; }
.mm-related-card {
  display: flex; flex-direction: column;
  text-decoration: none;
  border: 1px solid var(--mm-line);
  border-radius: 10px;
  overflow: hidden;
  transition: all .25s;
}
.mm-related-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--mm-shadow);
  border-color: transparent;
}
.mm-related-card__img {
  aspect-ratio: 1/1;
  background: var(--mm-bg-soft);
  overflow: hidden;
}
.mm-related-card__img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s;
}
.mm-related-card:hover .mm-related-card__img img { transform: scale(1.05); }
.mm-related-card__body {
  padding: 14px 16px 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mm-related-card__body h3 {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--mm-navy);
  line-height: 1.4;
  margin: 0;
}
.mm-related-card__code {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .05em;
  color: var(--mm-muted);
  margin-top: 2px;
}
.mm-related-card__link {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--mm-orange);
  margin-top: 8px;
  transition: gap .2s ease;
  display: inline-block;
}
.mm-related-card:hover .mm-related-card__link { color: var(--mm-navy); }

.mm-related__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.mm-related__see-all { flex-shrink: 0; }

/* ============================================================
   18b. PDP — Manufacturer promise band + Bulk CTA
   ============================================================ */
.mm-pdp__promise {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 30px;
}
.mm-pdp__promise-item {
  background: #fff;
  border-radius: var(--mm-radius);
  padding: 22px 22px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  box-shadow: 0 2px 12px rgba(11,27,52,.04);
  transition: transform .25s ease, box-shadow .25s ease;
}
.mm-pdp__promise-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(11,27,52,.10);
}
.mm-pdp__promise-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(246,160,31,.12);
  color: var(--mm-orange);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.mm-pdp__promise-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.mm-pdp__promise-text strong {
  font-size: 14px;
  font-weight: 700;
  color: var(--mm-navy);
  letter-spacing: -0.005em;
}
.mm-pdp__promise-text span {
  font-size: 12px;
  line-height: 1.5;
  color: var(--mm-muted);
}

/* Bulk-enquiry CTA band */
.mm-pdp__bulk-cta {
  background: linear-gradient(135deg, var(--mm-navy) 0%, var(--mm-navy-3) 100%);
  background-image:
    radial-gradient(circle at 12% 80%, rgba(246,160,31,.16) 0%, transparent 45%),
    radial-gradient(circle at 88% 20%, rgba(66,98,181,.18) 0%, transparent 45%),
    linear-gradient(135deg, var(--mm-navy) 0%, var(--mm-navy-3) 100%);
  border-radius: var(--mm-radius);
  padding: 36px 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 30px;
  color: #fff;
}
.mm-pdp__bulk-cta-text { flex: 1; min-width: 260px; }
.mm-pdp__bulk-cta-text h3 {
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 700;
  color: #fff;
  margin: 6px 0 8px;
  letter-spacing: -0.01em;
  line-height: 1.25;
}
.mm-pdp__bulk-cta-text p {
  color: rgba(255,255,255,.72);
  font-size: 13.5px;
  line-height: 1.6;
  margin: 0;
  max-width: 540px;
}
.mm-pdp__bulk-cta-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
}
.mm-pdp__bulk-cta-btn {
  background: var(--mm-orange);
  border-color: var(--mm-orange);
  color: #fff !important;
  padding: 14px 26px;
}
.mm-pdp__bulk-cta-btn:hover {
  background: #fff;
  color: var(--mm-navy) !important;
  border-color: #fff;
  transform: translateY(-1px);
}
.mm-pdp__bulk-cta-mail {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,.85);
  text-decoration: none;
  transition: color .2s ease;
}
.mm-pdp__bulk-cta-mail svg { color: var(--mm-orange); }
.mm-pdp__bulk-cta-mail:hover { color: #fff; }


/* ============================================================
   19. ABOUT PAGE — Intro split, Mission/Vision, Expertise, Why, Clients
   ============================================================ */
.mm-about-intro { background: #fff; padding: 80px 0; }
.mm-about-intro__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
  align-items: center;
}
.mm-about-intro__visual {
  border-radius: var(--mm-radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--mm-navy);
  box-shadow: var(--mm-shadow-lg);
}
.mm-about-intro__visual img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.mm-about-intro__content h2 {
  font-size: clamp(28px, 3.4vw, 42px);
  font-weight: 700;
  color: var(--mm-navy);
  margin: 0 0 20px;
  letter-spacing: -0.01em;
  line-height: 1.15;
}
.mm-about-intro__content p {
  color: var(--mm-text);
  font-size: 15px;
  line-height: 1.75;
  margin: 0 0 16px;
}

/* Mission & Vision -------- */
.mm-mv { background: var(--mm-bg-soft); padding: 80px 0; }
.mm-mv__head { text-align: center; margin-bottom: 40px; }
.mm-mv__head h2 { font-size: clamp(28px, 3.2vw, 40px); font-weight: 700; color: var(--mm-navy); margin: 0; letter-spacing: -0.01em; }
.mm-mv__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.mm-mv__card {
  background: #fff;
  border-radius: var(--mm-radius);
  padding: 38px 36px;
  box-shadow: 0 2px 12px rgba(11,27,52,.05);
  transition: all .25s;
}
.mm-mv__card:hover { transform: translateY(-3px); box-shadow: var(--mm-shadow-lg); }
.mm-mv__icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: rgba(246,160,31,.12);
  color: var(--mm-orange);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.mm-mv__card h3 {
  font-size: 22px; font-weight: 700;
  color: var(--mm-navy);
  margin: 0 0 12px;
  letter-spacing: -0.01em;
}
.mm-mv__card p {
  font-size: 15px; line-height: 1.7;
  color: var(--mm-muted);
  margin: 0;
}

/* Expertise — 9 numbered cards ----- */
.mm-expertise { background: #fff; padding: 80px 0; }
.mm-expertise__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.mm-expertise__card {
  background: #fff;
  border: 1px solid var(--mm-line);
  border-radius: var(--mm-radius);
  padding: 32px 28px;
  transition: all .25s;
  position: relative;
}
.mm-expertise__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--mm-shadow-lg);
  border-color: transparent;
}
.mm-expertise__num {
  font-size: 32px;
  font-weight: 700;
  color: var(--mm-orange);
  font-family: var(--mm-serif);
  font-style: italic;
  line-height: 1;
  margin-bottom: 18px;
  opacity: .9;
}
.mm-expertise__card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--mm-navy);
  margin: 0 0 10px;
  letter-spacing: -0.005em;
}
.mm-expertise__card p {
  font-size: 13.5px; line-height: 1.65;
  color: var(--mm-muted);
  margin: 0;
}

/* Why Choose Us — 8 feature blocks ----- */
.mm-why { background: var(--mm-bg-soft); padding: 80px 0; }
.mm-why__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.mm-why__item {
  background: #fff;
  border-radius: var(--mm-radius);
  padding: 28px 24px;
  text-align: left;
  transition: all .25s;
}
.mm-why__item:hover { transform: translateY(-3px); box-shadow: var(--mm-shadow); }
.mm-why__icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--mm-navy);
  color: var(--mm-orange);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  margin-bottom: 18px;
}
.mm-why__item h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--mm-navy);
  margin: 0 0 8px;
}
.mm-why__item p {
  font-size: 13px; line-height: 1.6;
  color: var(--mm-muted);
  margin: 0;
}

/* Who We Serve — 3 column lists ----- */
.mm-clients { background: #fff; padding: 80px 0; }
.mm-clients__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.mm-clients__col {
  background: var(--mm-bg-soft);
  border-radius: var(--mm-radius);
  padding: 32px 28px;
  border-top: 4px solid var(--mm-orange);
}
.mm-clients__col h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--mm-navy);
  margin: 0 0 18px;
  letter-spacing: -0.005em;
}
.mm-clients__col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.mm-clients__col li {
  position: relative;
  padding: 8px 0 8px 24px;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--mm-text);
  border-bottom: 1px solid rgba(11,27,52,.06);
}
.mm-clients__col li:last-child { border-bottom: none; }
.mm-clients__col li::before {
  content: "";
  position: absolute; left: 0; top: 14px;
  width: 10px; height: 10px;
  background: var(--mm-orange);
  border-radius: 2px;
  transform: rotate(45deg);
}

/* ============================================================
   20. CONTACT PAGE — Contact card grid + form + highlights
   ============================================================ */
.mm-contact { background: #fff; padding: 80px 0 60px; }
.mm-contact__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.mm-contact-card {
  background: #fff;
  border: 1px solid var(--mm-line);
  border-radius: var(--mm-radius);
  padding: 32px 26px;
  text-align: center;
  transition: all .25s;
}
.mm-contact-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--mm-shadow-lg);
  border-color: transparent;
}
.mm-contact-card__icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--mm-navy);
  color: var(--mm-orange);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 22px;
  margin-bottom: 18px;
}
.mm-contact-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--mm-navy);
  margin: 0 0 8px;
}
.mm-contact-card p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--mm-muted);
  margin: 0 0 14px;
}
.mm-contact-card__link {
  display: inline-block;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--mm-orange);
  text-decoration: none;
  word-break: break-word;
}
.mm-contact-card__link:hover { color: var(--mm-navy); text-decoration: underline; }
.mm-contact-card__addr {
  font-style: normal;
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--mm-text);
  margin: 0;
  font-weight: 500;
}

/* Form section ----------------- */
.mm-form-sec { background: var(--mm-bg-soft); padding: 70px 0 90px; }
.mm-form-sec__grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 50px;
  align-items: start;
}
.mm-form-sec__intro h2 {
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 700;
  color: var(--mm-navy);
  margin: 0 0 16px;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.mm-form-sec__intro p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--mm-muted);
  margin: 0 0 28px;
}
.mm-form-sec__highlights {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.mm-form-sec__highlight {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 18px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid var(--mm-line);
}
.mm-form-sec__highlight i {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(246,160,31,.12);
  color: var(--mm-orange);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.mm-form-sec__highlight strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--mm-navy);
}
.mm-form-sec__highlight span {
  font-size: 12px;
  color: var(--mm-muted);
}

.mm-form-sec__form {
  background: #fff;
  border-radius: var(--mm-radius);
  padding: 36px;
  box-shadow: 0 2px 16px rgba(11,27,52,.06);
}
.mm-form { display: flex; flex-direction: column; gap: 18px; }
.mm-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.mm-form__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.mm-form__field span {
  font-size: 12px;
  font-weight: 600;
  color: var(--mm-navy);
  letter-spacing: .02em;
}
.mm-form__field input,
.mm-form__field select,
.mm-form__field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--mm-line);
  border-radius: 10px;
  font-size: 14px;
  font-family: var(--mm-font);
  color: var(--mm-text);
  background: #fff;
  transition: border-color .2s, box-shadow .2s;
  resize: vertical;
}
.mm-form__field input:focus,
.mm-form__field select:focus,
.mm-form__field textarea:focus {
  outline: none;
  border-color: var(--mm-orange);
  box-shadow: 0 0 0 3px rgba(246,160,31,.15);
}
.mm-form__field textarea { min-height: 120px; line-height: 1.5; }
.mm-form button[type="submit"] {
  align-self: flex-start;
  border: none;
  cursor: pointer;
  font-family: var(--mm-font);
}
.mm-form__note {
  font-size: 12px;
  color: var(--mm-muted);
  margin: 4px 0 0;
}
.mm-form__note a { color: var(--mm-orange); text-decoration: none; }
.mm-form__note a:hover { text-decoration: underline; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .mm-prod-grid { grid-template-columns: repeat(3, 1fr); }
  .mm-guides__grid { grid-template-columns: repeat(2, 1fr); }
  .mm-featured__grid { grid-template-columns: 1fr 1fr; }
  .mm-feat-banner { grid-column: 1 / -1; min-height: 320px; }
  .mm-feat-banner__body { max-width: 60%; }
  .mm-feat-banner__title { font-size: 38px; }
  .mm-feat-card { min-height: auto; }
  .mm-footer__cols { grid-template-columns: 1.4fr 1fr 1fr; }
  .mm-footer__col--last { grid-column: span 3; }

  .mm-listing__grid { grid-template-columns: 240px 1fr; }
  .mm-subcat-grid { grid-template-columns: repeat(2, 1fr); }
  .mm-related__grid { grid-template-columns: repeat(3, 1fr); }
  .mm-pdp__top-grid { grid-template-columns: 1fr 1fr; gap: 30px; }

  /* About & contact */
  .mm-expertise__grid { grid-template-columns: repeat(2, 1fr); }
  .mm-why__grid { grid-template-columns: repeat(2, 1fr); }
  .mm-contact__grid { grid-template-columns: repeat(2, 1fr); }

  /* Shop by category */
  .mm-shopcat__grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 860px) {
  .mm-section { padding: 60px 0; }
  .mm-hero { padding: 50px 0 40px; }
  .mm-hero__grid { grid-template-columns: 1fr; gap: 36px; }
  .mm-hero__visual { aspect-ratio: 4/3; max-height: 380px; }
  .mm-hero__stats { gap: 22px; }
  .mm-hero__stat strong { font-size: 22px; }

  .mm-prod-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .mm-industry__grid { grid-template-columns: 1fr; }
  .mm-statsbar__grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .mm-statsbar__num { font-size: 36px; }

  .mm-guides__grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .mm-reviews__grid { grid-template-columns: 1fr; }
  .mm-faq__layout { grid-template-columns: 1fr; gap: 30px; }
  .mm-family__content { padding: 40px 28px; }

  .mm-cta__row { flex-direction: column; align-items: flex-start; text-align: left; }

  .mm-footer { padding: 60px 0 0; }
  .mm-footer__cols { grid-template-columns: 1fr 1fr; gap: 36px; padding: 40px 0; }
  .mm-footer__col--last { grid-column: span 2; }
  .mm-footer__bottom { flex-direction: column; align-items: flex-start; }

  /* Listing + PDP */
  .mm-listing__grid { grid-template-columns: 1fr; }
  .mm-pdp__top-grid { grid-template-columns: 1fr; gap: 24px; }
  .mm-pdp__gallery { position: static; }
  .mm-pdp__top, .mm-pdp__tabs, .mm-related { padding: 22px; }
  .mm-prod-row { grid-template-columns: 140px 1fr; gap: 18px; padding: 18px; }
  .mm-related__grid { grid-template-columns: repeat(2, 1fr); }
  .mm-innerbanner { padding: 50px 0 40px; }
  .mm-pdp__promise { grid-template-columns: 1fr 1fr; }
  .mm-pdp__bulk-cta { padding: 28px; }
  .mm-pdp__bulk-cta-actions { width: 100%; justify-content: flex-start; }
  .mm-pdp__related__head { flex-direction: column; align-items: flex-start; }

  /* About & contact */
  .mm-about-intro__grid { grid-template-columns: 1fr; gap: 30px; }
  .mm-about-intro__visual { aspect-ratio: 16/10; max-height: 360px; }
  .mm-mv__grid { grid-template-columns: 1fr; }
  .mm-clients__grid { grid-template-columns: 1fr; }
  .mm-contact__grid { grid-template-columns: 1fr 1fr; }
  .mm-form-sec__grid { grid-template-columns: 1fr; gap: 30px; }
  .mm-form-sec__form { padding: 26px; }

  /* Featured + shop-by-category */
  .mm-featured__grid { grid-template-columns: 1fr 1fr; }
  .mm-feat-banner { padding: 32px 28px; min-height: 280px; }
  .mm-feat-banner__body { max-width: 100%; }
  .mm-feat-banner__title { font-size: 34px; }
  .mm-shopcat__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 520px) {
  .mm-prod-grid { grid-template-columns: 1fr; }
  .mm-guides__grid { grid-template-columns: 1fr; }
  .mm-statsbar__grid { grid-template-columns: 1fr 1fr; }
  .mm-footer__cols { grid-template-columns: 1fr; }
  .mm-footer__col--last { grid-column: span 1; }
  .mm-hero__title { font-size: 32px; }
  .mm-hero__cta { width: 100%; }
  .mm-hero__cta .mm-btn { flex: 1; justify-content: center; }
  .mm-section-title { font-size: 26px; }

  .mm-subcat-grid { grid-template-columns: 1fr; }
  .mm-prod-row { grid-template-columns: 1fr; gap: 12px; }
  .mm-prod-row__img { aspect-ratio: 16/10; }
  .mm-related__grid { grid-template-columns: 1fr 1fr; }
  .mm-pdp-table td:first-child { width: 40%; }
  .mm-pdp__promise { grid-template-columns: 1fr; }
  .mm-pdp__buyrow { flex-direction: column; }
  .mm-pdp__qty { align-self: flex-start; }
  .mm-pdp__add { width: 100%; }
  .mm-pdp__actions { flex-direction: column; }
  .mm-pdp__action { width: 100%; }
  .mm-pdp__bulk-cta { padding: 24px; }
  .mm-pdp__bulk-cta-text h3 { font-size: 19px; }
  .mm-pdp__pillrow { gap: 6px; }
  .mm-pdp__pill { font-size: 11px; padding: 6px 12px 6px 6px; }

  /* About & contact */
  .mm-expertise__grid { grid-template-columns: 1fr; }
  .mm-why__grid { grid-template-columns: 1fr 1fr; }
  .mm-contact__grid { grid-template-columns: 1fr; }
  .mm-form__row { grid-template-columns: 1fr; }

  /* Featured + shop-by-category */
  .mm-featured__grid { grid-template-columns: 1fr; }
  .mm-feat-banner { grid-column: auto; }
  .mm-shopcat__grid { grid-template-columns: 1fr; }
}
