@charset "UTF-8";
/* ===========================================================================
   EMM — equipmachinesmanufacturers.com
   Custom theme layer for Bootstrap 5.3.x
   ---------------------------------------------------------------------------
   Load order:  bootstrap.min.css  →  emm-style.css
   This file REPLACES the old style.css + responsive.css entirely.
   Design language: "spec plate" — machine data-plates, chamfered sheet metal,
   safety striping. Palette + typefaces inherited from the previous brand.
   =========================================================================== */

/* ---------------------------------------------------------------------------
   1. TOKENS
   --------------------------------------------------------------------------- */
:root {
  /* Brand palette (carried over from the legacy stylesheet) */
  --emm-ink:            #191414;
  --emm-ink-2:          #241d1d;
  --emm-ink-3:          #322a2a;
  --emm-emerald:        #1fc58e;
  --emm-emerald-lit:    #34e0a6;
  --emm-emerald-deep:   #0f7d59;
  --emm-signal:         #fae62d;
  --emm-steel:          #535353;
  --emm-steel-2:        #7b7676;

  /* Surfaces */
  --emm-paper:          #ffffff;
  --emm-mist:           #f7f9f8;
  --emm-mist-2:         #eceeed;
  --emm-tint:           #ecfaf4;   /* emerald wash — the main light accent band */
  --emm-tint-2:         #fffdf0;   /* signal wash */
  --emm-line:           #e4e8e6;
  --emm-line-tint:      #c9ece0;
  --emm-line-dark:      rgba(255, 255, 255, .18);

  /* Bootstrap 5 overrides — keeps native components on-brand */
  --bs-primary:         #1fc58e;
  --bs-primary-rgb:     31, 197, 142;
  --bs-body-color:      #3a3535;
  --bs-body-bg:         #ffffff;
  --bs-link-color:      #0f7d59;
  --bs-link-hover-color:#191414;
  --bs-border-color:    #e2e5e3;
  --bs-focus-ring-color: rgba(31, 197, 142, .35);

  /* Type */
  --emm-font-display: "Raleway", "Segoe UI", system-ui, sans-serif;
  --emm-font-body:    "Open Sans", "Segoe UI", system-ui, sans-serif;

  /* Spacing rhythm */
  --emm-band:      clamp(3.25rem, 6vw, 6rem);   /* vertical section padding */
  --emm-band-tight:clamp(2.25rem, 4vw, 3.5rem);
  --emm-gutter:    1.5rem;

  /* Signature geometry */
  --emm-chamfer:   18px;
  --emm-radius:    3px;

  /* Elevation */
  --emm-lift-1: 0 1px 2px rgba(25, 20, 20, .06), 0 4px 14px rgba(25, 20, 20, .05);
  --emm-lift-2: 0 2px 4px rgba(25, 20, 20, .07), 0 16px 38px rgba(25, 20, 20, .11);

  --emm-ease: cubic-bezier(.22, .61, .36, 1);
}

/* ---------------------------------------------------------------------------
   2. BASE
   --------------------------------------------------------------------------- */
*,
*::before,
*::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  font-family: var(--emm-font-body);
  font-size: 1rem;
  line-height: 1.72;
  color: var(--bs-body-color);
  background: var(--emm-paper);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; }

a {
  color: var(--emm-emerald-deep);
  text-decoration: none;
  transition: color .2s var(--emm-ease);
}
a:hover,
a:focus-visible { color: var(--emm-ink); }

:focus-visible {
  outline: 3px solid var(--emm-emerald);
  outline-offset: 2px;
  border-radius: 2px;
}

::selection { background: var(--emm-signal); color: var(--emm-ink); }

hr { border-color: var(--emm-line); opacity: 1; }

/* Skip link — accessibility floor */
.emm-skip {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 3000;
  background: var(--emm-ink);
  color: #fff;
  padding: .85rem 1.4rem;
  font-weight: 700;
}
.emm-skip:focus {
  left: 12px;
  top: 12px;
  color: #fff;
}

/* ---------------------------------------------------------------------------
   3. TYPOGRAPHY
   --------------------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: var(--emm-font-display);
  color: var(--emm-ink);
  font-weight: 800;
  letter-spacing: -.015em;
  line-height: 1.18;
  margin: 0 0 .6em;
}

h1, .h1 { font-size: clamp(1.85rem, 3.5vw, 2.95rem); }
h2, .h2 { font-size: clamp(1.55rem, 2.7vw, 2.25rem); }
h3, .h3 { font-size: clamp(1.15rem, 1.7vw, 1.45rem); font-weight: 700; }
h4, .h4 { font-size: 1.12rem; font-weight: 700; }
h5, .h5 { font-size: 1rem;    font-weight: 700; }
h6, .h6 { font-size: .95rem;  font-weight: 700; }

p { margin: 0 0 1.15rem; }
p:last-child { margin-bottom: 0; }

strong, b { font-weight: 700; color: var(--emm-ink); }

.emm-lead {
  font-size: clamp(1.02rem, 1.4vw, 1.16rem);
  line-height: 1.75;
  color: var(--emm-steel);
}

/* Utility face — stamped part-number labels */
.emm-label {
  font-family: var(--emm-font-body);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--emm-steel-2);
}

/* ---------------------------------------------------------------------------
   4. SIGNATURE — spec plate, hazard band, chamfer
   --------------------------------------------------------------------------- */

/* Eyebrow rendered like a stamped plate reference */
.spec-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  font-family: var(--emm-font-body);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--emm-emerald-deep);
  margin-bottom: .85rem;
}
.spec-eyebrow::before {
  content: "";
  width: 30px;
  height: 3px;
  background: var(--emm-emerald);
  flex: none;
}
.spec-eyebrow--onDark { color: var(--emm-emerald-lit); }
.spec-eyebrow--onDark::before { background: var(--emm-signal); }

/* Safety striping — used only as a section seam, never as decoration */
.hazard-band {
  height: 6px;
  background: repeating-linear-gradient(
    135deg,
    var(--emm-ink) 0 14px,
    var(--emm-signal) 14px 28px
  );
}
.hazard-band--slim { height: 4px; }

/* Chamfered sheet-metal corner */
.chamfer {
  clip-path: polygon(
    0 0,
    calc(100% - var(--emm-chamfer)) 0,
    100% var(--emm-chamfer),
    100% 100%,
    0 100%
  );
}

/* Section header block */
.emm-section-head { margin-bottom: clamp(1.75rem, 3vw, 2.75rem); }
.emm-section-head p { color: var(--emm-steel); max-width: 62ch; }
.emm-section-head--center { text-align: center; }
.emm-section-head--center p { margin-inline: auto; }
.emm-section-head--center .spec-eyebrow { justify-content: center; }

/* Section spacing helpers (single source of truth — avoids cascade fights) */
.emm-band       { padding-block: var(--emm-band); }
.emm-band-tight { padding-block: var(--emm-band-tight); }
.emm-band-top   { padding-top: var(--emm-band); }
.emm-band-bottom{ padding-bottom: var(--emm-band); }
.emm-surface    { background: var(--emm-mist); }
.emm-surface-tint {
  background: var(--emm-tint);
  border-block: 1px solid var(--emm-line-tint);
}
.emm-surface-dark {
  background: var(--emm-ink);
  color: rgba(255, 255, 255, .78);
}
.emm-surface-dark h1, .emm-surface-dark h2,
.emm-surface-dark h3, .emm-surface-dark .h2,
.emm-surface-dark .h3 { color: #fff; }

/* ---------------------------------------------------------------------------
   5. BUTTONS
   --------------------------------------------------------------------------- */
.emm-btn {
  --_bg: var(--emm-emerald);
  --_fg: var(--emm-ink);
  --_bd: var(--emm-emerald);
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .82rem 1.6rem;
  font-family: var(--emm-font-body);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  line-height: 1;
  color: var(--_fg);
  background: var(--_bg);
  border: 2px solid var(--_bd);
  border-radius: 0;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: color .25s var(--emm-ease), border-color .25s var(--emm-ease);
}
.emm-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--emm-emerald-deep);
  transform: translateX(-101%);
  transition: transform .35s var(--emm-ease);
  z-index: 0;
}
.emm-btn > * { position: relative; z-index: 1; }
.emm-btn:hover,
.emm-btn:focus-visible {
  color: #fff;
  border-color: var(--emm-emerald-deep);
}
.emm-btn:hover::after,
.emm-btn:focus-visible::after { transform: translateX(0); }

