/* Lidocaine Patches — generated by run_web_builder */

:root {
  --color-primary: #1565c0;
  --color-secondary: #1976d2;
  --color-accent: #0288d1;
  --color-neutral-dark: #0c3156;
  --color-neutral-light: #f0f7ff;
  --color-bg: #ffffff;
  --color-text: #0a2540;
  --color-border: #d4e2f0;
  --color-accent-hover: #01579b;
  --color-accent-light: #e1f5fe;
  --color-muted: #5a6b7c;
  --color-button-bg: #1565c0;
  --color-button-text: #ffffff;
  --font-heading: 'Source Serif 4', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --font-mono: ui-monospace, 'SF Mono', Menlo, Monaco, Consolas, monospace;
  --font-size-base: 17px;
  --font-scale: 1.25;
  --font-size-h1: 41.5px;
  --font-size-h2: 33.2px;
  --font-size-h3: 26.56px;
  --font-size-h4: 21.25px;
  --font-size-h5: 17.0px;
  --font-size-small: 13.6px;
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 32px;
  --space-xl: 64px;
  --container-max-w: 1200px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.04), 0 1px 3px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 4px 6px rgba(15, 23, 42, 0.05), 0 10px 15px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 10px 15px rgba(15, 23, 42, 0.08), 0 20px 30px rgba(15, 23, 42, 0.12);
  --shadow-xl: 0 20px 40px rgba(15, 23, 42, 0.15), 0 30px 60px rgba(15, 23, 42, 0.18);
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --z-header: 9999;
  --color-warning: #d97706;
  --color-warning-bg: rgba(217, 119, 6, 0.06);
}

[data-theme="dark"] {
  --color-primary: #64b5f6;
  --color-secondary: #77bef7;
  --color-accent: #4fc3f7;
  --color-neutral-dark: #cddce8;
  --color-neutral-light: #1b2b3f;
  --color-bg: #0a1a2e;
  --color-text: #e3f2fd;
  --color-border: #243447;
  --color-accent-hover: #64caf8;
  --color-accent-light: #122e46;
  --color-muted: #9aafc4;
  --color-button-bg: #1976d2;
  --color-button-text: #ffffff;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.30), 0 1px 3px rgba(0, 0, 0, 0.35);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.35), 0 10px 20px rgba(0, 0, 0, 0.45);
  --shadow-lg: 0 10px 20px rgba(0, 0, 0, 0.45), 0 20px 40px rgba(0, 0, 0, 0.55);
  --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.55), 0 30px 60px rgba(0, 0, 0, 0.65);
  --color-warning: #fbbf24;
  --color-warning-bg: rgba(251, 191, 36, 0.10);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--font-size-base);
  line-height: 1.55;
  color: var(--color-text);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-primary);
  line-height: 1.2;
  margin: 0 0 var(--space-md, 16px);
}
h1 { font-size: var(--font-size-h1); }
h2 { font-size: var(--font-size-h2); }
h3 { font-size: var(--font-size-h3); }
h4 { font-size: var(--font-size-h4); }
h5 { font-size: var(--font-size-h5); }
p { margin: 0 0 var(--space-md, 16px); }
a {
  color: var(--color-accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}
a:hover { color: var(--color-accent-hover, var(--color-accent)); }
img, picture, svg { max-width: 100%; height: auto; }
code, pre, kbd { font-family: var(--font-mono); }

.container {
  width: 100%;
  max-width: var(--container-max-w);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--space-md, 16px);
  padding-right: var(--space-md, 16px);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--color-accent);
  color: var(--color-bg);
  padding: 8px 12px;
  z-index: 10000;
}
.skip-link:focus { left: 8px; top: 8px; }

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}


