/* =====================================================================
   GARBHA CAROUSEL — scoped port of public/garbha-carousel.html inline CSS
   All selectors scoped under .garbha-croot so nothing leaks into the host
   page (which also loads /styles.css and /styles/products/product-page.css).
   ===================================================================== */

.garbha-croot {
  --bg-deep:        #0f1a24;
  --bg-deep-2:      #142433;
  --bg-cream:       #f6efe6;
  --bg-cream-2:     #efe5d6;
  --accent-rose:    #d97a82;
  --accent-rose-2:  #b85763;
  --accent-gold:    #c9a875;
  --accent-teal:    #4d8a8b;
  --ink:            #0f1a24;
  --ink-soft:       #3b4956;
  --ink-mute:       #6b7785;
  --line:           rgba(15, 26, 36, 0.12);
  --line-light:     rgba(246, 239, 230, 0.18);

  --serif:    'Fraunces', 'Georgia', serif;
  --sans:     'Inter Tight', -apple-system, system-ui, sans-serif;

  --slide-duration: 7000ms;

  /* re-applied body styles (scoped, no global leakage) */
  font-family: var(--sans);
  color: var(--ink);
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* scoped reset (replaces global * / html / body resets) */
.garbha-croot,
.garbha-croot * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ================================================================
   CAROUSEL CONTAINER
   ================================================================ */
.garbha-croot .carousel {
  position: relative;
  width: 100%;
  /* settled height (user request 2026-06-06): the slide content is now
     top-packed (copy + foot + raised visuals), so the earlier 98vh height
     left a large empty band at the bottom — trimmed back to fit. */
  height: clamp(640px, 75vh, 820px);
  min-height: 640px;
  max-height: 820px;
  overflow: hidden;
  background: #ffffff;
}

/* slide track */
.garbha-croot .carousel__track {
  position: relative;
  width: 100%;
  height: 100%;
}

.garbha-croot .slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 900ms cubic-bezier(.65,.05,.35,1),
              visibility 0s linear 900ms;
  will-change: opacity;
}

.garbha-croot .slide.is-active {
  opacity: 1;
  visibility: visible;
  transition: opacity 900ms cubic-bezier(.65,.05,.35,1),
              visibility 0s linear;
  z-index: 2;
}

/* shared slide layout — editorial 12-col grid */
.garbha-croot .slide__inner {
  position: relative;
  width: 100%;
  height: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: clamp(40px, 6vh, 72px) clamp(24px, 5vw, 80px);
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto 1fr auto;
  gap: 0 clamp(16px, 2vw, 32px);
}