.emm-btn--outline {
  --_bg: transparent;
  --_fg: var(--emm-ink);
  --_bd: var(--emm-ink);
}
.emm-btn--outline::after { background: var(--emm-emerald); }
.emm-btn--outline:hover,
.emm-btn--outline:focus-visible { color: var(--emm-ink); border-color: var(--emm-emerald); }
.emm-btn--ghost {
  --_bg: transparent;
  --_fg: #fff;
  --_bd: rgba(255, 255, 255, .45);
}
.emm-btn--ghost:hover,
.emm-btn--ghost:focus-visible { border-color: var(--emm-emerald); }
.emm-btn--ghost::after { background: var(--emm-emerald); }
.emm-btn--ghost:hover { color: var(--emm-ink); }

.emm-btn--signal {
  --_bg: var(--emm-signal);
  --_bd: var(--emm-signal);
}
.emm-btn--signal::after { background: var(--emm-ink); }
.emm-btn--dark {
  --_bg: var(--emm-ink);
  --_fg: #fff;
  --_bd: var(--emm-ink);
}
.emm-btn--dark::after { background: var(--emm-emerald); }
.emm-btn--dark:hover,
.emm-btn--dark:focus-visible { color: var(--emm-ink); border-color: var(--emm-ink); }
.emm-btn--sm { padding: .62rem 1.15rem; font-size: .74rem; }
.emm-btn--block { display: flex; width: 100%; justify-content: center; }

/* Text link with a moving rule under it */
.emm-textlink {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--emm-emerald-deep);
}
.emm-textlink i { transition: transform .25s var(--emm-ease); }
.emm-textlink:hover i { transform: translateX(4px); }

/* ---------------------------------------------------------------------------
   6. HEADER
   --------------------------------------------------------------------------- */

/* 6a. Utility strip */
.emm-utility {
  background: var(--emm-mist);
  border-bottom: 1px solid var(--emm-line);
  color: var(--emm-steel);
  font-size: .8rem;
  padding: .55rem 0;
}
.emm-utility a { color: var(--emm-steel); }
.emm-utility a:hover { color: var(--emm-emerald-deep); }
.emm-utility__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.emm-utility__list i { color: var(--emm-emerald-deep); margin-right: .4rem; }

/* 6b. Brand row */
.emm-brandbar {
  background: var(--emm-paper);
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--emm-line);
}
.emm-brandbar__logo img {
  max-height: 62px;
  width: auto;
}
.emm-brandbar__aside {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.75rem;
  flex-wrap: wrap;
}

/* Call block — the phone is the primary conversion path for a B2B supplier */
.emm-callblock {
  display: flex;
  align-items: center;
  gap: .85rem;
}
.emm-callblock__icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  background: var(--emm-mist);
  border: 1px solid var(--emm-line);
  color: var(--emm-emerald-deep);
  font-size: 1.2rem;
  flex: none;
}
.emm-callblock__label {
  display: block;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--emm-steel-2);
  line-height: 1.4;
}
.emm-callblock__num {
  display: block;
  font-family: var(--emm-font-display);
  font-size: 1.12rem;
  font-weight: 800;
  color: var(--emm-ink);
  line-height: 1.2;
}
.emm-callblock a:hover .emm-callblock__num { color: var(--emm-emerald-deep); }

/* 6c. Search */
.emm-search { width: min(320px, 100%); }
.emm-search .form-control {
  border: 1px solid var(--emm-line);
  border-right: 0;
  border-radius: 0;
  height: 46px;
  font-size: .9rem;
  padding-inline: .95rem;
  box-shadow: none;
}
.emm-search .form-control:focus {
  border-color: var(--emm-emerald);
  box-shadow: none;
}
.emm-search__btn {
  border: 0;
  border-radius: 0;
  width: 50px;
  background: var(--emm-ink);
  color: #fff;
  display: grid;
  place-items: center;
  transition: background .25s var(--emm-ease);
}
.emm-search__btn:hover { background: var(--emm-emerald); color: var(--emm-ink); }

/* ---------------------------------------------------------------------------
   7. NAVIGATION
   --------------------------------------------------------------------------- */
.emm-nav {
  background: var(--emm-emerald);
  position: relative;
  z-index: 1030;
}
.emm-nav.is-stuck {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  box-shadow: 0 8px 26px rgba(0, 0, 0, .28);
  animation: emmDrop .3s var(--emm-ease);
}
@keyframes emmDrop {
  from { transform: translateY(-100%); }
  to   { transform: translateY(0); }
}

.emm-nav .navbar { padding: 0; }
.emm-nav .navbar-toggler {
  border: 1px solid rgba(255, 255, 255, .4);
  border-radius: 0;
  color: #fff;
  padding: .5rem .8rem;
  margin: .65rem 0;
  font-size: 1.1rem;
  box-shadow: none;
}
.emm-nav .navbar-toggler:focus { box-shadow: none; outline: 3px solid var(--emm-ink); }
.emm-nav__mobilelogo img { max-height: 40px; }