.site-header {
  position: sticky;
  top: 0;
  z-index: var(--z-header);
  background-color: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md, 16px);
  min-height: 64px;
}
.site-header__brand {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 700;
}
.site-header__logo-text { font-family: var(--font-heading); }
.site-header__nav { display: flex; align-items: center; }
.site-header__nav-list {
  display: flex;
  gap: var(--space-md, 16px);
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-header__nav-item { position: relative; }
.site-header__nav-link {
  color: var(--color-text);
  text-decoration: none;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
}
.site-header__nav-link:hover { color: var(--color-accent); }
.site-header__sub-nav {
  position: absolute;
  top: 100%;
  left: 0;
  display: none;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 8px;
  list-style: none;
  margin: 0;
  /* Bumped 200→220 so "Hand, Wrist & Elbow" (longest entry) fits on a
     single line without wrapping. */
  min-width: 220px;
  white-space: nowrap;
}
.site-header__nav-item:hover .site-header__sub-nav,
.site-header__nav-item:focus-within .site-header__sub-nav { display: block; }
.site-header__burger {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 8px 12px;
  user-select: none;
}
/* Backdrop default — hidden above the tablet breakpoint. Re-enabled and
   shown by the toggle inside _drawer_block. */
.site-header__nav-backdrop { display: none; }


.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  /* Button text uses the BODY family (Inter) instead of the heading
     family. Modern_design.md #1: serif headings + sans UI keeps buttons
     feeling like controls, not titles. */
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.2;
  padding: 12px 20px;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  /* Modern_design.md #12: add transform + box-shadow to the transition
     so the hover/press microinteraction is smooth. */
  transition:
    background-color var(--transition-fast),
    color var(--transition-fast),
    border-color var(--transition-fast),
    transform 100ms ease,
    box-shadow var(--transition-fast);
  min-height: 44px;
}
.btn:hover {
  /* Subtle lift on hover; cancelled under prefers-reduced-motion. */
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn:active {
  /* Press-down feedback. */
  transform: translateY(0);
  box-shadow: var(--shadow-sm);
}
/* Larger size for hero/marquee CTAs that need to read as the primary
   action on the page. Apply via class="btn btn--primary btn--lg". */
.btn--lg {
  font-size: 1.0625rem;
  padding: 14px 28px;
  min-height: 52px;
}
.btn--primary {
  background-color: var(--color-accent);
  color: var(--color-bg);
  border-color: var(--color-accent);
}
.btn--primary:hover {
  background-color: var(--color-accent-hover, var(--color-accent));
  border-color: var(--color-accent-hover, var(--color-accent));
  color: var(--color-bg);
}
.btn--secondary {
  background-color: var(--color-primary);
  color: var(--color-bg);
  border-color: var(--color-primary);
}
.btn--secondary:hover {
  background-color: var(--color-secondary);
  border-color: var(--color-secondary);
  color: var(--color-bg);
}
.btn--ghost {
  background-color: transparent;
  color: var(--color-primary);
  border-color: var(--color-border);
}
.btn--ghost:hover {
  color: var(--color-accent);
  border-color: var(--color-accent);
}


.section {
  padding-top: var(--space-xl, 64px);
  padding-bottom: var(--space-xl, 64px);
}
.section--hero { padding-top: var(--space-xl, 64px); padding-bottom: var(--space-xl, 64px); }
/* Pull the next section closer to the page-header / intro rich_text so
   the primary content (product grid, feature grid) appears higher in
   the viewport. Without these overrides, stacking two .section blocks
   leaves 128px of pure padding between content (64 bottom + 64 top). */
.page-header + .section,
.section--rich-text + .section {
  padding-top: var(--space-md, 16px);
}
/* When a rich_text "intro" section is the only thing between page-header
   and the next section, its own padding-bottom is just decorative — kill
   it so it doesn't double-stack with the next section's padding-top. */
.page-header + .section--rich-text {
  padding-top: var(--space-md, 16px);
  padding-bottom: var(--space-sm, 8px);
}

.page-header {
  padding-top: var(--space-lg, 32px);
  padding-bottom: var(--space-sm, 8px);
  border-bottom: 1px solid var(--color-border);
}
.page-header__title { margin-bottom: var(--space-sm, 8px); }
.page-header__lede { color: var(--color-muted, var(--color-text)); max-width: 720px; }

.hero__inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-md, 16px);
}
.hero__headline { margin: 0; font-size: var(--font-size-h1); }
.hero__subhead {
  font-size: var(--font-size-h4);
  color: var(--color-muted, var(--color-text));
  margin: 0;
  max-width: 720px;
}
.hero__ctas {
  display: flex;
  gap: var(--space-sm, 8px);
  flex-wrap: wrap;
  margin-top: var(--space-md, 16px);
}
.hero__bg { display: block; border-radius: var(--radius-md); margin-top: var(--space-md, 16px); }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-lg, 32px);
}
.feature-grid__heading { margin-bottom: var(--space-lg, 32px); }
.feature-card {
  background-color: var(--color-neutral-light);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-md, 16px);
  box-shadow: var(--shadow-sm);
  /* Hover lift (modern_design.md #2). Honored to no-op under
     prefers-reduced-motion (see _FOCUS_AND_MOTION block). */
  transition: transform var(--transition-base),
              box-shadow var(--transition-base),
              border-color var(--transition-base);
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-accent-light, var(--color-border));
}
.feature-card__icon {
  font-size: 1.5rem;
  margin-bottom: var(--space-md, 16px);
  /* SVG icons use this color via stroke="currentColor". Emoji ignore it. */
  color: var(--color-accent);
  line-height: 1;
}
.feature-card__icon svg {
  width: 32px;
  height: 32px;
  display: block;
}
/* PNG illustration variant — body-ache-icons pack at 512x512 native;
   serve at 56x56 for a heftier illustrative feel vs the line-art SVG. */
.feature-card__icon img {
  width: 56px;
  height: 56px;
  display: block;
  object-fit: contain;
}
/* Photo thumbnail variant for cards (used by the blog index). The image
   extends to the card edges via negative margins, then the card padding
   reasserts for the title/body block underneath. */
.feature-card--with-image {
  padding-top: 0;
  overflow: hidden;
}
.feature-card__image-link {
  display: block;
  text-decoration: none;
  color: inherit;
  margin: 0 calc(-1 * var(--space-md, 16px)) var(--space-md, 16px);
  margin-top: 0;
}
.feature-card__image-wrap {
  aspect-ratio: 16 / 9;
  background-color: var(--color-neutral-light);
  overflow: hidden;
}
.feature-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-base);
}
.feature-card__image-link:hover .feature-card__image,
.feature-card__image-link:focus-visible .feature-card__image {
  transform: scale(1.04);
}
.feature-card__title { margin: 0 0 var(--space-sm, 8px); }
/* Title becomes a link when card.link_to is set (interlinking.md #1).
   Inherits color so unlinked + linked titles look identical at rest;
   accent + underline on hover signal interactivity. */