/* tiny eyebrow label that sits at the top-left of every slide */
.garbha-croot .eyebrow {
  grid-column: 1 / -1;
  align-self: start;
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.garbha-croot .eyebrow__num {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0;
  text-transform: none;
}

.garbha-croot .eyebrow__line {
  flex: 0 0 56px;
  height: 1px;
  background: currentColor;
  opacity: 0.5;
}

/* main copy area — top-aligned so it sits right under the eyebrow instead
   of centering in the (now much taller) middle row */
.garbha-croot .slide__copy {
  grid-column: 1 / span 7;
  align-self: start;
  padding-top: clamp(20px, 4vh, 40px);
  max-width: 720px;
}

.garbha-croot .slide__copy h1 {
  font-family: var(--serif);
  font-weight: 400;
  /* reduced from clamp(40px, 5.5vw, 86px) — user request 2026-06-06 */
  font-size: clamp(34px, 4.2vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: clamp(18px, 2.5vh, 28px);
}

.garbha-croot .slide__copy h1 em {
  font-style: italic;
  font-weight: 300;
}

.garbha-croot .slide__copy h1 .accent {
  color: var(--accent-rose);
  font-style: italic;
  font-weight: 300;
}

.garbha-croot .slide__copy p {
  font-family: var(--sans);
  font-size: clamp(14px, 1vw, 15.5px);
  line-height: 1.6;
  font-weight: 400;
  max-width: 560px;
  margin-bottom: clamp(28px, 3.5vh, 40px);
}

/* CTA group */
.garbha-croot .ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.garbha-croot .btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 26px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-decoration: none;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform 280ms cubic-bezier(.4,.0,.2,1),
              background 240ms ease,
              color 240ms ease,
              border-color 240ms ease;
  cursor: pointer;
  white-space: nowrap;
}

.garbha-croot .btn .arrow {
  display: inline-block;
  transition: transform 320ms cubic-bezier(.4,.0,.2,1);
}

.garbha-croot .btn:hover .arrow { transform: translateX(4px); }

.garbha-croot .btn--primary {
  background: var(--accent-rose);
  color: #fff;
}

.garbha-croot .btn--primary:hover {
  background: var(--accent-rose-2);
  transform: translateY(-2px);
}

.garbha-croot .btn--ghost-dark {
  background: transparent;
  color: var(--ink);
  border-color: rgba(15, 26, 36, 0.25);
}

.garbha-croot .btn--ghost-dark:hover {
  background: var(--ink);
  color: var(--bg-cream);
  border-color: var(--ink);
}

.garbha-croot .btn--ghost-light {
  background: transparent;
  color: var(--bg-cream);
  border-color: rgba(246, 239, 230, 0.35);
}

.garbha-croot .btn--ghost-light:hover {
  background: var(--bg-cream);
  color: var(--ink);
  border-color: var(--bg-cream);
}

/* visual area on the right */
.garbha-croot .slide__visual {
  grid-column: 8 / span 5;
  grid-row: 2 / 3;
  align-self: center;
  justify-self: end;
  width: 100%;
  max-width: 420px;
  aspect-ratio: 1 / 1;
  position: relative;
}

/* slide footer — sits under copy */
.garbha-croot .slide__foot {
  grid-column: 1 / span 7;
  align-self: end;
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid currentColor;
  border-color: rgba(15, 26, 36, 0.12);
  opacity: 0.85;
}

.garbha-croot .slide__foot .stat {
  font-family: var(--serif);
}

.garbha-croot .slide__foot .stat strong {
  display: block;
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1;
}

.garbha-croot .slide__foot .stat span {
  display: block;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 6px;
  font-weight: 500;
  opacity: 0.7;
}

/* ================================================================
   SLIDE-SPECIFIC THEMES
   ================================================================ */

/* SLIDE 1 — white bg (was cream) */
.garbha-croot .slide--1 {
  background: #ffffff;
  color: var(--ink);
}
.garbha-croot .slide--1 .slide__foot { border-color: rgba(15, 26, 36, 0.12); }

/* SLIDE 2 — white bg (was deep navy) */
.garbha-croot .slide--2 {
  background: #ffffff;
  color: var(--ink);
}
.garbha-croot .slide--2 .slide__foot { border-color: rgba(15, 26, 36, 0.12); }
.garbha-croot .slide--2 .eyebrow,
.garbha-croot .slide--2 .slide__foot { color: var(--ink); }

/* SLIDE 3 — white bg (was cream-2) */
.garbha-croot .slide--3 {
  background: #ffffff;
  color: var(--ink);
}
.garbha-croot .slide--3 .slide__foot { border-color: rgba(15, 26, 36, 0.12); }

/* ================================================================
   SLIDE 1 VISUAL — orbiting cell illustration
   ================================================================ */
.garbha-croot .visual--cell {
  display: flex;
  align-items: center;
  justify-content: center;
}

.garbha-croot .cell-stage {
  position: relative;
  width: 100%;
  height: 100%;
  max-width: 460px;
  max-height: 460px;
}

/* concentric rings */
.garbha-croot .cell-stage .ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  border: 1px solid rgba(15, 26, 36, 0.18);
  transform: translate(-50%, -50%);
}
.garbha-croot .cell-stage .ring--1 { width: 96%; height: 96%; }
.garbha-croot .cell-stage .ring--2 { width: 76%; height: 76%; border-style: dashed; opacity: 0.6; }
.garbha-croot .cell-stage .ring--3 { width: 56%; height: 56%; }

/* central oocyte */
.garbha-croot .cell-stage .oocyte {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 38%;
  height: 38%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 35%, #fff 0%, #f4d8d6 30%, #d97a82 75%, #b85763 100%);
  box-shadow:
    0 30px 60px -20px rgba(184, 87, 99, 0.45),
    inset -16px -20px 40px rgba(184, 87, 99, 0.25),
    inset 16px 16px 28px rgba(255, 255, 255, 0.4);
}

.garbha-croot .cell-stage .oocyte::after {
  content: '';
  position: absolute;
  top: 30%;
  left: 30%;
  width: 22%;
  height: 22%;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #fff 0%, #fbeae8 60%, #d97a82 100%);
  opacity: 0.8;
}