.emm-nav .navbar-nav { gap: 0; }
.emm-nav .nav-link {
  font-family: var(--emm-font-body);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .92);
  padding: 1.32rem 1.05rem;
  position: relative;
  transition: color .22s var(--emm-ease), background .22s var(--emm-ease);
}
.emm-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 1.05rem;
  right: 1.05rem;
  bottom: 1rem;
  height: 2px;
  background: var(--emm-signal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .28s var(--emm-ease);
}
.emm-nav .nav-link:hover,
.emm-nav .nav-link:focus-visible,
.emm-nav .nav-item.active > .nav-link,
.emm-nav .nav-link.active { color: #fff; }
.emm-nav .nav-link:hover::after,
.emm-nav .nav-item.active > .nav-link::after,
.emm-nav .nav-link.active::after { transform: scaleX(1); }

.emm-nav .dropdown-toggle::after {
  margin-left: .45rem;
  vertical-align: .12em;
  border-top-color: rgba(255, 255, 255, .8);
}

/* 7a. Mega menu — the catalogue is the product, so it gets real estate */
.emm-mega {
  border: 0;
  border-top: 3px solid var(--emm-signal);
  border-radius: 0;
  padding: 1.75rem;
  background: var(--emm-paper);
  box-shadow: var(--emm-lift-2);
  margin-top: 0;
}
@media (min-width: 992px) {
  .emm-mega {
    width: min(1140px, calc(100vw - 3rem));
    columns: 3;
    column-gap: 2rem;
  }
  /* Anchor the panel to the container, not the toggle */
  .emm-nav .dropdown-mega { position: static; }
  .emm-nav .dropdown-mega .emm-mega {
    left: 50%;
    transform: translateX(-50%);
  }
}
.emm-mega__group {
  break-inside: avoid;
  margin-bottom: 1.5rem;
  padding-bottom: .25rem;
}
.emm-mega__group > a {
  display: block;
  font-family: var(--emm-font-display);
  font-size: .96rem;
  font-weight: 800;
  color: var(--emm-ink);
  padding-bottom: .5rem;
  margin-bottom: .5rem;
  border-bottom: 1px solid var(--emm-line);
}
.emm-mega__group > a:hover { color: var(--emm-emerald-deep); }
.emm-mega__group ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.emm-mega__group ul a {
  display: block;
  font-size: .86rem;
  color: var(--emm-steel);
  padding: .24rem 0 .24rem .85rem;
  position: relative;
  line-height: 1.5;
}
.emm-mega__group ul a::before {
  content: "";
  position: absolute;
  left: 0;
  top: .82em;
  width: 5px;
  height: 1px;
  background: var(--emm-steel-2);
  transition: width .2s var(--emm-ease), background .2s var(--emm-ease);
}
.emm-mega__group ul a:hover { color: var(--emm-emerald-deep); }
.emm-mega__group ul a:hover::before { width: 9px; background: var(--emm-emerald); }

@media (max-width: 991.98px) {
  .emm-nav .navbar-collapse {
    max-height: 76vh;
    overflow-y: auto;
    border-top: 1px solid var(--emm-line-dark);
    padding-bottom: 1.25rem;
  }
  .emm-nav .nav-link { padding: .85rem .25rem; }
  .emm-nav .nav-link::after { display: none; }
  .emm-nav .nav-item + .nav-item { border-top: 1px solid var(--emm-line-dark); }
  .emm-mega {
    background: transparent;
    box-shadow: none;
    border-top: 0;
    padding: .25rem 0 .75rem;
    max-height: 58vh;
    overflow-y: auto;
  }
  .emm-mega__group > a { color: #fff; border-bottom-color: var(--emm-line-dark); }
  .emm-mega__group ul a { color: rgba(255, 255, 255, .66); }
  .emm-mega__group ul a::before { background: rgba(255, 255, 255, .4); }
}

/* ---------------------------------------------------------------------------
   8. HERO CAROUSEL
   --------------------------------------------------------------------------- */
.emm-hero { position: relative; background: var(--emm-ink); }
.emm-hero .carousel-item {
  min-height: clamp(380px, 62vh, 660px);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.emm-hero .carousel-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(20, 32, 28, .82) 0%,
    rgba(20, 32, 28, .52) 38%,
    rgba(20, 32, 28, .10) 72%,
    rgba(20, 32, 28, 0) 100%
  );
}
.emm-hero__inner {
  position: relative;
  z-index: 2;
  min-height: clamp(380px, 62vh, 660px);
  display: flex;
  align-items: center;
  padding-block: 3rem;
}
.emm-hero__copy { max-width: 46rem; }
.emm-hero__title {
  color: #fff;
  font-size: clamp(2rem, 5vw, 3.75rem);
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.08;
  margin-bottom: 1rem;
}
.emm-hero__title em {
  font-style: normal;
  color: var(--emm-emerald-lit);
}
.emm-hero__text {
  color: rgba(255, 255, 255, .8);
  font-size: clamp(.98rem, 1.3vw, 1.1rem);
  max-width: 40rem;
  margin-bottom: 1.9rem;
}
.emm-hero__actions { display: flex; flex-wrap: wrap; gap: .85rem; }

.emm-hero .carousel-control-prev,
.emm-hero .carousel-control-next {
  width: 58px;
  height: 58px;
  top: auto;
  bottom: 0;
  opacity: 1;
  background: rgba(255, 255, 255, .1);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, .2);
  color: #fff;
  font-size: 1.25rem;
  display: grid;
  place-items: center;
  transition: background .25s var(--emm-ease), color .25s var(--emm-ease);
}
.emm-hero .carousel-control-prev { left: auto; right: 58px; }
.emm-hero .carousel-control-next { right: 0; }
.emm-hero .carousel-control-prev:hover,
.emm-hero .carousel-control-next:hover {
  background: var(--emm-emerald);
  color: var(--emm-ink);
}
.emm-hero .carousel-indicators {
  margin-bottom: 1.75rem;
  margin-left: 0;
  justify-content: flex-start;
  padding-left: var(--emm-gutter);
}
.emm-hero .carousel-indicators [data-bs-target] {
  width: 34px;
  height: 3px;
  border: 0;
  background: rgba(255, 255, 255, .35);
  opacity: 1;
  margin-inline: 4px;
}
.emm-hero .carousel-indicators .active { background: var(--emm-emerald); }

@media (max-width: 767.98px) {
  .emm-hero .carousel-control-prev,
  .emm-hero .carousel-control-next { display: none; }
  .emm-hero .carousel-indicators { justify-content: center; padding-left: 0; }
}

/* 8a. Capability strip under the hero */
.emm-capstrip {
  background: var(--emm-paper);
  border-bottom: 1px solid var(--emm-line);
  box-shadow: var(--emm-lift-1);
}
.emm-capstrip__item {
  display: flex;
  align-items: center;
  gap: .9rem;
  padding: 1.35rem 1rem 1.35rem 0;
  color: var(--emm-steel);
  font-size: .86rem;
}
.emm-capstrip__item i {
  font-size: 1.55rem;
  color: var(--emm-emerald-deep);
  flex: none;
}
.emm-capstrip__item strong {
  display: block;
  color: var(--emm-ink);
  font-family: var(--emm-font-display);
  font-size: .98rem;
  line-height: 1.3;
}
@media (min-width: 992px) {
  .emm-capstrip [class*="col-"] + [class*="col-"] .emm-capstrip__item {
    border-left: 1px solid var(--emm-line);
    padding-left: 1.5rem;
  }
}

/* ---------------------------------------------------------------------------
   9. CARDS — category / product
   --------------------------------------------------------------------------- */
.emm-card {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  background: var(--emm-paper);
  border: 1px solid var(--emm-line);
  transition: border-color .3s var(--emm-ease), box-shadow .3s var(--emm-ease),
              transform .3s var(--emm-ease);
}
.emm-card:hover {
  border-color: var(--emm-emerald);
  box-shadow: var(--emm-lift-2);
  transform: translateY(-4px);
}
.emm-card__media {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--emm-mist);
}
.emm-card__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 1rem;
  transition: transform .5s var(--emm-ease);
}
.emm-card:hover .emm-card__media img { transform: scale(1.06); }

/* The data plate — this is the signature detail */
.emm-card__plate {
  position: absolute;
  top: 0;
  left: 0;
  background: var(--emm-signal);
  color: var(--emm-ink);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  padding: .4rem .7rem;
  z-index: 2;
}
.emm-card__body {
  padding: 1.15rem 1.25rem 1.35rem;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}
.emm-card__title {
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: .55rem;
}
.emm-card__title a { color: var(--emm-ink); }
.emm-card__title a:hover { color: var(--emm-emerald-deep); }
.emm-card__meta {
  font-size: .78rem;
  color: var(--emm-steel-2);
  margin-bottom: .9rem;
}
.emm-card__foot { margin-top: auto; padding-top: .35rem; }

/* Solution card — larger editorial variant used on the home page */
.emm-solution {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--emm-paper);
  border: 1px solid var(--emm-line);
  height: 100%;
  transition: border-color .3s var(--emm-ease), box-shadow .3s var(--emm-ease),
              transform .3s var(--emm-ease);
}
.emm-solution:hover {
  border-color: var(--emm-emerald);
  box-shadow: var(--emm-lift-2);
  transform: translateY(-4px);
}
.emm-solution img {
  width: 100%;
  aspect-ratio: 4 / 3;
  height: auto;
  min-height: 0;
  object-fit: cover;
  opacity: 1;
  transition: transform .6s var(--emm-ease);
}
.emm-solution:hover img { transform: scale(1.06); }
.emm-solution__body {
  position: static;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  padding: 1.35rem 1.35rem 1.5rem;
  background: var(--emm-paper);
  border-top: 3px solid var(--emm-signal);
}
.emm-solution__body h3,
.emm-solution__body .h3 {
  color: var(--emm-ink);
  font-size: 1.08rem;
  margin-bottom: .5rem;
}
.emm-solution:hover .emm-solution__body .h3 { color: var(--emm-emerald-deep); }
.emm-solution__body p {
  color: var(--emm-steel);
  font-size: .87rem;
  margin-bottom: 1rem;
  line-height: 1.62;
}
.emm-solution__more {
  margin-top: auto;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--emm-emerald-deep);
}

/* Stat plates */
.emm-stat {
  border-left: 3px solid var(--emm-emerald);
  padding-left: 1.1rem;
}
.emm-stat__num {
  font-family: var(--emm-font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--emm-ink);
  line-height: 1;
  display: block;
}
.emm-surface-dark .emm-stat__num { color: #fff; }
.emm-stat__cap {
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--emm-steel-2);
  margin-top: .5rem;
  display: block;
}

