/* =============================================================================
   Aurora Pharmaceutical — site styles
   Flat HTML/CSS/JS site, no framework, no build step.
   =============================================================================
   ORGANIZATION
     1. Design tokens (CSS custom properties)
     2. Reset & base
     3. Layout primitives    .container, .section, .grid-*
     4. Type & headings      .h1, .h2, .h3, .eyebrow, .lede, .display, em styles
     5. Buttons              .btn variants
     6. Cards & surfaces     .card, .panel, .pill-tag, .badge
     7. Header & nav         (multi-level dropdown, sticky)
     8. Footer
     9. Hero (home, about)   .hero, .hero-slide, .hero-dots
    10. Home page sections   .product-spotlight, .species-grid, .intro-block
    11. Products listing     .product-row, .breadcrumbs, .stats-row
    12. Product detail       .product-detail, .product-visual, .sizes-grid
    13. About sections       .stats-row, .values-grid, .cares-grid, .environmental
    14. Sales team           .rep-finder, .director-card, .member-card
    15. Utilities & helpers
   ============================================================================= */

/* ----- 1. Design tokens ---------------------------------------------------- */
:root {
  /* Brand palette (from the original inline CSS in the React shell) */
  --aurora-paper-50:      #FBF7FA;
  --aurora-paper-100:     #F4EEF8;
  --aurora-paper-200:     #E8DFEF;
  --aurora-mute-300:      #C8BFCC;
  --aurora-violet-300:    #B99CD6;
  --aurora-violet-400:    #9370C2;
  --aurora-violet-500:    #440099;
  --aurora-violet-600:    #36007A;
  --aurora-violet-700:    #2A005E;
  --aurora-aubergine-700: #440060;
  --aurora-aubergine-800: #300048;
  --aurora-rhodamine-100: #FFE5F5;
  --aurora-rhodamine-300: #F06BBB;
  --aurora-rhodamine-400: #E10098;
  --aurora-rhodamine-500: #C4007A;
  --aurora-purple-500:    #7B3FA8;
  --aurora-purple-700:    #5A1F7E;

  /* Semantic tokens */
  --bg:           var(--aurora-paper-50);
  --bg-section:   var(--aurora-paper-100);
  --fg:           #440099;
  --fg-1:         #440099;
  --fg-2:         #4F4A40;
  --fg-3:         #8A8278;
  --accent:       #E10098;
  --accent-hover: #C40083;
  --accent-soft:  rgba(225, 0, 152, 0.08);
  --border:       #E8DFCB;
  --border-strong: #C8BFB5;

  /* Type */
  --font-display:  'Lora', Georgia, 'Times New Roman', serif;
  --font-sans:     'DM Sans', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --font-mono:     'JetBrains Mono', 'Fira Code', ui-monospace, monospace;
  --font-product:  'Century Gothic', 'Futura', 'AppleGothic', Tahoma, sans-serif;

  /* Shadows */
  --shadow-sm:    0 1px 3px rgba(20, 30, 50, .06), 0 1px 2px rgba(20, 30, 50, .04);
  --shadow-md:    0 4px 16px rgba(20, 30, 50, .08), 0 2px 4px rgba(20, 30, 50, .04);
  --shadow-lg:    0 12px 40px rgba(20, 30, 50, .12), 0 4px 12px rgba(20, 30, 50, .06);
  --shadow-image: 0 24px 64px rgba(20, 30, 50, .18), 0 8px 24px rgba(20, 30, 50, .10);

  /* Layout */
  --container-max: 1240px;
  --container-narrow: 880px;
  --container-pad: clamp(20px, 4vw, 48px);
  --header-height: 108px;
}

/* ----- 2. Reset & base ----------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
button { font-family: inherit; }
main { min-height: 100vh; }
a { color: inherit; }

/* Trademark / superscript symbols (™, ®). Default browser styling makes
   them too big — the React reference shrank them to ~0.5em. Specific
   contexts (spotlight title, product-info h1) override this further. */
sup {
  font-size: 0.55em;
  vertical-align: super;
  line-height: 0;
  font-weight: 500;
  margin-left: 1px;
}

/* ----- 3. Layout primitives ----------------------------------------------- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}
.container.narrow { max-width: var(--container-narrow); }

.section { padding: 64px 0; background: var(--bg); }
.section.lg { padding: 120px 0; }
.section.alt { background: var(--bg-section); }

.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: 1fr 1fr; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-5 { grid-template-columns: repeat(5, 1fr); }

/* ----- 4. Type & headings -------------------------------------------------- */
.eyebrow {
  display: block;       /* React's Eyebrow was a <div>; treat as block here too */
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}
.eyebrow.rhodamine { color: var(--accent); }
.eyebrow.purple    { color: var(--aurora-purple-700); }
/* Override inside the hero's pill-shaped frame: the eyebrow should sit
   inline with the pill border, not on its own line. */
.hero-eyebrow-frame .eyebrow { display: inline-block; }

.h1, .h-display {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--fg-1);
  margin: 16px 0 0;
}
.h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
.h2 {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 3.5vw, 3.25rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--fg-1);
  margin: 16px 0 14px;
}
/* .h2.sm — used for product-detail page titles. Smaller display size
   so "Revolt® (for Dogs ...)" / "Barrier® (for Cats ...)" fit comfortably.
   Matches the React CompanionProductDetail spec. */
.h2.sm {
  font-family: var(--font-product);
  font-size: clamp(1.6rem, 2.6vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.01em;
}
/* The KLENTZ detail title is even tighter — the full name plus the
   chemical-list parenthetical needs to fit on a single line. */
.h2.sm.title-tight {
  font-size: clamp(1.15rem, 2.5vw, 1.95rem);
}
/* In product-detail h2s, the parenthetical <em> uses the heading's
   bold weight, not the lighter em.accent default. */
.h2.sm em.accent { font-weight: 700; font-style: normal; color: inherit; }
.h3 {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 600;
  color: var(--fg-1);
  margin: 0 0 10px;
  line-height: 1.2;
}
.h-section {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-1);
  margin: 0 0 14px;
}
.h-section.muted { color: var(--fg-3); font-size: 12px; }

/* <em> defaults to italic in browsers — these utility classes just add color
   and weight on top. The original React design relied on the default italic
   for emphasized phrases in display headings ("for veterinarians.",
   "Care.", "excellence", etc.). Don't override font-style here. */
em.accent { color: var(--accent); font-weight: 500; }
em.italic { font-weight: 500; }
em.purple { color: var(--aurora-purple-700); font-weight: 500; }
em.rhodamine { color: var(--aurora-rhodamine-300); font-weight: 500; }

.lede {
  font-size: 18px;
  line-height: 1.7;
  color: var(--fg-2);
  margin: 0 0 16px;
}
p.body { font-size: 17px; line-height: 1.7; color: var(--fg-2); margin: 0 0 16px; }
p.body.sm { font-size: 15px; line-height: 1.6; color: var(--fg-2); }

/* ----- 5. Buttons ---------------------------------------------------------- */
.btn {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.04em;
  padding: 13px 22px;
  border-radius: 4px;
  border: 1px solid transparent;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 160ms cubic-bezier(.22, .61, .36, 1);
  text-decoration: none;
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-hover); }
.btn-dark { background: var(--aurora-aubergine-800); color: #fff; }
.btn-dark:hover { background: var(--aurora-violet-500); }
.btn-secondary {
  background: transparent;
  color: var(--fg-1);
  border-color: var(--border-strong);
}
.btn-secondary:hover {
  background: var(--accent-soft);
  border-color: var(--accent);
  color: var(--accent-hover);
}
.btn-ghost { background: transparent; color: var(--fg-1); padding: 10px 0; }
.btn-ghost:hover { color: var(--accent); }
.btn-inverse { background: #fff; color: var(--aurora-violet-500); border: 0; }
.btn-inverse:hover { background: var(--aurora-paper-100); }

.btn .arrow { transition: transform 160ms; flex-shrink: 0; }
.btn:hover .arrow { transform: translateX(3px); }

/* Pill-shaped buttons used on the hero banner */
.btn-pill {
  background: #fff;
  color: var(--aurora-violet-500);
  border: 0;
  padding: 12px 24px;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.02em;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: all 160ms cubic-bezier(.22, .61, .36, 1);
}
.btn-pill:hover { background: var(--aurora-paper-100); }
.btn-pill.outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.55);
}
.btn-pill.outline:hover {
  background: rgba(255, 255, 255, 0.10);
  border-color: #fff;
}

/* ----- 6. Cards & surfaces ------------------------------------------------- */
.card {
  background: var(--bg-section);
  border-radius: 16px;
  padding: 26px 24px;
  border: 1px solid var(--border);
}
.card-white {
  background: #fff;
  border-radius: 14px;
  border: 1px solid var(--border);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
}
.card-panel {
  padding: 24px;
  background: var(--bg-section);
  border-radius: 14px;
  border: 1px solid var(--border);
}

.pill-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: var(--aurora-rhodamine-100);
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 12px;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 24px;
}

.badge-new {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--aurora-violet-500);
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
}

/* ----- 7. Header & nav ----------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 248, 242, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.site-header .container {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 20px var(--container-pad);
}
.site-header .logo img { height: 68px; width: auto; display: block; }
.site-header .logo { display: inline-flex; align-items: center; text-decoration: none; }

.site-nav { display: flex; gap: 26px; align-items: center; }
.nav-item { position: relative; }
.nav-link {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 500;
  color: var(--fg-1);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  background: none;
  border: 0;
  padding: 0;
}
/* Every inline chevron SVG: default to a small icon size + don't shrink.
   Specific selectors below override for rotation/styling. */
.chevron { width: 12px; height: 12px; flex-shrink: 0; }
.nav-link .chevron { width: 12px; height: 12px; }