/* orbiting markers */
.garbha-croot .cell-stage .marker {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--ink);
  transform-origin: 0 0;
}
.garbha-croot .cell-stage .marker--1 { transform: rotate(20deg) translateX(46%) translate(-50%, -50%); background: var(--accent-rose); }
.garbha-croot .cell-stage .marker--2 { transform: rotate(105deg) translateX(46%) translate(-50%, -50%); background: var(--accent-gold); }
.garbha-croot .cell-stage .marker--3 { transform: rotate(195deg) translateX(46%) translate(-50%, -50%); background: var(--ink); }
.garbha-croot .cell-stage .marker--4 { transform: rotate(290deg) translateX(46%) translate(-50%, -50%); background: var(--accent-teal); }

/* annotation labels */
.garbha-croot .cell-stage .label {
  position: absolute;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0;
  color: var(--ink-soft);
  white-space: nowrap;
}
.garbha-croot .cell-stage .label::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1px;
  background: currentColor;
  vertical-align: middle;
  margin-right: 8px;
  opacity: 0.6;
}
.garbha-croot .cell-stage .label--tl { top: 8%; left: 4%; }
.garbha-croot .cell-stage .label--tr { top: 14%; right: 4%; }
.garbha-croot .cell-stage .label--br { bottom: 18%; right: 0; }
.garbha-croot .cell-stage .label--bl { bottom: 6%; left: 4%; }

/* slow rotation for the outermost dashed ring */
@keyframes garbha-ringRotate {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to   { transform: translate(-50%, -50%) rotate(360deg); }
}
.garbha-croot .slide.is-active .cell-stage .ring--2 {
  animation: garbha-ringRotate 60s linear infinite;
}

/* ================================================================
   SLIDE 2 VISUAL — award badge / trophy moment
   ================================================================ */
.garbha-croot .visual--award {
  display: flex;
  align-items: center;
  justify-content: center;
}

.garbha-croot .award-stack {
  position: relative;
  width: 100%;
  height: 100%;
  max-width: 460px;
  max-height: 460px;
}

.garbha-croot .award-stack .glow {
  position: absolute;
  inset: 8% 12%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 168, 117, 0.35) 0%, transparent 65%);
  filter: blur(20px);
}