/* ---------------------------------------------------------------------------
   10. INNER BANNER + BREADCRUMB
   --------------------------------------------------------------------------- */
.emm-pagehead {
  position: relative;
  background: var(--emm-tint);
  border-bottom: 1px solid var(--emm-line-tint);
  padding-block: clamp(2.25rem, 4.5vw, 3.75rem);
  overflow: hidden;
}
.emm-pagehead::after {
  content: "";
  position: absolute;
  right: -80px;
  top: -80px;
  width: 340px;
  height: 340px;
  border: 42px solid rgba(31, 197, 142, .12);
  border-radius: 50%;
  pointer-events: none;
}
.emm-pagehead__title {
  color: var(--emm-ink);
  font-size: clamp(1.7rem, 3.4vw, 2.6rem);
  margin-bottom: .6rem;
  position: relative;
  z-index: 1;
}
.emm-pagehead__sub {
  color: var(--emm-steel);
  max-width: 62ch;
  margin-bottom: 0;
  font-size: .96rem;
  position: relative;
  z-index: 1;
}

.emm-crumbs {
  background: var(--emm-paper);
  border-bottom: 1px solid var(--emm-line);
  padding: .85rem 0;
  font-size: .82rem;
}
.emm-crumbs ul,
.emm-crumbs .breadcumb {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .5rem;
  margin: 0;
  padding: 0;
  color: var(--emm-steel-2);
}
.emm-crumbs a { color: var(--emm-steel); }
.emm-crumbs a:hover { color: var(--emm-emerald-deep); }
.emm-crumbs li + li::before,
.emm-crumbs a + a::before {
  content: "/";
  margin-right: .5rem;
  color: var(--emm-line);
}
.emm-crumbs li:last-child { color: var(--emm-ink); font-weight: 600; }

/* ---------------------------------------------------------------------------
   11. SIDEBAR / LEFT PANEL
   --------------------------------------------------------------------------- */
/* Static, not sticky. The promo blocks below are siblings, so a sticky panel
   simply scrolled underneath them and the two overlapped. */
.emm-side { position: static; }
.emm-side__block { margin-bottom: 1.5rem; }

.emm-side__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  background: var(--emm-emerald);
  color: #fff;
  font-family: var(--emm-font-display);
  font-size: .92rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 1rem 1.15rem;
  border: 0;
  width: 100%;
  text-align: left;
  cursor: pointer;
}
.emm-side__head i { color: #fff; transition: transform .3s var(--emm-ease); }
.emm-side__head[aria-expanded="false"] i { transform: rotate(-90deg); }

.emm-catnav {
  border: 1px solid var(--emm-line);
  border-top: 0;
  background: var(--emm-paper);
}
.emm-catnav ul { list-style: none; margin: 0; padding: 0; }
.emm-catnav > ul > li { border-bottom: 1px solid var(--emm-line); }
.emm-catnav > ul > li:last-child { border-bottom: 0; }

/* Row: category link + expand arrow, side by side. Flex, never absolute — the
   arrow must stay tied to its own row however long the label wraps. */
.emm-catnav__row { display: flex; align-items: stretch; }

.emm-catnav__row > a {
  flex: 1 1 auto;
  min-width: 0;
  display: block;
  padding: .78rem 1.1rem;
  font-size: .88rem;
  font-weight: 600;
  color: var(--emm-ink);
  line-height: 1.4;
}
.emm-catnav__row > a:hover { background: var(--emm-mist); color: var(--emm-emerald-deep); }

.emm-catnav__toggle {
  flex: 0 0 44px;
  border: 0;
  border-left: 1px solid var(--emm-line);
  background: transparent;
  color: var(--emm-steel-2);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  cursor: pointer;
  transition: background .2s var(--emm-ease), color .2s var(--emm-ease);
}
.emm-catnav__toggle:hover { background: var(--emm-mist); color: var(--emm-ink); }
.emm-catnav__mark {
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translate(-1px, -1px);
  transition: transform .28s var(--emm-ease);
}
.emm-catnav li.is-open > .emm-catnav__row > .emm-catnav__toggle {
  background: var(--emm-emerald);
  border-left-color: var(--emm-emerald);
  color: var(--emm-ink);
}
.emm-catnav li.is-open > .emm-catnav__row > .emm-catnav__toggle .emm-catnav__mark {
  transform: rotate(-135deg) translate(-2px, -2px);
}

/* The category the visitor is in */
.emm-catnav > ul > li.active > .emm-catnav__row > a {
  background: var(--emm-tint);
  color: var(--emm-emerald-deep);
  font-weight: 700;
  box-shadow: inset 3px 0 0 var(--emm-emerald);
}

/* Subcategories */
.emm-catnav > ul ul {
  background: var(--emm-mist);
  border-top: 1px solid var(--emm-line);
  padding: .35rem 0 .5rem;
}
.emm-catnav > ul ul[hidden] { display: none; }
.emm-catnav > ul ul a {
  display: block;
  padding: .42rem 1.1rem .42rem 1.9rem;
  font-size: .84rem;
  color: var(--emm-steel);
  position: relative;
  line-height: 1.45;
}
.emm-catnav > ul ul a::before {
  content: "";
  position: absolute;
  left: 1.1rem;
  top: 1em;
  width: 6px;
  height: 1px;
  background: var(--emm-steel-2);
  transition: width .2s var(--emm-ease), background .2s var(--emm-ease);
}
.emm-catnav > ul ul a:hover { color: var(--emm-emerald-deep); background: #fff; }
.emm-catnav > ul ul a:hover::before { width: 11px; background: var(--emm-emerald); }

.emm-catnav > ul ul a[aria-current="page"] {
  color: var(--emm-emerald-deep);
  font-weight: 700;
  background: #fff;
  box-shadow: inset 3px 0 0 var(--emm-emerald);
}
.emm-catnav > ul ul a[aria-current="page"]::before { width: 11px; background: var(--emm-emerald); }

.emm-catnav__loading {
  padding: .5rem 1.1rem .5rem 1.9rem;
  font-size: .82rem;
  color: var(--emm-steel-2);
  font-style: italic;
}

/* Sidebar promo blocks */
.emm-side__promo {
  border: 1px solid var(--emm-line);
  padding: 1.4rem;
  background: var(--emm-paper);
}
.emm-side__promo h3 { font-size: 1.02rem; margin-bottom: .55rem; }
.emm-side__promo p { font-size: .86rem; color: var(--emm-steel); margin-bottom: 1rem; }

.emm-side__cta {
  background: var(--emm-tint);
  border: 1px solid var(--emm-line-tint);
  border-top: 3px solid var(--emm-emerald);
  color: var(--emm-steel);
  padding: 1.6rem 1.4rem;
  text-align: center;
}
.emm-side__cta h3 { color: var(--emm-ink); font-size: 1.05rem; }
.emm-side__cta p { color: var(--emm-steel); font-size: .86rem; }

/* ---------------------------------------------------------------------------
   12. PRODUCT DETAIL
   --------------------------------------------------------------------------- */
.emm-pdp__figure {
  border: 1px solid var(--emm-line);
  background: var(--emm-paper);
  padding: 1.75rem;
  display: grid;
  place-items: center;
  min-height: 320px;
}
.emm-pdp__figure img { max-height: 460px; object-fit: contain; }

.emm-pdp__title { margin-bottom: .75rem; }

.emm-pdp__code {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  background: var(--emm-signal);
  color: var(--emm-ink);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: .45rem .85rem;
  margin-bottom: 1.15rem;
}

.emm-pdp__facts {
  list-style: none;
  margin: 0 0 1.6rem;
  padding: 0;
  border-top: 1px solid var(--emm-line);
}
.emm-pdp__facts li {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 1rem;
  padding: .7rem 0;
  border-bottom: 1px solid var(--emm-line);
  font-size: .9rem;
}
.emm-pdp__facts dt,
.emm-pdp__facts .k {
  flex: 0 0 130px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--emm-steel-2);
  padding-top: .2rem;
}
.emm-pdp__facts .v { flex: 1 1 260px; color: var(--emm-ink); }

.emm-pdp__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
  align-items: center;
}
.emm-pdp__actions form { margin: 0; }