.dropdown {
  position: absolute;
  top: 100%;
  left: -16px;
  padding-top: 18px;
  display: none;
  z-index: 200;
}
.nav-item:hover > .dropdown,
.nav-item:focus-within > .dropdown {
  display: block;
}
.dropdown-panel {
  min-width: 260px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: var(--shadow-md);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.dropdown-panel .eyebrow { color: var(--accent); }
.dropdown-panel .dropdown-items {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 8px;
}
.dropdown-panel .dropdown-items a {
  font-family: var(--font-sans);
  font-size: 16px;
  color: var(--fg-1);
  text-decoration: none;
  padding: 2px 0;
}
.dropdown-panel .dropdown-items a:hover { color: var(--accent); }

/* Products mega-dropdown with nested flyout */
.products-dropdown .dropdown-panel {
  min-width: 230px;
  padding: 10px;
  gap: 0;                /* override the global .dropdown-panel gap: 14px so cat-items stack tightly */
}
.cat-row {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 9px 12px;
  border-radius: 8px;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  color: var(--fg-1);
  text-decoration: none;
  white-space: nowrap;
  transition: all 140ms;
  cursor: pointer;
}
.cat-row:hover {
  color: var(--accent);
  background: var(--bg-section);
}
.cat-row .chevron { transform: rotate(-90deg); opacity: 0.6; }
/* Each cat-row + cat-flyout pair is wrapped in a .cat-item div with
   position: relative. This makes the cat-flyout anchor to the specific
   cat-row that's being hovered (not to the top of the whole dropdown). */
.cat-item { position: relative; }
/* Cat-flyout overlaps the right edge of the main Products dropdown by
   ~12px. Eliminates the hover-gap entirely: there is no air between the
   main panel and the flyout panel, so the mouse can't fall into a "no
   element" zone and trigger display:none mid-traverse. */
.cat-flyout {
  position: absolute;
  top: -10px;
  left: calc(100% - 4px);
  padding-left: 4px;
  display: none;
  z-index: 220;
}
.cat-item:hover > .cat-flyout,
.cat-flyout:hover,
.cat-item.open > .cat-flyout { display: block; }
.cat-flyout-panel {
  min-width: 240px;
  width: max-content;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: var(--shadow-md);
  padding: 16px;
}
.cat-flyout-panel .product-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 10px;
}
.cat-flyout-panel .product-list a {
  font-family: var(--font-sans);
  font-size: 16px;
  color: var(--fg-1);
  text-decoration: none;
  padding: 5px 8px;
  border-radius: 6px;
  white-space: nowrap;
}
.cat-flyout-panel .product-list a:hover {
  background: var(--bg-section);
  color: var(--accent);
}
/* Active ingredient note in parentheses next to product name in nav flyout */
.cat-flyout-panel .product-list .product-active {
  font-size: 13px;
  font-weight: 400;
  color: var(--fg-3);
  white-space: normal;
}

.header-actions {
  margin-left: auto;
  display: flex;
  gap: 10px;
  align-items: center;
}
.icon-btn {
  background: none;
  border: 0;
  padding: 8px;
  cursor: pointer;
  color: var(--fg-1);
}

/* ----- 8. Footer ----------------------------------------------------------- */
.site-footer {
  background: var(--aurora-violet-600);
  color: var(--aurora-paper-50);
  padding: 40px 0 20px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 40px;
}
.footer-logo-box {
  display: inline-flex;
  background: #fff;
  padding: 12px 16px;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
}
.footer-logo-box img { height: 52px; width: auto; display: block; }
.footer-address {
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 1.7;
  color: rgba(251, 247, 250, 0.82);
  margin-top: 18px;
}
.footer-address a { color: inherit; text-decoration: none; }
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}
.footer-social a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(251, 247, 250, 0.18);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--aurora-paper-50);
}
.footer-col-title {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(251, 247, 250, 0.5);
  margin-bottom: 14px;
}
.footer-col-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col-list a, .footer-col-list span {
  font-family: var(--font-sans);
  font-size: 13px;
  color: rgba(251, 247, 250, 0.85);
  text-decoration: none;
}
.footer-bottom {
  margin-top: 32px;
  padding-top: 18px;
  border-top: 1px solid rgba(251, 247, 250, 0.14);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-sans);
  font-size: 12px;
  color: rgba(251, 247, 250, 0.6);
}
.footer-bottom .legal { display: flex; gap: 20px; }
.footer-bottom a { color: inherit; }
.footer-disclaimer {
  margin-top: 16px;
  margin-bottom: 0;
  font-family: var(--font-sans);
  font-size: 11px;
  line-height: 1.6;
  color: rgba(251, 247, 250, 0.55);
}

/* ----- 9. Hero ------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 460px;
  height: min(65vh, 680px);
  overflow: hidden;
  background: #160A2B;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 1100ms ease-in-out;
}
.hero-slide.active { opacity: 1; pointer-events: auto; }
.hero-slide .photo-fill { position: absolute; inset: 0; background: #160A2B; }
.hero-slide .photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-slide-layout {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: var(--container-max);
  padding: 0 var(--container-pad);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg,
    rgba(20, 8, 30, 0.86) 0%,
    rgba(20, 8, 30, 0.50) 45%,
    rgba(20, 8, 30, 0.06) 100%);
}
.hero-scrim--right {
  background: linear-gradient(280deg,
    rgba(20, 8, 30, 0.88) 0%,
    rgba(20, 8, 30, 0.52) 45%,
    rgba(20, 8, 30, 0.08) 100%);
}
.hero-scrim--center {
  background: radial-gradient(ellipse 80% 130% at 50% 50%,
    rgba(20, 8, 30, 0.88) 0%,
    rgba(20, 8, 30, 0.55) 45%,
    rgba(20, 8, 30, 0.08) 100%);
}
.hero .container {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  pointer-events: none;
}
.hero .container * { pointer-events: auto; }
.hero-copy { max-width: 760px; }
.hero-copy--right { margin-left: auto; text-align: right; }
.hero-copy--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-eyebrow-frame {
  display: inline-flex;
  background: rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(4px);
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
}
.hero h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 16px 0 18px;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.88), 0 1px 5px rgba(0, 0, 0, 0.65);
}
.hero h1 em { color: #fff; font-weight: 500; font-style: italic; }
.hero p {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: rgba(245, 238, 252, 0.94);
  max-width: 720px;
  margin: 0 0 24px;
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.82);
}
.hero-cta {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.04em;
  padding: 13px 22px;
  border-radius: 4px;
  border: 1px solid transparent;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--aurora-violet-500);
  text-decoration: none;
  transition: all 160ms cubic-bezier(.22, .61, .36, 1);
}
.hero-cta:hover { background: var(--aurora-paper-100); }
.hero-dots {
  position: absolute;
  bottom: 22px;
  right: 0;
  display: flex;
  gap: 8px;
  padding-right: var(--container-pad);
}
.hero-dots button {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
  border: 0;
  cursor: pointer;
  padding: 0;
  transition: all 300ms;
}
.hero-dots button.active { width: 28px; background: #fff; }

/* About hero — taller, full-bleed image with bottom-anchored title */
/* ----- Contact page --------------------------------------------- */
.contact-hero {
  position: relative;
  height: min(45vh, 340px);
  min-height: 260px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  padding-bottom: 48px;
}
.contact-hero .scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(68, 0, 153, 0.82) 0%, rgba(40, 0, 100, 0.60) 50%, rgba(20, 0, 50, 0.38) 100%);
}
.contact-hero .container { position: relative; z-index: 1; }
.contact-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 600;
  color: #fff;
  margin: 10px 0 0;
  line-height: 1.1;
}

/* Contact split: form + building photo */
.contact-split { background: var(--bg); padding-top: 0; }
.contact-split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 580px;
}
.contact-form-panel {
  padding: 56px 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--bg);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.form-group label {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  color: var(--fg-2);
  letter-spacing: 0.01em;
}
.form-group .req { color: var(--accent); margin-left: 1px; }
.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--fg-1);
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 10px 14px;
  outline: none;
  transition: border-color 200ms;
  width: 100%;
  box-sizing: border-box;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--fg-1); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%238A8278' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
  cursor: pointer;
}
.form-privacy-note {
  font-family: var(--font-sans);
  font-size: 12px;
  color: var(--fg-3);
  line-height: 1.55;
  margin: 0 0 10px;
}
.form-privacy-note a { color: var(--accent); text-decoration: none; }
.form-privacy-note a:hover { text-decoration: underline; }
.form-check {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--fg-2);
}
.form-check input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--accent);
  flex-shrink: 0;
  cursor: pointer;
}
.btn-form-submit {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  background: var(--accent);
  border: none;
  border-radius: 10px;
  padding: 13px 36px;
  cursor: pointer;
  transition: background 200ms;
  align-self: flex-start;
}
.btn-form-submit:hover { background: var(--accent-hover); }

/* Info panel — building photo with overlay */
.contact-info-panel {
  position: relative;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  min-height: 440px;
}
.contact-info-panel .scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(5,0,30,0.88) 0%, rgba(10,0,50,0.60) 55%, rgba(0,0,0,0.08) 100%);
}
.contact-info-content {
  position: absolute;
  top: 0;
  right: 0;
  padding: 44px 48px;
  text-align: right;
  color: #fff;
  max-width: 460px;
}
.contact-info-content .company-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 22px;
  text-shadow: 0 1px 6px rgba(0,0,0,0.5);
}
.contact-info-content .info-section { margin-bottom: 22px; }
.contact-info-content .info-label {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.70);
  margin-bottom: 6px;
}
.contact-info-content .info-line {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  line-height: 1.7;
  display: block;
  text-decoration: none;
  text-shadow: 0 1px 4px rgba(0,0,0,0.45);
}
.contact-info-content a.info-line:hover { color: rgba(255,255,255,0.80); text-decoration: underline; }
.contact-social-row { display: flex; gap: 10px; justify-content: flex-end; margin-top: 4px; }
.contact-social-row a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.28);
  color: #fff;
  text-decoration: none;
  transition: background 200ms;
}
.contact-social-row a:hover { background: rgba(255,255,255,0.28); }

/* Technical Services Vets */
.tech-vets-section { background: var(--bg); padding: 0 0 64px; }
.tech-vets-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.tech-vet-card {
  padding: 32px 24px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: #fff;
  box-shadow: var(--shadow-sm);
  text-align: center;
}
.tech-vet-card .vet-category {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}
.tech-vet-card .vet-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--fg-1);
  margin-bottom: 16px;
}
.tech-vet-card .vet-contact a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--fg-2);
  text-decoration: none;
  margin-bottom: 8px;
  transition: color 200ms;
}
.tech-vet-card .vet-contact a:hover { color: var(--accent); }
.tech-vet-card .vet-contact svg { color: var(--accent); flex-shrink: 0; }

/* Adverse Event section */
.adverse-event-section {
  padding: 52px 0 64px;
  background: var(--bg-section);
  text-align: center;
}
.adverse-event-section h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--fg-1);
  margin: 0 0 14px;
}
.adverse-event-section p {
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--fg-2);
  line-height: 1.75;
  max-width: 600px;
  margin: 0 auto;
}

/* Contact responsive */
@media (max-width: 900px) {
  .contact-split-grid { grid-template-columns: 1fr; }
  .contact-info-panel { min-height: 360px; }
  .contact-form-panel { padding: 40px 28px; }
  .contact-info-content { padding: 28px 28px; max-width: 100%; }
  .tech-vets-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
}

.about-hero {
  position: relative;
  min-height: 420px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.about-hero .scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(40, 22, 40, 0.4) 0%,
    rgba(40, 22, 40, 0) 30%,
    rgba(40, 22, 40, 0.7) 100%);
}
.about-hero .container {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 64px;
}
.about-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 16px 0 0;
  max-width: 980px;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.35);
}
.about-hero h1 em { color: var(--aurora-rhodamine-300); font-weight: 500; font-style: italic; }