.garbha-croot .award-medal {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64%;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 30%, #f5dca5 0%, #c9a875 38%, #8c6e3f 100%);
  box-shadow:
    0 40px 80px -30px rgba(140, 110, 63, 0.6),
    inset 0 4px 10px rgba(255, 255, 255, 0.4),
    inset 0 -10px 20px rgba(60, 40, 10, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
}

.garbha-croot .award-medal .year {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.08em;
  color: rgba(15, 26, 36, 0.55);
  margin-bottom: 6px;
}

.garbha-croot .award-medal .word {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.garbha-croot .award-medal .word em {
  font-style: italic;
  font-weight: 400;
}

.garbha-croot .award-medal .divider {
  width: 36px;
  height: 1px;
  background: rgba(15, 26, 36, 0.4);
  margin: 14px 0;
}

.garbha-croot .award-medal .small {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(15, 26, 36, 0.65);
}

.garbha-croot .award-stack .ribbon-l,
.garbha-croot .award-stack .ribbon-r {
  position: absolute;
  top: 50%;
  width: 18%;
  height: 56%;
  background: linear-gradient(180deg, var(--accent-rose) 0%, var(--accent-rose-2) 100%);
  transform-origin: top center;
}
.garbha-croot .award-stack .ribbon-l {
  left: 28%;
  transform: translateY(-12%) rotate(-10deg);
  clip-path: polygon(0 0, 100% 0, 100% 88%, 50% 100%, 0 88%);
  opacity: 0.92;
}
.garbha-croot .award-stack .ribbon-r {
  right: 28%;
  transform: translateY(-12%) rotate(10deg);
  clip-path: polygon(0 0, 100% 0, 100% 88%, 50% 100%, 0 88%);
  opacity: 0.92;
}

/* ================================================================
   SLIDE 3 VISUAL — embryo selection grid
   ================================================================ */
.garbha-croot .visual--grid {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Desktop-only: smaller embryo grid, raised to sit level with the
   top-aligned copy instead of centering in the tall middle row.
   (min-width guard so the mobile .slide__visual sizing keeps winning.) */
@media (min-width: 961px) {
  .garbha-croot .slide__visual.visual--grid {
    max-width: 340px;
    align-self: start;
    /* just enough clearance for the floating EmbryoScore badge (top: -8px) */
    padding-top: 10px;
  }

  /* Orbiting-cell visual (slide 1): raised toward the top like the grid,
     instead of centering in the tall middle rows. */
  .garbha-croot .slide__visual.visual--cell {
    align-self: start;
    padding-top: 10px;
  }

  /* Keep the stats footer right under the copy instead of pinned to the
     bottom of the tall carousel: the copy row sizes to its content (auto),
     the foot follows it, and the visual spans both rows alongside. */
  .garbha-croot .slide__inner { grid-template-rows: auto auto 1fr; }
  .garbha-croot .slide__visual { grid-row: 2 / span 2; }
  .garbha-croot .slide__foot {
    align-self: start;
    margin-top: clamp(20px, 3vh, 32px);
  }
}

.garbha-croot .embryo-grid {
  position: relative;
  width: 100%;
  max-width: 420px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(15, 26, 36, 0.10);
  border-radius: 6px;
  backdrop-filter: blur(8px);
  box-shadow: 0 30px 80px -30px rgba(15, 26, 36, 0.25);
}

.garbha-croot .embryo-grid .cell {
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 38% 38%, #fff 0%, #f4d8d6 35%, #d97a82 90%);
  border: 1px solid rgba(15, 26, 36, 0.08);
  position: relative;
  overflow: hidden;
  box-shadow: inset -8px -10px 20px rgba(184, 87, 99, 0.18);
}

.garbha-croot .embryo-grid .cell::after {
  content: '';
  position: absolute;
  top: 28%; left: 28%;
  width: 28%; height: 28%;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #fff 0%, #f9c8c4 100%);
  opacity: 0.6;
}

.garbha-croot .embryo-grid .cell.selected {
  box-shadow:
    inset -8px -10px 20px rgba(184, 87, 99, 0.18),
    0 0 0 3px var(--accent-teal),
    0 0 0 6px rgba(77, 138, 139, 0.15);
}

.garbha-croot .embryo-grid .cell.selected::before {
  content: '';
  position: absolute;
  top: -2px; right: -2px;
  width: 22px; height: 22px;
  background: var(--accent-teal);
  border-radius: 50%;
  box-shadow: 0 0 0 3px var(--bg-cream-2);
}

.garbha-croot .embryo-grid .score-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--ink);
  color: var(--bg-cream);
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 13px;
  padding: 8px 14px;
  border-radius: 999px;
  letter-spacing: 0;
  box-shadow: 0 12px 24px -8px rgba(15, 26, 36, 0.4);
}

.garbha-croot .embryo-grid .score-badge strong {
  font-style: normal;
  font-weight: 500;
  color: var(--accent-rose);
}

/* ================================================================
   PROGRESS / NAV CONTROLS
   ================================================================ */
.garbha-croot .carousel__nav {
  position: absolute;
  bottom: clamp(20px, 4vh, 36px);
  right: clamp(24px, 5vw, 80px);
  z-index: 10;
  display: flex;
  gap: 10px;
}

.garbha-croot .carousel__nav button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid currentColor;
  background: transparent;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 240ms ease, color 240ms ease;
  color: inherit;
}
.garbha-croot .carousel__nav button:hover {
  background: currentColor;
}
.garbha-croot .carousel__nav button:hover svg {
  stroke: var(--bg-cream);
}
/* invert hover for dark slides */
.garbha-croot .slide--2.is-active ~ .carousel__nav button:hover svg { stroke: var(--ink); }

.garbha-croot .carousel__nav svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 1.5;
  fill: none;
  transition: stroke 240ms ease;
}

/* progress dots + progress bar */
.garbha-croot .carousel__progress {
  position: absolute;
  bottom: clamp(20px, 4vh, 36px);
  left: clamp(24px, 5vw, 80px);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 13px;
  color: inherit;
}

.garbha-croot .carousel__dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.garbha-croot .carousel__dot {
  position: relative;
  width: 32px;
  height: 2px;
  background: currentColor;
  opacity: 0.25;
  border: 0;
  padding: 0;
  cursor: pointer;
  transition: opacity 240ms ease;
}
.garbha-croot .carousel__dot:hover { opacity: 0.5; }
.garbha-croot .carousel__dot.is-active { opacity: 1; }