/* Tabs */
.emm-tabs { margin-top: clamp(2rem, 4vw, 3.25rem); }
.emm-tabs .nav-tabs {
  border-bottom: 2px solid var(--emm-line);
  gap: .25rem;
}
.emm-tabs .nav-tabs .nav-link {
  border: 0;
  border-radius: 0;
  font-family: var(--emm-font-body);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--emm-steel);
  padding: .95rem 1.35rem;
  position: relative;
}
.emm-tabs .nav-tabs .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  background: var(--emm-emerald);
  transform: scaleX(0);
  transition: transform .28s var(--emm-ease);
}
.emm-tabs .nav-tabs .nav-link:hover { color: var(--emm-ink); }
.emm-tabs .nav-tabs .nav-link.active { color: var(--emm-ink); background: transparent; }
.emm-tabs .nav-tabs .nav-link.active::after { transform: scaleX(1); }
.emm-tabs .tab-content {
  padding: 1.75rem 0 0;
  color: var(--emm-steel);
}
.emm-tabs .tab-content table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.25rem;
}
.emm-tabs .tab-content th,
.emm-tabs .tab-content td {
  border: 1px solid var(--emm-line);
  padding: .6rem .85rem;
  font-size: .88rem;
  text-align: left;
}
.emm-tabs .tab-content th { background: var(--emm-mist); color: var(--emm-ink); }

/* ---------------------------------------------------------------------------
   13. CTA BAND
   --------------------------------------------------------------------------- */
.emm-cta {
  position: relative;
  background: var(--emm-signal);
  color: var(--emm-ink);
  padding-block: clamp(2.75rem, 5vw, 4.5rem);
  overflow: hidden;
}
.emm-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 88% 110%, rgba(255, 255, 255, .55), transparent 48%);
  pointer-events: none;
}
.emm-cta > .container { position: relative; z-index: 1; }
.emm-cta__title {
  color: var(--emm-ink);
  font-size: clamp(1.4rem, 2.6vw, 2.1rem);
  margin-bottom: .5rem;
}
.emm-cta__text { color: rgba(25, 20, 20, .74); margin-bottom: 0; }
.emm-cta .spec-eyebrow { color: rgba(25, 20, 20, .62); }
.emm-cta .spec-eyebrow::before { background: var(--emm-ink); }

/* ---------------------------------------------------------------------------
   13a. STATEMENT BAND
   The old site set this over a photograph. Typography carries it better here:
   a photo behind text this size costs contrast and a large image request for
   no informational gain.
   --------------------------------------------------------------------------- */
.emm-statement {
  background: var(--emm-tint);
  border-block: 1px solid var(--emm-line-tint);
  padding-block: clamp(2.75rem, 5vw, 4.5rem);
  position: relative;
  overflow: hidden;
}
.emm-statement::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 15% 120%, rgba(31, 197, 142, .14), transparent 55%),
    radial-gradient(ellipse at 88% -20%, rgba(250, 230, 45, .28), transparent 48%);
  pointer-events: none;
}
.emm-statement > .container { position: relative; z-index: 1; }
.emm-statement__text {
  font-family: var(--emm-font-display);
  font-size: clamp(1.25rem, 2.6vw, 2rem);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -.01em;
  color: var(--emm-ink);
  text-align: center;
  max-width: 52rem;
  margin: 0 auto;
}
.emm-statement__text em {
  font-style: normal;
  color: var(--emm-emerald-deep);
}

/* ---------------------------------------------------------------------------
   13b. PILLARS — vision / values / mission
   --------------------------------------------------------------------------- */
.emm-pillar {
  background: var(--emm-paper);
  border: 1px solid var(--emm-line);
  border-top: 3px solid var(--emm-emerald);
  padding: 2rem 1.75rem;
  text-align: center;
  transition: box-shadow .3s var(--emm-ease), transform .3s var(--emm-ease);
}
.emm-pillar:hover { box-shadow: var(--emm-lift-2); transform: translateY(-4px); }
.emm-pillar img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  margin-bottom: 1.1rem;
}
.emm-pillar h3 {
  font-size: .92rem;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
  margin-bottom: .8rem;
}
.emm-pillar p {
  color: var(--emm-steel);
  font-size: .92rem;
  margin-bottom: 0;
}
/* Deep-linked from the old #vision / #values / #mission anchors */
.emm-pillar:target { border-color: var(--emm-emerald); box-shadow: var(--emm-lift-2); }
.emm-pillar[id] { scroll-margin-top: 6rem; }

/* ---------------------------------------------------------------------------
   13c. EDITORIAL — news listing and article sidebar
   --------------------------------------------------------------------------- */
.emm-post {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 1.5rem;
  padding-bottom: 1.75rem;
  margin-bottom: 1.75rem;
  border-bottom: 1px solid var(--emm-line);
}
.emm-post:last-child { border-bottom: 0; margin-bottom: 0; }
.emm-post__media {
  display: block;
  overflow: hidden;
  border: 1px solid var(--emm-line);
  aspect-ratio: 4 / 3;
  background: var(--emm-mist);
}
.emm-post__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s var(--emm-ease);
}
.emm-post:hover .emm-post__media img { transform: scale(1.05); }
.emm-post__title { font-size: 1.3rem; margin-bottom: .55rem; }
.emm-post__title a { color: var(--emm-ink); }
.emm-post__title a:hover { color: var(--emm-emerald-deep); }
.emm-post p { color: var(--emm-steel); font-size: .93rem; }
@media (max-width: 767.98px) {
  .emm-post { grid-template-columns: 1fr; gap: 1rem; }
}

.emm-widget {
  border: 1px solid var(--emm-line);
  background: var(--emm-paper);
  padding: 1.4rem;
  margin-bottom: 1.5rem;
}
.emm-widget__title {
  font-size: .85rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  padding-bottom: .7rem;
  margin-bottom: 1rem;
  border-bottom: 2px solid var(--emm-emerald);
}
.emm-widget ul { list-style: none; margin: 0; padding: 0; }
.emm-widget__links li + li { border-top: 1px solid var(--emm-line); }
.emm-widget__links a {
  display: block;
  padding: .55rem 0 .55rem .9rem;
  font-size: .89rem;
  color: var(--emm-steel);
  position: relative;
}
.emm-widget__links a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.15em;
  width: 6px;
  height: 1px;
  background: var(--emm-steel-2);
  transition: width .2s var(--emm-ease), background .2s var(--emm-ease);
}
.emm-widget__links a:hover { color: var(--emm-emerald-deep); }
.emm-widget__links a:hover::before { width: 11px; background: var(--emm-emerald); }

.emm-mini { display: flex; gap: .9rem; padding: .75rem 0; }
.emm-mini + .emm-mini { border-top: 1px solid var(--emm-line); }
.emm-mini__media {
  flex: none;
  width: 76px;
  height: 62px;
  overflow: hidden;
  border: 1px solid var(--emm-line);
}
.emm-mini__media img { width: 100%; height: 100%; object-fit: cover; }
.emm-mini h3 { font-size: .9rem; margin-bottom: .2rem; line-height: 1.35; }
.emm-mini h3 a { color: var(--emm-ink); }
.emm-mini h3 a:hover { color: var(--emm-emerald-deep); }
.emm-mini p { font-size: .8rem; color: var(--emm-steel-2); margin: 0; line-height: 1.45; }

/* ---------------------------------------------------------------------------
   13d. COUNTRY / MARKET PAGES
   --------------------------------------------------------------------------- */