/* ----- 10. Home page sections --------------------------------------------- */
/* KLENTZ Product Spotlight banner */
.product-spotlight {
  padding: 32px 0 64px;
  background: var(--bg);
}
.spotlight-card {
  position: relative;
  border-radius: 16px;
  padding: 36px;
  min-height: 320px;
  overflow: hidden;
  background: linear-gradient(105deg, #1F0457 0%, #3D008B 38%, #6A1A93 68%, #9C3FAA 100%);
  box-shadow: 0 18px 45px rgba(40, 22, 40, 0.22);
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  align-items: center;
  gap: 8px;
}
.spotlight-card::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(800px 500px at 80% 30%,
    rgba(157, 122, 208, 0.20), transparent 60%);
}
.spotlight-copy { position: relative; padding-left: clamp(0px, 4vw, 56px); }
.spotlight-copy h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.5rem, 4.6vw, 3.9rem);
  line-height: 1;
  letter-spacing: 0.005em;
  color: #fff;
  margin: 0 0 13px;
  text-transform: uppercase;
}
.spotlight-copy h2 sup {
  font-size: 0.42em;
  margin-left: 4px;
}
.spotlight-sub {
  font-family: var(--font-sans);
  font-size: clamp(1.25rem, 2.3vw, 1.95rem);
  font-weight: 400;
  color: rgba(220, 197, 240, 0.92);
  margin-bottom: 18px;
  letter-spacing: 0.01em;
}
.spotlight-copy p {
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.6;
  color: rgba(232, 220, 245, 0.92);
  max-width: 400px;
  margin: 0 0 26px;
}
.spotlight-copy em { font-style: italic; }
.spotlight-buttons { display: flex; gap: 11px; align-items: center; flex-wrap: wrap; }

/* Stacked spotlight variant (React design: badge+CTAs row, then name, then images) */
.spotlight-card-stacked {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas: "topbar" "name" "media";
  row-gap: 18px;
  padding: 32px 36px;
  min-height: 0;
}
/* Override the two-column default for the stacked variant */
.spotlight-card-stacked.spotlight-card { grid-template-columns: 1fr; }
.spotlight-topbar {
  grid-area: topbar;
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
  overflow: visible;
}
.spotlight-topbar .spotlight-buttons {
  margin-left: auto;
  flex: 0 0 auto;
}
.spotlight-topbar-imgs {
  flex: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 16px;
  padding: 0 12px;
  overflow: visible;
}
.spotlight-topbar-imgs img {
  height: 115px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 18px 32px rgba(0, 0, 0, 0.55));
  transform: translateY(-18px);
  transition: transform 0.25s ease, filter 0.25s ease;
  cursor: zoom-in;
}
.spotlight-topbar-imgs img:hover {
  transform: translateY(-30px) scale(1.12);
  filter: drop-shadow(0 28px 44px rgba(0, 0, 0, 0.70));
}
.spotlight-name {
  grid-area: name;
  font-family: var(--font-product);
  font-weight: 700;
  font-size: clamp(1.3rem, 2.6vw, 2.05rem);
  line-height: 1;
  letter-spacing: 0.005em;
  color: #fff;
  margin: 0;
  text-transform: uppercase;
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  column-gap: 14px;
}
.spotlight-name sup { font-size: 0.42em; margin-left: 4px; font-weight: 500; }
.spotlight-actives {
  font-family: var(--font-product);
  font-size: 1em;
  font-weight: 600;
  text-transform: none;
  color: rgba(220, 197, 240, 0.92);
  letter-spacing: 0.01em;
}
.spotlight-species {
  font-family: var(--font-product);
  font-size: 0.9em;
  font-weight: 600;
  text-transform: none;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.01em;
}

/* Carousel within the spotlight banner */
.spotlight-carousel {
  grid-area: media;
  position: relative;
  height: 200px;
}
.spotlight-carousel .stage {
  position: relative;
  width: 100%;
  height: 200px;
}
.spotlight-carousel .stage img {
  position: absolute;
  left: 50%;
  top: 50%;
  height: auto;
  max-height: 175px;
  width: auto;
  filter: drop-shadow(0 16px 32px rgba(0, 0, 0, 0.5));
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.96);
  transition: opacity 900ms ease-in-out, transform 900ms ease-in-out;
  pointer-events: none;
}
.spotlight-carousel .stage img.active {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.spotlight-carousel .dots {
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 7px;
}
.spotlight-carousel .dots button {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
  border: 0;
  cursor: pointer;
  padding: 0;
  transition: all 300ms;
}
.spotlight-carousel .dots button.active {
  width: 22px;
  background: #fff;
}
.spotlight-image-row {
  grid-area: media;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  padding: 6px 0 2px;
}
.spotlight-img-tile {
  flex: 1 1 0;
  min-width: 110px;
  max-width: 190px;
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  padding: 12px;
}
.spotlight-img-tile img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 14px 24px rgba(0, 0, 0, 0.4));
}

/* KLENTZ carousel inside spotlight */
.klentz-carousel {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  min-height: 300px;
}
.klentz-carousel .stage {
  position: relative;
  width: 100%;
  max-width: 420px;
  height: 300px;
}
.klentz-carousel img {
  position: absolute;
  left: 50%;
  top: 50%;
  height: auto;
  filter: drop-shadow(0 24px 40px rgba(0, 0, 0, 0.4));
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.96);
  transition: opacity 900ms ease-in-out, transform 900ms ease-in-out;
  pointer-events: none;
}
.klentz-carousel img.active {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.klentz-carousel .dots {
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 7px;
}
.klentz-carousel .dots button {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
  border: 0;
  cursor: pointer;
  padding: 0;
  transition: all 300ms;
}
.klentz-carousel .dots button.active {
  width: 22px;
  background: #fff;
}

/* SpeciesGrid (Innovation. Expertise. Care.) */
.species-grid-section {
  padding: 48px 0 0;
  background: var(--bg);
}
.species-grid-section .intro {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 36px;
}
/* Section-intro h2 styling — also applied to .values-grid-section and
   .cares-grid-section below, all use the same display treatment as the
   original React design's clamp(2.25rem, 3.5vw, 3.25rem). */
.species-grid-section .intro h2,
.values-grid-section .intro h2,
.cares-grid-section .intro h2 {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 3.5vw, 3.25rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--fg-1);
  margin: 16px 0 14px;
}
.species-grid-section .intro p {
  font-size: 17px;
  line-height: 1.6;
  color: var(--fg-2);
  max-width: 580px;
  margin: 0 auto;
}
.species-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}
/* Stacked pair in the third column of row 2 */
.species-card-stack {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
/* Compact OTC card — just name + badge, no product list */
.species-card-otc {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}
.species-featured-row {
  margin-top: 28px;
}
.species-card-wide {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 32px;
}
.species-card-wide .product-list {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 24px;
}
.card-section-divider {
  margin: 14px 0;
  border-top: 1px solid var(--border);
}
.card-title-sub {
  font-size: 13px;
  margin-bottom: 8px;
}
.species-card {
  min-width: 0;
}
.species-card .card-title {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg);
  padding-bottom: 14px;
  margin-bottom: 14px;
  border-bottom: 1px solid var(--border);
}
.species-card .product-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.species-card .product-list.cols-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 24px;
  row-gap: 12px;
}
.species-card .product-list li {
  display: flex;
  gap: 9px;
  align-items: baseline;
}
.species-card .product-list .dot {
  color: var(--accent);
  font-size: 13px;
  line-height: 1;
}
.species-card .product-list a {
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.35;
  color: var(--fg-1);
  text-decoration: none;
  transition: color 140ms;
}
.species-card .product-list a:hover {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}
/* Active ingredients note in species grid product lists */
.species-card .product-list .product-active {
  font-size: 12px;
  font-weight: 400;
  color: var(--fg-3);
  font-style: italic;
}

/* More to Consider accordion inside species cards */
.mtc-accordion {
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid var(--border);
}
.mtc-accordion summary {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fg-3);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 6px;
  user-select: none;
  padding: 2px 0;
}
.mtc-accordion summary::-webkit-details-marker { display: none; }
.mtc-accordion summary::after {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.2s ease;
  flex-shrink: 0;
  margin-top: -2px;
}
.mtc-accordion[open] summary::after {
  transform: rotate(-135deg);
  margin-top: 2px;
}
.mtc-accordion .product-list { margin-top: 8px; }

/* IntroBlock — two-column with photo */
.intro-block { padding: 64px 0 120px; background: var(--bg); }
.intro-block-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.intro-block h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--fg-1);
  margin: 16px 0 24px;
  text-wrap: balance;
}
.intro-block .photo {
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
  border-radius: 24px;
  box-shadow: var(--shadow-image);
}

/* ----- Distributor callout (home page) ------------------------------------- */
.distributor-callout {
  background: var(--aurora-paper-200);
  padding: 28px 0;
  border-top: 1px solid var(--border);
}
.distributor-callout-inner {
  display: flex;
  align-items: center;
  gap: 48px;
}
.distributor-callout-text { flex: 1; }
.distributor-callout-cta { flex-shrink: 0; }
.distributor-callout .eyebrow { color: var(--accent); margin-bottom: 6px; }
.distributor-callout h2 {
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 600;
  color: var(--fg-1);
  margin: 0 0 8px;
  line-height: 1.3;
}
.distributor-callout p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--fg-2);
  margin: 0;
}

@media (max-width: 720px) {
  .distributor-callout-inner { flex-direction: column; align-items: flex-start; gap: 20px; }
}

/* ----- 11. Products listing (species page) -------------------------------- */
.breadcrumbs {
  display: flex;
  gap: 6px;
  align-items: center;
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--fg-3);
  margin-bottom: 24px;
}
.breadcrumbs a { color: inherit; text-decoration: none; }
.breadcrumbs a:hover { color: var(--accent); }
.breadcrumbs .current { color: var(--fg-1); }

.species-hero {
  padding: 60px 0 32px;
  background: var(--bg);
}
.species-hero-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: center;
}
.species-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4.5vw, 4rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--fg-1);
  margin: 16px 0 18px;
}
.species-hero p {
  font-size: 18px;
  line-height: 1.7;
  color: var(--fg-2);
  max-width: 580px;
}
.species-hero-orb {
  aspect-ratio: 1;
  border-radius: 999px;
  background-size: cover;
  background-position: center;
  background-color: var(--aurora-paper-200);
  box-shadow: var(--shadow-image);
  max-width: 420px;
  justify-self: end;
}