.feature-card__title-link {
  color: inherit;
  text-decoration: none;
}
.feature-card__title-link:hover,
.feature-card__title-link:focus-visible {
  color: var(--color-accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.feature-card__body { margin: 0; color: var(--color-muted, var(--color-text)); }

.testimonial {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.testimonial__quote {
  font-size: var(--font-size-h3);
  font-style: italic;
  margin: 0 0 var(--space-md, 16px);
}
.testimonial__attr { color: var(--color-muted, var(--color-text)); }
.testimonial__author { font-weight: 700; }
.testimonial__role { margin-left: var(--space-sm, 8px); }

.cta-block {
  text-align: center;
  padding: var(--space-lg, 32px);
  background-color: var(--color-neutral-light);
  border-radius: var(--radius-lg);
}
.cta-block__heading { margin-bottom: var(--space-sm, 8px); }
.cta-block__subhead {
  color: var(--color-muted, var(--color-text));
  margin-bottom: var(--space-md, 16px);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-md, 16px);
}
.gallery__item { margin: 0; }
.gallery__image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-md);
}
.gallery__caption {
  color: var(--color-muted, var(--color-text));
  margin-top: var(--space-sm, 8px);
}

.faq__item { padding: var(--space-md, 16px) 0; border-bottom: 1px solid var(--color-border); }
.faq__question { font-weight: 700; margin-bottom: var(--space-sm, 8px); }
.faq__answer { margin: 0; color: var(--color-muted, var(--color-text)); }

.rich-text { max-width: 720px; }
.rich-text h2, .rich-text h3 { margin-top: var(--space-xl, 64px); }
.rich-text p { margin: 0 0 var(--space-md, 16px); }

/* Guide 2-col layout (modern_design.md #9). When a rich_text section
   wraps its body in .guide-layout, the rich-text max-width cap is
   removed and the layout takes over with a sticky ToC sidebar. Mobile
   collapses to a single column with the ToC collapsed into <details>. */
.rich-text:has(.guide-layout) { max-width: none; }
.guide-layout {
  display: grid;
  /* Prose column caps at 720px (reading-comfort width) + 220px ToC +
     64px gap = ~1004px max layout width, centered in the viewport.
     On narrow desktop viewports the prose column shrinks to fit. */
  grid-template-columns: minmax(0, 720px) 220px;
  gap: var(--space-xl, 64px);
  justify-content: center;
  align-items: start;
}
.guide-prose { min-width: 0; }
.guide-prose h2,
.guide-prose h3 { margin-top: var(--space-xl, 64px); }
.guide-prose h2 { scroll-margin-top: 88px; }
.guide-prose p { margin: 0 0 var(--space-md, 16px); }
.guide-toc {
  position: sticky;
  top: 88px;
  font-size: var(--font-size-small);
}
.guide-toc__details {
  /* Disclosure widget — on desktop we use it as a static container with
     `open` always; on mobile users can collapse it. */
}
.guide-toc__title {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--color-muted, var(--color-text));
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.75rem;
  list-style: none;
  cursor: default;
  margin-bottom: var(--space-sm, 8px);
}
.guide-toc__title::-webkit-details-marker { display: none; }
.guide-toc__list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-left: 2px solid var(--color-border);
}
.guide-toc__item { margin: 0; }
.guide-toc__link {
  display: block;
  color: var(--color-muted, var(--color-text));
  text-decoration: none;
  padding: 6px var(--space-md, 16px);
  border-left: 2px solid transparent;
  margin-left: -2px;
  line-height: 1.35;
  transition: color var(--transition-fast), border-color var(--transition-fast);
}
.guide-toc__link:hover { color: var(--color-accent); }
.guide-toc__link[aria-current="true"],
.guide-toc__link--active {
  color: var(--color-primary);
  border-left-color: var(--color-accent);
  font-weight: 500;
}

/* Callout boxes (modern_design.md #7). Three flavors driven by class
   modifiers added by the Markdown shim when it sees [!INFO] /
   [!WARNING] / [!CLINICIAN] / [!SOURCE] markers in a blockquote.
   Plain blockquotes default to the info style. */
.callout, .rich-text blockquote {
  background-color: var(--color-neutral-light);
  border-left: 4px solid var(--color-accent);
  border-radius: var(--radius-md);
  padding: var(--space-md, 16px) var(--space-lg, 32px);
  margin: var(--space-lg, 32px) 0;
  color: var(--color-text);
}
.callout--info { border-left-color: var(--color-accent); }
.callout--warning, .callout--clinician {
  /* Amber accent (token: --color-warning) for medical red-flag content.
     Brand palette is all blues; warnings need amber to read distinctly. */
  border-left-color: var(--color-warning);
  background-color: var(--color-warning-bg);
}
.callout--source {
  border-left-color: var(--color-muted, var(--color-border));
  background-color: var(--color-neutral-light);
  font-size: var(--font-size-small);
  color: var(--color-muted, var(--color-text));
}

.form {
  display: flex;
  flex-direction: column;
  gap: var(--space-md, 16px);
  max-width: 640px;
}
.form__honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form__field { display: flex; flex-direction: column; gap: 4px; }
.form__label { font-weight: 600; }
.form__required { color: var(--color-accent); }
.form__control {
  font-family: inherit;
  font-size: 16px;
  padding: 10px 12px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background-color: var(--color-bg);
  color: var(--color-text);
}
.form__control:focus {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}
.form__success { color: var(--color-primary); }
.form__error { color: var(--color-accent); }
.form__recaptcha-notice {
  font-size: var(--font-size-small);
  color: var(--color-muted, var(--color-text));
}