.emm-countries {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: .6rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.emm-countries a {
  display: flex;
  align-items: center;
  gap: .65rem;
  padding: .8rem 1rem;
  background: var(--emm-paper);
  border: 1px solid var(--emm-line);
  font-size: .9rem;
  font-weight: 600;
  color: var(--emm-ink);
  line-height: 1.35;
  transition: border-color .22s var(--emm-ease), background .22s var(--emm-ease),
              transform .22s var(--emm-ease);
}
.emm-countries a::before {
  content: "";
  flex: none;
  width: 8px;
  height: 8px;
  background: var(--emm-emerald);
}
.emm-countries a:hover {
  border-color: var(--emm-emerald);
  background: var(--emm-tint);
  transform: translateX(3px);
}

/* Three-up value props at the top of a country landing page */
.emm-props { display: grid; gap: 1.25rem; grid-template-columns: repeat(3, 1fr); }
@media (max-width: 767.98px) { .emm-props { grid-template-columns: 1fr; } }
.emm-prop {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .8rem;
  padding: 1.5rem;
  background: var(--emm-paper);
  border: 1px solid var(--emm-line);
  border-top: 3px solid var(--emm-emerald);
  height: 100%;
}
.emm-prop img { width: 52px; height: 52px; object-fit: contain; }
.emm-prop p { font-size: .95rem; color: var(--emm-steel); margin: 0; }
.emm-prop .emm-btn { margin-top: auto; }

/* ---------------------------------------------------------------------------
   13e. CONTACT
   --------------------------------------------------------------------------- */
.emm-contactcard {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem;
  background: var(--emm-paper);
  border: 1px solid var(--emm-line);
  height: 100%;
}
.emm-contactcard i {
  flex: none;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  background: var(--emm-tint);
  color: var(--emm-emerald-deep);
  font-size: 1.2rem;
}
.emm-contactcard__label {
  display: block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--emm-steel-2);
  margin-bottom: .2rem;
}
.emm-contactcard a { color: var(--emm-ink); font-weight: 600; word-break: break-word; }
.emm-contactcard a:hover { color: var(--emm-emerald-deep); }

.emm-captcha {
  display: flex;
  align-items: center;
  gap: .75rem;
}
.emm-captcha__sum {
  flex: none;
  padding: .78rem 1rem;
  background: var(--emm-mist);
  border: 1px solid var(--emm-line);
  font-weight: 700;
  font-size: .95rem;
  color: var(--emm-ink);
  white-space: nowrap;
}

.emm-alert {
  border-left: 3px solid var(--emm-emerald);
  background: var(--emm-tint);
  padding: 1.1rem 1.35rem;
  font-size: .95rem;
  color: var(--emm-ink);
}
.emm-alert--warn {
  border-left-color: #d98b00;
  background: #fff8e8;
}

/* ---------------------------------------------------------------------------
   13f. POP-UP ENQUIRY (loaded in an iframe, so it styles its own page)
   --------------------------------------------------------------------------- */
.emm-popup { padding: 1.5rem; }
.emm-popup h1 {
  font-size: 1.25rem;
  padding-bottom: .7rem;
  margin-bottom: 1.25rem;
  border-bottom: 2px solid var(--emm-emerald);
}
.emm-popup .form-control,
.emm-popup .form-select {
  border-radius: 0;
  border: 1px solid var(--emm-line);
  padding: .6rem .8rem;
  font-size: .9rem;
}
.emm-popup .form-control:focus,
.emm-popup .form-select:focus {
  border-color: var(--emm-emerald);
  box-shadow: 0 0 0 3px rgba(31, 197, 142, .16);
}
.emm-popup label {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--emm-steel-2);
  margin-bottom: .3rem;
}

/* Vertical pill navigation — used for the About page tabs */
.emm-pillnav { gap: 0; border-left: 2px solid var(--emm-line); }
.emm-pillnav .nav-link {
  border-radius: 0;
  text-align: left;
  padding: .85rem 1.1rem;
  font-family: var(--emm-font-body);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--emm-steel);
  background: transparent;
  border-left: 2px solid transparent;
  margin-left: -2px;
  transition: color .22s var(--emm-ease), border-color .22s var(--emm-ease),
              background .22s var(--emm-ease);
}
.emm-pillnav .nav-link:hover { color: var(--emm-ink); background: var(--emm-mist); }
.emm-pillnav .nav-link.active {
  color: var(--emm-ink);
  background: var(--emm-tint);
  border-left-color: var(--emm-emerald);
}
@media (max-width: 991.98px) {
  .emm-pillnav {
    flex-direction: row !important;
    flex-wrap: nowrap;
    overflow-x: auto;
    border-left: 0;
    border-bottom: 2px solid var(--emm-line);
  }
  .emm-pillnav .nav-link {
    white-space: nowrap;
    border-left: 0;
    margin-left: 0;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
  }
  .emm-pillnav .nav-link.active { border-bottom-color: var(--emm-emerald); }
}

/* A card with no image still needs a top rule to read as a card */
.emm-card:not(:has(.emm-card__media)) { border-top: 3px solid var(--emm-emerald); }

/* ---------------------------------------------------------------------------
   13g. SEARCH, LISTING, TABLE, EMPTY STATE
   --------------------------------------------------------------------------- */

/* A–Z index */
.emm-alpha { display: flex; flex-wrap: wrap; align-items: center; gap: .3rem; }
.emm-alpha__item {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border: 1px solid var(--emm-line);
  background: var(--emm-paper);
  font-size: .82rem;
  font-weight: 700;
  color: var(--emm-steel);
  transition: background .18s var(--emm-ease), color .18s var(--emm-ease),
              border-color .18s var(--emm-ease);
}
.emm-alpha__item:hover {
  background: var(--emm-emerald);
  border-color: var(--emm-emerald);
  color: var(--emm-ink);
}
.emm-alpha__item.is-on {
  background: var(--emm-ink);
  border-color: var(--emm-ink);
  color: #fff;
}

/* Pagination emitted by paginate() */
.emm-pager {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--emm-line);
  text-align: center;
}
.emm-pager a,
.emm-pager span {
  display: inline-grid;
  place-items: center;
  min-width: 38px;
  height: 38px;
  padding-inline: .5rem;
  margin: 0 .15rem;
  border: 1px solid var(--emm-line);
  font-size: .86rem;
  font-weight: 600;
  color: var(--emm-steel);
  vertical-align: middle;
}
.emm-pager a:hover { border-color: var(--emm-emerald); color: var(--emm-emerald-deep); }
.emm-pager span { background: var(--emm-ink); border-color: var(--emm-ink); color: #fff; }

/* Wide horizontal listing row — country product lists */
.emm-listing {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 1.75rem;
  align-items: start;
  padding: 1.5rem;
  background: var(--emm-paper);
  border: 1px solid var(--emm-line);
  transition: border-color .3s var(--emm-ease), box-shadow .3s var(--emm-ease);
}
.emm-listing:hover { border-color: var(--emm-emerald); box-shadow: var(--emm-lift-1); }
.emm-listing__media {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--emm-mist);
  border: 1px solid var(--emm-line);
}
.emm-listing__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--emm-ease);
}
.emm-listing:hover .emm-listing__media img { transform: scale(1.05); }
.emm-listing__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .75rem;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--emm-steel-2);
  margin-bottom: .6rem;
}
.emm-listing__country { color: var(--emm-emerald-deep); }
.emm-listing__title { font-size: 1.25rem; margin-bottom: .6rem; }
.emm-listing__title a { color: var(--emm-ink); }
.emm-listing__title a:hover { color: var(--emm-emerald-deep); }
.emm-listing p { color: var(--emm-steel); font-size: .92rem; margin-bottom: 1rem; }
@media (max-width: 767.98px) {
  .emm-listing { grid-template-columns: 1fr; gap: 1.1rem; padding: 1.1rem; }
}

/* Tables */
.emm-table { border: 1px solid var(--emm-line); margin-bottom: 0; }
.emm-table thead th {
  background: var(--emm-ink);
  color: #fff;
  font-family: var(--emm-font-body);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  border: 0;
  padding: .9rem .85rem;
  white-space: nowrap;
}
.emm-table tbody td {
  padding: .85rem;
  border-color: var(--emm-line);
  font-size: .92rem;
  vertical-align: middle;
}
.emm-table .form-control { border-radius: 0; border-color: var(--emm-line); }
.emm-code {
  display: inline-block;
  background: var(--emm-mist);
  border: 1px solid var(--emm-line);
  padding: .18rem .5rem;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  color: var(--emm-ink);
}