.product-categories { padding: 32px 0 120px; background: var(--bg); }
.product-categories-list {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.cat-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}
.cat-header h2 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  color: var(--fg-1);
  margin: 0;
}
.cat-count {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--fg-3);
  background: var(--bg-section);
  padding: 3px 10px;
  border-radius: 999px;
}
.product-rows {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.product-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: transparent;
  text-decoration: none;
  color: inherit;
  transition: all 160ms;
}
.product-row:hover {
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.product-row .name {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 700;
  color: var(--fg-1);
  letter-spacing: 0.02em;
}
.product-row sup { font-size: 9px; margin-left: 1px; }
.product-row .sub {
  font-family: var(--font-sans);
  font-size: 12px;
  color: var(--fg-3);
  margin-top: 2px;
}
.product-row .arrow { width: 16px; height: 16px; color: var(--fg-3); flex-shrink: 0; }
.product-row:hover .arrow { color: var(--accent); }

/* ----- 12. Product detail (Barrier, KLENTZ) ------------------------------- */
.product-detail { padding: 60px 0 96px; background: var(--bg); }
.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.product-visual {
  aspect-ratio: 4 / 5;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--aurora-paper-100), var(--aurora-paper-200));
  box-shadow: var(--shadow-image);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.product-visual .bottle {
  width: 55%;
  aspect-ratio: 1 / 2.4;
  border-radius: 10px 10px 40px 40px / 6px 6px 24px 24px;
  background: linear-gradient(180deg,
    var(--aurora-aubergine-700) 0%,
    var(--aurora-aubergine-800) 50%,
    var(--aurora-violet-500) 100%);
  position: relative;
  box-shadow: 0 30px 60px rgba(40, 22, 40, 0.3),
              inset 0 1px 0 rgba(255, 255, 255, 0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.product-visual .bottle .strap {
  position: absolute;
  top: 8%;
  width: 70%;
  height: 22px;
  background: var(--aurora-mute-300);
  border-radius: 4px;
}
.product-visual .bottle .brand {
  color: var(--aurora-paper-50);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 36px;
  letter-spacing: -0.02em;
}
.product-visual .bottle .brand sup { font-size: 14px; }
.product-visual .bottle .sub {
  color: var(--aurora-rhodamine-300);
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  margin-top: 6px;
}
.product-visual .bottle .size-pill {
  margin-top: 28px;
  padding: 4px 14px;
  border: 1px solid rgba(251, 247, 250, 0.3);
  color: var(--aurora-paper-50);
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.12em;
}

.product-info h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--fg-1);
  margin: 12px 0 18px;
}
.product-info h1 em {
  color: var(--accent);
  font-weight: 500;
  font-style: italic;
}
.product-info h1 sup { font-size: 0.4em; vertical-align: super; }

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 8px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.feature-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 15px;
  color: var(--fg-2);
  line-height: 1.7;
}
.feature-list svg { color: var(--accent); flex-shrink: 0; }

.indication-box {
  padding: 20px;
  background: var(--bg-section);
  border-radius: 14px;
  border: 1px solid var(--border);
  margin-bottom: 28px;
}
.indication-box h3 {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-3);
  margin: 0 0 8px;
}
.indication-box p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--fg-2);
  margin: 0;
}

/* KLENTZ banner (used as page-level spotlight, e.g. on detail pages) */
.klentz-mini-banner {
  background: var(--aurora-violet-600);
  background-image: radial-gradient(circle at top right,
    rgba(225, 0, 152, 0.28), transparent 60%);
  border-radius: 18px;
  padding: 24px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
  box-shadow: var(--shadow-md);
}
.klentz-mini-banner .eyebrow {
  color: var(--aurora-rhodamine-300);
  font-size: 11px;
  letter-spacing: 0.16em;
}
.klentz-mini-banner .row {
  display: flex;
  align-items: baseline;
  gap: 14px;
  flex-wrap: wrap;
}
.klentz-mini-banner .name {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
  line-height: 1;
}
.klentz-mini-banner .tagline {
  font-family: var(--font-sans);
  font-size: 15px;
  color: rgba(251, 247, 250, 0.86);
  line-height: 1.4;
}
.klentz-mini-banner a.more {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--aurora-violet-600);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.03em;
  padding: 12px 22px;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: var(--shadow-sm);
  transition: all 160ms;
}
.klentz-mini-banner a.more:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

/* Sizes grid */
.sizes-group-label { font-family: var(--font-display); font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.07em; color: var(--aurora-violet-600); margin: 0 0 12px; }
.sizes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 0 0 44px;
}
.size-card {
  padding: 20px 22px;
  background: var(--bg-section);
  border-radius: 14px;
  border: 1px solid var(--border);
}
.size-card .size {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  color: var(--fg-1);
  letter-spacing: -0.01em;
}
.size-card .size-note { font-size: 12px; color: var(--fg-3); margin: 2px 0 0; }
.size-card .reorder {
  display: flex;
  gap: 6px;
  align-items: baseline;
  margin-top: 8px;
}
.size-card .reorder-label {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-3);
}
.size-card .reorder-no {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  color: var(--accent);
}

/* Indication + image two-column block (used on KLENTZ detail) */
.indication-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
  align-items: stretch;
  margin: 0 0 40px;
}
.indication-image {
  position: relative;
  background: var(--bg-section);
  border-radius: 14px;
  border: 1px solid var(--border);
  overflow: hidden;
  min-height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.indication-image-placeholder {
  border-style: dashed;
  background-color: var(--bg-section);
  background-image: repeating-linear-gradient(45deg,
    transparent, transparent 9px,
    rgba(0, 0, 0, 0.035) 9px, rgba(0, 0, 0, 0.035) 18px);
  border-color: var(--border-strong);
}
.indication-image-placeholder .label {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.05em;
  color: var(--fg-3);
  text-transform: uppercase;
  padding: 7px 12px;
  background: var(--bg);
  border-radius: 6px;
  border: 1px solid var(--border);
}

/* Product detail image carousel (right column of indication-grid on all product pages) */
.product-detail-carousel {
  position: relative;
  background: #fff;
  border-radius: 14px;
  border: 1px solid var(--border);
  overflow: hidden;
  height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-detail-carousel .stage {
  position: relative;
  width: 100%;
  height: 100%;
}
.product-detail-carousel img {
  position: absolute;
  left: 50%;
  top: 50%;
  max-width: 92%;
  max-height: 92%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 16px 28px rgba(0, 0, 0, 0.18));
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.96);
  transition: opacity 900ms ease-in-out, transform 900ms ease-in-out;
  pointer-events: none;
}
.product-detail-carousel img.active {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  pointer-events: auto;
  cursor: zoom-in;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(4px);
}

.lightbox[hidden] { display: none; }

.lightbox-img {
  max-width: 92vw;
  max-height: 92vh;
  object-fit: contain;
  border-radius: 6px;
  user-select: none;
  -webkit-user-drag: none;
}

.lightbox-close {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.15s;
}

.lightbox-close:hover { background: rgba(255, 255, 255, 0.25); }

.lightbox-prev,
.lightbox-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.15s;
  z-index: 2;
}
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-prev:hover,
.lightbox-next:hover { background: rgba(255, 255, 255, 0.28); }
.product-detail-carousel .dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 7px;
}
.product-detail-carousel .dots button {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--border-strong);
  border: 0;
  cursor: pointer;
  padding: 0;
  transition: all 300ms;
}
.product-detail-carousel .dots button.active {
  width: 22px;
  background: var(--accent);
}

.product-detail-carousel .detail-c-prev,
.product-detail-carousel .detail-c-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 1.5px solid var(--border);
  border-radius: 50%;
  background: var(--bg);
  color: var(--fg-2);
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s;
}

.product-detail-carousel .detail-c-prev { left: 12px; }
.product-detail-carousel .detail-c-next { right: 12px; }

.product-detail-carousel .detail-c-prev:hover,
.product-detail-carousel .detail-c-next:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* Placeholder shown when no product image is available yet */
.product-img-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-image: repeating-linear-gradient(45deg,
    transparent, transparent 8px,
    rgba(0, 0, 0, 0.025) 8px, rgba(0, 0, 0, 0.025) 16px);
  color: var(--aurora-mute-300);
}
.product-img-placeholder span {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Safety information block (long product safety text) */
.safety-block {
  padding: 24px;
  background: var(--bg-section);
  border-radius: 14px;
  border: 1px solid var(--border);
}
.safety-block p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--fg-2);
  margin: 0 0 16px;
}
.safety-block p:last-child {
  margin-bottom: 0;
}

/* ----- 13. About sections -------------------------------------------------- */
.about-body { padding: 120px 0; background: var(--bg); }
.about-body h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.75rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--fg-1);
  margin: 16px 0 24px;
}
.about-body p { font-size: 18px; line-height: 1.7; color: var(--fg-2); }

.stats-row {
  padding: 80px 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-row-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.stat {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 0 16px;
  border-left: 1px solid var(--border);
}
.stat svg { color: var(--accent); flex-shrink: 0; }
.stat .value {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 600;
  line-height: 1;
  color: var(--fg-1);
  letter-spacing: -0.02em;
}
.stat .label {
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 1.4;
  color: var(--fg-2);
}

.values-grid-section {
  padding: 120px 0;
  background: var(--bg-section);
}
.values-grid-section .intro { max-width: 720px; margin-bottom: 56px; }
.values-grid-section .intro p {
  font-size: 17px;
  line-height: 1.6;
  color: var(--fg-2);
  margin: 0;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.value-card {
  background: #fff;
  border-radius: 14px;
  border: 1px solid var(--border);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
}
.value-card .num {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
  color: var(--accent);
  margin-bottom: 18px;
}
.value-card h3 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  color: var(--fg-1);
  margin: 0 0 12px;
}
.value-card p { font-size: 15px; line-height: 1.6; color: var(--fg-2); margin: 0; }

.environmental { padding: 120px 0; background: var(--bg); }
.environmental-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: center;
}
.environmental .photo {
  aspect-ratio: 1;
  background-size: cover;
  background-position: center;
  border-radius: 24px;
  box-shadow: var(--shadow-image);
}
.environmental h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.75rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--fg-1);
  margin: 16px 0 18px;
}
.environmental h2 em { color: var(--aurora-purple-700); font-weight: 500; font-style: italic; }

.cares-grid-section { padding: 120px 0; background: var(--bg); }
.cares-grid-section .intro {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
}
.cares-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.cares-card {
  text-align: center;
  padding: 32px 20px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--bg-section);
}
.cares-card .icon-disk {
  margin: 0 auto 16px;
  width: 64px;
  height: 64px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}
.cares-card .icon-disk svg { color: var(--accent); }
.cares-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--fg-1);
  margin: 0 0 8px;
}
.cares-card p { font-size: 13px; line-height: 1.5; color: var(--fg-2); margin: 0; }

/* ----- 13b. About — card layout ------------------------------------------- */
.about-page { background: var(--bg-section); }

.about-intro {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 320px;
}

.about-intro-text {
  padding: 56px 48px 56px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-intro-text .eyebrow { margin-bottom: 10px; }

.about-intro-text h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--fg-1);
  margin: 0 0 16px;
}

.about-intro-text p {
  font-size: 18px;
  line-height: 1.65;
  color: var(--fg-2);
  margin: 0;
}

.about-intro-photo {
  background-size: cover;
  background-position: center;
  border-radius: 16px;
  margin: 24px 0 24px 32px;
  box-shadow: var(--shadow-image);
}

@media (max-width: 768px) {
  .about-intro-grid { grid-template-columns: 1fr; }

  .about-intro-text { padding: 40px 0 32px; }

  .about-intro-photo {
    height: 220px;
    border-radius: 16px;
    margin-bottom: 8px;
  }
}

.about-cards-section { padding: 48px 0 80px; }

.about-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.about-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.about-card-wide {
  grid-column: 1 / -1;
  flex-direction: row;
}

.about-card-img {
  background: var(--bg-section);
  aspect-ratio: 16 / 9;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}