.section--hero-slider { padding: 0; }
.hero-slider {
  position: relative;
  overflow: hidden;
  background-color: var(--color-neutral-light);
}
.hero-slider__track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.hero-slider__track::-webkit-scrollbar { display: none; }
.hero-slider__slide {
  position: relative;
  flex: 0 0 100%;
  scroll-snap-align: start;
  min-height: 420px;
  display: flex;
  align-items: stretch;
}
.hero-slider__picture {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slider__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-slider__panel {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  width: 100%;
  /* Light mode: almost no overlay — photos show through. Just a faint
     bottom-edge vignette to anchor the white headline. The text-shadow
     stack on the headline/subhead/eyebrow handles legibility on any
     photo region. */
  background: linear-gradient(180deg,
    rgba(0,0,0,0) 0%,
    rgba(0,0,0,0.03) 65%,
    rgba(0,0,0,0.15) 100%);
  padding: var(--space-xl, 64px) 0;
}
[data-theme="dark"] .hero-slider__panel {
  /* Dark mode keeps a heavier vignette so white text reads cleanly on
     bright photos against the otherwise-dark page chrome. */
  background: linear-gradient(180deg,
    rgba(0,0,0,0.10) 0%,
    rgba(0,0,0,0.55) 65%,
    rgba(0,0,0,0.78) 100%);
}
.hero-slider__panel-inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-md, 16px);
  max-width: 640px;
}
.hero-slider__eyebrow {
  font-size: var(--font-size-base);
  font-weight: 700;
  color: #fff;
  margin: 0;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-shadow: 0 1px 4px rgba(0,0,0,0.85), 0 0 14px rgba(0,0,0,0.55);
}
.hero-slider__headline {
  margin: 0;
  font-size: var(--font-size-h1);
  color: #fff;
  /* Heavy two-layer shadow: tight near-black for crisp edges, wider soft
     halo for contrast against any photo region. Same approach as
     .photo-hero__headline now that the slider overlay is also nearly gone. */
  text-shadow: 0 2px 6px rgba(0,0,0,0.85), 0 0 24px rgba(0,0,0,0.65);
  line-height: 1.15;
}
.hero-slider__subhead {
  margin: 0;
  font-size: var(--font-size-h4);
  color: #fff;
  max-width: 600px;
  text-shadow: 0 1px 6px rgba(0,0,0,0.85), 0 0 18px rgba(0,0,0,0.55);
}
.hero-slider__ctas {
  display: flex;
  gap: var(--space-sm, 8px);
  flex-wrap: wrap;
  margin-top: var(--space-md, 16px);
}
.hero-slider__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  background: var(--color-bg);
  color: var(--color-text);
  font-size: var(--font-size-h4);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.hero-slider__arrow:hover { background: var(--color-neutral-light); }
.hero-slider__arrow--prev { left: var(--space-md, 16px); }
.hero-slider__arrow--next { right: var(--space-md, 16px); }
.hero-slider__dots {
  position: absolute;
  bottom: var(--space-md, 16px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  gap: var(--space-xs, 4px);
  margin: 0;
  padding: 0;
  list-style: none;
}
.hero-slider__dot-item { display: inline-flex; }
.hero-slider__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  background: var(--color-bg);
  cursor: pointer;
  padding: 0;
}
.hero-slider__dot[aria-selected="true"] {
  background: var(--color-accent);
  border-color: var(--color-accent);
}