/* Empty state */
.emm-empty {
  text-align: center;
  padding: clamp(2.5rem, 6vw, 4.5rem) 1.5rem;
  border: 1px dashed var(--emm-line);
  background: var(--emm-mist);
}
.emm-empty i {
  font-size: 2.4rem;
  color: var(--emm-steel-2);
  display: block;
  margin-bottom: 1rem;
}
.emm-empty p {
  color: var(--emm-steel);
  max-width: 44ch;
  margin: 0 auto 1.5rem;
}

/* ---------------------------------------------------------------------------
   13h. SEO SECTIONS — checklist and FAQ
   --------------------------------------------------------------------------- */
.emm-checklist { list-style: none; margin: 0; padding: 0; }
.emm-checklist li {
  position: relative;
  padding: 0 0 .9rem 2rem;
  margin-bottom: .9rem;
  border-bottom: 1px solid var(--emm-line);
  font-size: .94rem;
  color: var(--emm-steel);
  line-height: 1.65;
}
.emm-checklist li:last-child { border-bottom: 0; margin-bottom: 0; padding-bottom: 0; }
.emm-checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .5em;
  width: 11px;
  height: 6px;
  border-left: 2px solid var(--emm-emerald);
  border-bottom: 2px solid var(--emm-emerald);
  transform: rotate(-45deg);
}
.emm-checklist strong { color: var(--emm-ink); }

.emm-faq { border-top: 1px solid var(--emm-line); }
.emm-faq__item { border-bottom: 1px solid var(--emm-line); }
.emm-faq__item summary {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1.15rem 0;
  cursor: pointer;
  list-style: none;
  font-family: var(--emm-font-display);
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--emm-ink);
  line-height: 1.4;
  transition: color .2s var(--emm-ease);
}
.emm-faq__item summary::-webkit-details-marker { display: none; }
.emm-faq__item summary::after {
  content: "";
  flex: none;
  width: 10px;
  height: 10px;
  margin-top: .45rem;
  border-right: 2px solid var(--emm-emerald);
  border-bottom: 2px solid var(--emm-emerald);
  transform: rotate(45deg);
  transition: transform .28s var(--emm-ease);
}
.emm-faq__item[open] summary { color: var(--emm-emerald-deep); }
.emm-faq__item[open] summary::after { transform: rotate(-135deg); margin-top: .8rem; }
.emm-faq__item summary:hover { color: var(--emm-emerald-deep); }
.emm-faq__body {
  padding: 0 0 1.35rem;
  max-width: 78ch;
}
.emm-faq__body p {
  color: var(--emm-steel);
  font-size: .94rem;
  margin-bottom: 0;
}

/* ---------------------------------------------------------------------------
   14. FOOTER
   --------------------------------------------------------------------------- */
.emm-footer {
  background: var(--emm-ink);
  color: rgba(255, 255, 255, .68);
  padding-block: clamp(2.75rem, 5vw, 4.25rem) 2.5rem;
  font-size: .89rem;
}
.emm-footer a { color: rgba(255, 255, 255, .68); }
.emm-footer a:hover { color: var(--emm-emerald-lit); }
.emm-footer__logo { max-height: 58px; margin-bottom: 1.15rem; }
.emm-footer__title {
  font-family: var(--emm-font-display);
  font-size: .88rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1.25rem;
  padding-bottom: .7rem;
  border-bottom: 1px solid var(--emm-line-dark);
  position: relative;
}
.emm-footer__title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 40px;
  height: 2px;
  background: var(--emm-emerald);
}
.emm-footer ul { list-style: none; margin: 0; padding: 0; }
.emm-footer__links li { margin-bottom: .48rem; line-height: 1.5; }
.emm-footer__links.is-split {
  columns: 2;
  column-gap: 1.5rem;
}
.emm-footer__links.is-split li { break-inside: avoid; }

.emm-footer__contact li {
  display: flex;
  gap: .8rem;
  margin-bottom: .9rem;
  align-items: flex-start;
}
.emm-footer__contact i,
.emm-footer__contact svg {
  color: var(--emm-emerald);
  font-size: 1.05rem;
  width: 20px;
  flex: none;
  margin-top: .2rem;
  fill: currentColor;
}
.emm-footer__contact a { word-break: break-word; }

.emm-footer__social {
  display: flex;
  gap: .6rem;
  margin-top: 1.25rem;
}
.emm-footer__social a {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid var(--emm-line-dark);
  color: rgba(255, 255, 255, .8);
  transition: background .25s var(--emm-ease), color .25s var(--emm-ease),
              border-color .25s var(--emm-ease);
}
.emm-footer__social a:hover {
  background: var(--emm-emerald);
  border-color: var(--emm-emerald);
  color: var(--emm-ink);
}
.emm-footer__social svg { width: 16px; height: 16px; fill: currentColor; }

.emm-colophon {
  background: #100c0c;
  color: rgba(255, 255, 255, .46);
  font-size: .8rem;
  padding-block: 1.15rem;
  line-height: 1.65;
}
.emm-colophon a { color: rgba(255, 255, 255, .6); }
.emm-colophon a:hover { color: var(--emm-emerald-lit); }
.emm-geo {
  font-size: .76rem;
  color: rgba(255, 255, 255, .34);
  margin-top: .35rem;
}

/* ---------------------------------------------------------------------------
   15. FLOATING CONTACT
   --------------------------------------------------------------------------- */
.emm-fab {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 1080;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  gap: .6rem;
}
.emm-fab__toggle {
  width: 54px;
  height: 54px;
  border: 0;
  border-radius: 50%;
  background: var(--emm-emerald);
  color: var(--emm-ink);
  font-size: 1.4rem;
  display: grid;
  place-items: center;
  box-shadow: var(--emm-lift-2);
  cursor: pointer;
  transition: transform .3s var(--emm-ease), background .25s var(--emm-ease);
}
.emm-fab__toggle:hover { transform: scale(1.06); }
.emm-fab__toggle[aria-expanded="true"] { background: var(--emm-ink); color: #fff; }
.emm-fab__menu {
  display: flex;
  flex-direction: column;
  gap: .55rem;
  align-items: center;
}
.emm-fab__menu[hidden] { display: none; }
.emm-fab__menu a {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--emm-emerald-deep);
  color: #fff;
  font-size: 1.1rem;
  box-shadow: var(--emm-lift-1);
  animation: emmPop .28s var(--emm-ease) backwards;
  transition: background .25s var(--emm-ease), color .25s var(--emm-ease);
}
.emm-fab__menu a:nth-child(1) { animation-delay: .02s; }
.emm-fab__menu a:nth-child(2) { animation-delay: .07s; }
.emm-fab__menu a:nth-child(3) { animation-delay: .12s; }
.emm-fab__menu a:hover { background: var(--emm-signal); color: var(--emm-ink); }
@keyframes emmPop {
  from { opacity: 0; transform: translateY(12px) scale(.85); }
  to   { opacity: 1; transform: none; }
}

.emm-totop {
  position: fixed;
  right: 18px;
  bottom: 86px;
  z-index: 1070;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: var(--emm-emerald-deep);
  color: #fff;
  border: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity .3s var(--emm-ease), transform .3s var(--emm-ease),
              visibility .3s;
  cursor: pointer;
}
.emm-totop.is-visible { opacity: 1; visibility: visible; transform: none; }
.emm-totop:hover { background: var(--emm-signal); color: var(--emm-ink); }

/* ---------------------------------------------------------------------------
   16. FORMS
   --------------------------------------------------------------------------- */