.about-card-wide-img {
  background: var(--bg-section);
  width: 380px;
  flex-shrink: 0;
  border-right: 1px solid var(--border);
}

.about-card-body {
  padding: 28px 32px;
  flex: 1;
}

.about-card-body h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--fg-1);
  margin: 0 0 12px;
  line-height: 1.2;
}

.about-card-body p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--fg-2);
  margin: 0;
}

.about-card-no-img { flex-direction: column; }

.leadership-accordion { margin-top: 4px; }

.leadership-accordion > summary {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  color: var(--accent);
  width: fit-content;
}

.leadership-accordion > summary::-webkit-details-marker { display: none; }

.leadership-accordion > summary .accordion-chevron {
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.leadership-accordion[open] > summary .accordion-chevron { transform: rotate(180deg); }

.leadership-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px 28px;
  margin-top: 20px;
}

.leadership-member { text-align: center; }

.leadership-photo {
  width: 100%;
  aspect-ratio: 1;
  background: var(--bg-section);
  border-radius: 12px;
  border: 1px solid var(--border);
  margin-bottom: 12px;
  overflow: hidden;
}

.leadership-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.leadership-name {
  font-size: 15px;
  font-weight: 600;
  color: #16111c;
  margin-bottom: 3px;
}

.leadership-title {
  font-size: 13px;
  font-weight: 600;
  color: #16111c;
  line-height: 1.4;
}

.leadership-creds {
  font-size: 12px;
  color: var(--fg-3);
  margin-top: 2px;
}

.leadership-member.has-bio {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  text-align: center;
  width: 100%;
}

.leadership-member.has-bio .leadership-photo,
.leadership-member.has-bio .leadership-name,
.leadership-member.has-bio .leadership-title,
.leadership-member.has-bio .leadership-creds,
.leadership-member.has-bio .leadership-bio-hint { display: block; }

.leadership-member.has-bio:hover .leadership-photo,
.leadership-member.has-bio:focus-visible .leadership-photo {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.leadership-bio-hint {
  font-size: 12px;
  color: var(--accent);
  font-weight: 600;
  margin-top: 4px;
}

@media (max-width: 768px) {
  .about-cards-grid { grid-template-columns: 1fr; }

  .about-card-wide {
    grid-column: auto;
    flex-direction: column;
  }

  .about-card-wide-img {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
}

/* ----- 14. Sales team ----------------------------------------------------- */
.sales-page { padding: 40px 0 110px; background: var(--bg); }
.sales-top-row {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: stretch;
}

.rep-finder {
  height: 100%;
  background: var(--bg-section);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px 44px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.rep-finder h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 2.6vw, 2.3rem);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: #16111c;
  margin: 12px 0 14px;
}
.rep-finder p {
  font-size: 15px;
  line-height: 1.6;
  color: #16111c;
  margin: 0 auto 24px;
  max-width: 440px;
}
.rep-finder form {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 18px;
}
.rep-finder input {
  width: 160px;
  padding: 12px 16px;
  font-family: var(--font-mono);
  font-size: 18px;
  letter-spacing: 0.08em;
  color: #16111c;
  text-align: center;
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  background: #fff;
  outline: none;
}
.rep-finder button[type="submit"] {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.04em;
  padding: 12px 24px;
  border-radius: 8px;
  border: 0;
  cursor: pointer;
  background: var(--accent);
  color: #fff;
}
.rep-finder .error {
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--accent-hover);
}
.rep-finder .match {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px 20px;
  box-shadow: var(--shadow-sm);
  max-width: 420px;
  margin: 0 auto;
}
.rep-finder .match .meta {
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--fg-3);
}
.rep-finder .match a.rep-name {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--aurora-violet-600);
  text-decoration: underline;
  text-underline-offset: 3px;
  margin: 6px 0 4px;
  cursor: pointer;
}
.rep-finder .match .desc {
  font-family: var(--font-sans);
  font-size: 13px;
  color: #16111c;
}
.rep-finder .match .desc span { color: var(--fg-3); }

.director-card {
  height: 100%;
  border-radius: 20px;
  padding: 40px;
  background: #1e2530;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22), inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 22px;
  scroll-margin-top: 90px;
  position: relative;
}
.director-card .head {
  display: flex;
  gap: 24px;
  align-items: center;
}
.director-card .photo {
  width: 132px;
  height: 132px;
  border-radius: 14px;
  flex-shrink: 0;
  overflow: hidden;
  background: center/cover no-repeat;
  box-shadow: 0 8px 22px rgba(40, 22, 40, 0.35);
}
.director-card .name {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 700;
  color: var(--aurora-paper-50);
  line-height: 1.05;
  letter-spacing: -0.01em;
}
.director-card .title {
  font-family: var(--font-sans);
  font-size: 14px;
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.03em;
  margin-top: 8px;
}
.director-card .role {
  font-family: var(--font-sans);
  font-size: 14px;
  color: rgba(251, 247, 250, 0.82);
  line-height: 1.5;
  margin-top: 3px;
}
.director-card .blurb {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(251, 247, 250, 0.84);
  margin: 0;
}
.director-card .contact {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
}
.director-card .contact a {
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(251, 247, 250, 0.92);
  text-decoration: none;
  font-family: var(--font-sans);
  font-size: 15px;
}
.director-card .contact svg { color: var(--aurora-rhodamine-400); }

.your-rep-tag {
  position: absolute;
  top: 18px;
  right: 18px;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}
.director-card.highlighted { outline: 5px solid var(--aurora-rhodamine-400); }

.member-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 48px;
  margin-top: 72px;
}
.member-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px;
  border-radius: 18px;
  background: transparent;
  outline: 2px solid transparent;
  transition: all 260ms cubic-bezier(.22, .61, .36, 1);
  scroll-margin-top: 90px;
  position: relative;
}
.member-card.highlighted {
  background: #fff;
  box-shadow: var(--shadow-lg);
  outline-width: 4px;
  outline-color: var(--aurora-violet-500);
}
.member-card .photo-frame {
  position: relative;
  width: 100%;
}
.member-card .photo {
  width: 100%;
  aspect-ratio: 3 / 2;
  border-radius: 14px;
  overflow: hidden;
  background: var(--aurora-aubergine-800);
  box-shadow: var(--shadow-md);
}
.member-card .photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.member-card .your-rep-tag {
  top: 12px;
  left: 12px;
  right: auto;
}
.member-card .info { text-align: center; margin-top: 20px; color: #16111c; }
.member-card .name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 24px;
  letter-spacing: -0.01em;
  color: #16111c;
  margin-bottom: 10px;
}
.member-card .role {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.45;
  color: #16111c;
}
.member-card .phone, .member-card .email {
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.55;
}
.member-card .phone a, .member-card .email a {
  color: #16111c;
  text-decoration: none;
}

/* Sales team section sub-headings (Species Product Managers / Territory Managers) */
.member-section-heading {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: #16111c;
  letter-spacing: -0.01em;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.member-section-heading.first { margin: 64px 0 0; }
.member-section-heading.subsequent { margin: 80px 0 0; }

/* No-photo placeholder for member cards */
.member-card .photo-placeholder {
  width: 100%;
  aspect-ratio: 3 / 2;
  border-radius: 14px;
  overflow: hidden;
  background: linear-gradient(150deg, var(--aurora-violet-700) 0%, var(--aurora-violet-500) 48%, var(--aurora-purple-500) 100%);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.member-card .photo-placeholder .initials {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 24px;
  color: #fff;
}
.member-card .photo-placeholder .placeholder-label {
  font-family: var(--font-sans);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

/* State badges on member cards */
.member-card .states {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
  margin: 12px auto 0;
  max-width: 280px;
}
.member-card .state-badge {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--aurora-violet-600);
  background: var(--bg-section);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 3px 10px;
}

/* Phone/email links with icon alignment on member cards */
.member-card .contact-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 15px;
  color: #16111c;
  text-decoration: none;
  margin-top: 14px;
}
.member-card .contact-link + .contact-link { margin-top: 4px; }
.member-card .contact-link svg { color: var(--accent); flex-shrink: 0; }

/* ----- 15. Terms / Privacy modal ------------------------------------------ */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(44, 0, 72, 0.55);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--container-pad);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.22s ease, visibility 0.22s ease;
}
.modal-overlay.is-open {
  opacity: 1;
  visibility: visible;
}
.modal-box {
  background: var(--bg);
  border-radius: 18px;
  box-shadow: var(--shadow-lg);
  width: 100%;
  max-width: 720px;
  max-height: 82vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: translateY(16px);
  transition: transform 0.22s ease;
}
.modal-overlay.is-open .modal-box { transform: translateY(0); }
.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px 18px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.modal-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--aurora-violet-600);
  margin: 0;
}
.modal-close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: 8px;
  color: var(--fg-3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, color 0.15s;
}
.modal-close:hover { background: var(--bg-section); color: var(--fg); }
.modal-body {
  overflow-y: auto;
  padding: 28px 28px 32px;
  flex: 1 1 auto;
  font-family: var(--font-sans);
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--fg-2);
}
.modal-body p { margin: 0 0 14px; }
.modal-body .tou-intro { margin-bottom: 22px; }
.modal-body h3 {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--aurora-violet-600);
  margin: 24px 0 8px;
}
.modal-body h3:first-child { margin-top: 0; }
.modal-body .tou-caps {
  font-size: 12.5px;
  line-height: 1.6;
  color: var(--fg-3);
}

/* ----- 16. Safety Data Sheets page ----------------------------------------- */
.sds-intro {
  background: var(--bg);
  padding: 52px 0 48px;
  border-bottom: 1px solid var(--border);
}

.sds-intro .eyebrow { margin-bottom: 10px; }

.sds-intro h1 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--fg-1);
  margin: 0 0 12px;
}

.sds-intro p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--fg-2);
  max-width: 560px;
  margin: 0;
}

.sds-list-section {
  padding: 48px 0 80px;
  background: var(--bg-section);
}

.sds-list-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.sds-letter-group { border-bottom: 1px solid var(--border); }

.sds-letter-group:last-child { border-bottom: none; }

.sds-letter-heading {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 14px 28px 10px;
  background: var(--bg-section);
  border-bottom: 1px solid var(--border);
}

.sds-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 28px;
  border-bottom: 1px solid var(--border);
}

.sds-row:last-child { border-bottom: none; }

.sds-row:hover { background: var(--bg-section); }

.sds-name {
  font-size: 15px;
  font-weight: 500;
  color: var(--fg-1);
  margin-bottom: 2px;
}

.sds-desc {
  font-size: 13px;
  color: var(--fg-3);
}

.sds-btn {
  white-space: nowrap;
  flex-shrink: 0;
  font-size: 13px;
  padding: 8px 16px;
}

.sds-search-wrap { position: relative; max-width: 520px; margin-top: 24px; }

.sds-search-box {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1.5px solid var(--border-strong);
  border-radius: 10px;
  padding: 0 14px;
  transition: border-color 0.15s;
}

.sds-search-box:focus-within { border-color: var(--accent); }