.section--photo-hero { padding: 0; }
.photo-hero {
  position: relative;
  min-height: 480px;
  overflow: hidden;
  display: flex;
}
.photo-hero__picture {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.photo-hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.photo-hero__panel {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  width: 100%;
  min-height: 480px;
  /* Light mode: almost no overlay — let the photo show through. Just a
     faint kiss of darkness at the very bottom to keep white headline
     text readable. Heavy text-shadow on the headline does the rest. */
  background: linear-gradient(180deg,
    rgba(0,0,0,0) 0%,
    rgba(0,0,0,0.03) 65%,
    rgba(0,0,0,0.15) 100%);
  padding-bottom: var(--space-xl, 64px);
  color: #fff;
}
[data-theme="dark"] .photo-hero__panel {
  /* Dark mode keeps the heavier gradient — surrounding page chrome is
     already dark, so the overlay blends in and protects white text on
     bright photos. */
  background: linear-gradient(180deg,
    rgba(0,0,0,0.10) 0%,
    rgba(0,0,0,0.55) 65%,
    rgba(0,0,0,0.78) 100%);
}
.photo-hero__panel-inner {
  max-width: 720px;
  color: #fff;
}
.photo-hero__eyebrow {
  font-size: var(--font-size-small);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 0 var(--space-sm, 8px);
  opacity: 0.95;
  color: #fff;
  /* Doubled-up shadow protects the small eyebrow text on bright photos. */
  text-shadow: 0 1px 4px rgba(0,0,0,0.85), 0 0 14px rgba(0,0,0,0.55);
}
.photo-hero__headline {
  color: #fff;
  font-size: var(--font-size-h1);
  margin: 0 0 var(--space-sm, 8px);
  /* Heavy two-layer shadow: a tight near-black shadow for crisp edges,
     plus a wider soft halo that creates contrast against any photo
     region. Required now that the overlay gradient is almost gone. */
  text-shadow: 0 2px 6px rgba(0,0,0,0.85), 0 0 24px rgba(0,0,0,0.65);
  line-height: 1.15;
}
.photo-hero__subhead {
  color: #fff;
  font-size: var(--font-size-h4);
  margin: 0 0 var(--space-md, 16px);
  max-width: 600px;
  text-shadow: 0 1px 6px rgba(0,0,0,0.85), 0 0 18px rgba(0,0,0,0.55);
}
.photo-hero__cta {
  margin-top: var(--space-sm, 8px);
}


.section--stats-band {
  padding-top: var(--space-lg, 32px);
  padding-bottom: var(--space-lg, 32px);
  background-color: var(--color-neutral-light);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}
.stats-band {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: var(--space-lg, 32px);
  list-style: none;
  margin: 0;
  padding: 0;
}
.stats-band__heading {
  text-align: center;
  margin-bottom: var(--space-lg, 32px);
}
.stats-band__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-xs, 4px);
}
.stats-band__value {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 3rem;
  line-height: 1;
  color: var(--color-primary);
}
.stats-band__value-link {
  text-decoration: none;
  color: inherit;
}
.stats-band__value-link:hover .stats-band__value,
.stats-band__value-link:focus-visible .stats-band__value {
  color: var(--color-accent);
  text-decoration: underline;
  text-underline-offset: 4px;
}
.stats-band__label {
  font-size: var(--font-size-base);
  font-weight: 600;
  color: var(--color-text);
}
.stats-band__sublabel {
  font-size: var(--font-size-small);
  color: var(--color-muted, var(--color-text));
}


.section--product-filter {
  padding-top: var(--space-md, 16px);
  padding-bottom: var(--space-md, 16px);
}
.product-filter {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-sm, 8px);
  padding: var(--space-md, 16px);
  background-color: var(--color-neutral-light);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
}
.product-filter__search { flex: 1 1 240px; }
.product-filter__input {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-bg);
  color: var(--color-text);
  font: inherit;
}
.product-filter__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}
.product-filter__chip {
  font: inherit;
  font-size: var(--font-size-small);
  padding: 6px 12px;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  background: var(--color-bg);
  color: var(--color-text);
  cursor: pointer;
  transition: background var(--transition-fast),
              color var(--transition-fast),
              border-color var(--transition-fast);
}
.product-filter__chip:hover {
  color: var(--color-accent);
  border-color: var(--color-accent);
}
.product-filter__chip--active {
  background: var(--color-accent);
  color: var(--color-bg);
  border-color: var(--color-accent);
}
.product-filter__select {
  padding: 8px 12px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-bg);
  color: var(--color-text);
  font: inherit;
}
.product-filter__count {
  width: 100%;
  margin: 0;
  font-size: var(--font-size-small);
  color: var(--color-muted, var(--color-text));
}
.product-card--hidden { display: none !important; }


.section--product-callout { padding: var(--space-md, 16px) 0; }
.product-callout {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: var(--space-md, 16px);
  align-items: center;
  max-width: 680px;
  margin: 0 auto;
  padding: var(--space-md, 16px);
  background-color: var(--color-bg);
  border: 1px solid var(--color-border);
  border-left: 4px solid var(--color-accent);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}
.product-callout__image-wrap {
  aspect-ratio: 1 / 1;
  background-color: var(--color-neutral-light);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.product-callout__image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.product-callout__eyebrow {
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0;
}
.product-callout__brand {
  font-size: var(--font-size-small);
  color: var(--color-muted, var(--color-text));
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0;
}
.product-callout__name {
  margin: var(--space-xs, 4px) 0;
  font-size: var(--font-size-h4);
  line-height: 1.25;
}
.product-callout__tagline {
  margin: 0 0 var(--space-sm, 8px);
  font-size: var(--font-size-small);
  color: var(--color-muted, var(--color-text));
  font-style: italic;
}
.product-callout__cta {
  margin-top: var(--space-xs, 4px);
}


.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-lg, 32px);
}
/* Bento variant (modern_design.md #9 — revised 2026-05-19):
   2 featured cards stacked in the left 2 cols + 4 small in the right
   col + bottom row. Explicit grid-template-areas keeps the placement
   stable as cards are added/reordered. Used on home + /products/.
   Falls back to a 1-column stack on mobile (overridden in _mobile_block). */
.product-grid--bento {
  grid-template-columns: repeat(3, 1fr);
  grid-template-areas:
    "f1 f1 s1"
    "f2 f2 s2"
    "s3 s4 s4";
  grid-auto-rows: minmax(220px, auto);
}
.product-grid--bento .product-card:nth-child(1) { grid-area: f1; }
.product-grid--bento .product-card:nth-child(2) { grid-area: f2; }
.product-grid--bento .product-card:nth-child(3) { grid-area: s1; }
.product-grid--bento .product-card:nth-child(4) { grid-area: s2; }
.product-grid--bento .product-card:nth-child(5) { grid-area: s3; }
.product-grid--bento .product-card:nth-child(6) { grid-area: s4; }
.product-grid__heading { margin-bottom: var(--space-xs, 4px); }
/* Halved from --space-lg → --space-md so the product cards lift up
   inside the product-grid section (~32px reclaimed per intro line). */
