/* ==========================================================================
   handtoolsmachines.com — design system
   Bootstrap 5.3 add-on. Load AFTER bootstrap.min.css.
   ==========================================================================

   ┌────────────────────────────────────────────────────────────────────────┐
   │  TO RE-SKIN THE WHOLE SITE, EDIT ONLY THE BLOCK MARKED "THEME" BELOW.  │
   │  Everything else derives from it — tints, hovers, borders and dark     │
   │  bands are mixed from the base colours at render time, so changing     │
   │  --t-brand restyles several hundred rules at once.                     │
   │  Ready-made alternatives are at the bottom of this file under          │
   │  "THEME PRESETS" — copy one over the block to switch.                  │
   └────────────────────────────────────────────────────────────────────────┘

   01 Theme
   02 Derived tokens + Bootstrap bridge
   03 Base + typography
   04 Section heading device
   05 Buttons
   06 Header, mega menu, search, bag
   07 Hero + category mosaic
   08 Credential strip
   09 Cards and tiles
   10 Content bands
   11 FAQ
   12 Quote band / CTA
   13 Page banner + breadcrumb
   14 Sidebar rail
   15 Product detail
   16 Listing rows, alphabet, pagination
   17 Request bag
   18 Forms
   19 CMS rich text
   20 Footer
   21 Utilities, motion, print
   22 Theme presets
   ========================================================================== */

/* 01 THEME ============================================================== */
:root {
  /* --- Colour ---------------------------------------------------------- */
  --t-brand:      #7a2fb8;   /* primary: buttons, links, active states      */
  --t-brand-dark: #3d1360;   /* pressed/hover state of the primary          */
  --t-ink:        #1d0b33;   /* darkest shade: headings, hero, footer       */
  --t-accent:     #f5c03a;   /* ONE accent: main CTA, rules, active marks   */
  --t-text:       #333b48;   /* body copy                                   */
  --t-muted:      #626c7d;   /* secondary copy                              */
  --t-page:       #ffffff;   /* page background                             */
  --t-surface:    #f5f4f9;   /* alternating section background              */
  --t-line:       #e4e1ee;   /* hairlines, card borders                     */

  /* --- Type ------------------------------------------------------------ */
  --t-font-display: "Archivo", "Arial Narrow", Arial, sans-serif;
  --t-font-text:    "IBM Plex Sans", "Segoe UI", Arial, sans-serif;

  /* --- Shape ----------------------------------------------------------- */
  --t-radius:     10px;  /* cards, panels          */
  --t-radius-sm:  6px;   /* buttons, inputs, chips */
  --t-section:    84px;  /* vertical section rhythm */
}