.sds-search-icon { color: var(--fg-3); flex-shrink: 0; }

.sds-search-input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--fg-1);
  padding: 12px 0;
}

.sds-search-input::placeholder { color: var(--fg-3); }
.sds-search-input::-webkit-search-cancel-button { display: none; }

.sds-clear {
  flex-shrink: 0;
  border: none;
  background: none;
  cursor: pointer;
  color: var(--fg-3);
  display: flex;
  align-items: center;
  padding: 4px;
  border-radius: 4px;
  transition: color 0.15s, background 0.15s;
}
.sds-clear:hover { color: var(--fg-1); background: var(--bg-section); }

.sds-suggestions {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid var(--border-strong);
  border-radius: 10px;
  box-shadow: var(--shadow-md);
  list-style: none;
  margin: 0;
  padding: 4px 0;
  z-index: 100;
  max-height: 320px;
  overflow-y: auto;
}

.sds-suggestions li {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 10px 16px;
  cursor: pointer;
  transition: background 0.1s;
}

.sds-suggestions li:hover,
.sds-suggestions li.sug-active { background: var(--bg-section); }

.sug-name { font-size: 14px; font-weight: 500; color: var(--fg-1); }

.sug-active-text { font-size: 12px; color: var(--fg-3); }

.sds-row-highlight { background: var(--accent-soft) !important; }

@media (max-width: 600px) {
  .sds-row { flex-direction: column; align-items: flex-start; gap: 10px; }

  .sds-letter-heading,
  .sds-row { padding-left: 20px; padding-right: 20px; }
}

/* ----- 17. Utilities ------------------------------------------------------- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.hidden { display: none !important; }
.mt-0 { margin-top: 0; }
.mt-2 { margin-top: 16px; }
.mt-4 { margin-top: 32px; }

/* ============================================================
   16. Careers page
   ============================================================ */
.careers-hero {
  position: relative;
  padding: 100px 0 80px;
  background: linear-gradient(135deg, #1F0457 0%, #3D008B 40%, #6A1A93 72%, #9C3FAA 100%);
  overflow: hidden;
}
.careers-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(900px 600px at 80% 50%, rgba(157, 122, 208, 0.18), transparent 65%);
}
.careers-hero .container { position: relative; }
.careers-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 600;
  line-height: 1.07;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 16px 0 20px;
  max-width: 760px;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.3);
}
.careers-hero h1 em { color: var(--aurora-rhodamine-300); font-weight: 500; font-style: italic; }
.careers-hero p {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  line-height: 1.65;
  color: rgba(220, 197, 240, 0.9);
  max-width: 580px;
  margin: 0;
}

/* Open positions */
.openings-section {
  padding: 72px 0;
  background: var(--bg);
}
.openings-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 64px 32px;
  background: var(--bg-section);
  border-radius: 16px;
  border: 1.5px dashed var(--aurora-mute-300);
  gap: 16px;
  color: var(--fg-2);
}
.openings-empty svg { color: var(--aurora-mute-300); flex-shrink: 0; }
.openings-empty h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--fg-1);
  margin: 0;
}
.openings-empty p { font-size: 15px; line-height: 1.65; max-width: 480px; margin: 0; }
.openings-empty .btn { margin-top: 8px; }

/* Job cards (used when positions exist) */
.job-listings { display: flex; flex-direction: column; gap: 16px; }
.job-card {
  padding: 0;
  background: var(--bg);
  border: 1.5px solid var(--aurora-paper-200);
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(40, 22, 40, 0.06);
  transition: box-shadow 0.18s, border-color 0.18s;
  overflow: hidden;
}
.job-card:hover { box-shadow: 0 6px 24px rgba(40, 22, 40, 0.12); border-color: var(--aurora-violet-300); }
.job-accordion { display: block; }
.job-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 28px;
  cursor: pointer;
  list-style: none;
  user-select: none;
}
.job-summary::-webkit-details-marker { display: none; }
.job-summary::marker { display: none; }
.job-summary:hover .job-title { color: var(--aurora-violet-600); }
.job-summary-inner { flex: 1; min-width: 0; display: block; }
.job-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; }
.job-chevron { flex-shrink: 0; color: var(--fg-3); transition: transform 0.25s ease; }
details[open] > .job-summary .job-chevron { transform: rotate(180deg); }
.job-card-body { padding: 0 28px 28px; border-top: 1.5px solid var(--aurora-paper-200); padding-top: 20px; }
.job-title { display: block; font-family: var(--font-display); font-size: 1.15rem; font-weight: 600; color: var(--fg-1); margin: 0 0 2px; }
.job-tag {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  background: var(--aurora-paper-100);
  color: var(--fg-2);
  border: 1px solid var(--aurora-paper-200);
}
.job-tag-dept { background: var(--aurora-paper-200); color: var(--aurora-violet-600); border-color: var(--aurora-violet-300); }
.job-desc { font-size: 15px; line-height: 1.65; color: var(--fg-2); margin: 0 0 20px; }
.job-details { border-top: 1px solid var(--aurora-paper-200); padding-top: 20px; margin-bottom: 24px; display: flex; flex-direction: column; gap: 18px; }
.job-detail-section h4 { font-family: var(--font-display); font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: var(--aurora-violet-600); margin: 0 0 10px; }
.job-detail-section ul { margin: 0; padding-left: 20px; display: flex; flex-direction: column; gap: 4px; }
.job-detail-section li { font-size: 14px; line-height: 1.6; color: var(--fg-2); }
.job-req-note { font-size: 12px; color: var(--fg-3); margin: 8px 0 0; font-style: italic; }

/* Careers form section */
.careers-form-section {
  padding: 72px 0 96px;
  background: var(--bg-section);
}
.careers-form-intro {
  font-size: 16px;
  line-height: 1.65;
  color: var(--fg-2);
  margin: 0 0 36px;
}
.careers-form-intro .req { color: var(--accent); }
.file-upload-wrapper { display: flex; flex-direction: column; gap: 6px; }
.file-hint { font-size: 12px; color: var(--fg-2); margin: 0; }
.form-submit-row {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.form-privacy { font-size: 13px; color: var(--fg-2); margin: 0; }
.form-privacy a { color: var(--fg-2); text-decoration: underline; }
.form-privacy a:hover { color: var(--fg-1); }

/* =============================================================================
   16. Scholarship page
   ============================================================================= */

/* Intro split — text left, apply card right */
.scholarship-intro {
  padding: 72px 0 32px;
  background: var(--bg);
}
.scholarship-intro-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 64px;
  align-items: start;
}
.scholarship-intro-text h2 {
  font-family: var(--font-serif);
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 600;
  line-height: 1.35;
  color: var(--fg-1);
  margin: 0 0 20px;
}
.scholarship-intro-text p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--fg-2);
  margin: 0 0 16px;
}
.scholarship-intro-text p a { color: var(--accent); text-decoration: none; }
.scholarship-intro-text p a:hover { text-decoration: underline; }

.scholarship-apply-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px 28px;
  position: sticky;
  top: 100px;
}
.scholarship-apply-card h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--fg-1);
  margin: 0 0 10px;
}
.scholarship-apply-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--fg-2);
  margin: 0 0 24px;
}
.scholarship-apply-card .apply-email {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--fg-2);
  margin: 0 0 24px;
  padding: 12px 16px;
  background: var(--bg);
  border-radius: 8px;
  border: 1px solid var(--border);
  white-space: nowrap;
  overflow: hidden;
}
.scholarship-apply-card .apply-email svg { stroke: var(--accent); flex-shrink: 0; }
.scholarship-apply-card .apply-email a { color: var(--fg-1); text-decoration: none; overflow: hidden; text-overflow: ellipsis; }
.scholarship-apply-card .apply-email a:hover { text-decoration: underline; }
.scholarship-dl-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background: var(--accent);
  color: #fff;
  border-radius: 8px;
  padding: 13px 20px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.15s;
}
.scholarship-dl-btn:hover { background: #6b21a8; }

/* Recipients year section */
.scholarship-year {
  padding: 72px 0 80px;
  background: var(--surface);
}
.scholarship-year-header {
  display: flex;
  align-items: baseline;
  gap: 20px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}
.scholarship-year-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(22px, 2.8vw, 30px);
  font-weight: 600;
  color: var(--fg-1);
  margin: 0;
}
.scholarship-year-tag {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--aurora-paper-100);
  border: 1px solid var(--aurora-paper-200);
  border-radius: 20px;
  padding: 3px 12px;
}
.scholarship-year-summary {
  font-size: 15px;
  color: var(--fg-2);
  line-height: 1.6;
  margin: 8px 0 28px;
}
.scholarship-year-summary strong { color: var(--fg-1); }

/* Recipients accordion */
.recipients-accordion {
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}
.recipients-accordion > summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: var(--bg);
  font-size: 14px;
  font-weight: 600;
  color: var(--fg-1);
  cursor: pointer;
  list-style: none;
  user-select: none;
  transition: background 0.15s;
}
.recipients-accordion > summary::-webkit-details-marker { display: none; }
.recipients-accordion > summary:hover { background: var(--aurora-paper-50); }
.recipients-accordion[open] > summary { border-bottom: 1px solid var(--border); }
.recipients-accordion > summary .accordion-chevron {
  transition: transform 0.2s;
  flex-shrink: 0;
  color: var(--fg-3);
}
.recipients-accordion[open] > summary .accordion-chevron { transform: rotate(180deg); }
.recipients-accordion .recipients-grid {
  padding: 20px;
  background: var(--bg);
}

.recipients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 10px;
}
.recipient-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 14px 18px;
}
.recipient-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--fg-1);
  margin-bottom: 3px;
}
.recipient-school {
  font-size: 12px;
  color: var(--fg-3);
  line-height: 1.4;
}

/* Archive section */
/* Scholarship recipients photo carousel */
.recipients-carousel-section {
  padding: 32px 0 64px;
  background: var(--surface);
}
.recipients-carousel-section .eyebrow { margin-bottom: 8px; }
.recipients-carousel-section h2 {
  font-family: var(--font-serif);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 600;
  color: var(--fg-1);
  margin: 8px 0 36px;
}
.recipients-carousel {
  position: relative;
}
.recipients-carousel .rc-stage {
  display: flex;
  gap: 16px;
  overflow: hidden;
}
.recipients-carousel .rc-slide {
  flex: 0 0 calc(33.333% - 11px);
  display: none;
}
.recipients-carousel .rc-slide.active { display: block; }
.recipients-carousel .rc-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: #f4f4f4;
  overflow: hidden;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.recipients-carousel .rc-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.recipients-carousel .rc-prev,