.product-grid__intro {
  margin-bottom: var(--space-md, 16px);
  color: var(--color-muted, var(--color-text));
  max-width: 720px;
}
.product-grid__disclosure {
  margin-bottom: var(--space-md, 16px);
  padding: var(--space-sm, 8px) var(--space-md, 16px);
  background-color: var(--color-neutral-light);
  border-left: 3px solid var(--color-accent);
  border-radius: var(--radius-sm);
  font-size: var(--font-size-small);
  color: var(--color-muted, var(--color-text));
}
.product-card {
  position: relative;
  background-color: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-md, 16px);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm, 8px);
  box-shadow: var(--shadow-sm);
  /* Hover lift (modern_design.md #2). Reduced-motion users get no
     transform via the global @media block in _FOCUS_AND_MOTION. */
  transition: transform var(--transition-base),
              box-shadow var(--transition-base),
              border-color var(--transition-base);
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-accent-light, var(--color-border));
}
.product-card__badge {
  position: absolute;
  top: -10px;
  right: var(--space-md, 16px);
  background: var(--color-accent);
  color: var(--color-button-text, #fff);
  font-size: var(--font-size-small);
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  letter-spacing: 0.02em;
}
.product-card__image-link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.product-card__image-wrap {
  aspect-ratio: 4 / 3;
  background: var(--color-neutral-light);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.product-card__image-link:hover .product-card__image,
.product-card__image-link:focus-visible .product-card__image {
  transform: scale(1.03);
}
.product-card__image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform var(--transition-base);
}
.product-card__credit {
  margin: 0;
  text-align: center;
  font-size: var(--font-size-small);
  color: var(--color-muted, var(--color-text));
  line-height: 1.2;
}
.product-card__tagline {
  margin: 0;
  font-size: var(--font-size-small);
  color: var(--color-muted, var(--color-text));
  font-style: italic;
}
.product-card__label-quote {
  margin: 0;
  font-size: var(--font-size-small);
  color: var(--color-muted, var(--color-text));
  border-left: 2px solid var(--color-border);
  padding-left: var(--space-sm, 8px);
}
.product-card__brand {
  font-size: var(--font-size-small);
  color: var(--color-muted, var(--color-text));
  margin: 0;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.product-card__name {
  margin: 0;
  font-size: var(--font-size-h4);
  line-height: 1.3;
}
/* Title becomes a third Amazon click surface (interlinking.md #2);
   inherit color, accent on hover so it doesn't look "extra" unless
   the user is interacting with it. */
.product-card__name-link {
  color: inherit;
  text-decoration: none;
}
.product-card__name-link:hover,
.product-card__name-link:focus-visible {
  color: var(--color-accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.product-card__rating {
  font-size: var(--font-size-small);
  color: var(--color-muted, var(--color-text));
  margin: 0;
}
.product-card__facts {
  margin: 0;
  padding-left: var(--space-md, 16px);
  font-size: var(--font-size-small);
}
.product-card__facts li { margin-bottom: 2px; }
.product-card__summary {
  font-size: var(--font-size-base);
  margin: 0;
}
.product-card__cta {
  margin-top: auto;
  text-align: center;
}


.site-footer {
  background-color: var(--color-neutral-dark);
  color: var(--color-neutral-light);
  padding-top: var(--space-xl, 64px);
  padding-bottom: var(--space-lg, 32px);
  margin-top: var(--space-xl, 64px);
}
.site-footer__inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: var(--space-lg, 32px);
}
.site-footer__col-heading {
  color: var(--color-neutral-light);
  font-size: var(--font-size-h5);
  margin-bottom: var(--space-sm, 8px);
}
.site-footer__col-list { list-style: none; padding: 0; margin: 0; }
.site-footer__col-item { padding: 4px 0; }
.site-footer__link {
  color: var(--color-neutral-light);
  text-decoration: none;
}
.site-footer__link:hover { color: var(--color-accent); }
.site-footer__copy {
  grid-column: 1 / -1;
  border-top: 1px solid var(--color-border);
  padding-top: var(--space-md, 16px);
  font-size: var(--font-size-small);
  color: var(--color-neutral-light);
}

.theme-toggle {
  background: transparent;
  border: 1px solid var(--color-border);
  color: var(--color-text);
  padding: 6px 12px;
  border-radius: var(--radius-md);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--font-size-small);
  line-height: 1;
}
.theme-toggle:hover { border-color: var(--color-accent); color: var(--color-accent); }
.theme-toggle__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
  line-height: 1;
}
.theme-toggle__icon svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.theme-toggle__label { line-height: 1; }


@media (max-width: 1023px) {
  /* Reserve fixed right-padding so the absolutely-positioned burger
     sits in its own slot — the theme-toggle flows naturally beside it. */
  .site-header__inner {
    position: relative;
    padding-right: 56px;
  }
  /* Pin the burger to the top-right. 44x44 minimum tap target per Apple HIG.
     Float above the backdrop so it stays tappable to close the drawer. */
  .site-header__burger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    right: var(--space-sm, 8px);
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    padding: 0;
    font-size: 1.5rem;
    line-height: 1;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    background: var(--color-bg);
    color: var(--color-text);
    z-index: calc(var(--z-header) + 3);
  }
  /* Off-canvas drawer panel: fixed to viewport, slides in from the
     right when the toggle is checked. min(320px, 90vw) keeps it usable
     on a 320px iPhone SE without overlapping the burger edge. */
  .site-header__nav-list {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(320px, 90vw);
    max-width: 100vw;
    margin: 0;
    padding: calc(var(--space-xl, 64px) + var(--space-sm, 8px))
             var(--space-md, 16px) var(--space-lg, 32px);
    gap: var(--space-xs, 4px);
    background-color: var(--color-bg);
    border-left: 1px solid var(--color-border);
    box-shadow: var(--shadow-lg);
    transform: translateX(100%);
    transition: transform 250ms ease;
    overflow-y: auto;
    z-index: calc(var(--z-header) + 2);
  }
  .site-header__nav-toggle:checked ~ .site-header__nav-list {
    transform: translateX(0);
  }
  /* Backdrop overlay: covers the page beneath the drawer; tap to close
     via the shared toggle (it's a <label for="site-nav-toggle">). */
  .site-header__nav-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    background-color: rgba(15, 23, 42, 0.5);
    opacity: 0;
    pointer-events: none;
    transition: opacity 250ms ease;
    cursor: pointer;
    z-index: calc(var(--z-header) + 1);
  }
  .site-header__nav-toggle:checked ~ .site-header__nav-backdrop {
    opacity: 1;
    pointer-events: auto;
  }
  /* Drawer nav items: full-width rows with 44px min tap height. */
  .site-header__nav-item {
    width: 100%;
  }
  .site-header__nav-link {
    display: block;
    padding: var(--space-sm, 8px) var(--space-md, 16px);
    min-height: 44px;
    line-height: 1.5;
  }
  /* Sub-nav (Products children) is always expanded inside the drawer —
     no hover trigger on touch devices. Indented to show hierarchy. */
  .site-header__sub-nav {
    position: static;
    display: flex;
    flex-direction: column;
    width: 100%;
    min-width: 0;
    margin: 0;
    padding: 0 0 0 var(--space-md, 16px);
    border: none;
    box-shadow: none;
    background: transparent;
    white-space: normal;
  }
  /* Theme toggle on touch devices: bump to a 44x44 minimum tap target
     (Apple HIG / Google Material both require ≥44pt). */
  .theme-toggle {
    min-height: 44px;
    padding: 8px 12px;
  }
}