/* 02 Derived tokens + Bootstrap bridge ================================== */
:root {
  --c-brand-tint:  color-mix(in srgb, var(--t-brand) 10%, #fff);
  --c-brand-wash:  color-mix(in srgb, var(--t-brand) 5%, #fff);
  --c-accent-soft: color-mix(in srgb, var(--t-accent) 22%, #fff);
  --c-ink-60:      color-mix(in srgb, var(--t-ink) 60%, #fff);
  --c-on-dark:     color-mix(in srgb, #fff 82%, var(--t-brand));
  --c-on-dark-dim: color-mix(in srgb, #fff 62%, var(--t-brand));
  --c-hairline-dk: color-mix(in srgb, #fff 16%, transparent);

  --c-shadow:      0 1px 2px color-mix(in srgb, var(--t-ink) 8%, transparent);
  --c-shadow-lift: 0 14px 40px color-mix(in srgb, var(--t-ink) 14%, transparent);

  /* Bootstrap variables so native components inherit the theme */
  --bs-primary: var(--t-brand);
  --bs-body-color: var(--t-text);
  --bs-body-font-family: var(--t-font-text);
  --bs-border-color: var(--t-line);
  --bs-link-color: var(--t-brand);
  --bs-link-hover-color: var(--t-brand-dark);
  --bs-border-radius: var(--t-radius-sm);
}

@media (max-width: 767.98px) { :root { --t-section: 52px; } }

/* 03 Base + typography ================================================== */
html { scroll-behavior: smooth; }
body {
  font-family: var(--t-font-text);
  font-size: 16px; line-height: 1.65;
  color: var(--t-text); background: var(--t-page);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1,h2,h3,h4,h5,h6,.h1,.h2,.h3,.h4,.h5,.h6 {
  font-family: var(--t-font-display);
  color: var(--t-ink);
  font-weight: 700; letter-spacing: -.015em; line-height: 1.15;
}
h1,.h1 { font-size: clamp(2.1rem, 4.2vw, 3.4rem); font-weight: 800; letter-spacing: -.032em; }
h2,.h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); letter-spacing: -.022em; }
h3,.h3 { font-size: clamp(1.12rem, 1.6vw, 1.35rem); }
h4,.h4 { font-size: 1.08rem; }
h5,.h5 { font-size: 1rem; }

p { margin-bottom: 1rem; max-width: 72ch; }
a { color: var(--t-brand); text-decoration: none; transition: color .18s ease; }
a:hover, a:focus { color: var(--t-brand-dark); text-decoration: underline; }
strong, b { font-weight: 600; color: var(--t-ink); }
img { max-width: 100%; height: auto; }
hr { border-color: var(--t-line); opacity: 1; }

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

.htm-section { padding: var(--t-section) 0; }
.htm-section--tight { padding: calc(var(--t-section) * .62) 0; }
.htm-section--mist { background: var(--t-surface); }
.htm-lead { font-size: 1.075rem; color: var(--t-muted); }
.htm-measure { max-width: 68ch; }

.htm-skip {
  position: absolute; left: -9999px; top: 0; z-index: 1080;
  background: var(--t-ink); color: #fff; padding: 12px 20px; border-radius: 0 0 6px 0;
}
.htm-skip:focus { left: 0; color: #fff; }

/* 04 Section heading device ============================================= */
.htm-head { margin-bottom: 36px; }
.htm-head > h1, .htm-head > h2 { margin: 0 0 12px; }
.htm-head p { color: var(--t-muted); margin-bottom: 0; }
.htm-head--center { text-align: center; }
.htm-head--center p { margin-left: auto; margin-right: auto; }

.htm-rule {
  display: block; width: 64px; height: 4px; margin-bottom: 18px; border-radius: 2px;
  background: linear-gradient(90deg, var(--t-brand) 0 58%, var(--t-accent) 58% 100%);
}
.htm-head--center .htm-rule { margin-left: auto; margin-right: auto; }

/* 05 Buttons ============================================================ */
.htm-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--t-font-display); font-weight: 600; font-size: .97rem;
  padding: 13px 26px; border-radius: var(--t-radius-sm);
  border: 2px solid transparent; cursor: pointer;
  transition: background-color .18s ease, color .18s ease, border-color .18s ease;
}
.htm-btn:hover, .htm-btn:focus { text-decoration: none; }
.htm-btn--primary { background: var(--t-brand); border-color: var(--t-brand); color: #fff; }
.htm-btn--primary:hover, .htm-btn--primary:focus { background: var(--t-brand-dark); border-color: var(--t-brand-dark); color: #fff; }
.htm-btn--amber { background: var(--t-accent); border-color: var(--t-accent); color: var(--t-ink); }
.htm-btn--amber:hover, .htm-btn--amber:focus { background: color-mix(in srgb, var(--t-accent) 78%, #fff); border-color: color-mix(in srgb, var(--t-accent) 78%, #fff); color: var(--t-ink); }
.htm-btn--ghost { background: transparent; border-color: color-mix(in srgb, #fff 55%, transparent); color: #fff; }
.htm-btn--ghost:hover, .htm-btn--ghost:focus { background: #fff; border-color: #fff; color: var(--t-ink); }
.htm-btn--outline { background: transparent; border-color: var(--t-brand); color: var(--t-brand); }
.htm-btn--outline:hover, .htm-btn--outline:focus { background: var(--t-brand); color: #fff; }
.htm-btn--sm { padding: 9px 18px; font-size: .88rem; }
.htm-btn--block { width: 100%; }

/* 06 Header ============================================================= */
.htm-topbar {
  background: var(--t-ink); color: var(--c-on-dark-dim); font-size: .84rem;
  border-bottom: 1px solid var(--c-hairline-dk);
}
.htm-topbar a { color: var(--c-on-dark-dim); }
.htm-topbar a:hover { color: var(--t-accent); text-decoration: none; }
.htm-topbar__inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 8px; padding: 9px 0; }
.htm-topbar__list { display: flex; flex-wrap: wrap; gap: 20px; margin: 0; padding: 0; list-style: none; }
.htm-topbar__list li { display: flex; align-items: center; gap: 7px; }

.htm-header { background: var(--t-page); border-bottom: 1px solid var(--t-line); }
.htm-header .navbar { padding: 0; }
.htm-brand { display: inline-flex; flex-direction: column; justify-content: center; padding: 14px 0; }
.htm-brand:hover { text-decoration: none; }
.htm-brand img { height: 50px; width: auto; }

/* Text wordmark (replaces the logo image) ------------------------------- */
.htm-brand__word {
  font-family: var(--t-font-display); font-weight: 800;
  font-size: clamp(1.25rem, 2.2vw, 1.6rem);
  letter-spacing: -.042em; line-height: 1; color: var(--t-ink);
  display: inline-flex; align-items: center;
}
.htm-brand__word::after {
  content: ""; display: inline-block; width: 9px; height: 9px; margin-left: 7px;
  border-radius: 2px; background: var(--t-accent); flex: 0 0 auto;
}
.htm-brand__sub {
  font-family: var(--t-font-text); font-size: .7rem; font-weight: 500;
  color: var(--t-muted); margin-top: 5px; line-height: 1;
}
.htm-brand:hover .htm-brand__word { color: var(--t-brand); }

/* Dark backgrounds (footer) */
.htm-footer .htm-brand__word { color: #fff; }
.htm-footer .htm-brand__sub { color: var(--c-on-dark-dim); }
.htm-footer .htm-brand { padding: 0 0 18px; }

@media (max-width: 991.98px) { .htm-brand__sub { display: none; } }

.htm-nav .nav-link {
  font-family: var(--t-font-display); font-weight: 600; font-size: .98rem;
  color: var(--t-ink); padding: 27px 15px; position: relative;
}
.htm-nav .nav-link::after {
  content: ""; position: absolute; left: 15px; right: 15px; bottom: 20px; height: 3px;
  border-radius: 2px; background: var(--t-accent);
  transform: scaleX(0); transform-origin: left; transition: transform .2s ease;
}
.htm-nav .nav-link:hover, .htm-nav .nav-link:focus, .htm-nav .nav-link.active { color: var(--t-brand); }
.htm-nav .nav-link:hover::after, .htm-nav .nav-link.active::after { transform: scaleX(1); }
.htm-nav .dropdown-toggle::after { margin-left: .4em; vertical-align: .16em; }

/* Mega menu ------------------------------------------------------------- */
.htm-mega-parent { position: static !important; }
.htm-mega {
  width: 100%; left: 0; right: 0; margin-top: 0; padding: 0;
  border: 1px solid var(--t-line); border-top: 3px solid var(--t-brand);
  border-radius: 0 0 var(--t-radius) var(--t-radius);
  box-shadow: var(--c-shadow-lift); background: var(--t-page); overflow: hidden;
}
.htm-mega__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px; padding: 18px; }
.htm-mega__item {
  display: flex; align-items: center; gap: 14px; padding: 12px 14px;
  border-radius: var(--t-radius-sm); color: var(--t-ink);
  font-family: var(--t-font-display); font-weight: 600; font-size: .95rem; line-height: 1.25;
  transition: background-color .18s ease;
}
.htm-mega__item:hover, .htm-mega__item:focus { background: var(--c-brand-wash); color: var(--t-brand); text-decoration: none; }
.htm-mega__thumb {
  flex: 0 0 auto; width: 54px; height: 54px; border-radius: var(--t-radius-sm);
  background: var(--t-surface); overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  color: var(--t-brand); font-size: 1.2rem;
}
.htm-mega__thumb img { width: 100%; height: 100%; object-fit: cover; }
.htm-mega__foot {
  display: flex; flex-wrap: wrap; gap: 16px; justify-content: space-between; align-items: center;
  padding: 14px 32px; background: var(--t-surface); border-top: 1px solid var(--t-line);
  font-size: .92rem; color: var(--t-muted);
}
.htm-mega__foot a { font-family: var(--t-font-display); font-weight: 600; }

.htm-header__actions { display: flex; align-items: center; gap: 10px; }

.htm-search {
  display: flex; align-items: center; background: var(--t-surface);
  border: 1px solid var(--t-line); border-radius: var(--t-radius-sm); overflow: hidden;
  transition: border-color .18s ease;
}
.htm-search:focus-within { border-color: var(--t-brand); background: var(--t-page); }
.htm-search input { border: 0; background: transparent; padding: 10px 14px; font-size: .9rem; min-width: 178px; color: var(--t-text); }
.htm-search input:focus { outline: none; }
.htm-search button { border: 0; background: var(--t-brand); color: #fff; padding: 10px 15px; }
.htm-search button:hover { background: var(--t-brand-dark); }

.htm-bag {
  display: inline-flex; align-items: center; gap: 8px; white-space: nowrap;
  font-family: var(--t-font-display); font-weight: 600; font-size: .92rem;
  color: var(--t-ink); padding: 10px 16px;
  border: 2px solid var(--t-ink); border-radius: var(--t-radius-sm);
}
.htm-bag:hover { background: var(--t-ink); color: #fff; text-decoration: none; }
.htm-bag__count {
  background: var(--t-accent); color: var(--t-ink); min-width: 22px; height: 22px;
  border-radius: 11px; display: inline-flex; align-items: center; justify-content: center;
  font-size: .78rem; padding: 0 6px;
}

.navbar-toggler { border: 1px solid var(--t-line); border-radius: var(--t-radius-sm); padding: 8px 11px; }
.navbar-toggler:focus { box-shadow: none; }

@media (max-width: 1199.98px) {
  .htm-nav .nav-link { padding-left: 11px; padding-right: 11px; font-size: .93rem; }
  .htm-search input { min-width: 130px; }
  .htm-mega__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 991.98px) {
  .htm-brand img { height: 40px; }
  .htm-brand { padding: 11px 0; }
  .htm-nav .nav-link { padding: 13px 0; border-bottom: 1px solid var(--t-line); }
  .htm-nav .nav-link::after { display: none; }
  .htm-mega { border: 0; box-shadow: none; }
  .htm-mega__grid { grid-template-columns: 1fr; padding: 6px 0; gap: 0; }
  .htm-mega__item { padding: 10px 6px; }
  .htm-mega__thumb { width: 40px; height: 40px; }
  .htm-mega__foot { padding: 12px 6px; background: transparent; }
  .htm-header__actions { flex-direction: column; align-items: stretch; padding: 14px 0; gap: 10px; }
  .htm-search input { width: 100%; }
}

.htm-header.is-stuck {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1030;
  box-shadow: var(--c-shadow-lift); animation: htmDrop .25s ease;
}
@keyframes htmDrop { from { transform: translateY(-100%); } to { transform: translateY(0); } }
.htm-header.is-stuck .htm-nav .nav-link { padding-top: 21px; padding-bottom: 21px; }
.htm-header.is-stuck .htm-nav .nav-link::after { bottom: 14px; }

/* 07 Hero =============================================================== */
.htm-hero {
  position: relative; overflow: hidden; isolation: isolate;
  background:
    radial-gradient(120% 100% at 85% 0%, color-mix(in srgb, var(--t-brand) 78%, #fff) 0%, transparent 55%),
    linear-gradient(160deg, var(--t-brand-dark) 0%, var(--t-ink) 70%);
  color: #fff;
}
/* Faint engineering grid — the only texture on the page */
.htm-hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1; opacity: .32;
  background-image:
    linear-gradient(color-mix(in srgb, #fff 7%, transparent) 1px, transparent 1px),
    linear-gradient(90deg, color-mix(in srgb, #fff 7%, transparent) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, #000 0%, transparent 88%);
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, transparent 88%);
}
.htm-hero__inner { padding: 76px 0 92px; }
.htm-hero h1 { color: #fff; max-width: 17ch; }
.htm-hero p { color: var(--c-on-dark); font-size: 1.08rem; max-width: 54ch; margin-top: 18px; }

/* Catalogue search, sitting in the hero where buyers look first */
.htm-hero__search {
  display: flex; gap: 8px; margin-top: 30px; max-width: 520px;
  background: color-mix(in srgb, #fff 10%, transparent);
  border: 1px solid color-mix(in srgb, #fff 22%, transparent);
  border-radius: var(--t-radius); padding: 8px;
  backdrop-filter: blur(4px);
}
.htm-hero__search input {
  flex: 1 1 auto; min-width: 0; border: 0; background: transparent; color: #fff;
  padding: 11px 14px; font-size: .98rem;
}
.htm-hero__search input::placeholder { color: color-mix(in srgb, #fff 60%, transparent); }
.htm-hero__search input:focus { outline: none; }
.htm-hero__search .htm-btn { flex: 0 0 auto; padding: 11px 22px; }

.htm-hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 18px; }

.htm-hero__tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 26px 0 0; padding: 0; list-style: none; }
.htm-hero__tags a {
  display: inline-block; font-size: .85rem; color: var(--c-on-dark);
  border: 1px solid color-mix(in srgb, #fff 26%, transparent); border-radius: 40px;
  padding: 6px 15px; background: color-mix(in srgb, #fff 6%, transparent);
}
.htm-hero__tags a:hover { background: #fff; color: var(--t-ink); border-color: #fff; text-decoration: none; }

/* Hero slider — one catalogue image at a time, advancing on its own */
.htm-heroslider {
  position: relative; overflow: hidden; aspect-ratio: 4 / 3;
  border-radius: var(--t-radius);
  border: 1px solid color-mix(in srgb, #fff 18%, transparent);
  background: color-mix(in srgb, var(--t-ink) 70%, #000);
  box-shadow: 0 22px 55px color-mix(in srgb, #000 34%, transparent);
}
.htm-heroslide {
  position: absolute; inset: 0; display: block;
  opacity: 0; visibility: hidden;
  transition: opacity .65s ease, visibility .65s ease;
}
.htm-heroslide.is-active { opacity: 1; visibility: visible; }
.htm-heroslide img { width: 100%; height: 100%; object-fit: cover; opacity: .88; }
.htm-heroslide span {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 52px 22px 20px;
  background: linear-gradient(to top, color-mix(in srgb, var(--t-ink) 95%, transparent), transparent);
  color: #fff; font-family: var(--t-font-display); font-weight: 700; font-size: 1.08rem; line-height: 1.25;
}
.htm-heroslide span small {
  display: block; font-size: .78rem; font-weight: 400; color: var(--t-accent); margin-top: 4px;
}
.htm-heroslide:hover { text-decoration: none; }
.htm-heroslide:hover img { opacity: .68; }

.htm-heroslider__nav { position: absolute; top: 14px; right: 14px; display: flex; gap: 7px; z-index: 2; }
.htm-heroslider__nav button {
  width: 34px; height: 34px; border-radius: 50%; padding: 0;
  border: 1px solid color-mix(in srgb, #fff 34%, transparent);
  background: color-mix(in srgb, var(--t-ink) 55%, transparent);
  color: #fff; display: flex; align-items: center; justify-content: center;
  transition: background-color .18s ease;
}
.htm-heroslider__nav button:hover { background: var(--t-accent); border-color: var(--t-accent); color: var(--t-ink); }

.htm-heroslider__dots { display: flex; justify-content: center; gap: 9px; margin: 16px 0 0; padding: 0; list-style: none; }
.htm-heroslider__dots button {
  width: 26px; height: 4px; padding: 0; border: 0; border-radius: 2px;
  background: color-mix(in srgb, #fff 28%, transparent);
  transition: background-color .2s ease, width .2s ease;
}
.htm-heroslider__dots button[aria-current="true"] { background: var(--t-accent); width: 40px; }

/* Typographic fallback when no catalogue images are available */
.htm-herocard {
  border: 1px solid color-mix(in srgb, #fff 20%, transparent);
  border-radius: var(--t-radius); padding: 26px 28px;
  background: color-mix(in srgb, #fff 7%, transparent);
}
.htm-herocard dl { margin: 0; }
.htm-herocard dt { font-size: .8rem; color: var(--c-on-dark-dim); font-weight: 400; }
.htm-herocard dd {
  margin: 2px 0 16px; font-family: var(--t-font-display); font-weight: 700;
  font-size: 1.25rem; color: #fff;
}
.htm-herocard dd:last-child { margin-bottom: 0; }

@media (max-width: 991.98px) {
  .htm-hero__inner { padding: 52px 0 60px; }
  .htm-heroslider { margin-top: 32px; }
}

/* 08 Credential strip =================================================== */
.htm-credentials {
  position: relative; margin-top: -46px; z-index: 3;
  background: var(--t-page); border: 1px solid var(--t-line);
  border-radius: var(--t-radius); box-shadow: var(--c-shadow-lift); padding: 8px 0;
}
.htm-credentials .row > div { padding: 22px 24px; }
.htm-credentials .row > div + div { border-left: 1px solid var(--t-line); }
.htm-credential__value {
  font-family: var(--t-font-display); font-weight: 800; font-size: 1.85rem;
  color: var(--t-brand); line-height: 1; display: block;
}
.htm-credential__label { font-size: .89rem; color: var(--t-muted); display: block; margin-top: 8px; }
@media (max-width: 767.98px) {
  .htm-credentials { margin-top: -34px; }
  .htm-credentials .row > div + div { border-left: 0; border-top: 1px solid var(--t-line); }
}

/* 09 Cards and tiles ==================================================== */
.htm-card {
  display: flex; flex-direction: column; height: 100%; background: var(--t-page);
  border: 1px solid var(--t-line); border-radius: var(--t-radius); overflow: hidden;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.htm-card:hover { border-color: var(--t-brand); box-shadow: var(--c-shadow); }
.htm-card__media { position: relative; display: block; background: var(--t-surface); aspect-ratio: 4/3; overflow: hidden; }
.htm-card__media img { width: 100%; height: 100%; object-fit: contain; padding: 14px; transition: transform .35s ease; }
.htm-card:hover .htm-card__media img { transform: scale(1.04); }
.htm-card__body { padding: 18px 20px 20px; display: flex; flex-direction: column; flex: 1 1 auto; }
.htm-card__body h3 { font-size: 1.04rem; margin: 0 0 8px; line-height: 1.3; }
.htm-card__body h3 a { color: var(--t-ink); }
.htm-card__body h3 a:hover { color: var(--t-brand); text-decoration: none; }
.htm-card__code { font-size: .82rem; color: var(--t-muted); margin: 0 0 10px; }
.htm-card__excerpt { font-size: .92rem; color: var(--t-muted); margin: 0 0 14px; }
.htm-card__foot { margin-top: auto; display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.htm-card__link {
  font-family: var(--t-font-display); font-weight: 600; font-size: .9rem;
  color: var(--t-brand); border-bottom: 2px solid var(--t-accent); padding-bottom: 2px;
}
.htm-card__link:hover { text-decoration: none; border-bottom-color: var(--t-brand); }

.htm-tile {
  position: relative; display: block; height: 100%; overflow: hidden;
  border-radius: var(--t-radius); background: var(--t-ink);
}
.htm-tile img { width: 100%; height: 100%; min-height: 236px; object-fit: cover; opacity: .84; transition: transform .4s ease, opacity .3s ease; }
.htm-tile:hover img { transform: scale(1.05); opacity: .58; }
.htm-tile__label {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 44px 20px 18px;
  background: linear-gradient(to top, color-mix(in srgb, var(--t-ink) 94%, transparent), transparent);
  color: #fff; font-family: var(--t-font-display); font-weight: 700; font-size: 1.04rem;
}
.htm-tile__label span { display: block; font-size: .8rem; font-weight: 400; color: var(--t-accent); margin-top: 4px; }
.htm-tile:hover { text-decoration: none; }

.htm-tile--noimg {
  display: flex; align-items: flex-end; min-height: 236px;
  background: linear-gradient(150deg, var(--t-brand) 0%, var(--t-ink) 100%);
}
.htm-tile--noimg::before {
  content: ""; position: absolute; right: -32px; top: -32px; width: 140px; height: 140px;
  border-radius: 50%; border: 18px solid color-mix(in srgb, #fff 8%, transparent);
}
.htm-tile--noimg .htm-tile__label { background: none; position: static; width: 100%; padding-top: 20px; }

/* 10 Content bands ====================================================== */
.htm-capability {
  display: flex; gap: 16px; padding: 24px; height: 100%; background: var(--t-page);
  border: 1px solid var(--t-line); border-radius: var(--t-radius);
}
.htm-capability__mark {
  flex: 0 0 auto; width: 46px; height: 46px; border-radius: var(--t-radius-sm);
  background: var(--c-brand-tint); color: var(--t-brand);
  display: flex; align-items: center; justify-content: center; font-size: 1.15rem;
}
.htm-capability h3 { font-size: 1.04rem; margin: 0 0 6px; }
.htm-capability p { font-size: .92rem; color: var(--t-muted); margin: 0; }

.htm-industry {
  display: block; padding: 20px 22px; height: 100%; background: var(--t-page);
  border: 1px solid var(--t-line); border-left: 4px solid var(--t-accent);
  border-radius: 0 var(--t-radius) var(--t-radius) 0;
  transition: border-left-color .2s ease;
}
.htm-industry:hover { border-left-color: var(--t-brand); text-decoration: none; }
.htm-industry h3 { font-size: 1rem; margin: 0 0 6px; }
.htm-industry p { font-size: .9rem; color: var(--t-muted); margin: 0; }

.htm-steps { counter-reset: htmstep; list-style: none; margin: 0; padding: 0; }
.htm-steps li { position: relative; padding: 0 0 0 68px; margin-bottom: 30px; }
.htm-steps li::before {
  counter-increment: htmstep; content: counter(htmstep, decimal-leading-zero);
  position: absolute; left: 0; top: -4px; width: 48px; height: 48px; border-radius: 50%;
  font-family: var(--t-font-display); font-weight: 800; font-size: 1.45rem; color: var(--t-brand);
  border: 2px solid var(--t-line); background: var(--t-page);
  display: flex; align-items: center; justify-content: center;
}
.htm-steps li:not(:last-child)::after { content: ""; position: absolute; left: 23px; top: 48px; bottom: -30px; width: 2px; background: var(--t-line); }
.htm-steps h3 { font-size: 1.05rem; margin: 0 0 5px; }
.htm-steps p { font-size: .93rem; color: var(--t-muted); margin: 0; }

.htm-markets { margin: 0; padding: 0; list-style: none; display: flex; flex-wrap: wrap; gap: 10px; }
.htm-markets li { font-size: .9rem; padding: 8px 16px; border-radius: 40px; background: var(--t-page); border: 1px solid var(--t-line); color: var(--t-text); }

/* 11 FAQ ================================================================ */
.htm-faq .accordion-item { border: 1px solid var(--t-line); border-radius: var(--t-radius) !important; margin-bottom: 12px; overflow: hidden; }
.htm-faq .accordion-button {
  font-family: var(--t-font-display); font-weight: 600; font-size: 1.02rem;
  color: var(--t-ink); background: var(--t-page); padding: 20px 22px;
}
.htm-faq .accordion-button:not(.collapsed) { background: var(--t-surface); color: var(--t-brand); box-shadow: none; }
.htm-faq .accordion-button:focus { box-shadow: none; border-color: var(--t-brand); }
.htm-faq .accordion-button::after { background-size: 1rem; }
.htm-faq .accordion-body { padding: 4px 22px 22px; color: var(--t-muted); }
.htm-faq .accordion-body p:last-child { margin-bottom: 0; }

/* 12 Quote band / CTA =================================================== */
.htm-quote { background: var(--t-accent); position: relative; overflow: hidden; }
.htm-quote blockquote { margin: 0; font-size: 1.04rem; color: color-mix(in srgb, var(--t-ink) 78%, var(--t-accent)); max-width: 62ch; }
.htm-quote blockquote strong { color: var(--t-ink); }
.htm-quote__mark {
  width: 52px; height: 52px; border-radius: 50%; background: var(--t-brand); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--t-font-display); font-size: 1.9rem; line-height: 1; font-weight: 800; margin-bottom: 18px;
}

.htm-cta { background: var(--t-ink); color: #fff; }
.htm-cta h2 { color: #fff; }
.htm-cta p { color: var(--c-on-dark); margin-bottom: 0; }
.htm-cta__actions { display: flex; flex-wrap: wrap; gap: 12px; }
@media (max-width: 767.98px) { .htm-cta__actions { margin-top: 22px; } }

/* 13 Page banner + breadcrumb ========================================== */
.htm-pagehead {
  position: relative; padding: 58px 0 52px; color: #fff; overflow: hidden;
  background:
    radial-gradient(110% 130% at 88% 0%, color-mix(in srgb, var(--t-brand) 72%, #fff) 0%, transparent 58%),
    linear-gradient(160deg, var(--t-brand-dark) 0%, var(--t-ink) 72%);
}
.htm-pagehead > .container { position: relative; z-index: 2; }
.htm-pagehead h1 { color: #fff; margin: 0 0 12px; font-size: clamp(1.7rem, 3.2vw, 2.5rem); }
.htm-pagehead ul { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; align-items: center; font-size: .9rem; }
.htm-pagehead ul li { color: var(--c-on-dark-dim); }
.htm-pagehead ul li + li::before { content: "/"; margin: 0 10px; color: color-mix(in srgb, #fff 40%, transparent); }
.htm-pagehead ul li a { color: var(--c-on-dark); }
.htm-pagehead ul li a:hover { color: var(--t-accent); text-decoration: none; }

/* 14 Sidebar rail ====================================================== */
.htm-rail { border: 1px solid var(--t-line); border-radius: var(--t-radius); overflow: hidden; background: var(--t-page); margin-bottom: 26px; }
.htm-rail__title { background: var(--t-ink); color: #fff; padding: 16px 20px; font-family: var(--t-font-display); font-weight: 700; font-size: 1.04rem; }
.htm-rail__list, .htm-rail__list ul { list-style: none; margin: 0; padding: 0; }
.htm-rail__list > li { border-bottom: 1px solid var(--t-line); }
.htm-rail__list > li:last-child { border-bottom: 0; }
.htm-rail__list > li > a { display: block; padding: 13px 20px; font-size: .95rem; font-weight: 500; color: var(--t-ink); }
.htm-rail__list > li > a:hover { background: var(--t-surface); color: var(--t-brand); text-decoration: none; }
.htm-rail__list > li.active > a { background: var(--t-surface); color: var(--t-brand); box-shadow: inset 4px 0 0 var(--t-accent); }
.htm-rail__list .submenu { background: var(--t-surface); padding: 4px 0 8px; border-top: 1px solid var(--t-line); }
.htm-rail__list .submenu li a { display: block; padding: 8px 20px 8px 32px; font-size: .89rem; color: var(--t-muted); position: relative; }
.htm-rail__list .submenu li a::before { content: ""; position: absolute; left: 20px; top: 17px; width: 6px; height: 1px; background: var(--t-muted); }
.htm-rail__list .submenu li a:hover { color: var(--t-brand); text-decoration: none; }

.htm-railcta { border: 1px solid var(--t-line); border-radius: var(--t-radius); padding: 24px 20px; background: var(--t-surface); }
.htm-railcta h3 { font-size: 1.04rem; margin: 0 0 8px; }
.htm-railcta p { font-size: .9rem; color: var(--t-muted); }

/* 15 Product detail ==================================================== */
.htm-gallery { border: 1px solid var(--t-line); border-radius: var(--t-radius); background: var(--t-page); padding: 18px; }
.htm-gallery img { width: 100%; aspect-ratio: 1/1; object-fit: contain; }
.htm-gallery .rslides { list-style: none; margin: 0; padding: 0; }

.htm-product h1 { font-size: clamp(1.5rem, 2.8vw, 2.1rem); margin-bottom: 16px; }
.htm-specs { list-style: none; margin: 0 0 24px; padding: 0; border-top: 1px solid var(--t-line); }
.htm-specs li { display: flex; flex-wrap: wrap; gap: 10px; padding: 12px 0; border-bottom: 1px solid var(--t-line); font-size: .95rem; }
.htm-specs li > span:first-child { flex: 0 0 150px; color: var(--t-muted); }
.htm-specs li > span:last-child { flex: 1 1 200px; color: var(--t-ink); font-weight: 500; }

.htm-product__actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; margin-bottom: 20px; }
.htm-product__actions form { margin: 0; }
.htm-assure { list-style: none; margin: 0; padding: 18px 20px; background: var(--t-surface); border-radius: var(--t-radius); font-size: .9rem; }
.htm-assure li { padding-left: 22px; position: relative; margin-bottom: 6px; color: var(--t-muted); }
.htm-assure li:last-child { margin-bottom: 0; }
.htm-assure li::before { content: ""; position: absolute; left: 0; top: 8px; width: 10px; height: 10px; border-radius: 2px; background: var(--t-accent); }

.htm-tabs { border-bottom: 2px solid var(--t-line); margin-bottom: 26px; padding: 0; list-style: none; display: flex; flex-wrap: wrap; gap: 4px; }
.htm-tabs li a {
  display: block; cursor: pointer; padding: 13px 24px; margin-bottom: -2px;
  font-family: var(--t-font-display); font-weight: 600; font-size: 1rem;
  color: var(--t-muted); border-bottom: 3px solid transparent;
}
.htm-tabs li a:hover { color: var(--t-brand); text-decoration: none; }
.htm-tabs li a.active { color: var(--t-ink); border-bottom-color: var(--t-brand); }

/* 16 Listing rows, alphabet, pagination ================================ */
.htm-row {
  display: flex; flex-wrap: wrap; gap: 24px; padding: 22px; margin-bottom: 18px;
  background: var(--t-page); border: 1px solid var(--t-line); border-radius: var(--t-radius);
}
.htm-row:hover { border-color: var(--t-brand); }
.htm-row__media { flex: 0 0 190px; max-width: 190px; }
.htm-row__media img { width: 100%; aspect-ratio: 1/1; object-fit: contain; background: var(--t-surface); border-radius: var(--t-radius-sm); padding: 10px; }
.htm-row__body { flex: 1 1 320px; }
.htm-row__body h2, .htm-row__body h3 { font-size: 1.14rem; margin: 0 0 8px; }
.htm-row__body p { font-size: .92rem; color: var(--t-muted); margin-bottom: 10px; }
@media (max-width: 575.98px) { .htm-row__media { flex: 0 0 100%; max-width: 100%; } }

.htm-alphabet { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 30px; }
.htm-alphabet a {
  width: 38px; height: 38px; border-radius: var(--t-radius-sm);
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--t-line); color: var(--t-ink); background: var(--t-page);
  font-family: var(--t-font-display); font-weight: 600; font-size: .92rem;
}
.htm-alphabet a:hover, .htm-alphabet a.is-active { background: var(--t-brand); border-color: var(--t-brand); color: #fff; text-decoration: none; }

.htm-pagination { display: flex; justify-content: center; gap: 6px; flex-wrap: wrap; margin-top: 34px; }
.htm-pagination a, .htm-pagination span {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 40px; height: 40px; padding: 0 12px;
  border: 1px solid var(--t-line); border-radius: var(--t-radius-sm); color: var(--t-ink); font-size: .92rem;
}
.htm-pagination a:hover { background: var(--t-brand); border-color: var(--t-brand); color: #fff; text-decoration: none; }

/* 17 Request bag ======================================================= */
.htm-bagtable { border: 1px solid var(--t-line); border-radius: var(--t-radius); overflow: hidden; }
.htm-bagtable table { margin: 0; }
.htm-bagtable thead th {
  background: var(--t-surface); color: var(--t-ink); padding: 15px 18px; white-space: nowrap;
  font-family: var(--t-font-display); font-weight: 600; font-size: .92rem; border-bottom: 1px solid var(--t-line);
}
.htm-bagtable td { padding: 16px 18px; vertical-align: middle; border-bottom: 1px solid var(--t-line); font-size: .95rem; }
.htm-bagtable tr:last-child td { border-bottom: 0; }
.htm-bagtable input[type="text"] { max-width: 90px; }
.htm-bagfoot { display: flex; flex-wrap: wrap; gap: 12px; justify-content: flex-end; align-items: center; padding: 18px; background: var(--t-surface); }
.htm-empty { text-align: center; padding: 70px 20px; border: 1px dashed var(--t-line); border-radius: var(--t-radius); }
.htm-empty h2 { font-size: 1.4rem; margin-bottom: 10px; }
.htm-empty p { color: var(--t-muted); margin: 0 auto 22px; max-width: 44ch; }

/* 18 Forms ============================================================= */
.htm-form { border: 1px solid var(--t-line); border-radius: var(--t-radius); padding: 30px; background: var(--t-page); }
.htm-form label { font-size: .89rem; font-weight: 500; color: var(--t-ink); margin-bottom: 6px; display: block; }
.htm-form .form-control {
  border: 1px solid var(--t-line); border-radius: var(--t-radius-sm);
  padding: 12px 14px; font-size: .95rem; color: var(--t-text); background: var(--t-page);
}
.htm-form .form-control:focus { border-color: var(--t-brand); box-shadow: 0 0 0 3px color-mix(in srgb, var(--t-brand) 15%, transparent); }
.htm-form textarea.form-control { min-height: 130px; }
.htm-captcha { display: flex; align-items: center; gap: 12px; }
.htm-captcha .ctext {
  font-family: var(--t-font-display); font-weight: 700; font-size: 1.1rem; white-space: nowrap;
  background: var(--t-surface); border: 1px solid var(--t-line); border-radius: var(--t-radius-sm);
  padding: 10px 16px; color: var(--t-ink);
}
.htm-alert { border-radius: var(--t-radius-sm); padding: 14px 18px; font-size: .95rem; margin-bottom: 22px; border: 1px solid; }
.htm-alert--ok { background: #eefaf2; border-color: #bfe6cd; color: #1d6b3c; }
.htm-alert--err { background: #fdf1f1; border-color: #f0c7c7; color: #9c2b2b; }

.htm-contactcard { border: 1px solid var(--t-line); border-radius: var(--t-radius); padding: 26px; height: 100%; background: var(--t-surface); }
.htm-contactcard ul { list-style: none; margin: 0; padding: 0; }
.htm-contactcard li { padding: 14px 0; border-bottom: 1px solid var(--t-line); font-size: .95rem; }
.htm-contactcard li:last-child { border-bottom: 0; }
.htm-contactcard li span { display: block; color: var(--t-muted); font-size: .85rem; margin-bottom: 3px; }

/* 19 CMS rich text ===================================================== */
.htm-rte { font-size: .97rem; color: var(--t-text); }
.htm-rte h1, .htm-rte h2 { font-size: 1.42rem; margin: 28px 0 12px; }
.htm-rte h3, .htm-rte h4 { font-size: 1.1rem; margin: 22px 0 10px; }
.htm-rte p { margin-bottom: 14px; max-width: 78ch; }
.htm-rte ul, .htm-rte ol { padding-left: 22px; margin-bottom: 16px; }
.htm-rte li { margin-bottom: 7px; }
.htm-rte img { height: auto; border-radius: var(--t-radius-sm); }
.htm-rte table {
  width: 100% !important; border-collapse: collapse; margin: 18px 0; font-size: .92rem;
  display: block; overflow-x: auto;
}
.htm-rte table td, .htm-rte table th { border: 1px solid var(--t-line); padding: 10px 14px; }
.htm-rte table tr:nth-child(odd) td { background: var(--t-surface); }
.htm-rte table th { background: var(--t-ink); color: #fff; font-weight: 600; text-align: left; }

/* 20 Footer ============================================================ */
.htm-footer { background: var(--t-ink); color: var(--c-on-dark-dim); font-size: .93rem; }
.htm-footer h2, .htm-footer h3, .htm-footer h4, .htm-footer h5 {
  color: #fff; font-size: .98rem; margin-bottom: 18px;
  display: flex; align-items: center; gap: 9px;
}
.htm-footer h3 > i, .htm-footer h4 > i { color: var(--t-accent); font-size: .95rem; }
.htm-footer a { color: var(--c-on-dark-dim); }
.htm-footer a:hover { color: var(--t-accent); text-decoration: none; }
.htm-footer ul { list-style: none; margin: 0; padding: 0; }
.htm-footer__main { padding: 58px 0 10px; }
.htm-footer__logo { height: 46px; width: auto; margin-bottom: 20px; }
.htm-footer__about { max-width: 42ch; margin-top: 16px; }
.htm-footer__mail { color: #fff; font-weight: 500; }

/* Trust badge strip across the top of the footer */
.htm-fbadges {
  background: color-mix(in srgb, #fff 4%, var(--t-ink));
  border-bottom: 1px solid var(--c-hairline-dk);
}
.htm-fbadge { display: flex; align-items: center; gap: 14px; padding: 24px 0; }
.htm-fbadge__icon {
  flex: 0 0 auto; width: 50px; height: 50px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.45rem; line-height: 1;
  background: color-mix(in srgb, #fff 8%, transparent);
  border: 1px solid color-mix(in srgb, var(--t-accent) 45%, transparent);
  color: var(--t-accent);
}
.htm-fbadge__text strong { display: block; color: #fff; font-family: var(--t-font-display); font-size: .97rem; font-weight: 600; margin-bottom: 2px; }
.htm-fbadge__text small { display: block; font-size: .85rem; color: var(--c-on-dark-dim); line-height: 1.4; }

/* Contact cards row */
.htm-fcards { padding: 30px 0 6px; }
.htm-fcard {
  display: flex; align-items: flex-start; gap: 14px; height: 100%;
  padding: 20px; border-radius: var(--t-radius);
  border: 1px solid var(--c-hairline-dk);
  background: color-mix(in srgb, #fff 4%, transparent);
  transition: border-color .18s ease, background-color .18s ease;
}
a.htm-fcard:hover { border-color: var(--t-accent); background: color-mix(in srgb, #fff 7%, transparent); text-decoration: none; }
.htm-fcard__icon {
  flex: 0 0 auto; width: 44px; height: 44px; border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; line-height: 1;
  background: color-mix(in srgb, var(--t-accent) 15%, transparent);
  color: var(--t-accent);
}
.htm-fcard__text { min-width: 0; }
.htm-fcard__text strong {
  display: block; color: #fff; font-weight: 600; font-size: .96rem;
  font-family: var(--t-font-display); margin-bottom: 3px;
  overflow-wrap: anywhere;
}
.htm-fcard__text small { display: block; font-size: .84rem; color: var(--c-on-dark-dim); line-height: 1.45; }
a.htm-fcard:hover .htm-fcard__text strong { color: var(--t-accent); }

/* Link lists with markers */
.htm-flinks li { margin-bottom: 10px; }
.htm-flinks a { display: inline-flex; align-items: baseline; gap: 9px; }
.htm-flinks i { color: var(--t-accent); font-size: .72rem; opacity: .85; }
.htm-flinks a:hover i { opacity: 1; }

/* Category list with a per-category icon */
.htm-fcats li { margin-bottom: 11px; }
.htm-fcats a { display: flex; align-items: center; gap: 11px; }
.htm-fcats .htm-fcats__icon {
  flex: 0 0 auto; width: 30px; height: 30px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center; font-size: .88rem;
  background: color-mix(in srgb, #fff 7%, transparent); color: var(--t-accent);
  transition: background-color .18s ease, color .18s ease;
}
.htm-fcats a:hover .htm-fcats__icon { background: var(--t-accent); color: var(--t-ink); }

/* Contact + supply-terms blocks */
.htm-fcontact li { display: flex; gap: 13px; margin-bottom: 16px; }
.htm-fcontact li > i { flex: 0 0 auto; color: var(--t-accent); font-size: 1.02rem; margin-top: 3px; }
.htm-fcontact strong { display: block; color: #fff; font-weight: 500; }
.htm-fcontact small { display: block; font-size: .83rem; color: var(--c-on-dark-dim); }

/* Social row */
.htm-social { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.htm-social a {
  width: 42px; height: 42px; border-radius: 11px; font-size: 1.08rem; color: #fff;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--c-hairline-dk);
  background: color-mix(in srgb, #fff 5%, transparent);
  transition: background-color .18s ease, border-color .18s ease, color .18s ease;
}
.htm-social a:hover { background: var(--t-accent); border-color: var(--t-accent); color: var(--t-ink); }

/* Bottom bar */
.htm-footer__bottom {
  border-top: 1px solid var(--c-hairline-dk); padding: 20px 0; font-size: .85rem;
}
.htm-footer__copy { display: flex; align-items: center; gap: 9px; color: var(--c-on-dark-dim); margin: 0; max-width: none; }
.htm-footer__copy i { color: var(--t-accent); }
.htm-footer__seo {
  font-size: .84rem; color: color-mix(in srgb, #fff 46%, var(--t-brand));
  line-height: 1.7; margin: 0 0 18px; max-width: none;
}
.htm-footer__legal { display: flex; flex-wrap: wrap; gap: 18px; justify-content: flex-end; margin: 0; }
@media (max-width: 767.98px) {
  .htm-footer__legal { justify-content: flex-start; }
  .htm-footer__main { padding-top: 44px; }
}

/* 21 Utilities, motion, print ========================================== */
/* Floating action stack (WhatsApp on top, back-to-top beneath) */
.htm-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 1040;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
}

.htm-wa {
  position: relative;
  width: 54px; height: 54px; border-radius: 50%;
  background: #25d366; color: #fff; border: 0;
  display: flex; align-items: center; justify-content: center; font-size: 1.65rem;
  box-shadow: 0 8px 24px rgba(37, 211, 102, .38);
  transition: background-color .18s ease, transform .18s ease;
}
.htm-wa:hover, .htm-wa:focus { background: #1ebe5a; color: #fff; transform: scale(1.06); text-decoration: none; }
.htm-wa::after {
  content: attr(data-label);
  position: absolute; right: calc(100% + 12px); top: 50%; transform: translateY(-50%);
  white-space: nowrap; font-family: var(--t-font-text); font-size: .84rem;
  background: var(--t-ink); color: #fff; padding: 7px 13px; border-radius: var(--t-radius-sm);
  opacity: 0; visibility: hidden; transition: opacity .18s ease, visibility .18s ease;
  pointer-events: none;
}
.htm-wa:hover::after, .htm-wa:focus-visible::after { opacity: 1; visibility: visible; }
@media (max-width: 575.98px) { .htm-wa::after { display: none; } }

.htm-top {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--t-brand); color: #fff; border: 0;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: opacity .25s ease, visibility .25s ease;
  box-shadow: var(--c-shadow-lift);
}
.htm-top.is-visible { opacity: 1; visibility: visible; }
.htm-top:hover { background: var(--t-brand-dark); color: #fff; }

/* Centre Bootstrap Icons inside round/square icon holders */
.htm-fbadge__icon > i,
.htm-fcard__icon > i,
.htm-fcats__icon > i,
.htm-social a > i,
.htm-wa > i,
.htm-top > i,
.htm-capability__mark > i {
  display: block; line-height: 1; color: inherit;
}
.htm-fbadge__icon > i::before,
.htm-fcard__icon > i::before,
.htm-fcats__icon > i::before,
.htm-social a > i::before,
.htm-wa > i::before,
.htm-top > i::before,
.htm-capability__mark > i::before {
  display: block; vertical-align: 0; line-height: 1;
}

/* reCAPTCHA v3 badge is hidden; the required attribution text is printed in
   the footer instead (Google allows this, the wording is mandatory). */
.grecaptcha-badge { visibility: hidden !important; }
.htm-recaptcha-note { font-size: .78rem; color: color-mix(in srgb, #fff 42%, var(--t-brand)); margin: 10px 0 0; max-width: none; }
.htm-recaptcha-note a { color: color-mix(in srgb, #fff 58%, var(--t-brand)); text-decoration: underline; }

.htm-divider { height: 1px; background: var(--t-line); border: 0; margin: 0; }
.text-violet { color: var(--t-brand) !important; }
.bg-mist { background: var(--t-surface) !important; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

@media print {
  .htm-topbar, .htm-header, .htm-footer, .htm-float, .htm-cta, .htm-rail, .htm-hero { display: none !important; }
  body { color: #000; }
  a[href]::after { content: " (" attr(href) ")"; font-size: .8em; }
}

/* 22 THEME PRESETS =====================================================
   Copy any block below over the :root THEME block in section 01.
   Only the nine colour values change; nothing else in the file needs
   touching, and the alternates were checked for text contrast.

   --- Graphite & safety orange (neutral industrial) ---
     --t-brand: #d2551d;  --t-brand-dark: #9c3b0f;  --t-ink: #1b1e24;
     --t-accent: #ffb703;  --t-text: #33383f;  --t-muted: #6a707a;
     --t-page: #ffffff;  --t-surface: #f4f5f7;  --t-line: #e2e4e8;

   --- Deep blue & steel (engineering supplier) ---
     --t-brand: #1c5fb8;  --t-brand-dark: #0f3c7a;  --t-ink: #0e1c30;
     --t-accent: #f2b705;  --t-text: #2f3946;  --t-muted: #62707f;
     --t-page: #ffffff;  --t-surface: #f2f5f9;  --t-line: #dde3ec;

   --- Forest & brass (agriculture / garden tools) ---
     --t-brand: #2b7a4b;  --t-brand-dark: #17512f;  --t-ink: #10241a;
     --t-accent: #e0a92a;  --t-text: #2f3a34;  --t-muted: #5f6d65;
     --t-page: #ffffff;  --t-surface: #f2f7f3;  --t-line: #dde7e0;

   --- Crimson & charcoal (automotive performance) ---
     --t-brand: #c0243c;  --t-brand-dark: #8a1128;  --t-ink: #1a1216;
     --t-accent: #f0c419;  --t-text: #353032;  --t-muted: #6e666a;
     --t-page: #ffffff;  --t-surface: #f7f4f5;  --t-line: #e8e1e3;

   To run a seasonal or campaign skin without editing this file, put the same
   nine variables in a <style> block after this stylesheet — later rules win.
   ====================================================================== */