.recipients-carousel .rc-next {
  position: absolute;
  top: calc(50% - 20px);
  background: #fff;
  border: 1.5px solid var(--border, #e2dded);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--fg-1);
  transition: background 0.15s, border-color 0.15s;
  z-index: 2;
}
.recipients-carousel .rc-prev { left: -52px; }
.recipients-carousel .rc-next { right: -52px; }
.recipients-carousel .rc-prev:hover,
.recipients-carousel .rc-next:hover { background: var(--accent); border-color: var(--accent); color: #fff; }
.recipients-carousel .rc-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}
.recipients-carousel .rc-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: var(--border, #d1cade);
  cursor: pointer;
  padding: 0;
  transition: background 0.2s;
}
.recipients-carousel .rc-dots button.active { background: var(--accent); }

@media (max-width: 700px) {
  .recipients-carousel .rc-slide { flex-basis: calc(50% - 8px); }
  .recipients-carousel .rc-prev { left: -8px; }
  .recipients-carousel .rc-next { right: -8px; }
}

@media (max-width: 440px) {
  .recipients-carousel .rc-slide { flex-basis: 100%; }
}

/* ── Press Releases ─────────────────────────────────────── */
.press-releases-section {
  padding: 72px 0 80px;
  background: var(--surface);
}

.press-releases-section h2 {
  font-family: var(--font-serif);
  font-size: clamp(22px, 2.8vw, 30px);
  font-weight: 600;
  color: var(--fg-1);
  margin: 4px 0 32px;
}

.pr-item {
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 12px;
  background: var(--bg);
}

.pr-summary {
  display: grid;
  grid-template-columns: 52px 1fr auto 20px;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  cursor: pointer;
  list-style: none;
  user-select: none;
  transition: background 0.15s;
}

.pr-summary::-webkit-details-marker { display: none; }
.pr-summary:hover { background: var(--aurora-paper-50); }
.pr-item[open] > .pr-summary { border-bottom: 1px solid var(--border); }
.pr-item[open] > .pr-summary .accordion-chevron { transform: rotate(180deg); }

.pr-year {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--accent);
  background: var(--aurora-paper-100);
  border: 1px solid var(--aurora-paper-200);
  border-radius: 20px;
  padding: 3px 10px;
  text-align: center;
  white-space: nowrap;
}

.pr-headline {
  font-size: 15px;
  font-weight: 600;
  color: var(--fg-1);
}

.pr-date {
  font-size: 13px;
  color: var(--fg-3);
  white-space: nowrap;
}

.accordion-chevron {
  flex-shrink: 0;
  color: var(--fg-3);
  transition: transform 0.2s;
}

.pr-body {
  padding: 28px 24px 32px;
}

.pr-body p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--fg-2);
  margin: 0 0 16px;
}

.pr-body p:last-child { margin-bottom: 0; }
.pr-recipients-heading { font-family: var(--font-serif); font-size: 18px; font-weight: 600; color: var(--fg-1); margin: 32px 0 16px; }

.pr-quote {
  background: #4c1d95;
  color: #fff;
  border-radius: 10px;
  padding: 24px 28px;
  margin: 24px 0;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.7;
}

@media (max-width: 600px) {
  .pr-summary {
    grid-template-columns: 48px 1fr 20px;
  }

  .pr-date { display: none; }
}

.scholarship-archive {
  padding: 64px 0 96px;
  background: var(--bg);
}
.scholarship-archive h2 {
  font-family: var(--font-serif);
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 600;
  color: var(--fg-1);
  margin: 8px 0 24px;
}
.archive-list {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  max-width: 640px;
}
.archive-item {
  border-bottom: 1px solid var(--border);
}
.archive-item:last-child { border-bottom: none; }
.archive-item > summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  background: var(--surface);
  cursor: pointer;
  list-style: none;
  user-select: none;
  transition: background 0.15s;
}
.archive-item > summary::-webkit-details-marker { display: none; }
.archive-item > summary:hover { background: var(--aurora-paper-50); }
.archive-item[open] > summary { background: var(--aurora-paper-50); }
.archive-summary-content {
  display: inline-flex;
  align-items: baseline;
  gap: 14px;
}
.archive-year {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--accent);
  line-height: 1;
}
.archive-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--fg-1);
}
.archive-item > summary .accordion-chevron {
  transition: transform 0.2s;
  color: var(--fg-3);
  flex-shrink: 0;
}
.archive-item[open] > summary .accordion-chevron { transform: rotate(180deg); }
.archive-names-box {
  max-height: 320px;
  overflow-y: auto;
  padding: 16px 24px;
  background: var(--bg);
}
.archive-names-box .recipients-grid { gap: 8px; }
.archive-coming-soon {
  font-size: 14px;
  color: var(--fg-3);
  margin: 0;
  font-style: italic;
}

@media (max-width: 900px) {
  .scholarship-intro-grid { grid-template-columns: 1fr; gap: 40px; }
  .scholarship-apply-card { position: static; }
}

@media (max-width: 600px) {
  .recipients-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 380px) {
  .recipients-grid { grid-template-columns: 1fr; }
}

/* ===================================================
   Product recommendation carousels (below product pages)
   =================================================== */
.prod-carousels {
  background: var(--bg-section);
  border-top: 1px solid var(--border);
  padding: 40px 0 52px;
}

.prod-carousel + .prod-carousel {
  margin-top: 36px;
  padding-top: 36px;
  border-top: 1px solid var(--border);
}

.prod-c-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.prod-c-label {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--fg-3);
}

.prod-c-arrows {
  display: flex;
  gap: 6px;
}

.prod-c-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 1.5px solid var(--border);
  border-radius: 50%;
  background: var(--bg);
  color: var(--fg-2);
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s;
}

.prod-c-btn:hover:not(:disabled) {
  border-color: var(--accent);
  color: var(--accent);
}

.prod-c-btn:disabled {
  opacity: 0.3;
  cursor: default;
}

.prod-c-viewport {
  overflow: hidden;
}

.prod-c-track {
  display: flex;
  gap: 24px;
  transition: transform 0.32s ease;
  will-change: transform;
}

.prod-c-card {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.prod-c-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-sm);
}

.prod-c-img {
  height: 190px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #fff;
}

.prod-c-img img {
  max-height: 170px;
  max-width: 85%;
  object-fit: contain;
}

.prod-c-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: var(--fg-3);
  opacity: 0.6;
}

.prod-c-body {
  padding: 20px 22px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.prod-c-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--fg-1);
  line-height: 1.35;
}

.prod-c-active {
  font-size: 12px;
  color: var(--fg-3);
  margin-top: 4px;
  line-height: 1.4;
}

.prod-c-cta {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: auto;
  padding-top: 14px;
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
}

/* ===== Search overlay ===================================================== */
.search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 900;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 80px;
  backdrop-filter: blur(4px);
}
.search-overlay[hidden] { display: none; }
.search-box {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 28px 20px;
  width: min(620px, calc(100vw - 32px));
  position: relative;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
}
.search-form {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 10px 14px;
  transition: border-color 0.15s;
}
.search-form:focus-within { border-color: var(--accent); }
.search-form > svg { flex-shrink: 0; color: var(--fg-3); }
.search-input {
  flex: 1;
  border: none;
  outline: none;
  background: none;
  font-size: 16px;
  color: var(--fg-1);
  font-family: var(--font-sans);
  min-width: 0;
}
.search-input::placeholder { color: var(--fg-3); }
.search-submit {
  flex-shrink: 0;
  border: none;
  background: none;
  cursor: pointer;
  color: var(--accent);
  display: flex;
  align-items: center;
  padding: 0;
  transition: opacity 0.15s;
}
.search-submit:hover { opacity: 0.75; }
.search-hint {
  margin: 10px 0 0;
  font-size: 12px;
  color: var(--fg-3);
}
.search-close {
  position: absolute;
  top: 14px;
  right: 14px;
  border: none;
  background: none;
  cursor: pointer;
  color: var(--fg-3);
  display: flex;
  align-items: center;
  padding: 5px;
  border-radius: 6px;
  transition: color 0.15s, background 0.15s;
}
.search-close:hover { color: var(--fg-1); background: var(--bg-section); }

/* =============================================================================
   MOBILE RESPONSIVE — breakpoints for ≤768px / 480px
   All rules use max-width so desktop is never affected.
   ============================================================================= */

/* ---- Hamburger toggle button (hidden on desktop) ---- */
.nav-mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--fg-1);
  flex-direction: column;
  gap: 5px;
  flex-shrink: 0;
  margin-left: auto;
}
.nav-mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.22s, opacity 0.22s;
}
.nav-mobile-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-mobile-toggle.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-mobile-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---- Side-drawer backdrop (injected by JS) ---- */
.nav-backdrop {
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.48);
  z-index: 90;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.32s;
}

.nav-backdrop.visible {
  opacity: 1;
  pointer-events: auto;
}

@media (max-width: 768px) {
  /* Remove backdrop-filter so it no longer acts as a containing block for fixed children */
  .site-header { backdrop-filter: none; }

  /* Show hamburger, hide search icon */
  .nav-mobile-toggle { display: flex; }
  .header-actions { display: none; }

  /* Side-drawer nav panel */
  .site-nav {
    display: flex;
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 85vw;
    max-width: 320px;
    bottom: 0;
    flex-direction: column;
    background: var(--bg);
    overflow-y: auto;
    padding: 8px var(--container-pad) 48px;
    z-index: 200;
    gap: 0;
    border-top: 1px solid var(--border);
    border-right: 1px solid var(--border);
    box-shadow: 4px 0 32px rgba(0, 0, 0, 0.18);
    transform: translateX(-110%);
    transition: transform 0.32s cubic-bezier(0.22, 0.61, 0.36, 1);
    visibility: hidden;
  }
  .site-nav.mobile-open {
    transform: translateX(0);
    visibility: visible;
  }

  /* Nav items stack vertically with dividers */
  .nav-item { width: 100%; border-bottom: 1px solid var(--border); }
  .nav-item:last-child { border-bottom: none; }
  .nav-link {
    padding: 15px 0;
    font-size: 16px;
    width: 100%;
    justify-content: space-between;
  }

  /* Disable CSS hover-based dropdown show; use JS .open class instead */
  .nav-item:hover > .dropdown,
  .nav-item:focus-within > .dropdown { display: none; }
  .nav-item.open > .dropdown { display: block; }

  /* Inline dropdown (no absolute positioning) */
  .dropdown {
    position: static;
    padding-top: 0;
    width: 100%;
    display: none;
  }
  .nav-item.open .dropdown { display: block; }
  .dropdown-panel {
    box-shadow: none;
    border: none;
    border-radius: 0;
    padding: 0 0 8px 12px;
    background: transparent;
    min-width: 0;
    gap: 0;
  }

  /* Cat items (product categories) — static, stacked */
  .cat-item { position: static; width: 100%; }
  .cat-row {
    padding: 10px 4px;
    white-space: normal;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
  }
  .cat-row .chevron { display: none; }

  /* Disable hover/hover-chain flyouts; keep JS .open class */
  .cat-item:hover > .cat-flyout,
  .cat-flyout:hover { display: none; }
  .cat-item.open > .cat-flyout { display: block; }

  /* Flyouts expand inline */
  .cat-flyout {
    position: static;
    padding-left: 0;
    display: none;
  }
  .cat-flyout-panel {
    box-shadow: none;
    border: none;
    background: var(--bg-section);
    border-radius: 8px;
    padding: 8px 12px 12px;
    margin: 4px 0 8px;
    min-width: 0;
  }
  .cat-flyout-panel .product-list { margin-top: 6px; }
  .cat-flyout-panel .product-list a { padding: 6px 0; white-space: normal; }
}