@media (max-width: 1023px) and (min-width: 761px) {
  /* Bento: 2 wide featured stacked over 2 small-pair rows (3 rows × 2 cols). */
  .product-grid--bento {
    grid-template-columns: repeat(2, 1fr);
    grid-template-areas:
      "f1 s1"
      "f2 s2"
      "s3 s4";
    grid-auto-rows: minmax(200px, auto);
  }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  /* Hide the sticky ToC sidebar at this width — prose would be squeezed
     into a ~500px column. Show it as a collapsible <details> at the top
     of the article instead (same treatment as mobile). */
  .guide-layout { grid-template-columns: 1fr; gap: var(--space-md, 16px); }
  .guide-toc { position: static; order: -1; }
  .guide-toc__details {
    background-color: var(--color-neutral-light);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: var(--space-sm, 8px) var(--space-md, 16px);
  }
  .guide-toc__title { cursor: pointer; margin-bottom: 0; }
  /* Stats band locks to 2x2 to avoid the 3-col jitter at ~540px. */
  .stats-band { grid-template-columns: repeat(2, 1fr); }
}


@media (max-width: 760px) {
  /* Header wraps so brand can occupy its own line if the burger slot
     forces the issue (kept narrow — the off-canvas drawer means the
     nav itself never participates in inline layout). */
  .site-header__inner { flex-wrap: wrap; }
  .hero__headline { font-size: var(--font-size-h2); }
  .section { padding-top: var(--space-lg, 32px); padding-bottom: var(--space-lg, 32px); }
  .feature-grid { grid-template-columns: 1fr; }
  .hero-slider__slide { min-height: 320px; }
  .hero-slider__headline { font-size: var(--font-size-h2); }
  /* Arrows hidden at phone widths — dots + native swipe carry the load
     (screen_optimize.md HE3). Re-emerge at tablet+ via cascade. */
  .hero-slider__arrow { display: none; }
  .product-grid { grid-template-columns: 1fr; }
  /* Bento collapses to a normal stack on narrow viewports — cancel
     grid-template-areas + per-child grid-area assignments. */
  .product-grid--bento {
    grid-template-columns: 1fr;
    grid-template-areas: none;
    grid-auto-rows: auto;
  }
  .product-grid--bento .product-card { grid-area: auto; }
  /* Sticky ToC collapses to a stack on mobile; <details> is closed by
     default so the prose isn't pushed below the fold. */
  .guide-layout { grid-template-columns: 1fr; gap: var(--space-md, 16px); }
  .guide-toc { position: static; order: -1; }
  .guide-toc__details {
    background-color: var(--color-neutral-light);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: var(--space-sm, 8px) var(--space-md, 16px);
  }
  .guide-toc__title {
    cursor: pointer;
    margin-bottom: 0;
  }
  .photo-hero { min-height: 360px; }
  .photo-hero__panel { min-height: 360px; padding-bottom: var(--space-lg, 32px); }
  .photo-hero__headline { font-size: var(--font-size-h2); }
  .photo-hero__subhead { font-size: var(--font-size-base); }
  /* Footer link tap targets: enlarge so fingers don't miss between rows.
     Tablet keeps the desktop spacing — only phone needs the bump. */
  .site-footer__col-item { padding: 6px 0; }
  .site-footer__link {
    display: inline-block;
    padding: 8px 0;
    min-height: 32px;
    line-height: 1.5;
  }
}