.emm-form .form-control,
.emm-form .form-select {
  border: 1px solid var(--emm-line);
  border-radius: 0;
  padding: .78rem 1rem;
  font-size: .94rem;
  background: var(--emm-paper);
  box-shadow: none;
}
.emm-form .form-control:focus,
.emm-form .form-select:focus {
  border-color: var(--emm-emerald);
  box-shadow: 0 0 0 3px rgba(31, 197, 142, .16);
}
.emm-form label {
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--emm-steel-2);
  margin-bottom: .4rem;
}
.emm-form .invalid-feedback,
.emm-form label.error {
  color: #c0392b;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  display: block;
  margin-top: .35rem;
}

.emm-note {
  border-left: 3px solid var(--emm-signal);
  background: var(--emm-mist);
  padding: 1rem 1.25rem;
  font-size: .9rem;
}

/* ---------------------------------------------------------------------------
   17. PROSE — CMS-authored description fields
   --------------------------------------------------------------------------- */
.emm-prose { color: var(--emm-steel); }
.emm-prose h2 { font-size: 1.5rem; margin-top: 2rem; }
.emm-prose h3 { font-size: 1.2rem; margin-top: 1.6rem; }
.emm-prose ul,
.emm-prose ol { padding-left: 1.25rem; margin-bottom: 1.25rem; }
.emm-prose li { margin-bottom: .45rem; }
.emm-prose table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.25rem;
  font-size: .9rem;
}
.emm-prose th,
.emm-prose td { border: 1px solid var(--emm-line); padding: .6rem .8rem; }
.emm-prose th { background: var(--emm-mist); color: var(--emm-ink); text-align: left; }
.emm-prose img { height: auto; margin-block: 1rem; }

/* Long SEO copy that shouldn't dominate the page */
.emm-readmore { position: relative; }
.emm-readmore__body {
  max-height: 11.5rem;
  overflow: hidden;
  transition: max-height .45s var(--emm-ease);
}
.emm-readmore.is-open .emm-readmore__body { max-height: 240rem; }
.emm-readmore:not(.is-open) .emm-readmore__body::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2.6rem;
  height: 5rem;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), #fff);
  pointer-events: none;
}
.emm-readmore__btn {
  margin-top: .85rem;
  background: none;
  border: 0;
  padding: 0;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--emm-emerald-deep);
  cursor: pointer;
}
.emm-readmore__btn:hover { color: var(--emm-ink); }

/* Current-page highlighting driven by aria-current, so the styling and the
   accessibility signal can never drift apart. */
.emm-mega__group ul a[aria-current="page"] {
  color: var(--emm-emerald-deep);
  font-weight: 700;
}

/* AJAX product loader status */
.loading_page {
  text-align: center;
  padding: 1.75rem 0;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--emm-steel-2);
}
.loading_page::after {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-left: .6rem;
  vertical-align: -2px;
  border: 2px solid var(--emm-line);
  border-top-color: var(--emm-emerald);
  border-radius: 50%;
  animation: emmSpin .8s linear infinite;
}
@keyframes emmSpin { to { transform: rotate(360deg); } }
.lastLoadId { display: none; }

/* Product grid rows keep equal-height cards even when injected by AJAX */
.product_listing_box > [class*="col-"] { display: flex; }
.product_listing_box > [class*="col-"] > .emm-card { width: 100%; }

/* ---------------------------------------------------------------------------
   18. LEGACY SHIM
   Bootstrap 3 class names still present on pages not yet converted.
   Keeps the un-migrated pages readable during a phased rollout.
   DELETE THIS BLOCK once every template has been converted.
   --------------------------------------------------------------------------- */
.pull-left  { float: left  !important; }
.pull-right { float: right !important; }
.text-left  { text-align: left   !important; }
.text-right { text-align: right  !important; }
.img-responsive { display: block; max-width: 100%; height: auto; }
.img-thumbnail1 { max-width: 100%; height: auto; }
.hidden { display: none !important; }
.clear  { clear: both; }
.center-block { display: block; margin-inline: auto; }

.col-xs-1,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,
.col-xs-7,.col-xs-8,.col-xs-9,.col-xs-10,.col-xs-11,.col-xs-12 {
  position: relative;
  width: 100%;
  padding-inline: calc(var(--bs-gutter-x, 1.5rem) * .5);
}
.col-xs-12 { flex: 0 0 100%; max-width: 100%; }
.col-xs-6  { flex: 0 0 50%;  max-width: 50%;  }
.col-xs-4  { flex: 0 0 33.3333%; max-width: 33.3333%; }
.col-xs-3  { flex: 0 0 25%;  max-width: 25%;  }

.clearfix::after { content: ""; display: table; clear: both; }

/* Legacy button classes mapped onto the new button */
.submit,
.thm-btn,
.listbtn,
.addtocartbtn {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .78rem 1.5rem;
  font-family: var(--emm-font-body);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  line-height: 1;
  color: var(--emm-ink);
  background: var(--emm-emerald);
  border: 2px solid var(--emm-emerald);
  border-radius: 0;
  cursor: pointer;
  transition: background .25s var(--emm-ease), color .25s var(--emm-ease),
              border-color .25s var(--emm-ease);
}
.submit:hover,
.thm-btn:hover,
.listbtn:hover,
.addtocartbtn:hover {
  background: var(--emm-ink);
  border-color: var(--emm-ink);
  color: #fff;
}

/* ---------------------------------------------------------------------------
   19. MOTION + REVEAL
   --------------------------------------------------------------------------- */
.emm-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s var(--emm-ease), transform .6s var(--emm-ease);
  will-change: opacity, transform;
}
.emm-reveal.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .emm-reveal { opacity: 1; transform: none; }
}

/* ---------------------------------------------------------------------------
   20. RESPONSIVE
   --------------------------------------------------------------------------- */
@media (max-width: 1199.98px) {
  .emm-brandbar__aside { gap: 1.15rem; }
  .emm-nav .nav-link { padding-inline: .8rem; font-size: .78rem; }
}

@media (max-width: 991.98px) {
  .emm-brandbar { padding: .9rem 0; }
  .emm-brandbar__aside { justify-content: flex-start; margin-top: 1rem; }
  .emm-footer__links.is-split { columns: 2; }
  .emm-pdp__figure { min-height: 240px; }
}

@media (max-width: 767.98px) {
  :root { --emm-chamfer: 12px; }
  .emm-utility { font-size: .74rem; }
  .emm-utility__list { gap: .9rem; justify-content: center; }
  .emm-brandbar__logo { text-align: center; }
  .emm-brandbar__logo img { max-height: 52px; }
  .emm-callblock { justify-content: center; width: 100%; }
  .emm-search { width: 100%; }
  .emm-hero__inner { padding-block: 2.5rem 4rem; }
  .emm-footer { text-align: center; }
  .emm-footer__title::after { left: 50%; transform: translateX(-50%); }
  .emm-footer__contact li { justify-content: center; text-align: left; }
  .emm-footer__social { justify-content: center; }
  .emm-footer__links.is-split { columns: 1; }
  .emm-pdp__facts .k { flex-basis: 100%; }
  .emm-tabs .nav-tabs { flex-wrap: nowrap; overflow-x: auto; }
  .emm-tabs .nav-tabs .nav-link { white-space: nowrap; }
}

@media (max-width: 575.98px) {
  .emm-hero .carousel-item,
  .emm-hero__inner { min-height: 420px; }
  .emm-btn { width: 100%; justify-content: center; }
  .emm-hero__actions .emm-btn { width: auto; }
}

/* ---------------------------------------------------------------------------
   21. PRINT
   --------------------------------------------------------------------------- */
@media print {
  .emm-utility,
  .emm-nav,
  .emm-fab,
  .emm-totop,
  .emm-cta,
  .emm-footer,
  .emm-colophon,
  .emm-side,
  .carousel-control-prev,
  .carousel-indicators,
  .carousel-control-next { display: none !important; }

  body { color: #000; font-size: 11pt; }
  a[href^="http"]::after { content: " (" attr(href) ")"; font-size: 9pt; }
  .emm-card { break-inside: avoid; border: 1px solid #999; }
}