.garbha-croot .carousel__dot.is-active::after {
  content: '';
  position: absolute;
  inset: 0;
  background: currentColor;
  animation: garbha-progressFill var(--slide-duration) linear forwards;
  transform-origin: left;
}

@keyframes garbha-progressFill {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}

/* nav adapts color to active slide via `data-theme` on the carousel root */
.garbha-croot .carousel[data-theme="cream"] .carousel__nav,
.garbha-croot .carousel[data-theme="cream"] .carousel__progress { color: var(--ink); }
.garbha-croot .carousel[data-theme="dark"] .carousel__nav,
.garbha-croot .carousel[data-theme="dark"] .carousel__progress { color: var(--bg-cream); }

/* ================================================================
   ENTRANCE ANIMATIONS for active slide content
   ================================================================ */
@keyframes garbha-rise {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.garbha-croot .slide.is-active .eyebrow      { animation: garbha-rise 700ms cubic-bezier(.2,.7,.2,1) 100ms both; }
.garbha-croot .slide.is-active h1            { animation: garbha-rise 900ms cubic-bezier(.2,.7,.2,1) 220ms both; }
.garbha-croot .slide.is-active p             { animation: garbha-rise 700ms cubic-bezier(.2,.7,.2,1) 480ms both; }
.garbha-croot .slide.is-active .ctas         { animation: garbha-rise 700ms cubic-bezier(.2,.7,.2,1) 620ms both; }
.garbha-croot .slide.is-active .slide__foot  { animation: garbha-rise 700ms cubic-bezier(.2,.7,.2,1) 760ms both; }
.garbha-croot .slide.is-active .slide__visual{ animation: garbha-rise 1000ms cubic-bezier(.2,.7,.2,1) 280ms both; }

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 960px) {
  .garbha-croot .carousel {
    height: auto;
    min-height: clamp(475px, 70vh, 700px);
    max-height: none;
  }
  .garbha-croot .carousel__track {
    height: auto;
    min-height: clamp(475px, 70vh, 700px);
  }
  .garbha-croot .slide {
    position: relative;
    inset: auto;
    display: none;
  }
  .garbha-croot .slide.is-active {
    display: block;
  }
  .garbha-croot .slide__inner {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto auto auto;
    padding: 56px 24px 72px;
    gap: 32px;
    min-height: clamp(475px, 70vh, 700px);
  }
  .garbha-croot .slide__copy,
  .garbha-croot .slide__foot { grid-column: 1 / -1; }
  .garbha-croot .slide__visual {
    grid-column: 1 / -1;
    grid-row: auto;
    order: 1;
    max-width: 280px;
    justify-self: center;
    margin-bottom: 8px;
  }
  /* the desktop-only top padding (eyebrow gap fix) is not wanted here —
     on mobile the copy follows the visual, not the eyebrow */
  .garbha-croot .slide__copy { order: 2; padding-top: 0; }
  .garbha-croot .slide__foot { order: 3; gap: 24px; }
  .garbha-croot .slide__copy h1 { font-size: clamp(36px, 9vw, 56px); }
  .garbha-croot .carousel__nav { right: 24px; bottom: 20px; }
  .garbha-croot .carousel__progress { left: 24px; bottom: 20px; }
  .garbha-croot .embryo-grid { padding: 16px; gap: 10px; }
}

@media (prefers-reduced-motion: reduce) {
  .garbha-croot .slide,
  .garbha-croot .slide.is-active * {
    animation: none !important;
    transition: opacity 200ms ease !important;
  }
  .garbha-croot .carousel__dot.is-active::after { animation: none; transform: scaleX(1); }
}

/* ---- Host-page isolation shim ----------------------------------------
   These carousels used to live in an <iframe>, so global element rules
   from /styles.css and product-page.css never reached them. Inline, two
   bare-element rules leak in: `footer { background: var(--ink-950); … }`
   (styles.css) and `a { color: var(--electric-bright) }` (product-page.css).
   Neutralize them; class-based carousel rules still override these. */
.garbha-croot footer { background: transparent; border-top: 0; padding: 0; }
.garbha-croot a { color: inherit; }