@media (max-width: 480px) {
  /* Brand wordmark shrinks so it doesn't compete with the burger + toggle
     on a 320px-wide header. */
  .site-header__brand,
  .site-header__logo-text { font-size: 1rem; }
  /* Theme toggle becomes icon-only — the "Light"/"Dark" label is decorative. */
  .theme-toggle__label { display: none; }
  /* Section + container padding scale down so the page edges aren't wasted. */
  .section {
    padding-top: var(--space-md, 16px);
    padding-bottom: var(--space-md, 16px);
  }
  .container {
    padding-left: var(--space-sm, 8px);
    padding-right: var(--space-sm, 8px);
  }
  /* Photo + hero-slider heights drop so they don't dominate landscape phones. */
  .photo-hero,
  .photo-hero__panel { min-height: 320px; }
  .photo-hero__panel { padding-bottom: var(--space-md, 16px); }
  .photo-hero__headline,
  .hero-slider__headline { font-size: var(--font-size-h3); }
  .hero-slider__slide { min-height: 280px; }
  .stats-band { grid-template-columns: 1fr; gap: var(--space-md, 16px); }
  .stats-band__value { font-size: 2.5rem; }
  /* Long guide titles in the breadcrumb tail truncate with an ellipsis so
     the trail stays on one row even at 320px wide. */
  .breadcrumbs__current {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 60vw;
    display: inline-block;
    vertical-align: bottom;
  }
  /* Product filter chips: scroll horizontally instead of wrapping into a
     ragged 3-row stack on a 320px screen. */
  .product-filter__chips {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .product-filter__chip { flex: 0 0 auto; }
}


:focus-visible {
  /* Modern_design.md #12: soft 5px halo instead of hard outline.
     The inner ring matches the page background so the halo looks
     detached from the focused element rather than smashed against it. */
  outline: none;
  box-shadow:
    0 0 0 3px var(--color-bg),
    0 0 0 5px var(--color-accent);
  border-radius: var(--radius-sm);
}

/* Scroll-triggered reveals (modern_design.md #3). The .reveal class is
   applied by base.html.j2 to every non-leading section; the JS layer
   adds .is-revealed when the element scrolls into view. */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 500ms ease, transform 500ms ease;
  will-change: opacity, transform;
}
.reveal.is-revealed {
  opacity: 1;
  transform: none;
}

/* Reading progress bar (modern_design.md #6). Pinned to the top of the
   viewport on blog_post pages only; JS updates the inner bar's width as
   the reader scrolls. Sits ABOVE the sticky site header (z-index). */
.reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background-color: transparent;
  z-index: calc(var(--z-header) + 1);
  pointer-events: none;
}
.reading-progress__bar {
  height: 100%;
  width: 0;
  background-color: var(--color-accent);
  transition: width 80ms linear;
  box-shadow: 0 0 8px var(--color-accent);
}

/* Breadcrumbs (modern_design.md #4). Hidden on the home page via empty
   trail; render below the header on all other pages. The aria-current
   item is unlinked but visually weighted slightly heavier. */
.breadcrumbs {
  background-color: var(--color-neutral-light);
  border-bottom: 1px solid var(--color-border);
  font-size: var(--font-size-small);
  padding: var(--space-sm, 8px) 0;
}
.breadcrumbs__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0;
}
.breadcrumbs__item {
  display: inline-flex;
  align-items: center;
  color: var(--color-muted, var(--color-text));
}
.breadcrumbs__link {
  color: var(--color-muted, var(--color-text));
  text-decoration: none;
}
.breadcrumbs__link:hover { color: var(--color-accent); }
.breadcrumbs__separator {
  margin: 0 var(--space-xs, 4px);
  color: var(--color-border);
}
.breadcrumbs__current {
  color: var(--color-text);
  font-weight: 500;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  /* Explicitly cancel the hover-lift transforms (modern_design.md #2)
     and button press microinteractions (modern_design.md #12) and the
     image zoom on clickable product images. The universal transition
     kill above stops the animation; these stop the stateful end-position
     from showing. */
  .feature-card:hover,
  .product-card:hover,
  .btn:hover,
  .btn:active { transform: none !important; }
  .product-card__image-link:hover .product-card__image,
  .product-card__image-link:focus-visible .product-card__image,
  .feature-card__image-link:hover .feature-card__image,
  .feature-card__image-link:focus-visible .feature-card__image {
    transform: none !important;
  }
}


@media print {
  .site-header, .site-footer, .theme-toggle, .skip-link { display: none; }
  body { background: #fff; color: #000; }
  a { color: #000; text-decoration: underline; }
  .section { padding-top: 12px; padding-bottom: 12px; }
}


altcha-widget {
  --altcha-color-base: var(--color-bg);
  --altcha-color-border: var(--color-primary);
  --altcha-color-text: var(--color-text);
  --altcha-color-accent: var(--color-accent);
  --altcha-border-radius: 8px;
  display: block;
  margin: 1rem 0;
}