/* ---- Footer ---- */
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px 20px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 12px; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ---- Hero ---- */
@media (max-width: 768px) {
  .hero-copy--center { max-width: 100% !important; }
  .hero p { max-width: 100%; }
}

/* ---- Home: Species card grid (3-col → 2-col → 1-col) ---- */
@media (max-width: 900px) {
  .species-card-grid { grid-template-columns: 1fr 1fr; }
  .species-card-stack { flex-direction: row; }
}

@media (max-width: 480px) {
  .species-card-grid { grid-template-columns: 1fr; }
  .species-card-stack { flex-direction: column; }
}

/* ---- Home: Intro block (2-col → 1-col) ---- */
@media (max-width: 768px) {
  .intro-block-grid { grid-template-columns: 1fr; gap: 36px; }
  .intro-block-grid .photo { aspect-ratio: 16 / 9; }
}

/* ---- Home: Spotlight banner topbar ---- */
@media (max-width: 600px) {
  .spotlight-topbar { flex-wrap: wrap; gap: 10px; }
  .spotlight-topbar-imgs {
    order: 3;
    flex: 0 0 100%;
    padding: 0;
    justify-content: flex-start;
    gap: 10px;
  }
  .spotlight-topbar .spotlight-buttons { margin-left: 0; }
  .spotlight-topbar-imgs img { height: 80px; transform: translateY(-8px); }
  .spotlight-topbar-imgs img:hover { transform: translateY(-16px) scale(1.08); }
}

/* ---- About: Stats row (4-col → 2-col → 1-col) ---- */
@media (max-width: 768px) {
  .stats-row-grid { grid-template-columns: 1fr 1fr; gap: 24px 16px; }
}

@media (max-width: 480px) {
  .stats-row-grid { grid-template-columns: 1fr; }
}

/* ---- About: Values grid (3-col → 2-col → 1-col) ---- */
@media (max-width: 768px) {
  .values-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .values-grid { grid-template-columns: 1fr; }
}

/* ---- About: Cares grid (5-col → 3-col → 2-col → 1-col) ---- */
@media (max-width: 900px) {
  .cares-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 600px) {
  .cares-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 380px) {
  .cares-grid { grid-template-columns: 1fr; }
}

/* ---- About: Environmental grid (2-col → 1-col) ---- */
@media (max-width: 768px) {
  .environmental-grid { grid-template-columns: 1fr; gap: 40px; }
  .environmental .photo { aspect-ratio: 16 / 9; border-radius: 16px; }
}

/* ---- About: Leadership grid (3-col → 2-col → 1-col) ---- */
@media (max-width: 768px) {
  .leadership-grid { grid-template-columns: 1fr 1fr; gap: 20px 16px; }
}

@media (max-width: 480px) {
  .leadership-grid { grid-template-columns: 1fr; }
}

/* ---- Contact: info panel text alignment ---- */
@media (max-width: 900px) {
  .contact-info-content { text-align: left; }
  .contact-social-row { justify-content: flex-start; }
}

/* ---- Species listing pages ---- */
@media (max-width: 768px) {
  .species-hero-grid { grid-template-columns: 1fr; gap: 28px; }
  .species-hero-orb { max-width: 260px; width: 100%; }
  .product-rows { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .product-rows { grid-template-columns: 1fr; }
}

/* ---- Product detail pages ---- */
@media (max-width: 768px) {
  .product-detail-grid { grid-template-columns: 1fr; gap: 32px; }
  .product-detail-carousel { height: 300px; }
  .indication-grid { grid-template-columns: 1fr; }
  .sizes-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .sizes-grid { grid-template-columns: 1fr; }
}

/* ---- Touch targets for lightbox and carousel controls ---- */
@media (max-width: 768px) {
  .lightbox-close { width: 52px; height: 52px; }
  .lightbox-prev, .lightbox-next { width: 52px; height: 52px; }
  .product-detail-carousel .detail-c-prev,
  .product-detail-carousel .detail-c-next { width: 44px; height: 44px; }
}

/* ---- Sales page ---- */
@media (max-width: 768px) {
  .sales-top-row { grid-template-columns: 1fr; }
  .rep-finder input { width: 100%; max-width: 260px; }
  .rep-finder form { flex-wrap: wrap; justify-content: center; }
  .member-grid { grid-template-columns: 1fr 1fr; gap: 28px 20px; margin-top: 40px; }

  .director-card { padding: 28px 24px; gap: 16px; }
  .director-card .head { flex-direction: column; align-items: flex-start; gap: 16px; }
  .director-card .photo { width: 96px; height: 96px; }
  .director-card .name { font-size: 22px; }
  .director-card .blurb { font-size: 14px; }
  .director-card .contact { gap: 8px 20px; }
  .director-card .contact a { font-size: 14px; }
}

@media (max-width: 480px) {
  .member-grid { grid-template-columns: 1fr; }
}

/* ===== Species icons ====================================================== */
.species-icons {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.species-icon {
  height: 48px;
  width: auto;
  object-fit: contain;
  mix-blend-mode: multiply;
}
.species-icons.sm .species-icon { height: 34px; }
.species-icons.xs .species-icon { height: 26px; }

.prod-c-species { margin-top: 8px; }
.species-card .species-icons { margin-top: 6px; margin-bottom: 2px; }
.species-icon.xs { height: 26px; }
.species-eyebrow { display: flex; align-items: center; gap: 5px; white-space: nowrap; }

/* Card title row: icon(s) inline with species name on homepage grid */
.card-title-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 14px;
}
.card-title-row .card-title { padding-bottom: 0; }

/* Slightly larger cat and poultry icons (narrower silhouettes need more height) */
.species-icon[src*="icon-cat"],
.species-icon[src*="icon-poultry"] { height: 58px; }
.species-icons.sm .species-icon[src*="icon-cat"],
.species-icons.sm .species-icon[src*="icon-poultry"] { height: 40px; }
.species-icons.xs .species-icon[src*="icon-cat"],
.species-icon.xs[src*="icon-cat"],
.species-icons.xs .species-icon[src*="icon-poultry"],
.species-icon.xs[src*="icon-poultry"] { height: 30px; }

/* Product title row: single icon inline to the left of the product name */
.product-title-row {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 32px;
}
.product-title-row h2 { margin: 0 !important; }
.product-title-row .species-icons { flex-shrink: 0; }

/* ===== Mobile responsive ================================================== */

/* Hamburger button — hidden on desktop */
.mob-nav-btn { display: none; touch-action: manipulation; }

/* ---- Navigation ---------------------------------------------------------- */
@media (max-width: 768px) {
  /* Shrink header */
  .site-header .logo img { height: 52px; }
  .site-header .container { gap: 12px; padding: 12px var(--container-pad); }

  /* Re-show header-actions (an earlier rule hides it) and show hamburger */
  .header-actions { display: flex; }
  .mob-nav-btn { display: flex; padding: 11px; }

  /* Nav becomes a fullscreen drawer below the header.
     Override visibility/transform/max-width set by the earlier mobile nav block. */
  .site-nav {
    display: none;
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: none;
    background: var(--bg);
    z-index: 95;
    flex-direction: column;
    align-items: stretch;
    padding: 8px 0 32px;
    overflow-y: auto;
    gap: 0;
    border-top: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    transform: none;
    visibility: visible;
  }
  .site-nav.mob-open { display: flex; visibility: visible; transform: none; }
  body.mob-nav-open { overflow: hidden; }

  /* Nav items: full-width rows */
  .nav-item {
    width: 100%;
    border-bottom: 1px solid var(--border);
  }
  .nav-link {
    width: 100%;
    padding: 14px 20px;
    font-size: 17px;
    justify-content: space-between;
    display: flex;
  }

  /* Disable hover/focus-within dropdowns on mobile — use JS accordion */
  .nav-item:hover > .dropdown,
  .nav-item:focus-within > .dropdown { display: none; }
  .products-dropdown.mob-expanded > .dropdown { display: block !important; }

  /* Dropdown panel: flush, no floating card */
  .dropdown { position: static; padding-top: 0; }
  .dropdown-panel {
    box-shadow: none;
    border: none;
    border-radius: 0;
    padding: 0 0 8px 0;
    background: var(--bg-section);
    gap: 0;
    min-width: 0;
  }

  /* Category rows inside dropdown */
  .cat-group-label { padding: 8px 20px; }
  .cat-item { border-bottom: none; position: static; }
  .cat-row { padding: 11px 20px 11px 28px; font-size: 15px; }

  /* Disable hover flyout on mobile — use JS accordion */
  .cat-item:hover > .cat-flyout { display: none; }
  .cat-item.mob-cat-expanded > .cat-flyout { display: block !important; }

  /* Flyout panel: flush, indented */
  .cat-flyout { position: static; padding-left: 0; display: none; }
  .cat-flyout-panel {
    box-shadow: none;
    border: none;
    border-radius: 0;
    padding: 4px 0 8px 40px;
    background: var(--bg);
    width: 100%;
    min-width: 0;
  }
  .cat-flyout-panel .eyebrow { display: none; }
  .cat-flyout-panel .product-list { margin-top: 0; }
  .cat-flyout-panel .product-list a {
    white-space: normal;
    font-size: 14px;
    padding: 7px 20px 7px 0;
  }
  .dropdown-panel .eyebrow { padding-left: 28px; }
  .dropdown-panel .dropdown-items { padding-left: 28px; margin-top: 4px; }
}

/* ---- Grids & layout ------------------------------------------------------ */
@media (max-width: 768px) {
  /* Species card grid: single column */
  .species-card-grid { grid-template-columns: 1fr; }
  #human-otc { grid-column: auto !important; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 10px; }
  .footer-bottom .legal { flex-wrap: wrap; gap: 8px 20px; }

  /* Intro block (homepage "Built by veterinarians") */
  .intro-block-grid { grid-template-columns: 1fr; gap: 32px; }

  /* Product page: indication grid stack */
  .indication-grid { grid-template-columns: 1fr; }
  .product-detail-carousel { height: 300px; }

  /* Sizes grid: 2 columns */
  .sizes-grid { grid-template-columns: repeat(2, 1fr); }

  /* Spotlight topbar (Klentz banner on homepage) */
  .spotlight-topbar { flex-wrap: wrap; gap: 12px; }
  .spotlight-topbar-imgs { order: 0; width: 100%; justify-content: center; }
  .spotlight-topbar .spotlight-buttons { margin-left: 0; width: 100%; justify-content: center; }

  /* Product title row: stack on very small screens if needed */
  .product-title-row { gap: 12px; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .sizes-grid { grid-template-columns: 1fr; }
}

/* ---- Contact: adverse event box ------------------------------------------ */
@media (max-width: 900px) {
  .adverse-event-overlay {
    position: relative !important;
    bottom: auto !important;
    border-top: 3px solid var(--accent);
    border-radius: 0;
  }
}
