/** Shopify CDN: Minification failed

Line 14431:15 Expected identifier but found whitespace
Line 14431:17 Unexpected "{"
Line 14431:26 Expected ":"

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:collection-links (INDEX:2) */
collection-links-component {
    --alignment: flex-start;

    display: grid;
    align-items: center;
    grid-gap: var(--gap-3xl);

    &:has([ratio='portrait']) {
      --template-column-ratio: 0.8fr;
    }

    &:has([ratio='square']) {
      --template-column-ratio: 1fr;
    }

    &:has([ratio='landscape']) {
      --template-column-ratio: 1.4fr;
    }

    &[alignment='center'] {
      --alignment: center;

      .text-block {
        text-align: center;
      }
    }

    &[alignment='right'] {
      --alignment: flex-end;

      .text-block {
        text-align: right;
      }
    }

    &[layout='spotlight'] {
      position: relative;
      grid-template-columns: 1fr var(--template-column-ratio);
      grid-template-areas: 'text image';

      @media screen and (min-width: 750px) {
        &[reverse] {
          grid-template-areas: 'image text';
          grid-template-columns: var(--template-column-ratio) 1fr;
        }
      }

      .collection-links__container {
        align-items: var(--alignment);
      }

      @media screen and (max-width: 749px) {
        grid-template-columns: 1fr;
        grid-template-areas: 'text' 'image';
        grid-gap: var(--gap-2xl);

        .collection-links__container {
          gap: clamp(var(--gap-xs), 1vw, var(--gap-xl)) var(--gap-2xl);
          justify-content: var(--alignment);
        }
      }
    }

    &[layout='text'] {
      grid-gap: 0;
      grid-template-areas: 'text';

      .collection-links__container {
        gap: clamp(var(--gap-xs), 1vw, var(--gap-xl)) var(--gap-2xl);
        flex-wrap: wrap;
        flex-direction: row;
        justify-content: var(--alignment);
      }
    }
  }

  .collection-links__container {
    display: flex;
    gap: var(--gap-md);
    flex-direction: column;
  }

  .collection-links__images {
    overflow: hidden;
    grid-area: image;

    @media screen and (max-width: 749px) {
      image-block {
        max-width: 100%;
      }
    }
  }
/* END_SECTION:collection-links */

/* START_SECTION:featured-product (INDEX:8) */
.featured-product-section .section-content-wrapper {
    grid-template-columns: 1fr;
    display: grid;
    overflow: hidden;

    @media screen and (min-width: 750px) {
      grid-template-columns: 1fr 1fr;
    }
  }

  .featured-product-section {
    --viewport-offset: 400px;
    --constrained-min-height: var(--visual-preview--height, 80dvh);
    --constrained-height: max(var(--constrained-min-height), calc(100vh - var(--viewport-offset)));

    @media screen and (min-width: 750px) {
      --viewport-offset: 300px;
    }
  }

  .featured-product-section .product-grid__card {
    --padding-block: 20px;
    --padding-inline: 20px;

    @media screen and (min-width: 750px) {
      --padding-block: 40px;
      --padding-inline: 40px;
    }
  }

  @media screen and (max-width: 749px) {
    .featured-product-section .media-block {
      order: -1;
    }
  }

  @media screen and (min-width: 750px) {
    .featured-product-section .product-card__content {
      --hugged-width: calc(var(--constrained-height) * var(--gallery-aspect-ratio, var(--media-preview-ratio)));
      width: min(100%, var(--hugged-width));
      margin-left: auto;
      margin-right: auto;
    }
  }
/* END_SECTION:featured-product */

/* START_SECTION:footer-utilities (INDEX:9) */
.utilities {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--gap);
    text-wrap: nowrap;
    border-top: var(--border-width) solid var(--color-border);
    color: var(--color-foreground-muted);

    @media screen and (min-width: 750px) {
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      justify-content: center;
      gap: var(--gap);
      align-items: center;
      text-align: left;
    }
  }

  .utilities a {
    color: var(--color-foreground-muted);
  }

  .utilities > * {
    text-align: center;

    @media screen and (min-width: 750px) {
      text-align: left;
      justify-self: start;
    }
  }

  /* Dynamic positioning based on number of blocks */
  @media screen and (min-width: 750px) {
    /* 1 block: Single column, left aligned */
    .utilities--blocks-1 {
      grid-template-columns: 1fr;
      justify-content: start;
    }

    .utilities--blocks-1 > * {
      justify-self: start;
      text-align: left;
    }

    /* 2 blocks: Two equal columns, start and end aligned */
    .utilities--blocks-2 {
      grid-template-columns: 1fr 1fr;
    }

    .utilities--blocks-2 > *:nth-child(2) {
      justify-self: end;
      text-align: right;
    }

    /* 3 blocks: Three columns (1fr auto 1fr), start/center/end aligned */
    .utilities--blocks-3 {
      grid-template-columns: 1fr auto 1fr;
    }

    .utilities--blocks-3 > *:nth-child(2) {
      justify-self: center;
      text-align: center;
    }

    .utilities--blocks-3 > *:nth-child(3) {
      justify-self: end;
      text-align: right;
    }
  }
/* END_SECTION:footer-utilities */

/* START_SECTION:footer (INDEX:10) */
.footer-content {
    contain: content;
    content-visibility: auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--footer-gap);
    align-items: start;
  }

  .footer-content .menu__heading__default {
    font-weight: var(--font-heading--weight);
  }

  /* Accordion mode (mobile, and desktop when show_as_accordion is on)
     swaps in .menu__heading__accordion instead of .menu__heading__default
     — the rule above never reaches it, which is why the paragraph-size
     footer menu headings weren't picking up bold. */
  .footer-content .menu__heading__accordion {
    font-weight: 700;
  }

  @media screen and (min-width: 750px) and (max-width: 989px) {
    .footer-content {
      grid-template-columns: repeat(min(var(--grid-columns), 3), 1fr);
      grid-auto-flow: row;
    }

    .footer-content[style*='--grid-columns: 4'] {
      grid-template-columns: repeat(2, 1fr);
    }

    .footer-content--isolated-grid-item-tablet > :last-child {
      grid-column: 1 / -1;
    }
  }

  @media screen and (min-width: 990px) {
    .footer-content {
      grid-template-columns: repeat(var(--grid-columns), 1fr);
    }

    /* Single item centered */
    .footer-content[style*='--grid-columns: 1'] {
      justify-items: center;
    }

    .footer-content--isolated-grid-item-desktop > :last-child {
      grid-column: 1 / -1;
    }
  }
/* END_SECTION:footer */

/* START_SECTION:he-announcement-bar-test (INDEX:12) */
.he-anntest-bar {
    border-block-end: var(--border-bottom-width) solid var(--color-border);
  }

  .he-anntest-slider {
    display: flex;
    flex-direction: row;
    align-items: center;
    position: relative;

    @media screen and (max-width: 749px) {
      grid-column: 1 / -1;
    }
  }

  .he-anntest-slides {
    display: grid;
    grid: [stack] auto / [stack] auto;
    /* Always stretch to fill the row, not shrink to fit the text.
       (--button-size only exists when arrow controls render — i.e. 2+
       blocks — so calc()-ing against it unconditionally, as the native
       bar does, makes this whole declaration invalid with a single
       block, silently falling back to content-based/shrink-to-fit
       sizing. flex + min-width:0 sizes correctly either way.) */
    width: 100%;
    flex: 1 1 auto;
    min-width: 0;
    margin-inline: auto;
  }

  .he-anntest-slides > * {
    grid-area: stack;
  }

  .he-anntest-slide {
    transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
    content-visibility: visible;

    &[aria-hidden='true'] {
      opacity: 0;
      visibility: hidden;
    }
  }

  .he-anntest-slider slideshow-arrows {
    padding: 0;
    mix-blend-mode: normal;
  }

  .he-anntest-slider slideshow-arrows .slideshow-control {
    color: var(--color-foreground);
  }

  .he-anntest-slider .slideshow-control {
    display: flex;
    padding: 0;
    width: var(--button-size);
    height: var(--button-size);
    align-items: center;
    justify-content: center;
    opacity: 1;
    animation: none;

    @media screen and (min-width: 750px) {
      --slideshow-control-offset: calc((var(--button-size) - var(--icon-size-xs)) / 2);

      .section--page-width &.slideshow-control--previous {
        transform: translateX(var(--slideshow-control-offset));
      }
    }
  }

  .he-anntest-slider .slideshow-control .svg-wrapper {
    width: var(--icon-size-xs);
    height: var(--icon-size-xs);
  }

  .he-anntest-slide {
    place-content: center;
  }

  .announcement-bar__text:first-child {
    margin: 0;
  }

  .he-anntest-link {
    position: absolute;
    inset: 0;
  }
/* END_SECTION:he-announcement-bar-test */

/* START_SECTION:he-bp-article (INDEX:13) */
.he-bp-article {
  --he-ink: #0C0C0C;
  --he-body-ink: #1F1F1F;
  --he-grey: #5A5A5A;
  --he-muted: #8A8A8A;
  --he-cream: #FAF8F4;
  --he-line: rgba(12,12,12,.08);
  --he-line-soft: rgba(12,12,12,.04);
  --he-purple: #5B4B9E;
  --he-purple-deep: #463a7d;
  --he-purple-wash: #F0EDF7;
  --he-purple-soft: rgba(91,75,158,.08);
  --he-yellow: #F8E9C3;
  background: #ffffff;
  color: var(--he-body-ink);
  padding: 16px 20px 80px;
}

.he-bp-article__inner {
  max-width: var(--body-max, 720px);
  margin: 0 auto;
}

/* Breadcrumb */
.he-bp-article__crumbs {
  font-family: var(--font-accent--family);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .01em;
  color: var(--he-ink);
  margin: 0 0 28px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}
.he-bp-article__crumbs a {
  color: var(--he-ink);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}
.he-bp-article__crumb-sep { color: var(--he-muted); }
.he-bp-article__crumbs--bottom {
  margin: 72px 0 0;
  padding-top: 28px;
  border-top: 1px solid var(--he-line);
}
.he-bp-article__crumbs--bottom a { text-decoration: none; color: var(--he-purple); }

/* Header */
.he-bp-article__header { padding: 0 0 16px; }

.he-bp-article__updated-top {
  font-family: var(--font-body--family);
  font-size: 14px;
  color: var(--he-body-ink);
  margin: 0 0 12px;
  font-weight: 400;
}
.he-bp-article__updated-top time { color: var(--he-body-ink); }

.he-bp-article__badge {
  display: inline-block;
  margin: 0 0 22px;
  line-height: 0;
}
.he-bp-article__badge img {
  height: 30px;
  width: auto;
  display: block;
}
@media (min-width: 750px) {
  .he-bp-article__badge img { height: 34px; }
}

.he-bp-article__title {
  font-family: var(--font-heading--family);
  font-size: 38px;
  line-height: 1.05;
  letter-spacing: -.028em;
  font-weight: 800;
  color: var(--he-ink);
  margin: 0 0 14px;
}

.he-bp-article__dek {
  font-family: var(--font-body--family);
  font-size: 18px;
  line-height: 1.4;
  color: var(--he-grey);
  margin: 0 0 18px;
  font-weight: 400;
}

/* Byline with avatar */
.he-bp-article__byline {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin: 0 0 14px;
}
.he-bp-article__avatar {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--he-cream);
}
.he-bp-article__avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.he-bp-article__byline-meta { flex: 1; min-width: 0; }

.he-bp-article__byline-text {
  font-family: var(--font-body--family);
  font-size: 14px;
  line-height: 1.5;
  color: var(--he-body-ink);
  margin: 0 0 4px;
}
.he-bp-article__by { font-weight: 600; color: var(--he-ink); }
.he-bp-article__author-link,
.he-bp-article__reviewer-link {
  color: var(--he-ink);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.he-bp-article__credential-sep { color: var(--he-muted); margin: 0 6px 0 4px; font-weight: 300; }
.he-bp-article__credential { color: var(--he-grey); font-weight: 400; }
.he-bp-article__reading {
  font-family: var(--font-body--family);
  font-size: 13px;
  color: var(--he-muted);
  margin: 0;
  font-weight: 400;
}

.he-bp-article__reviewed {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px 6px 8px;
  background: #F2F2F0;
  border-radius: 999px;
  font-family: var(--font-body--family);
  font-size: 13px;
  color: var(--he-ink);
  margin: 4px 0 0;
}
.he-bp-article__reviewed-icon {
  color: var(--he-ink);
  display: inline-flex;
  flex: 0 0 auto;
}
.he-bp-article__reviewer-role {
  color: var(--he-grey);
  font-weight: 400;
  margin-left: 4px;
}

/* Save + Share */
.he-bp-article__actions {
  display: inline-flex;
  align-items: center;
  gap: 0;
  padding: 3px;
  border: 1px solid var(--he-line);
  border-radius: 999px;
  margin: 10px 0 0;
}
.he-bp-article__action-btn {
  background: transparent;
  border: 0;
  padding: 10px 16px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-body--family);
  font-size: 14px;
  font-weight: 500;
  color: var(--he-ink);
  cursor: pointer;
  border-radius: 999px;
  transition: background .15s ease;
}
.he-bp-article__action-btn:hover { background: var(--he-cream); }
.he-bp-article__action-btn[aria-pressed="true"] {
  background: var(--he-purple-soft);
  color: var(--he-purple);
}
.he-bp-article__action-btn[aria-pressed="true"] svg { fill: var(--he-purple); stroke: var(--he-purple); }
.he-bp-article__action-sep {
  width: 1px;
  height: 20px;
  background: var(--he-line);
}

/* Hero: full width always (never cropped on the sides), only the height is clipped,
   centered so the trim is even top and bottom. */
.he-bp-article__hero {
  margin: 4px 0 18px;
  overflow: hidden;
  background: var(--he-cream);
  border-radius: var(--he-card-radius, 14px);
  max-height: 440px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.he-bp-article__hero-img,
.he-bp-article__hero img {
  width: 100%;
  height: auto;
  display: block;
}
@media (min-width: 750px) {
  .he-bp-article__hero { max-height: 560px; }
}
.he-bp-article__hero-caption {
  font-family: var(--font-body--family);
  font-size: 13px;
  color: var(--he-grey);
  margin: 10px 0 0;
  padding: 0 4px;
}

/* Commerce disclosure */
.he-bp-article__disclosure {
  font-family: var(--font-body--family);
  font-size: 13px;
  font-style: italic;
  color: var(--he-grey);
  border-top: 1px solid var(--he-line);
  border-bottom: 1px solid var(--he-line);
  padding: 14px 0;
  margin: 0 0 32px;
  line-height: 1.55;
}
.he-bp-article__disclosure a {
  color: var(--he-ink);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Body typography — Lora serif, magazine-editorial feel (matches Women's Health body text) */
.he-bp-article__body {
  font-family: 'Lora', Georgia, 'Times New Roman', serif;
  font-size: 18px;
  line-height: 1.65;
  color: var(--he-body-ink);
  font-weight: 400;
}
.he-bp-article__body p,
.he-bp-article__body li,
.he-bp-article__body blockquote {
  font-family: 'Lora', Georgia, 'Times New Roman', serif;
}
.he-bp-article__body > *:first-child { margin-top: 0; }
.he-bp-article__body p { margin: 0 0 1.5em; }
.he-bp-article__body h2 {
  font-family: var(--font-heading--family);
  font-size: 30px;
  line-height: 1.15;
  letter-spacing: -.028em;
  font-weight: 800;
  color: var(--he-ink);
  margin: 2.4em 0 0.7em;
  scroll-margin-top: 24px;
}
.he-bp-article__body h3 {
  font-family: 'Lora', Georgia, 'Times New Roman', serif;
  font-size: 24px;
  line-height: 1.25;
  font-weight: 700;
  color: var(--he-ink);
  margin: 2em 0 0.55em;
  letter-spacing: -.008em;
}
.he-bp-article__body h4 {
  font-family: var(--font-heading--family);
  font-size: 18px;
  font-weight: 700;
  color: var(--he-ink);
  margin: 1.6em 0 0.45em;
}
.he-bp-article__body ul,
.he-bp-article__body ol {
  margin: 0 0 1.5em;
  padding-left: 1.4em;
}
.he-bp-article__body li { margin: 0.5em 0; }
.he-bp-article__body strong { color: var(--he-ink); font-weight: 700; }

/* Inline link treatment for explainer links */
.he-bp-article__body a {
  color: var(--he-purple);
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 3px;
  font-weight: 500;
}
.he-bp-article__body a:hover { color: var(--he-purple-deep); }

.he-bp-article__body blockquote {
  margin: 1.8em 0;
  padding: 4px 0 4px 24px;
  border-left: 3px solid var(--he-purple);
  font-style: italic;
  color: var(--he-purple-deep);
}
.he-bp-article__body img {
  max-width: 100%;
  height: auto;
  border-radius: var(--he-card-radius, 14px);
  margin: 1.5em 0;
  display: block;
}
.he-bp-article__body hr {
  border: 0;
  border-top: 1px solid var(--he-line);
  margin: 2.5em 0;
}

/* ============ INLINE EDITORIAL BLOCK PATTERNS ============ */

/* Key Takeaways box (TL;DR at top) */
.he-bp-article__body .he-bp-takeaways {
  background: var(--he-cream);
  border-radius: 14px;
  padding: 24px 22px;
  margin: 0 0 36px;
}
.he-bp-article__body .he-bp-takeaways__label {
  font-family: var(--font-accent--family);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--he-purple);
  margin: 0 0 10px;
}
.he-bp-article__body .he-bp-takeaways__title {
  font-family: var(--font-heading--family);
  font-size: 17px;
  line-height: 1.4;
  font-weight: 700;
  color: var(--he-ink);
  margin: 0 0 14px;
}
.he-bp-article__body .he-bp-takeaways ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.he-bp-article__body .he-bp-takeaways li {
  position: relative;
  padding: 8px 0 8px 26px;
  border-top: 1px solid rgba(12,12,12,.07);
  font-size: 15px;
  line-height: 1.55;
  color: var(--he-body-ink);
}
.he-bp-article__body .he-bp-takeaways li:first-child { border-top: 0; }
.he-bp-article__body .he-bp-takeaways li::before {
  content: "→";
  position: absolute;
  left: 0;
  top: 8px;
  color: var(--he-purple);
  font-weight: 700;
}

/* Quick check callout (purple-tinted) */
.he-bp-article__body .he-bp-callout {
  background: var(--he-purple-wash);
  border-radius: 14px;
  padding: 20px 22px;
  margin: 2em 0;
}
.he-bp-article__body .he-bp-callout__label {
  font-family: var(--font-accent--family);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--he-purple);
  margin: 0 0 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.he-bp-article__body .he-bp-callout__label::before {
  content: "✓";
  background: var(--he-purple);
  color: #fff;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
}
.he-bp-article__body .he-bp-callout p {
  margin: 0 0 0.5em;
  font-size: 15px;
  line-height: 1.6;
  color: var(--he-body-ink);
}
.he-bp-article__body .he-bp-callout p:last-child { margin: 0; }

/* Note box (yellow) */
.he-bp-article__body .he-bp-note {
  background: #FFF8E1;
  border-left: 4px solid #E5B935;
  padding: 16px 20px;
  margin: 2em 0;
  border-radius: 0 12px 12px 0;
}
.he-bp-article__body .he-bp-note__label {
  font-family: var(--font-accent--family);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #8A6A0F;
  margin: 0 0 6px;
}
.he-bp-article__body .he-bp-note p { margin: 0; font-size: 15px; line-height: 1.55; color: #4A3700; }

/* Type card (for the four under-eye types) */
.he-bp-article__body .he-bp-type {
  border: 1px solid var(--he-line);
  border-radius: 16px;
  padding: 22px;
  margin: 1.6em 0;
  background: #fff;
}
.he-bp-article__body .he-bp-type__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 14px;
}
.he-bp-article__body .he-bp-type__num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--he-purple-wash);
  color: var(--he-purple);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading--family);
  font-weight: 700;
  font-size: 14px;
  flex: 0 0 auto;
}
.he-bp-article__body .he-bp-type__title {
  font-family: var(--font-heading--family);
  font-size: 19px;
  font-weight: 700;
  margin: 0;
  color: var(--he-ink);
  line-height: 1.3;
}
.he-bp-article__body .he-bp-type__intro {
  font-size: 15px;
  line-height: 1.6;
  color: var(--he-body-ink);
  margin: 0 0 14px;
}
.he-bp-article__body .he-bp-type__row {
  display: flex;
  gap: 10px;
  padding: 10px 0;
  border-top: 1px solid var(--he-line-soft);
  font-size: 14px;
  line-height: 1.5;
}
.he-bp-article__body .he-bp-type__row strong {
  flex: 0 0 110px;
  font-weight: 700;
  color: var(--he-ink);
}

/* Treatment ladder rung */
.he-bp-article__body .he-bp-rung {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  padding: 18px 0;
  border-top: 1px solid var(--he-line);
}
.he-bp-article__body .he-bp-rung:last-of-type { border-bottom: 1px solid var(--he-line); }
.he-bp-article__body .he-bp-rung__level {
  font-family: var(--font-accent--family);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--he-purple);
  background: var(--he-purple-wash);
  padding: 4px 10px;
  border-radius: 100px;
  height: fit-content;
  white-space: nowrap;
}
.he-bp-article__body .he-bp-rung__body { min-width: 0; }
.he-bp-article__body .he-bp-rung__title {
  font-family: var(--font-heading--family);
  font-size: 18px;
  font-weight: 700;
  color: var(--he-ink);
  margin: 0 0 4px;
  line-height: 1.3;
}
.he-bp-article__body .he-bp-rung__cost {
  font-size: 13px;
  color: var(--he-grey);
  margin: 0 0 8px;
  font-family: var(--font-body--family);
}
.he-bp-article__body .he-bp-rung p {
  margin: 0 0 0.5em;
  font-size: 15px;
  line-height: 1.55;
}

/* Inline product card (Honest Shades) */
.he-bp-article__body .he-bp-product {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border: 1px solid var(--he-line);
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  margin: 2.4em 0;
}
.he-bp-article__body .he-bp-product__media {
  aspect-ratio: 4 / 3;
  background: var(--he-cream);
  overflow: hidden;
}
.he-bp-article__body .he-bp-product__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin: 0;
  border-radius: 0;
  display: block;
}
.he-bp-article__body .he-bp-product__body { padding: 24px 22px; }
.he-bp-article__body .he-bp-product__eyebrow {
  font-family: var(--font-accent--family);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--he-purple);
  margin: 0 0 8px;
}
.he-bp-article__body .he-bp-product__title {
  font-family: var(--font-heading--family);
  font-size: 22px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -.015em;
  margin: 0 0 8px;
  color: var(--he-ink);
}
.he-bp-article__body .he-bp-product__price {
  font-size: 16px;
  margin: 0 0 12px;
  color: var(--he-ink);
}
.he-bp-article__body .he-bp-product__price strong { color: var(--he-purple); font-weight: 700; }
.he-bp-article__body .he-bp-product__price del { color: var(--he-muted); margin-left: 6px; }
.he-bp-article__body .he-bp-product__desc {
  font-size: 15px;
  line-height: 1.6;
  color: var(--he-grey);
  margin: 0 0 16px;
}
.he-bp-article__body .he-bp-product__btn {
  display: inline-block;
  background: var(--he-purple);
  color: #fff !important;
  text-decoration: none !important;
  font-family: var(--font-body--family);
  font-size: 15px;
  font-weight: 600;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 600 !important;
}
.he-bp-article__body .he-bp-product__btn:hover { background: var(--he-purple-deep); }

/* Pros / Cons box */
.he-bp-article__body .he-bp-proscons {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border: 1px solid var(--he-line);
  border-radius: 14px;
  overflow: hidden;
  margin: 1.6em 0;
  background: #fff;
}
.he-bp-article__body .he-bp-proscons__col { padding: 18px 20px; }
.he-bp-article__body .he-bp-proscons__col + .he-bp-proscons__col {
  border-top: 1px solid var(--he-line);
}
.he-bp-article__body .he-bp-proscons__label {
  font-family: var(--font-accent--family);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin: 0 0 10px;
  display: flex;
  align-items: center;
  gap: 7px;
}
.he-bp-article__body .he-bp-proscons__col--pro .he-bp-proscons__label { color: #2C7A4B; }
.he-bp-article__body .he-bp-proscons__col--con .he-bp-proscons__label { color: #B23A48; }
.he-bp-article__body .he-bp-proscons ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.he-bp-article__body .he-bp-proscons li {
  position: relative;
  padding: 5px 0 5px 22px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--he-body-ink);
}
.he-bp-article__body .he-bp-proscons__col--pro li::before {
  content: "+";
  position: absolute; left: 0; top: 5px;
  color: #2C7A4B; font-weight: 700;
  width: 16px; text-align: center;
}
.he-bp-article__body .he-bp-proscons__col--con li::before {
  content: "−";
  position: absolute; left: 0; top: 5px;
  color: #B23A48; font-weight: 700;
  width: 16px; text-align: center;
}

/* Stat block */
.he-bp-article__body .he-bp-stat {
  text-align: center;
  padding: 28px 16px;
  background: var(--he-cream);
  border-radius: 14px;
  margin: 2em 0;
}
.he-bp-article__body .he-bp-stat__num {
  font-family: var(--font-heading--family);
  font-size: 56px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.03em;
  color: var(--he-purple);
  margin: 0;
}
.he-bp-article__body .he-bp-stat__label {
  font-family: var(--font-body--family);
  font-size: 14px;
  color: var(--he-grey);
  margin: 8px 0 0;
}

/* Pull quote */
.he-bp-article__body .he-bp-pullquote {
  border: 0;
  border-top: 2px solid var(--he-ink);
  border-bottom: 2px solid var(--he-ink);
  padding: 24px 0;
  margin: 2em 0;
  font-family: var(--font-heading--family);
  font-size: 22px;
  line-height: 1.35;
  font-weight: 600;
  color: var(--he-ink);
  font-style: normal;
  letter-spacing: -.01em;
  text-align: left;
}
.he-bp-article__body .he-bp-pullquote::before { content: none; }

/* Override the LED-mask FAQ section's answer font to Lora when it appears on a blog post page */
.he-lp-hs-faq-v2 .faqv2-answer,
.he-lp-hs-faq-v2 .faqv2-answer p,
.he-lp-hs-faq-v2 .faqv2-answer li {
  font-family: 'Lora', Georgia, 'Times New Roman', serif !important;
}

/* Inline FAQ accordion (legacy, kept for backward compat — use he-lp-hs-faq-v2 section instead) */
.he-bp-article__body .he-bp-faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 1.6em 0 2em;
}
.he-bp-article__body .he-bp-faq__row {
  background: #FFF0F1;
  border-radius: 999px;
  overflow: hidden;
  transition: border-radius .3s ease;
}
.he-bp-article__body .he-bp-faq__row[open] { border-radius: 22px; }
.he-bp-article__body .he-bp-faq__summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  -webkit-tap-highlight-color: transparent;
}
.he-bp-article__body .he-bp-faq__summary::-webkit-details-marker { display: none; }
.he-bp-article__body .he-bp-faq__summary::marker { display: none; }
.he-bp-article__body .he-bp-faq__q {
  font-family: var(--font-heading--family);
  font-size: 16px;
  font-weight: 700;
  color: var(--he-ink);
  line-height: 1.3;
  flex: 1;
  min-width: 0;
  margin: 0;
}
.he-bp-article__body .he-bp-faq__icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: var(--he-purple);
  font-size: 22px;
  line-height: 1;
  font-weight: 300;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform .3s ease;
}
.he-bp-article__body .he-bp-faq__row[open] .he-bp-faq__icon { transform: rotate(45deg); }
.he-bp-article__body .he-bp-faq__a {
  padding: 0 22px 22px;
  font-family: var(--font-body--family);
  font-size: 15px;
  line-height: 1.6;
  color: var(--he-body-ink);
}
.he-bp-article__body .he-bp-faq__a p { margin: 0 0 10px; font-size: 15px; }
.he-bp-article__body .he-bp-faq__a p:last-child { margin-bottom: 0; }
.he-bp-article__body .he-bp-faq__a a { color: var(--he-purple); }
@media (min-width: 750px) {
  .he-bp-article__body .he-bp-faq__summary { padding: 22px 28px; }
  .he-bp-article__body .he-bp-faq__a { padding: 0 28px 26px; font-size: 16px; }
}

/* Soft inline CTA (smaller, organic mid-article callout) */
.he-bp-article__body .he-bp-softcta {
  border-top: 1px solid var(--he-line);
  border-bottom: 1px solid var(--he-line);
  padding: 20px 0;
  margin: 2em 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.he-bp-article__body .he-bp-softcta p {
  margin: 0;
  font-family: var(--font-body--family);
  font-size: 16px;
  line-height: 1.5;
  color: var(--he-body-ink);
  font-style: italic;
}
.he-bp-article__body .he-bp-softcta a {
  font-family: var(--font-accent--family);
  font-size: 13px;
  letter-spacing: .04em;
  font-weight: 700;
  color: var(--he-purple);
  text-decoration: none;
  align-self: flex-start;
  border-bottom: 1.5px solid var(--he-purple);
  padding: 0 0 2px;
}
.he-bp-article__body .he-bp-softcta a:hover { color: var(--he-purple-deep); border-color: var(--he-purple-deep); }
@media (min-width: 750px) {
  .he-bp-article__body .he-bp-softcta {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .he-bp-article__body .he-bp-softcta a { white-space: nowrap; align-self: center; }
}

/* Video embed */
.he-bp-article__body .he-bp-video {
  margin: 2em 0;
}
.he-bp-article__body .he-bp-video__frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  overflow: hidden;
  background: var(--he-ink);
}
.he-bp-article__body .he-bp-video iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0;
}
.he-bp-article__body .he-bp-video__caption {
  font-family: var(--font-body--family);
  font-size: 13px;
  color: var(--he-grey);
  margin: 10px 0 0;
}

/* Helpful */
.he-bp-article__helpful {
  margin: 56px 0 0;
  padding: 28px 0;
  border-top: 1px solid var(--he-line);
  border-bottom: 1px solid var(--he-line);
  text-align: center;
}
.he-bp-article__helpful-q {
  font-family: var(--font-heading--family);
  font-size: 17px;
  font-weight: 700;
  color: var(--he-ink);
  margin: 0 0 14px;
}
.he-bp-article__helpful-btns {
  display: flex;
  justify-content: center;
  gap: 10px;
}
.he-bp-article__helpful-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 1px solid var(--he-line);
  padding: 9px 22px;
  border-radius: 999px;
  font-family: var(--font-body--family);
  font-size: 14px;
  font-weight: 500;
  color: var(--he-ink);
  cursor: pointer;
  transition: all .15s ease;
}
.he-bp-article__helpful-btn:hover { background: var(--he-cream); border-color: var(--he-ink); }
.he-bp-article__helpful-btn[aria-pressed="true"] { background: var(--he-purple); color: #fff; border-color: var(--he-purple); }
.he-bp-article__helpful-thanks {
  font-size: 14px;
  color: var(--he-purple);
  margin: 14px 0 0;
  font-weight: 500;
}

/* Quiz CTA */
.he-bp-article__quiz {
  margin: 56px 0 0;
  padding: 36px 24px;
  background: var(--he-purple-wash);
  border-radius: 18px;
  text-align: center;
}
.he-bp-article__quiz-heading {
  font-family: var(--font-heading--family);
  font-size: 22px;
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: -.015em;
  color: var(--he-ink);
  margin: 0 0 10px;
}
.he-bp-article__quiz-subline {
  font-family: var(--font-body--family);
  font-size: 15px;
  line-height: 1.55;
  color: var(--he-grey);
  margin: 0 auto 22px;
  max-width: 480px;
}
.he-bp-article__quiz-btn,
.he-bp-article__body .he-bp-article__quiz-btn {
  display: inline-block;
  background: var(--he-purple);
  color: #ffffff !important;
  font-family: var(--font-body--family);
  font-size: 15px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 999px;
  text-decoration: none !important;
  transition: background .2s ease;
  border: 0;
  letter-spacing: 0;
}
.he-bp-article__quiz-btn:hover,
.he-bp-article__body .he-bp-article__quiz-btn:hover { background: var(--he-purple-deep); color: #ffffff !important; }
.he-bp-article__quiz-fine {
  font-family: var(--font-accent--family);
  font-size: 12px;
  letter-spacing: .04em;
  color: var(--he-muted);
  margin: 14px 0 0;
}

/* Author bio */
.he-bp-article__bio {
  display: flex;
  gap: 16px;
  margin: 48px 0 0;
  padding: 28px 0 0;
  border-top: 1px solid var(--he-line);
}
.he-bp-article__bio-avatar {
  flex: 0 0 64px;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--he-cream);
}
.he-bp-article__bio-avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.he-bp-article__bio-label {
  font-family: var(--font-accent--family);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--he-muted);
  margin: 0 0 4px;
}
.he-bp-article__bio-name {
  font-family: var(--font-heading--family);
  font-size: 17px;
  font-weight: 700;
  color: var(--he-ink);
  margin: 0 0 6px;
}
.he-bp-article__bio-text {
  font-family: var(--font-body--family);
  font-size: 14px;
  line-height: 1.55;
  color: var(--he-grey);
  margin: 0;
}

/* Sources drawer */
.he-bp-article__sources {
  margin: 48px 0 0;
  border-top: 1px solid var(--he-line);
  border-bottom: 1px solid var(--he-line);
  padding: 0;
}
.he-bp-article__sources-summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 4px;
  font-family: var(--font-heading--family);
  font-size: 18px;
  font-weight: 700;
  color: var(--he-ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.he-bp-article__sources-summary::-webkit-details-marker { display: none; }
.he-bp-article__sources[open] .he-bp-article__sources-icon { transform: rotate(180deg); }
.he-bp-article__sources-icon { transition: transform .2s ease; color: var(--he-grey); }
.he-bp-article__sources-body {
  padding: 0 4px 24px;
  font-family: var(--font-body--family);
  font-size: 14px;
  line-height: 1.6;
  color: var(--he-grey);
}
.he-bp-article__sources-body ol { padding-left: 1.4em; margin: 0; }
.he-bp-article__sources-body li { margin: 0.5em 0; }
.he-bp-article__sources-body a { color: var(--he-purple); }

/* Related posts */
.he-bp-article__related {
  margin: 64px 0 0;
  padding: 40px 0 0;
  border-top: 1px solid var(--he-line);
}
.he-bp-article__related-heading {
  font-family: var(--font-heading--family);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -.015em;
  color: var(--he-ink);
  margin: 0 0 24px;
}
.he-bp-article__related-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.he-bp-article__related-card {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: transform .2s ease;
}
.he-bp-article__related-card:hover { transform: translateY(-2px); }
.he-bp-article__related-img {
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  overflow: hidden;
  background: var(--he-cream);
  margin: 0 0 12px;
}
.he-bp-article__related-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.he-bp-article__related-eyebrow {
  font-family: var(--font-accent--family);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--he-purple);
  margin: 0 0 6px;
}
.he-bp-article__related-title {
  font-family: var(--font-heading--family);
  font-size: 18px;
  line-height: 1.3;
  font-weight: 700;
  color: var(--he-ink);
  margin: 0 0 6px;
}
.he-bp-article__related-excerpt {
  font-family: var(--font-body--family);
  font-size: 14px;
  line-height: 1.5;
  color: var(--he-grey);
  margin: 0 0 8px;
}
.he-bp-article__related-more {
  font-family: var(--font-accent--family);
  font-size: 12px;
  letter-spacing: .08em;
  color: var(--he-purple);
  font-weight: 600;
}

/* ============ Toast + Save Modal ============ */
.he-bp-toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  background: var(--he-ink);
  color: #fff;
  font-family: var(--font-body--family);
  font-size: 14px;
  padding: 12px 20px;
  border-radius: 999px;
  z-index: 9999;
  box-shadow: 0 10px 30px rgba(0,0,0,.18);
}
.he-bp-toast[hidden] { display: none; }

.he-bp-save-modal {
  border: 0;
  border-radius: 18px;
  padding: 28px 24px;
  max-width: 420px;
  width: calc(100% - 32px);
  background: #fff;
  color: var(--he-ink);
  font-family: var(--font-body--family);
  box-shadow: 0 20px 60px rgba(0,0,0,.22);
}
.he-bp-save-modal::backdrop { background: rgba(0,0,0,.45); backdrop-filter: blur(2px); }
.he-bp-save-modal__close {
  position: absolute;
  top: 10px;
  right: 14px;
  background: transparent;
  border: 0;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  color: var(--he-muted);
}
.he-bp-save-modal__eyebrow {
  font-family: var(--font-accent--family);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  color: var(--he-purple);
  margin: 0 0 10px;
}
.he-bp-save-modal__title {
  font-family: var(--font-heading--family);
  font-size: 22px;
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: -.015em;
  margin: 0 0 8px;
  color: var(--he-ink);
}
.he-bp-save-modal__sub {
  font-size: 14px;
  line-height: 1.55;
  color: var(--he-grey);
  margin: 0 0 18px;
}
.he-bp-save-modal__form { display: flex; flex-direction: column; gap: 10px; }
.he-bp-save-modal__input {
  width: 100%;
  padding: 13px 14px;
  border-radius: 10px;
  border: 1px solid var(--he-line);
  font-size: 15px;
  font-family: inherit;
  color: var(--he-ink);
  background: #fff;
}
.he-bp-save-modal__input:focus { outline: none; border-color: var(--he-purple); }
.he-bp-save-modal__btn {
  padding: 13px 18px;
  border-radius: 999px;
  background: var(--he-purple);
  color: #fff;
  border: 0;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
}
.he-bp-save-modal__btn:hover { background: var(--he-purple-deep); }
.he-bp-save-modal__skip {
  background: transparent;
  border: 0;
  color: var(--he-grey);
  font-family: inherit;
  font-size: 13px;
  cursor: pointer;
  margin: 14px 0 0;
  text-decoration: underline;
  text-underline-offset: 3px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* ============ DESKTOP ============ */
@media (min-width: 750px) {
  .he-bp-article { padding: 24px 24px 120px; }
  .he-bp-article__crumbs { margin: 0 0 36px; }
  .he-bp-article__header { padding: 0 0 32px; }
  .he-bp-article__badge { margin-bottom: 26px; }
  .he-bp-article__title { font-size: 56px; margin: 0 0 22px; letter-spacing: -.03em; }
  .he-bp-article__dek { font-size: 22px; margin: 0 0 36px; }
  .he-bp-article__byline { gap: 16px; }
  .he-bp-article__avatar { width: 56px; height: 56px; }
  .he-bp-article__byline-row { font-size: 15px; }
  .he-bp-article__credential { font-size: 14px; }
  .he-bp-article__hero { margin: 16px 0 32px; }
  .he-bp-article__body { font-size: 19px; line-height: 1.7; }
  .he-bp-article__body h2 { font-size: 40px; margin-top: 2.6em; }
  .he-bp-article__body h3 { font-size: 28px; }
  .he-bp-article__body h4 { font-size: 20px; }

  /* Pros/Cons side-by-side desktop */
  .he-bp-article__body .he-bp-proscons {
    grid-template-columns: 1fr 1fr;
  }
  .he-bp-article__body .he-bp-proscons__col + .he-bp-proscons__col {
    border-top: 0;
    border-left: 1px solid var(--he-line);
  }

  /* Product card side-by-side */
  .he-bp-article__body .he-bp-product {
    grid-template-columns: 1fr 1.2fr;
    align-items: center;
  }
  .he-bp-article__body .he-bp-product__media { aspect-ratio: 1 / 1; height: 100%; }
  .he-bp-article__body .he-bp-product__body { padding: 32px 30px; }
  .he-bp-article__body .he-bp-product__title { font-size: 26px; }

  .he-bp-article__body .he-bp-stat__num { font-size: 72px; }

  .he-bp-article__body .he-bp-pullquote { font-size: 28px; padding: 32px 0; }

  .he-bp-article__quiz { padding: 48px 40px; margin-top: 72px; }
  .he-bp-article__quiz-heading { font-size: 26px; }
  .he-bp-article__quiz-subline { font-size: 16px; }
  .he-bp-article__quiz-btn { font-size: 16px; padding: 16px 30px; }

  .he-bp-article__bio { gap: 20px; margin-top: 64px; padding-top: 36px; }
  .he-bp-article__bio-avatar { flex: 0 0 80px; width: 80px; height: 80px; }
  .he-bp-article__bio-name { font-size: 19px; }
  .he-bp-article__bio-text { font-size: 15px; }

  .he-bp-article__related { margin-top: 88px; padding-top: 48px; }
  .he-bp-article__related-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }
  .he-bp-article__related-title { font-size: 19px; }

  .he-bp-article__crumbs--bottom { margin-top: 88px; padding-top: 36px; }
}
/* END_SECTION:he-bp-article */

/* START_SECTION:he-bp-index (INDEX:14) */
.he-bp-index {
    background: #fff;
    color: #0C0C0C;
    font-family: var(--font-body--family);
  }

  /* Saved guides row */
  .he-bp-index__saved {
    margin: 0 0 56px;
    padding: 28px 0 0;
    border-top: 1px solid rgba(12,12,12,.08);
  }
  .he-bp-index__saved[hidden] { display: none; }
  .he-bp-index__saved-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
    margin: 0 0 20px;
  }
  .he-bp-index__saved-title {
    font-family: var(--font-heading--family);
    font-size: 22px;
    line-height: 1.25;
    font-weight: 700;
    letter-spacing: -.015em;
    color: #0C0C0C;
    margin: 0;
  }
  .he-bp-index__saved-clear {
    background: transparent;
    border: 0;
    font-family: var(--font-accent--family);
    font-size: 12px;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: #6B6963;
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 3px;
  }
  .he-bp-index__saved-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .he-bp-index__saved-card {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 14px;
    align-items: center;
    text-decoration: none;
    color: inherit;
    padding: 12px;
    border: 1px solid rgba(12,12,12,.08);
    border-radius: 14px;
    background: #FAF8F4;
    transition: transform .2s ease;
  }
  .he-bp-index__saved-card:hover { transform: translateY(-2px); }
  .he-bp-index__saved-img {
    width: 100px;
    height: 100px;
    border-radius: 10px;
    overflow: hidden;
    background: rgba(12,12,12,.04);
  }
  .he-bp-index__saved-img img {
    width: 100%; height: 100%; object-fit: cover; display: block;
  }
  .he-bp-index__saved-eyebrow {
    font-family: var(--font-accent--family);
    font-size: 10px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: #5B4B9E;
    margin: 0 0 6px;
    font-weight: 700;
  }
  .he-bp-index__saved-cardtitle {
    font-family: var(--font-heading--family);
    font-size: 16px;
    line-height: 1.3;
    font-weight: 700;
    color: #0C0C0C;
    margin: 0 0 6px;
  }
  .he-bp-index__saved-remove {
    background: transparent;
    border: 0;
    color: #9B9790;
    font-size: 12px;
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 2px;
    padding: 0;
  }
  @media (min-width: 750px) {
    .he-bp-index__saved-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
    }
    .he-bp-index__saved-title { font-size: 26px; }
    .he-bp-index__saved-img { width: 120px; height: 120px; }
    .he-bp-index__saved-cardtitle { font-size: 18px; }
  }

  .he-bp-index__inner {
    max-width: var(--he-max-inner, 1100px);
    margin: 0 auto;
    padding: 0 24px;
  }
  .he-bp-index__header {
    text-align: center;
    padding: 80px 0 40px;
  }
  .he-bp-index__logo {
    margin: 0 0 28px;
    display: flex;
    justify-content: center;
  }
  .he-bp-index__logo img {
    height: 40px;
    width: auto;
    display: block;
  }
  @media (min-width: 750px) {
    .he-bp-index__logo img { height: 52px; }
    .he-bp-index__logo { margin: 0 0 36px; }
  }
  .he-bp-index__eyebrow {
    font-family: var(--font-accent--family);
    font-size: 13px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: #5B4B9E;
    margin: 0 0 18px;
  }
  .he-bp-index__title :is(h1, h2) {
    font-family: var(--font-heading--family);
    font-size: 44px;
    line-height: 1.05;
    letter-spacing: -.025em;
    font-weight: 700;
    color: #0C0C0C;
    margin: 0 0 18px;
  }
  .he-bp-index__subtitle :is(p) {
    font-size: 17px;
    line-height: 1.6;
    color: #6B6963;
    margin: 0 auto;
    max-width: 640px;
  }

  /* Featured */
  .he-bp-index__featured {
    display: block;
    background: #FAF8F4;
    border-radius: 14px;
    padding: 24px;
    margin: 32px 0 64px;
    text-decoration: none;
    color: inherit;
    transition: transform .25s ease, box-shadow .25s ease;
  }
  .he-bp-index__featured:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(12,12,12,.06);
  }
  .he-bp-index__featured-media {
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 16/9;
    background: rgba(12,12,12,.04);
    margin-bottom: 20px;
  }
  .he-bp-index__featured-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .he-bp-index__featured-body {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
  .he-bp-index__card-eyebrow {
    font-family: var(--font-accent--family);
    font-size: 12px;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: #9B9790;
    margin: 0;
  }
  .he-bp-index__card-eyebrow--accent { color: #5B4B9E; }
  .he-bp-index__featured-title {
    font-family: var(--font-heading--family);
    font-size: 28px;
    line-height: 1.15;
    letter-spacing: -.02em;
    font-weight: 700;
    color: #0C0C0C;
    margin: 0;
  }
  .he-bp-index__featured-excerpt {
    font-size: 17px;
    line-height: 1.6;
    color: #6B6963;
    margin: 0;
  }
  .he-bp-index__readmore {
    font-family: var(--font-accent--family);
    font-size: 14px;
    color: #5B4B9E;
    letter-spacing: .04em;
    margin-top: 4px;
  }
  .he-bp-index__byline {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    font-size: 13px;
    color: #9B9790;
  }
  .he-bp-index__dot { opacity: .6; }

  /* Grid */
  .he-bp-index__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    padding-bottom: 80px;
  }
  .he-bp-index__card {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: transform .25s ease, box-shadow .25s ease;
    border-radius: 14px;
  }
  .he-bp-index__card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(12,12,12,.07);
  }
  .he-bp-index__card-media {
    aspect-ratio: 16/9;
    overflow: hidden;
    border-radius: 14px;
    background: rgba(12,12,12,.04);
    margin-bottom: 16px;
  }
  .he-bp-index__card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .he-bp-index__card-body {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 0 4px 4px;
  }
  .he-bp-index__card-title {
    font-family: var(--font-heading--family);
    font-size: 20px;
    line-height: 1.25;
    letter-spacing: -.015em;
    font-weight: 700;
    color: #0C0C0C;
    margin: 6px 0 0;
  }
  .he-bp-index__card-excerpt {
    font-size: 15px;
    line-height: 1.5;
    color: #6B6963;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  /* Newsletter */
  .he-bp-index__newsletter {
    background: #F0EDF7;
    border-radius: 14px;
    padding: 40px 24px;
    text-align: center;
    margin-bottom: 80px;
  }
  .he-bp-index__newsletter-heading {
    font-family: var(--font-heading--family);
    font-size: 26px;
    line-height: 1.2;
    letter-spacing: -.02em;
    font-weight: 700;
    color: #0C0C0C;
    margin: 0 0 10px;
  }
  .he-bp-index__newsletter-sub {
    font-size: 16px;
    line-height: 1.6;
    color: #6B6963;
    margin: 0 0 22px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }
  .he-bp-index__newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 440px;
    margin: 0 auto;
  }
  .he-bp-index__newsletter-input {
    width: 100%;
    padding: 14px 16px;
    border-radius: 10px;
    border: 1px solid rgba(12,12,12,.06);
    background: #fff;
    font-size: 15px;
    font-family: inherit;
    color: #0C0C0C;
  }
  .he-bp-index__newsletter-input:focus {
    outline: none;
    border-color: #5B4B9E;
  }
  .he-bp-index__newsletter-btn {
    padding: 14px 22px;
    border-radius: 10px;
    background: #5B4B9E;
    color: #fff;
    border: none;
    font-family: var(--font-accent--family);
    font-size: 14px;
    letter-spacing: .04em;
    cursor: pointer;
    transition: background .2s ease;
  }
  .he-bp-index__newsletter-btn:hover {
    background: #4a3d83;
  }

  @media (min-width: 750px) {
    .he-bp-index__header {
      padding: 120px 0 60px;
    }
    .he-bp-index__title :is(h1, h2) {
      font-size: 60px;
    }
    .he-bp-index__featured {
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      gap: 40px;
      padding: 40px;
      align-items: center;
    }
    .he-bp-index__featured-media {
      margin-bottom: 0;
      height: 100%;
    }
    .he-bp-index__featured-title {
      font-size: 36px;
    }
    .he-bp-index__grid {
      grid-template-columns: repeat(3, 1fr);
      gap: 32px;
      padding-bottom: 120px;
    }
    .he-bp-index__newsletter {
      padding: 56px 40px;
      margin-bottom: 120px;
    }
    .he-bp-index__newsletter-heading {
      font-size: 30px;
    }
    .he-bp-index__newsletter-form {
      flex-direction: row;
    }
    .he-bp-index__newsletter-input {
      flex: 1;
    }
  }
/* END_SECTION:he-bp-index */

/* START_SECTION:he-hp-assessment-cta (INDEX:15) */
.he-acta { box-sizing: border-box; background: #58468b; color: #FFFFFF; padding: 32px 24px; position: relative; overflow: hidden; }
  .he-acta *, .he-acta *::before, .he-acta *::after { box-sizing: border-box; }

  .he-acta::before {
    content: ""; position: absolute; top: -120px; right: -120px;
    width: 360px; height: 360px; border-radius: 100%;
    background: rgba(255, 255, 255, 0.06); pointer-events: none;
  }
  .he-acta::after {
    content: ""; position: absolute; bottom: -160px; left: -100px;
    width: 320px; height: 320px; border-radius: 100%;
    background: rgba(255, 255, 255, 0.05); pointer-events: none;
  }

  .he-acta__inner {
    position: relative;
    z-index: 1;
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
  .he-acta__inner > * { margin: 0; }

  .he-acta__eyebrow {
    font-family: var(--font-body--family);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #FFFFFF;
    opacity: 0.9;
  }
  .he-acta__heading {
    font-family: var(--font-heading--family);
    font-size: clamp(28px, 5.5vw, 40px);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.025em;
    color: #FFFFFF;
    max-width: 720px;
  }
  @media (min-width: 750px) {
    .he-acta__heading { font-size: clamp(32px, 3.5vw, 44px); }
  }
  .he-acta__subtext {
    font-family: var(--font-body--family);
    font-size: 16px;
    line-height: 1.5;
    color: #FFFFFF;
    opacity: 0.92;
    max-width: 56ch;
    margin: 0 auto;
  }
  .he-acta__divider {
    border: none;
    width: 40px;
    height: 2px;
    background: #FFFFFF;
    opacity: 0.6;
  }

  .he-acta__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading--family);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    padding: 16px 32px;
    border-radius: 10px;
    min-height: 52px;
    margin-top: 8px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  /* Wider pill buttons (~2x) — capped so they never overflow on mobile */
  .he-acta__btn--primary,
  .he-acta__btn--secondary { min-width: 360px; max-width: 100%; }
  .he-acta__btn--primary { background: #FFFFFF; color: #58468b; }
  .he-acta__btn--secondary { background: transparent; color: #FFFFFF; border: 1.5px solid #FFFFFF; }
  .he-acta__btn--link { background: transparent; color: #FFFFFF; border: none; border-bottom: 1.5px solid #FFFFFF; border-radius: 0; padding: 4px 0; min-height: auto; }
  .he-acta__btn:hover { transform: translateY(-2px); box-shadow: 0 10px 24px -10px rgba(0,0,0,0.4); }
  .he-acta__btn:focus-visible { outline: 3px solid #FFFFFF; outline-offset: 4px; }
  @media (prefers-reduced-motion: reduce) {
    .he-acta__btn { transition: none; }
    .he-acta__btn:hover { transform: none; }
  }

  @media (min-width: 750px) { .he-acta { padding: 32px 40px; } }
/* END_SECTION:he-hp-assessment-cta */

/* START_SECTION:he-hp-ba (INDEX:16) */
/* Full-bleed override — the shared landing-page CSS caps .he-section-inner
     at 1100px. Homepage copy releases that cap so the section reaches the
     viewport edges. */
  .he-hp-ba .he-section-inner { max-width: none; margin: 0; }

  /* Unified homepage heading style (matches We Believe). */
  .he-hp-ba .he-block-heading { max-width: 720px; margin: 0 auto !important; }
  .he-hp-ba .he-block-heading :is(h1, h2, h3, p) {
    font-size: clamp(28px, 5.5vw, 40px) !important;
    font-weight: 600 !important;
    line-height: 1.2 !important;
    letter-spacing: -0.025em !important;
  }
  @media (min-width: 750px) {
    .he-hp-ba .he-block-heading :is(h1, h2, h3, p) {
      font-size: clamp(32px, 3.5vw, 44px) !important;
    }
  }

  /* Unified homepage subtext style (matches Shop by Concern). */
  .he-hp-ba .he-block-subtext { max-width: 56ch; margin: 0 auto !important; }
  .he-hp-ba .he-block-subtext :is(p) {
    font-family: var(--font-body--family) !important;
    font-size: 16px !important;
    line-height: 1.5 !important;
    color: #000000 !important;
  }

  .he-hp-ba .hpba-image { border-radius: 14px; overflow: hidden; }
  .he-hp-ba .hpba-image img,
  .he-hp-ba .hpba-image video { display: block; width: 100%; height: 100%; object-fit: cover; }

  /* Mobile: horizontal scroll-snap carousel; cards peek past edge */
  .he-hp-ba .hpba-scroll-wrap {
    position: relative;
    margin-left: calc(var(--hpba-side-pad) * -1);
    margin-right: calc(var(--hpba-side-pad) * -1);
  }
  .he-hp-ba .hpba-grid {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    overflow-y: visible;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    /* Symmetric side padding so first/last cards center-snap. Top +
       bottom kept tight (4/12) — matches honest-ugc pattern; just
       enough to not clip the card's drop shadow. */
    padding: 4px max(7.5vw, 18px) 12px;
    scroll-padding-inline: max(7.5vw, 18px);
  }
  .he-hp-ba .hpba-grid::-webkit-scrollbar { display: none; }
  .he-hp-ba .hpba-grid > .hpba-card {
    /* Card sized so it dominates the viewport with peek of next card on
       each side. Centered via scroll-snap-align: center + symmetric
       grid padding above. */
    flex: 0 0 calc(85vw - 28px);
    max-width: 460px;
    scroll-snap-align: center;
  }

  /* Carousel arrows (mobile) — prev + next, below the carousel.
     Matches the honest-ugc section's arrow pattern. */
  .he-hp-ba .hpba-arrows {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 12px;
  }
  .he-hp-ba .hpba-arrow {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: rgba(250, 248, 244, 0.95);
    border: 1px solid rgba(12, 12, 12, 0.10);
    color: #0C0C0C;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(12, 12, 12, 0.08);
    padding: 0;
  }
  .he-hp-ba .hpba-arrow svg { width: 18px; height: 18px; display: block; }
  .he-hp-ba .hpba-arrow:active { transform: scale(0.94); }

  /* Card */
  .he-hp-ba .hpba-card {
    background: #FAF8F4;
    border: 1px solid rgba(12, 12, 12, 0.08);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 1px 2px rgba(12, 12, 12, 0.04), 0 8px 24px rgba(12, 12, 12, 0.04);
    display: flex; flex-direction: column;
  }
  .he-hp-ba .hpba-pair-wrap { padding: 18px 18px 0; }
  .he-hp-ba .hpba-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
  .he-hp-ba .hpba-frame {
    position: relative;
    aspect-ratio: 3/4.4;
    border-radius: 10px;
    overflow: hidden;
    background: #E8E2D9;
  }
  .he-hp-ba .hpba-frame img,
  .he-hp-ba .hpba-frame svg { display: block; width: 100%; height: 100%; object-fit: cover; }
  .he-hp-ba .hpba-label {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    color: #FAF8F4;
    background: #0C0C0C;
    font-family: var(--font-accent--family);
    font-size: 12px; font-weight: 700;
    letter-spacing: 0.18em; text-transform: uppercase;
    text-align: center;
    padding: 5px 6px;
    line-height: 1.3;
  }
  .he-hp-ba .hpba-label--after { background: var(--hpba-accent, #5B4B9E); }

  .he-hp-ba .hpba-content {
    padding: 28px 18px 22px;
    display: flex; flex-direction: column;
    gap: 12px;
  }
  @media (min-width: 750px) {
    .he-hp-ba .hpba-content { padding: 32px 22px 26px; }
  }

  /* Italic-red opening quote glyph that sits just above the customer
     quote — signals "this is a customer testimonial". Tight to the
     quote so it reads as one unit. */
  .he-hp-ba .hpba-quote-mark {
    display: block;
    font-family: var(--font-heading--family);
    font-size: 44px;
    font-style: italic;
    font-weight: 700;
    line-height: 0.5;
    color: #5B4B9E;
    letter-spacing: -0.06em;
    margin: 0 0 -10px;
  }
  @media (min-width: 750px) {
    .he-hp-ba .hpba-quote-mark { font-size: 52px; margin-bottom: -14px; }
  }

  .he-hp-ba .hpba-quote {
    font-family: var(--font-body--family);
    font-size: 16px;
    color: #0C0C0C;
    line-height: 1.5;
    margin: 0;
    /* Reserve 4 lines, clip past 4 unless expanded */
    min-height: calc(1.5em * 4);
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  @media (min-width: 750px) { .he-hp-ba .hpba-quote { font-size: 17px; } }
  .he-hp-ba .hpba-expand-cb { position: absolute; opacity: 0; pointer-events: none; }
  .he-hp-ba .hpba-expand-cb:checked ~ .hpba-quote {
    -webkit-line-clamp: unset;
    overflow: visible;
    min-height: 0;
  }
  .he-hp-ba .hpba-see-more {
    display: none; margin-top: 4px;
    font-family: var(--font-accent--family);
    font-size: 12px; font-weight: 700;
    letter-spacing: 0.16em; text-transform: uppercase;
    color: #0C0C0C; text-decoration: underline;
    cursor: pointer; user-select: none; align-self: flex-start;
  }
  .he-hp-ba .hpba-quote-block.is-overflowing .hpba-see-more { display: inline-block; }
  .he-hp-ba .hpba-expand-cb:checked ~ .hpba-see-more { display: none; }

  .he-hp-ba .hpba-attr { display: flex; flex-direction: column; gap: 4px; }
  .he-hp-ba .hpba-stars {
    color: var(--hpba-accent, #5B4B9E);
    letter-spacing: 0.08em;
    font-size: 16px;
    line-height: 1;
  }
  .he-hp-ba .hpba-name {
    font-family: var(--font-heading--family);
    font-size: 15px; font-weight: 700;
    letter-spacing: 0.06em; text-transform: uppercase;
    color: #0C0C0C; margin: 0;
  }
  .he-hp-ba .hpba-verified {
    display: inline-flex; align-items: center; gap: 5px;
    font-family: var(--font-body--family);
    font-size: 12px; color: #6B6963;
  }
  .he-hp-ba .hpba-verified svg {
    width: 14px; height: 14px; color: var(--hpba-accent, #5B4B9E);
    flex-shrink: 0;
  }

  /* Desktop: stay a horizontal carousel (NOT a stacking grid).
     A 3-col grid orphans rows when card count isn't a multiple of 3
     (4 cards → orphan row of 1). Carousel keeps all cards on one row
     regardless of count. */
  @media (min-width: 750px) {
    .he-hp-ba .hpba-scroll-wrap { max-width: none; margin: 0; }
    /* Exactly 4 cards fully visible. Use % of the grid's own content box
       (NOT 100vw — that includes the scrollbar width and ignores parent
       padding, which pushes the 4th card off-screen). The grid content
       box already excludes its 40px side padding, so we only subtract the
       3 inter-card gaps:  4·card + 3·20px = 100%  →  card = (100% - 60px)/4 */
    .he-hp-ba .hpba-grid {
      gap: 20px;
      padding: 4px 40px 12px;
      scroll-padding-inline: 40px;
    }
    .he-hp-ba .hpba-grid > .hpba-card {
      flex: 0 0 calc((100% - 60px) / 4);
      max-width: calc((100% - 60px) / 4);
      scroll-snap-align: start;
    }
  }
/* END_SECTION:he-hp-ba */

/* START_SECTION:he-hp-before-after (INDEX:17) */
.he-ba { box-sizing: border-box; }
  .he-ba *, .he-ba *::before, .he-ba *::after { box-sizing: border-box; }

  /* Header — left-aligned on mobile, centered on desktop */
  .he-ba__head {
    padding: 0 24px;
    max-width: 900px;
    margin: 0 auto var(--hp-head-gap-mobile, 32px);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
  }
  .he-ba__head > * { margin: 0; }

  .he-ba__eyebrow {
    font-family: var(--font-body--family);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #9B9790;
  }
  .he-ba__heading {
    font-family: var(--font-heading--family);
    font-size: clamp(28px, 5.5vw, 40px);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.12;
    color: #000000;
  }
  .he-ba__subtext {
    font-family: var(--font-body--family);
    font-size: 16px;
    line-height: 1.5;
    color: #4B4945;
    max-width: 56ch;
    margin-top: 8px;
  }

  /* Carousel — same mechanics as HP Best Sellers */
  .he-ba__track {
    display: flex;
    gap: 16px;
    padding: 0 24px 8px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .he-ba__track::-webkit-scrollbar { display: none; }

  .he-ba__card {
    flex: 0 0 85%;
    max-width: 380px;
    scroll-snap-align: center;
    display: flex;
    flex-direction: column;
  }

  /* Before/after image pair */
  .he-ba__images {
    display: flex;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #E8E2D9;
  }
  .he-ba__half { position: relative; flex: 1 1 50%; overflow: hidden; }
  .he-ba__half--before { border-right: 2px solid var(--he-ba-divider, transparent); }
  .he-ba__half img { display: block; width: 100%; height: 100%; object-fit: cover; }
  .he-ba__pill {
    position: absolute;
    top: 14px;
    font-family: var(--font-body--family);
    font-size: 12px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 100px;
    z-index: 2;
  }
  .he-ba__half--before .he-ba__pill { left: 12px; }
  .he-ba__half--after .he-ba__pill { right: 12px; }

  .he-ba__result {
    font-family: var(--font-heading--family);
    font-size: 19px;
    font-weight: 700;
    color: #000000;
    margin: 16px 0 4px;
    line-height: 1.25;
  }

  .he-ba__byline {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-body--family);
    font-size: 14px;
    color: #6B6963;
    margin-bottom: 10px;
  }
  .he-ba__byline strong { color: #000000; font-weight: 600; }
  .he-ba__verified-icon { width: 15px; height: 15px; flex: 0 0 auto; color: #6B6963; }

  .he-ba__quote {
    font-family: var(--font-body--family);
    font-size: 15px;
    line-height: 1.5;
    color: #2A2826;
    margin: 0 0 8px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .he-ba__quote.is-expanded {
    -webkit-line-clamp: unset;
    overflow: visible;
  }
  .he-ba__quote-toggle {
    display: none;
    align-self: flex-start;
    text-align: left;
    font-family: var(--font-body--family);
    font-size: 13px;
    font-weight: 600;
    color: #000000;
    background: none;
    border: none;
    padding: 0;
    margin: 4px 0 16px;
    cursor: pointer;
    text-decoration: underline;
  }
  .he-ba__quote-toggle.is-visible { display: inline-block; }

  .he-ba__attribution {
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 12px;
    border-radius: 14px;
    padding: 12px 16px;
  }
  .he-ba__avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    flex: 0 0 auto;
    background: #E8E2D9;
  }
  .he-ba__avatar img { display: block; width: 100%; height: 100%; object-fit: cover; }
  .he-ba__attribution-text {
    font-family: var(--font-body--family);
    font-size: 13px;
    line-height: 1.4;
    color: #2A2826;
  }
  .he-ba__attribution-text a { color: #2A2826; text-decoration: underline; font-weight: 600; }

  /* Nav arrows — matched to Best Sellers / UGC for congruence */
  .he-ba__nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 28px;
  }
  .he-ba__arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(250, 248, 244, 0.95);
    border: 1px solid rgba(12, 12, 12, 0.10);
    color: #0C0C0C;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(12, 12, 12, 0.08);
    padding: 0;
  }
  .he-ba__arrow svg { width: 18px; height: 18px; display: block; }
  .he-ba__arrow:active { transform: scale(0.94); }
  .he-ba__arrow:focus-visible { outline: 3px solid #5B4B9E; outline-offset: 3px; }

  @media (min-width: 750px) {
    .he-ba__head {
      text-align: center;
      align-items: center;
      margin: 0 auto var(--hp-head-gap-desktop, 44px);
    }
    .he-ba__heading { font-size: clamp(32px, 3.5vw, 44px); }
    .he-ba__track {
      max-width: none;
      margin: 0;
      padding: 0 56px 8px;
      gap: 24px;
      justify-content: safe center;
    }
    .he-ba__card {
      flex: 0 0 calc((100% - 48px) / 3 * 1.05);
      max-width: none;
    }
    .he-ba__result { font-size: 20px; }
    .he-ba__nav { margin-top: 32px; gap: 24px; }
  }
/* END_SECTION:he-hp-before-after */

/* START_SECTION:he-hp-believe (INDEX:18) */
.he-believe {
    box-sizing: border-box;
    position: relative;
    /* Soft lavender studio backdrop (matches the hero's purple look).
       Used as-is when no image is uploaded; sits under the image otherwise. */
    background:
      radial-gradient(ellipse 65% 55% at 12% 18%, rgba(255, 255, 255, 0.55) 0%, transparent 60%),
      linear-gradient(135deg, #ECE8F6 0%, #D7CEEC 100%);
    min-height: 70svh;
    padding: 32px 24px 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }
  .he-believe *, .he-believe *::before, .he-believe *::after { box-sizing: border-box; }

  /* Background image */
  .he-believe__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
  }
  .he-believe__bg picture,
  .he-believe__bg img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  /* Purple wash over the picture so a grey/neutral photo takes on the
     brand purple tone, matching the hero. */
  .he-believe__bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
      rgba(91, 75, 158, 0.48) 0%,
      rgba(91, 75, 158, 0.18) 50%,
      rgba(91, 75, 158, 0.40) 100%);
    pointer-events: none;
  }

  /* Centered content stack */
  .he-believe__inner {
    position: relative;
    z-index: 1;
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .he-believe__inner > * { margin: 0; }

  .he-believe__eyebrow {
    font-family: var(--font-body--family);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #000000;
  }

  /* Heading: thought-cloud feel — bigger on desktop, narrow width so
     it wraps to several lines. Italic emphasis on key words via <em>. */
  .he-believe__heading {
    font-family: var(--font-heading--family);
    font-size: clamp(32px, 8vw, 48px);
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.025em;
    color: #000000;
    max-width: 14ch;
  }
  .he-believe__heading em {
    font-style: italic;
    font-weight: 600;
  }
  @media (min-width: 750px) {
    .he-believe__heading {
      font-size: clamp(48px, 6.5vw, 84px);
      max-width: 16ch;
      line-height: 1.05;
    }
  }

  .he-believe__subtext {
    font-family: var(--font-body--family);
    font-size: 16px;
    line-height: 1.5;
    color: #000000;
    max-width: 56ch;
    margin: 0 auto;
  }

  .he-believe__divider {
    border: none;
    width: 40px;
    height: 2px;
    background: #000000;
    margin: 8px 0;
  }

  /* Bottom-right button corner */
  .he-believe__corner {
    position: absolute;
    bottom: 24px;
    right: 24px;
    z-index: 2;
    display: flex;
    gap: 10px;
  }
  @media (min-width: 750px) {
    .he-believe__corner { bottom: 40px; right: 40px; }
  }

  .he-believe__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading--family);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 12px 22px;
    border-radius: 10px;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }
  .he-believe__btn:hover { opacity: 0.85; }
  .he-believe__btn--primary { background: #5B4B9E; color: #FFFFFF; border: none; }
  .he-believe__btn--secondary { background: transparent; color: #000000; border: 1.5px solid #000000; }
  .he-believe__btn--link {
    background: transparent;
    color: #000000;
    border: none;
    border-bottom: 1.5px solid #000000;
    border-radius: 0;
    padding: 6px 0;
    letter-spacing: 0.08em;
  }
  .he-believe__btn:focus-visible {
    outline: 3px solid #5B4B9E;
    outline-offset: 3px;
  }
  @media (min-width: 750px) {
    .he-believe__btn { font-size: 14px; padding: 14px 26px; }
  }

  @media (min-width: 750px) {
    .he-believe { padding: 32px 40px 32px; min-height: 80svh; }
  }
/* END_SECTION:he-hp-believe */

/* START_SECTION:he-hp-bestsellers (INDEX:19) */
.he-bs { box-sizing: border-box; background: #FFFFFF; padding-left: 0; padding-right: 0; }
  .he-bs *, .he-bs *::before, .he-bs *::after { box-sizing: border-box; }

  /* Header */
  .he-bs__head {
    padding: 0 24px;
    max-width: 900px;
    margin: 0 auto var(--hp-head-gap-mobile, 32px);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
  }
  .he-bs__head > * { margin: 0; }

  .he-bs__eyebrow {
    font-family: var(--font-body--family);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #9B9790;
  }
  .he-bs__heading {
    font-family: var(--font-heading--family);
    font-size: clamp(28px, 5.5vw, 40px);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.12;
    color: #000000;
  }
  @media (min-width: 750px) {
    .he-bs__heading { font-size: clamp(32px, 3.5vw, 44px); }
  }
  .he-bs__subtext {
    font-family: var(--font-body--family);
    font-size: 16px;
    line-height: 1.5;
    color: #000000;
    max-width: 56ch;
    margin-top: 12px;
  }

  /* Carousel */
  .he-bs__track {
    display: flex;
    gap: 16px;
    padding: 0 24px 8px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .he-bs__track::-webkit-scrollbar { display: none; }

  /* Product card */
  .he-bs__card {
    flex: 0 0 78%;
    max-width: 360px;
    scroll-snap-align: center;
    background: #FFFFFF;
    border: 1.5px solid #5B4B9E;
    border-radius: 18px;
    padding: 18px 18px 22px;
    display: flex;
    flex-direction: column;
    position: relative;
    color: inherit;
    text-decoration: none;
  }

  .he-bs__badge {
    position: absolute;
    top: 18px;
    left: 18px;
    background: #000000;
    color: #FFFFFF;
    font-family: var(--font-body--family);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 7px 14px;
    border-radius: 100px;
    z-index: 2;
  }

  .he-bs__media {
    position: relative;
    aspect-ratio: 1 / 1;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .he-bs__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* Review pill — purple box, white stars + white text (matches hero badge) */
  .he-bs__rating {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    gap: 8px;
    margin-bottom: 12px;
    background: #5B4B9E;
    padding: 7px 14px;
    border-radius: 100px;
  }
  .he-bs__stars {
    display: inline-flex;
    gap: 1px;
    color: #FFFFFF;
    font-size: 13px;
    line-height: 1;
  }
  .he-bs__rating-num {
    font-family: var(--font-body--family);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: #FFFFFF;
  }
  .he-bs__rating-num span { opacity: 0.8; font-weight: 500; }

  /* Judge.me preview badge inside the card */
  .he-bs__jdgm { margin-bottom: 10px; line-height: 1; }

  .he-bs__name {
    font-family: var(--font-heading--family);
    font-size: 18px;
    font-weight: 700;
    color: #000000;
    margin: 0 0 4px;
    line-height: 1.25;
  }

  /* Price row — dynamic price + struck compare-at + % OFF pill */
  .he-bs__price-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: 2px 0 10px;
  }
  .he-bs__price {
    font-family: var(--font-heading--family);
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.01em;
    color: #5B4B9E;
    line-height: 1;
  }
  .he-bs__price-old {
    font-family: var(--font-heading--family);
    font-size: 19px;
    font-weight: 600;
    color: #00000055;
    text-decoration: line-through;
    line-height: 1;
  }
  .he-bs__price-badge {
    background: #5B4B9E;
    color: #FFFFFF;
    font-family: var(--font-body--family);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: 100px;
    line-height: 1;
  }

  .he-bs__desc {
    font-family: var(--font-body--family);
    font-size: 14px;
    line-height: 1.45;
    color: #000000;
    margin: 0 0 12px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    min-height: 2.9em;
  }

  .he-bs__pills {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 16px;
  }
  .he-bs__pill {
    display: inline-flex;
    align-items: center;
    background: #FFFFFF;
    border: 1px solid #00000018;
    border-radius: 100px;
    padding: 6px 12px;
    font-family: var(--font-body--family);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #000000;
  }

  /* Native add-to-cart button (theme primitives, full-width, at card bottom) */
  .he-bs__atc-wrap { margin-top: auto; padding-top: 4px; }
  .he-bs__atc-wrap product-form-component,
  .he-bs__atc-wrap form,
  .he-bs__atc-wrap add-to-cart-component { width: 100%; display: block; }
  .he-bs__atc-wrap .add-to-cart-button { width: 100%; display: inline-flex; align-items: center; justify-content: center; text-transform: uppercase; }

  .he-bs__buy {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    background: #5B4B9E;
    color: #FFFFFF;
    border: none;
    border-radius: 12px;
    padding: 12px 18px;
    font-family: var(--font-heading--family);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: opacity 0.2s ease;
    min-height: 52px;
    width: 100%;
  }
  .he-bs__buy:hover { opacity: 0.92; }
  .he-bs__buy:focus-visible { outline: 3px solid #000000; outline-offset: 3px; }
  .he-bs__buy.is-added { background: #3F8F5B; }
  .he-bs__form { width: 100%; margin: 0; }
  .he-bs__form .he-bs__buy { width: 100%; }
  .he-bs__buy--soldout { background: #00000022; color: #000000; cursor: default; }
  .he-bs__buy--soldout:hover { opacity: 1; }
  .he-bs__buy-label { display: block; white-space: nowrap; line-height: 1.1; text-transform: uppercase; }
  .he-bs__buy-prices { display: inline-flex; align-items: center; justify-content: center; gap: 8px; font-weight: 700; white-space: nowrap; }
  .he-bs__buy-price-old {
    text-decoration: line-through;
    opacity: 0.7;
    font-weight: 500;
    font-size: 12px;
    letter-spacing: 0.04em;
  }
  .he-bs__buy-price-new { font-size: 14px; }

  .he-bs__learn {
    display: inline-block;
    align-self: center;
    margin-top: 12px;
    font-family: var(--font-heading--family);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #000000;
    text-decoration: none;
    border-bottom: 1.5px solid #000000;
    padding-bottom: 2px;
  }

  /* Pagination row */
  /* Carousel arrows — matched to the UGC community section for congruence */
  .he-bs__nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
  }
  .he-bs__arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(250, 248, 244, 0.95);
    border: 1px solid rgba(12, 12, 12, 0.10);
    color: #0C0C0C;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(12, 12, 12, 0.08);
    padding: 0;
  }
  .he-bs__arrow svg { width: 18px; height: 18px; display: block; }
  .he-bs__arrow:active { transform: scale(0.94); }
  .he-bs__arrow:focus-visible { outline: 3px solid #5B4B9E; outline-offset: 3px; }

  @media (min-width: 750px) {
    .he-bs__head { margin-bottom: var(--hp-head-gap-desktop, 44px); }
    /* Full-bleed track. Base width = exactly 4 across; ×1.1 makes each
       card ~10% wider, so ~3.6 show with a peek of the next (scrollable). */
    .he-bs__track {
      max-width: none;
      margin: 0;
      padding: 0 56px 16px;
      gap: 24px;
      /* Center the cards when they don't fill the row (e.g. only 2 products);
         "safe" falls back to start alignment when they overflow so the
         carousel still scrolls from the first card. */
      justify-content: safe center;
    }
    .he-bs__card {
      flex: 0 0 calc((100% - 72px) / 4 * 1.1);
      max-width: none;
      padding: 26px 26px 30px;
    }
    .he-bs__name { font-size: 21px; }
    .he-bs__nav { margin-top: 32px; gap: 24px; }
    .he-bs__arrow { width: 44px; height: 44px; }
  }
/* END_SECTION:he-hp-bestsellers */

/* START_SECTION:he-hp-blog-feature (INDEX:20) */
.he-blog { box-sizing: border-box; }
  .he-blog *, .he-blog *::before, .he-blog *::after { box-sizing: border-box; }

  .he-blog__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr;
    /* mobile: heading group, then image, then subtext + buttons */
    grid-template-areas:
      "head"
      "media"
      "body";
    gap: 22px;
  }

  /* Mobile: frame hugs the image's own ratio (no forced crop / empty space) */
  .he-blog__media {
    grid-area: media;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: #E8E2D9;
  }
  .he-blog__media picture { display: block; width: 100%; }
  .he-blog__media img { display: block; width: 100%; height: auto; }

  .he-blog__head { grid-area: head; }
  .he-blog__body { grid-area: body; }
  .he-blog__head, .he-blog__body {
    display: flex;
    flex-direction: column;
    align-items: center;  /* mobile: centered */
    text-align: center;   /* mobile: centered */
  }
  .he-blog__head { gap: 6px; }
  .he-blog__body { gap: 16px; }
  .he-blog__head > *, .he-blog__body > * { margin: 0; }

  .he-blog__eyebrow {
    font-family: var(--font-body--family);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #FFFFFF;
  }
  .he-blog__heading {
    font-family: var(--font-heading--family);
    font-size: clamp(28px, 5.5vw, 40px);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.025em;
    color: #FFFFFF;
  }
  .he-blog__subtext {
    font-family: var(--font-body--family);
    font-size: 16px;
    line-height: 1.5;
    color: #FFFFFF;
    opacity: 0.9;
    max-width: 52ch;
  }
  .he-blog__divider {
    border: none;
    height: 2px;
    width: 40px;
    background: #FFFFFF;
    opacity: 0.5;
    margin: 4px 0;
  }

  .he-blog__btns {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* mobile: centered */
    gap: 12px;
    margin-top: 8px;
  }
  .he-blog__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading--family);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 14px 26px;
    border-radius: 100px;
    background: var(--btn-bg);
    color: var(--btn-text);
    /* Outline + Obvi-style thick stroke below — both driven by ONE color (--btn-shadow) */
    border: 2px solid var(--btn-shadow, #3A2D66);
    box-shadow: 0 6px 0 var(--btn-shadow, #3A2D66);
    transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.25s ease;
  }
  .he-blog__btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 9px 0 var(--btn-shadow, #3A2D66), 0 14px 24px rgba(0, 0, 0, 0.18);
  }
  .he-blog__btn--primary { --btn-bg: #FFFFFF; --btn-text: #5B4B9E; }
  .he-blog__btn--secondary { --btn-bg: transparent; --btn-text: #FFFFFF; }
  .he-blog__btn--link {
    --btn-bg: transparent;
    --btn-text: #FFFFFF;
    border: none;
    border-bottom: 1.5px solid #FFFFFF;
    border-radius: 0;
    padding: 6px 0;
    box-shadow: none;
  }
  .he-blog__btn:focus-visible { outline: 3px solid #FFFFFF; outline-offset: 3px; }

  @media (min-width: 750px) {
    .he-blog__inner {
      grid-template-columns: 46% 1fr;
      /* desktop: image left (full height), text stacked + centered on the right */
      grid-template-areas:
        "media head"
        "media body";
      column-gap: 64px;
      row-gap: 18px;
      align-content: center;
      padding: 0 64px;
    }
    .he-blog__media {
      aspect-ratio: 1 / 1;
      border-radius: 24px;
    }
    .he-blog__media picture { height: 100%; }
    .he-blog__media img { height: 100%; object-fit: cover; }
    .he-blog__head { align-self: end; align-items: flex-start; text-align: left; }
    .he-blog__body { align-self: start; align-items: flex-start; text-align: left; }
    .he-blog__btns { justify-content: flex-start; }
    .he-blog__heading { font-size: clamp(32px, 3.5vw, 44px); }
    .he-blog__subtext { font-size: 17px; }
  }
/* END_SECTION:he-hp-blog-feature */

/* START_SECTION:he-hp-founder (INDEX:21) */
.he-fnd { box-sizing: border-box; background: #F7F4EF; padding: 0; overflow: hidden; }
  .he-fnd *, .he-fnd *::before, .he-fnd *::after { box-sizing: border-box; }

  .he-fnd__wrap { display: flex; flex-direction: column; }

  .he-fnd__media { position: relative; aspect-ratio: 4 / 5; background: #E8E2D9; overflow: hidden; }
  .he-fnd__media img { display: block; width: 100%; height: 100%; object-fit: cover; }
  .he-fnd__media picture { display: block; width: 100%; height: 100%; }

  .he-fnd__copy {
    padding: 56px 28px 72px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 18px;
  }
  .he-fnd__copy > * { margin: 0; }

  .he-fnd__eyebrow {
    font-family: var(--font-body--family);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #5B4B9E;
  }

  .he-fnd__heading {
    font-family: var(--font-heading--family);
    font-size: clamp(28px, 5.5vw, 40px);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.025em;
    color: #000000;
    max-width: 720px;
  }
  @media (min-width: 750px) {
    .he-fnd__heading { font-size: clamp(32px, 3.5vw, 44px); }
  }
  .he-fnd__heading::before { content: "\201C"; color: #5B4B9E; margin-right: 4px; }
  .he-fnd__heading::after { content: "\201D"; color: #5B4B9E; margin-left: 2px; }

  .he-fnd__subtext {
    font-family: var(--font-body--family);
    font-size: 16px;
    line-height: 1.5;
    color: #000000;
    max-width: 56ch;
  }

  .he-fnd__divider {
    border: none;
    width: 36px;
    height: 2px;
    background: #000000;
  }

  .he-fnd__btn {
    display: inline-flex;
    align-self: flex-start;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading--family);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 10px;
    margin-top: 4px;
  }
  .he-fnd__btn--primary { background: #5B4B9E; color: #FFFFFF; }
  .he-fnd__btn--secondary { background: transparent; color: #000000; border: 1.5px solid #000000; }
  .he-fnd__btn--link { background: transparent; color: #000000; border: none; border-bottom: 1.5px solid #000000; border-radius: 0; padding: 4px 0; }
  .he-fnd__btn:focus-visible { outline: 3px solid #5B4B9E; outline-offset: 4px; }

  @media (min-width: 750px) {
    .he-fnd__wrap { flex-direction: row; align-items: stretch; min-height: 80vh; }
    .he-fnd__media { flex: 0 0 48%; aspect-ratio: unset; }
    .he-fnd__copy { flex: 1; padding: 96px 80px; max-width: 700px; }
  }
  @media (min-width: 1200px) { .he-fnd__copy { padding: 120px 100px; } }
/* END_SECTION:he-hp-founder */

/* START_SECTION:he-hp-hero (INDEX:22) */
.he-hero { box-sizing: border-box; overflow: hidden; }
  .he-hero *, .he-hero *::before, .he-hero *::after { box-sizing: border-box; }

  .he-hero__wrap {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 85svh;
    background: #E8E2D9;
    isolation: isolate;
  }

  .he-hero__copy {
    position: relative;
    z-index: 2;
    padding: 40px 24px 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 16px;
    flex: 1 0 auto;
  }
  .he-hero__copy > * { margin: 0; }

  /* Mobile-only readability scrim: light purple fades up from the bottom
     (where the copy sits) to transparent by ~halfway, leaving the upper
     image clear. Removed on desktop (see media query). */
  .he-hero__copy::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
      rgba(228, 221, 245, 0.96) 0%,
      rgba(228, 221, 245, 0.9) 18%,
      rgba(228, 221, 245, 0.55) 35%,
      rgba(228, 221, 245, 0) 50%);
    z-index: -1;
    pointer-events: none;
  }

  /* Button group — consecutive button blocks render inside this wrapper as equal-width side-by-side cells */
  .he-hero__btns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    width: 100%;
    max-width: 460px;
  }
  .he-hero__btns--single {
    grid-template-columns: max-content;
    width: auto;
  }

  /* Trust badge */
  .he-hero__trust {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--he-hero-accent, #5B4B9E);
    color: #FFFFFF;
    font-family: var(--font-body--family);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 8px 16px;
    border-radius: 100px;
    flex: 0 0 auto;
    width: fit-content;
  }
  .he-hero__trust-stars {
    display: inline-flex;
    gap: 1px;
    color: #FFFFFF;
    font-size: 13px;
    line-height: 1;
  }

  .he-hero__heading {
    font-family: var(--font-heading--family);
    font-size: clamp(36px, 9vw, 44px);
    font-weight: 700;
    line-height: 1.06;
    letter-spacing: -0.03em;
    color: #000000;
  }

  .he-hero__subtext {
    font-family: var(--font-body--family);
    font-size: 17px;
    line-height: 1.5;
    color: #000000;
    max-width: 56ch;
  }

  .he-hero__divider {
    border: none;
    height: 1px;
    background: #000000;
    width: 40px;
    margin: 4px 0;
    flex: 0 0 100%;
    opacity: 0.3;
  }

  /* Buttons — render full-width cell inside the grid wrapper */
  .he-hero__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading--family);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    padding: 14px 16px;
    cursor: pointer;
    transition: opacity 0.2s ease;
    min-height: 48px;
    white-space: nowrap;
    width: 100%;
  }
  .he-hero__btn:hover { opacity: 0.85; }
  .he-hero__btn--primary {
    background: var(--he-hero-accent, #5B4B9E);
    color: #FFFFFF;
    border: none;
    animation: he-hero-pulse 4s ease-in-out infinite;
  }
  .he-hero__btn--secondary {
    background: #FFFFFF;
    color: var(--he-hero-accent, #5B4B9E);
    border: none;
  }
  .he-hero__btn--link {
    background: transparent;
    color: #000000;
    border: none;
    padding: 4px 0;
    border-bottom: 1.5px solid #000000;
    border-radius: 0;
    min-height: auto;
    width: auto;
  }
  .he-hero__btn:focus-visible {
    outline: 3px solid var(--he-hero-accent, #5B4B9E);
    outline-offset: 3px;
  }

  @keyframes he-hero-pulse {
    0%, 85%, 100% { box-shadow: 0 0 0 0 rgba(91, 75, 158, 0); }
    90% { box-shadow: 0 0 0 6px rgba(91, 75, 158, 0.12); }
    95% { box-shadow: 0 0 0 0 rgba(91, 75, 158, 0); }
  }
  @media (prefers-reduced-motion: reduce) {
    .he-hero__btn--primary { animation: none; }
  }

  /* Full-bleed image */
  .he-hero__media {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
  }
  .he-hero__media picture { display: block; width: 100%; height: 100%; }
  .he-hero__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  @media (min-width: 750px) {
    /* Desktop also trimmed by ~4× CTA height (208px) so the marquee
       stays visible above the fold on first load. */
    .he-hero__wrap { min-height: calc(100svh - 208px); }
    .he-hero__copy {
      /* Vertically centre the copy so it fills the empty space instead of sitting low. */
      justify-content: center;
      max-width: 70%;
      padding: 56px 64px 56px 120px;
    }
    /* No scrim on desktop — the copy sits over the light side of the image. */
    .he-hero__copy::before { display: none; }
    .he-hero__heading { font-size: clamp(56px, 5.2vw, 82px); }
    .he-hero__subtext { font-size: 20px; }
    .he-hero__btns { gap: 16px; max-width: 560px; }
    .he-hero__btn {
      font-size: 15px;
      padding: 16px 20px;
      min-height: 52px;
    }
    .he-hero__media img { object-position: right center; }
  }

  @media (min-width: 1200px) {
    .he-hero__copy { padding-left: 160px; padding-right: 80px; }
  }
/* END_SECTION:he-hp-hero */

/* START_SECTION:he-hp-how-it-works (INDEX:23) */
.he-how { box-sizing: border-box; background: #0C0C0C; color: #FFFFFF; padding: 80px 24px; }
  .he-how *, .he-how *::before, .he-how *::after { box-sizing: border-box; }

  .he-how__head {
    max-width: 720px;
    margin: 0 auto 48px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .he-how__head > * { margin: 0; }

  .he-how__eyebrow {
    font-family: var(--font-body--family);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #F23440;
  }
  .he-how__heading {
    font-family: var(--font-heading--family);
    font-size: clamp(28px, 6vw, 40px);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.15;
    color: #FFFFFF;
  }
  .he-how__subtext {
    font-family: var(--font-body--family);
    font-size: 16px;
    line-height: 1.5;
    color: #FFFFFF;
    opacity: 0.8;
    max-width: 52ch;
  }
  .he-how__divider {
    border: none;
    height: 1px;
    width: 40px;
    background: #FFFFFF;
    opacity: 0.4;
  }
  .he-how__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading--family);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 10px;
    margin-top: 8px;
  }
  .he-how__btn--primary { background: #F23440; color: #FFFFFF; }
  .he-how__btn--secondary { background: transparent; color: #FFFFFF; border: 1.5px solid #FFFFFF; }
  .he-how__btn--link { color: #FFFFFF; border-bottom: 1.5px solid #FFFFFF; padding: 4px 0; border-radius: 0; }

  .he-how__grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .he-how__card {
    background: #1A1A1A;
    border: 1px solid #FFFFFF12;
    border-radius: 16px;
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    gap: 18px;
  }

  .he-how__icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: #F23440;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .he-how__icon { width: 28px; height: 28px; color: #FFFFFF; }

  .he-how__h {
    font-family: var(--font-heading--family);
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: #FFFFFF;
    margin: 0;
    line-height: 1.2;
  }
  .he-how__tag {
    font-family: var(--font-body--family);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #F23440;
    margin: 0 0 4px;
  }
  .he-how__desc {
    font-family: var(--font-body--family);
    font-size: 15px;
    line-height: 1.6;
    color: #FFFFFF;
    opacity: 0.85;
    margin: 0;
  }

  .he-how__bullets { list-style: none; padding: 0; margin: 6px 0 0; display: flex; flex-direction: column; gap: 10px; }
  .he-how__bullet { display: flex; gap: 10px; align-items: flex-start; font-family: var(--font-body--family); font-size: 14px; line-height: 1.5; color: #FFFFFF; opacity: 0.9; }
  .he-how__bullet::before {
    content: "";
    width: 6px; height: 6px;
    margin-top: 8px;
    border-radius: 100px;
    background: #F23440;
    flex-shrink: 0;
  }

  @media (min-width: 750px) {
    .he-how { padding: 120px 40px; }
    .he-how__grid { grid-template-columns: 1fr 1fr; gap: 24px; }
    .he-how__card { padding: 40px 32px; }
  }
/* END_SECTION:he-hp-how-it-works */

/* START_SECTION:he-hp-mechanism-explainer (INDEX:24) */
.he-mxp, .he-mxp * { box-sizing: border-box; }

  .he-mxp__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .he-mxp__col {
    display: flex;
    flex-direction: column;
    gap: 32px;
  }

  @media screen and (max-width: 749px) {
    .he-mxp__col { display: contents; }
    .he-mxp__col > * { order: var(--mob-order, 0); }
  }

  @media screen and (min-width: 750px) {
    .he-mxp__inner {
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: center;
    }
  }

  .he-mxp__media {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #E8E2D9;
  }
  .he-mxp__media img { display: block; width: 100%; height: 100%; object-fit: cover; }

  .he-mxp__text { display: flex; flex-direction: column; gap: 14px; }
  .he-mxp__text > * { margin: 0; }

  .he-mxp__eyebrow {
    font-family: var(--font-body--family);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #9B9790;
  }
  .he-mxp__heading {
    font-family: var(--font-heading--family);
    font-size: clamp(26px, 6vw, 32px);
    font-weight: 700;
    line-height: 1.18;
    letter-spacing: -0.01em;
    color: #000000;
  }
  .he-mxp__subtext {
    font-family: var(--font-body--family);
    font-size: 16px;
    line-height: 1.55;
    color: #000000;
    max-width: 48ch;
  }

  .he-mxp__stat {
    margin-top: 4px;
    padding-top: 16px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    max-width: 48ch;
  }
  .he-mxp__stat-line {
    font-family: var(--font-body--family);
    font-size: 16px;
    line-height: 1.5;
    color: #000000;
  }
  .he-mxp__stat-line strong {
    font-family: var(--font-heading--family);
    font-weight: 700;
    color: #5B4B9E;
    font-size: 1.1em;
  }
  .he-mxp__stat-source {
    font-family: var(--font-body--family);
    font-size: 12px;
    letter-spacing: 0.02em;
    color: #6B6963;
    margin-top: 6px;
  }

  .he-mxp__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading--family);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    padding: 14px 26px;
    border-radius: 10px;
    width: fit-content;
    margin-top: 4px;
    transition: opacity 0.2s ease;
  }
  .he-mxp__btn:hover { opacity: 0.85; }
  .he-mxp__btn--primary { background: #5B4B9E; color: #FFFFFF; border: none; }
  .he-mxp__btn--secondary { background: transparent; color: #000000; border: 1.5px solid #000000; }
  .he-mxp__btn--link {
    background: transparent;
    color: #000000;
    border: none;
    border-bottom: 1.5px solid #000000;
    border-radius: 0;
    padding: 4px 0;
  }
  .he-mxp__btn:focus-visible { outline: 3px solid #5B4B9E; outline-offset: 3px; }

  .he-mxp__logos {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 28px;
    margin-top: 12px;
  }
  .he-mxp__logos img {
    display: block;
    height: 24px;
    width: auto;
    object-fit: contain;
    opacity: 0.6;
    filter: grayscale(100%);
  }

  @media screen and (min-width: 750px) {
    .he-mxp__heading { font-size: clamp(30px, 3.2vw, 38px); }
    .he-mxp__subtext { font-size: 17px; }
    .he-mxp__logos img { height: 28px; }
  }
/* END_SECTION:he-hp-mechanism-explainer */

/* START_SECTION:he-hp-mechanism (INDEX:25) */
.he-hp-mech { box-sizing: border-box; background: #0C0C0C; color: #FFFFFF; padding: 32px 24px; }
  .he-hp-mech *, .he-hp-mech *::before, .he-hp-mech *::after { box-sizing: border-box; }

  .he-hp-mech__head {
    max-width: 720px;
    margin: 0 auto 48px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }
  .he-hp-mech__head > * { margin: 0; }

  .he-hp-mech__eyebrow {
    font-family: var(--font-body--family);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #5B4B9E;
  }
  .he-hp-mech__heading {
    font-family: var(--font-heading--family);
    font-size: clamp(28px, 5.5vw, 40px);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.025em;
    color: #FFFFFF;
    max-width: 720px;
  }
  @media (min-width: 750px) {
    .he-hp-mech__heading { font-size: clamp(32px, 3.5vw, 44px); }
  }
  .he-hp-mech__subtext {
    font-family: var(--font-body--family);
    font-size: 16px;
    line-height: 1.5;
    color: #FFFFFF;
    opacity: 0.82;
    max-width: 56ch;
    margin: 0 auto;
  }
  .he-hp-mech__divider {
    border: none;
    height: 1px;
    width: 40px;
    background: #FFFFFF;
    opacity: 0.4;
  }
  .he-hp-mech__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading--family);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 10px;
    margin-top: 8px;
  }
  .he-hp-mech__btn--primary { background: #5B4B9E; color: #FFFFFF; }
  .he-hp-mech__btn--secondary { background: transparent; color: #FFFFFF; border: 1.5px solid #FFFFFF; }
  .he-hp-mech__btn--link { color: #FFFFFF; border-bottom: 1.5px solid #FFFFFF; padding: 4px 0; border-radius: 0; }

  .he-hp-mech__grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .he-hp-mech__card {
    background: #1A1A1A;
    border: 1px solid #FFFFFF12;
    border-radius: 16px;
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    gap: 18px;
  }

  .he-hp-mech__icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: #5B4B9E;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .he-hp-mech__icon { width: 28px; height: 28px; color: #FFFFFF; }

  .he-hp-mech__tag {
    font-family: var(--font-body--family);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #5B4B9E;
    margin: 0 0 4px;
  }
  .he-hp-mech__title {
    font-family: var(--font-heading--family);
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: #FFFFFF;
    margin: 0;
    line-height: 1.2;
  }
  .he-hp-mech__desc {
    font-family: var(--font-body--family);
    font-size: 15px;
    line-height: 1.6;
    color: #FFFFFF;
    opacity: 0.85;
    margin: 0;
  }

  .he-hp-mech__bullets {
    list-style: none;
    padding: 0;
    margin: 6px 0 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .he-hp-mech__bullet {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-family: var(--font-body--family);
    font-size: 14px;
    line-height: 1.5;
    color: #FFFFFF;
    opacity: 0.9;
  }
  .he-hp-mech__bullet::before {
    content: "";
    width: 6px; height: 6px;
    margin-top: 8px;
    border-radius: 100px;
    background: #5B4B9E;
    flex-shrink: 0;
  }

  @media (min-width: 750px) {
    .he-hp-mech { padding: 32px 40px; }
    .he-hp-mech__grid { grid-template-columns: 1fr 1fr; gap: 24px; }
    .he-hp-mech__card { padding: 40px 32px; }
  }
/* END_SECTION:he-hp-mechanism */

/* START_SECTION:he-hp-offer (INDEX:26) */
.he-offer { box-sizing: border-box; background: #FFFFFF; padding: 64px 24px 80px; }
  .he-offer *, .he-offer *::before, .he-offer *::after { box-sizing: border-box; }

  .he-offer__inner { max-width: 640px; margin: 0 auto; }

  .he-offer__head { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 10px; margin-bottom: 28px; }
  .he-offer__head > * { margin: 0; }
  .he-offer__eyebrow {
    font-family: var(--font-body--family);
    font-size: 12px; font-weight: 700; letter-spacing: 0.16em;
    text-transform: uppercase; color: var(--he-offer-accent, #5B4B9E);
  }
  .he-offer__heading {
    font-family: var(--font-heading--family);
    font-size: clamp(28px, 5.5vw, 40px); font-weight: 600;
    line-height: 1.2; letter-spacing: -0.025em; color: #000000; max-width: 16ch;
  }
  @media (min-width: 750px) { .he-offer__heading { font-size: clamp(32px, 3.5vw, 44px); } }
  .he-offer__subtext {
    font-family: var(--font-body--family);
    font-size: 16px; line-height: 1.5; color: #000000; max-width: 52ch;
  }

  .he-offer__options { display: flex; flex-direction: column; gap: 14px; }

  /* Each selectable offer row */
  .he-offer__option {
    position: relative;
    display: block;
    border: 2px solid #00000018;
    border-radius: 16px;
    padding: 18px 20px;
    cursor: pointer;
    transition: border-color 0.18s ease, background 0.18s ease;
    background: #FFFFFF;
  }
  .he-offer__option:has(.he-offer__radio-input:checked) {
    border-color: var(--he-offer-accent, #5B4B9E);
  }
  .he-offer__radio-input { position: absolute; opacity: 0; pointer-events: none; }

  .he-offer__opt-main { display: flex; align-items: flex-start; gap: 14px; }

  .he-offer__radio {
    flex-shrink: 0;
    width: 22px; height: 22px;
    border-radius: 100px;
    border: 2px solid #00000035;
    margin-top: 2px;
    position: relative;
    transition: border-color 0.18s ease;
  }
  .he-offer__option:has(.he-offer__radio-input:checked) .he-offer__radio {
    border-color: var(--he-offer-accent, #5B4B9E);
  }
  .he-offer__option:has(.he-offer__radio-input:checked) .he-offer__radio::after {
    content: "";
    position: absolute; inset: 3px;
    border-radius: 100px;
    background: var(--he-offer-accent, #5B4B9E);
  }

  .he-offer__opt-text { flex: 1; min-width: 0; }
  .he-offer__label {
    font-family: var(--font-heading--family);
    font-size: 17px; font-weight: 700; color: #000000; line-height: 1.25;
    display: block;
  }
  .he-offer__sublines { list-style: none; padding: 0; margin: 6px 0 0; display: flex; flex-direction: column; gap: 3px; }
  .he-offer__subline {
    font-family: var(--font-body--family);
    font-size: 14px; color: #000000; opacity: 0.75; display: flex; gap: 7px; align-items: center;
  }
  .he-offer__subline::before { content: "\2713"; color: var(--he-offer-accent, #5B4B9E); font-weight: 700; }

  .he-offer__opt-price { text-align: right; flex-shrink: 0; display: flex; flex-direction: column; align-items: flex-end; }
  .he-offer__price { font-family: var(--font-heading--family); font-size: 18px; font-weight: 700; color: #000000; }
  .he-offer__compare { font-family: var(--font-body--family); font-size: 14px; color: #000000; opacity: 0.5; text-decoration: line-through; }

  .he-offer__save {
    position: absolute; top: -11px; right: 18px;
    background: var(--he-offer-accent, #5B4B9E); color: #FFFFFF;
    font-family: var(--font-body--family); font-size: 12px; font-weight: 700;
    letter-spacing: 0.04em; padding: 4px 12px; border-radius: 100px;
  }

  /* Bundle: the included products */
  .he-offer__bundle {
    margin-top: 16px; padding-top: 4px;
    display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 8px;
    border: 1px solid #00000012; border-radius: 12px; padding: 14px;
  }
  .he-offer__bundle-item { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 6px; }
  .he-offer__bundle-img { width: 84px; height: 84px; border-radius: 10px; overflow: hidden; background: #F5F1EA; }
  .he-offer__bundle-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .he-offer__bundle-name { font-family: var(--font-heading--family); font-size: 13px; font-weight: 700; color: #000000; line-height: 1.2; }
  .he-offer__bundle-price { font-family: var(--font-body--family); font-size: 13px; }
  .he-offer__bundle-price b { color: #000000; }
  .he-offer__bundle-price s { opacity: 0.5; margin-left: 4px; }
  .he-offer__plus {
    width: 30px; height: 30px; border-radius: 100px; background: #00000010;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 18px; color: #000000; line-height: 1;
  }

  .he-offer__atc {
    margin-top: 22px; width: 100%;
    display: inline-flex; align-items: center; justify-content: center;
    background: var(--he-offer-accent, #5B4B9E); color: #FFFFFF; border: none;
    border-radius: 100px; padding: 18px 28px;
    font-family: var(--font-heading--family); font-size: 15px; font-weight: 700;
    letter-spacing: 0.12em; text-transform: uppercase; cursor: pointer;
    transition: opacity 0.2s ease; min-height: 56px;
  }
  .he-offer__atc:hover { opacity: 0.92; }
  .he-offer__atc:focus-visible { outline: 3px solid #000000; outline-offset: 3px; }
  .he-offer__atc.is-added { background: #3F8F5B; }

  .he-offer__trust {
    margin: 16px 0 0; text-align: center;
    font-family: var(--font-body--family); font-size: 13px; font-weight: 600;
    letter-spacing: 0.04em; color: #000000;
  }
  .he-offer__trust .dot { color: #3F8F5B; }

  @media (min-width: 750px) { .he-offer { padding: 96px 24px 110px; } }
/* END_SECTION:he-hp-offer */

/* START_SECTION:he-hp-problem (INDEX:27) */
.he-prob { box-sizing: border-box; background: #FFFFFF; padding: 32px 24px; }
  .he-prob *, .he-prob *::before, .he-prob *::after { box-sizing: border-box; }

  .he-prob__wrap { max-width: 1200px; margin: 0 auto; display: flex; flex-direction: column; gap: 48px; }

  .he-prob__copy { display: flex; flex-direction: column; gap: 16px; }
  .he-prob__copy > * { margin: 0; }

  .he-prob__eyebrow {
    font-family: var(--font-body--family);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #5B4B9E;
  }
  .he-prob__heading {
    font-family: var(--font-heading--family);
    font-size: clamp(28px, 5.5vw, 40px);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.025em;
    color: #000000;
    max-width: 720px;
  }
  @media (min-width: 750px) {
    .he-prob__heading { font-size: clamp(32px, 3.5vw, 44px); }
  }
  .he-prob__subtext {
    font-family: var(--font-body--family);
    font-size: 16px;
    line-height: 1.5;
    color: #000000;
    max-width: 56ch;
  }
  .he-prob__divider {
    border: none;
    height: 1px;
    width: 40px;
    background: #000000;
    opacity: 0.3;
  }
  .he-prob__btn {
    display: inline-flex;
    align-self: flex-start;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading--family);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 10px;
    margin-top: 8px;
  }
  .he-prob__btn--primary { background: #5B4B9E; color: #FFFFFF; }
  .he-prob__btn--secondary { background: transparent; color: #000000; border: 1.5px solid #000000; }
  .he-prob__btn--link { color: #000000; border-bottom: 1.5px solid #000000; padding: 4px 0; border-radius: 0; }

  /* Point block */
  .he-prob__point { display: flex; gap: 14px; align-items: flex-start; }
  .he-prob__point-num {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 100px;
    background: #5B4B9E;
    color: #FFFFFF;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading--family);
    font-size: 13px;
    font-weight: 700;
  }
  .he-prob__point-text {
    font-family: var(--font-body--family);
    font-size: 15px;
    line-height: 1.5;
    color: #000000;
    margin: 4px 0 0;
  }
  .he-prob__point-text strong { font-weight: 700; }

  /* Diagram */
  .he-prob__diagram {
    background: #F7F4EF;
    border-radius: 18px;
    padding: 32px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .he-prob__svg { width: 100%; max-width: 380px; height: auto; }
  .he-prob__legend { display: flex; flex-direction: column; gap: 10px; margin-top: 24px; width: 100%; max-width: 380px; }
  .he-prob__leg-row { display: flex; align-items: center; gap: 12px; }
  .he-prob__leg-dot { width: 14px; height: 14px; border-radius: 100px; flex-shrink: 0; }
  .he-prob__leg-label { font-family: var(--font-body--family); font-size: 13px; font-weight: 600; color: #000000; margin: 0; flex: 1; }
  .he-prob__leg-depth { font-family: var(--font-body--family); font-size: 12px; color: #000000; opacity: 0.6; margin: 0; }

  @media (min-width: 750px) {
    .he-prob { padding: 32px 40px; }
    .he-prob__wrap { flex-direction: row; align-items: center; gap: 80px; }
    .he-prob__copy { flex: 1; }
    .he-prob__diagram { flex: 0 0 420px; padding: 40px 28px; }
  }
/* END_SECTION:he-hp-problem */

/* START_SECTION:he-hp-quiz (INDEX:28) */
/* =========================================================================
     LAYOUT, single shell holds every screen; one is active at a time
     ========================================================================= */
  .he-quiz { box-sizing: border-box; background: #FFFFFF; min-height: 100svh; position: relative; }
  .he-quiz *, .he-quiz *::before, .he-quiz *::after { box-sizing: border-box; }
  .he-quiz__screen { display: none; min-height: 100svh; }
  .he-quiz__screen.is-active { display: block; }

  /* Two-column split: image LEFT on desktop only. Mobile = no image, content fills viewport. */
  .he-quiz__split {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    min-height: 100svh;
  }
  .he-quiz__visual {
    display: none; /* hidden on mobile, quiz only */
    background: var(--he-quiz-accent-soft, #ECE8F6);
    background-size: cover;
    background-position: center;
    position: relative;
  }
  .he-quiz__visual::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.05) 100%);
    pointer-events: none;
  }
  @media (min-width: 750px) {
    .he-quiz__visual { display: block; min-height: 100svh; }
  }
  .he-quiz__content {
    padding: 12px 24px 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    min-width: 0;
    background: #F0EDF7; /* light purple wash, stays put during slide animation */
    text-align: center;
    overflow: hidden; /* clip the inner panel as it slides off, bg remains visible */
  }
  /* Inner panel, this is what animates. The content panel above stays put with its bg. */
  .he-quiz__content-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    width: 100%;
    will-change: transform, opacity;
  }
  @media (min-width: 750px) {
    .he-quiz__split { grid-template-columns: 50% 50%; grid-template-rows: 1fr; }
    .he-quiz__visual { min-height: 100svh; }
    .he-quiz__content { padding: 24px 56px 56px; gap: 24px; }
    .he-quiz__content-inner { gap: 24px; }
  }

  /* =========================================================================
     COMMON CHROME, Bloom-style centered layout, dark-purple pill chip on top
     ========================================================================= */
  .he-quiz__topic {
    display: inline-block;
    align-self: center;
    background: var(--he-quiz-accent, #5B4B9E);
    color: #FFFFFF;
    font-family: var(--font-heading--family);
    font-size: 13px; font-weight: 700; letter-spacing: 0.01em;
    padding: 8px 18px;
    border-radius: 100px;
    margin: 0 0 4px;
    text-transform: none;
  }
  @media (min-width: 750px) { .he-quiz__topic { font-size: 14px; padding: 9px 20px; } }
  .he-quiz__title {
    font-family: var(--font-heading--family);
    font-size: clamp(32px, 8vw, 44px);
    font-weight: 700; line-height: 1.1; letter-spacing: -0.028em;
    color: var(--he-quiz-accent, #5B4B9E); margin: 0; max-width: 16ch; text-align: center; align-self: center;
  }
  @media (min-width: 750px) { .he-quiz__title { font-size: clamp(28px, 3vw, 38px); max-width: 22ch; line-height: 1.18; } }
  .he-quiz__subline {
    font-family: var(--font-body--family);
    font-size: 14px; font-weight: 600; line-height: 1.45;
    color: var(--he-quiz-accent, #5B4B9E); opacity: 0.75;
    margin: 0 0 12px; max-width: 40ch; text-align: center; align-self: center;
  }
  .he-quiz__meta {
    font-family: var(--font-body--family);
    font-size: 13px; color: var(--he-quiz-accent, #5B4B9E); opacity: 0.65; margin: 0;
  }

  /* Chip stack, Bloom-style large rounded white pills */
  .he-quiz__chips {
    display: flex; flex-direction: column; gap: 12px;
    margin: 8px 0 0;
    width: 100%; max-width: 340px; align-self: center;
  }
  @media (min-width: 750px) { .he-quiz__chips { max-width: 440px; gap: 14px; } }
  .he-quiz__chip {
    display: flex; align-items: center; justify-content: center;
    width: 100%;
    background: #FFFFFF;
    border: 1.5px solid transparent;
    border-radius: 100px;
    padding: 16px 22px; min-height: 56px;
    font-family: var(--font-heading--family);
    font-size: 18px; font-weight: 600; line-height: 1.3;
    color: var(--he-quiz-accent, #5B4B9E); text-align: center; cursor: pointer;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    transition: transform 0.14s ease, box-shadow 0.14s ease, background 0.14s ease, color 0.14s ease, border-color 0.14s ease;
  }
  .he-quiz__chip:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.10);
  }
  .he-quiz__chip:active { transform: translateY(0); }
  .he-quiz__chip.is-selected {
    background: var(--he-quiz-accent, #5B4B9E);
    color: #FFFFFF;
    border-color: var(--he-quiz-accent, #5B4B9E);
    box-shadow: 0 4px 16px rgba(91,75,158,0.25);
  }
  /* Single-select chips don't need a radio, selection state is the fill.
     Multi-select chips keep a small inline check pill on the left. */
  .he-quiz__chip-radio { display: none; }
  .he-quiz__chip-check {
    flex-shrink: 0;
    width: 18px; height: 18px;
    border: 1.5px solid #00000035;
    border-radius: 5px;
    position: relative;
    margin-right: 6px;
    transition: border-color 0.14s ease, background 0.14s ease;
  }
  .he-quiz__chip.is-selected .he-quiz__chip-check {
    border-color: #FFFFFF;
    background: #FFFFFF;
  }
  .he-quiz__chip.is-selected .he-quiz__chip-check::after {
    content: ""; position: absolute; left: 4px; top: 0px;
    width: 5px; height: 10px;
    border: solid var(--he-quiz-accent, #5B4B9E);
    border-width: 0 2.5px 2.5px 0;
    transform: rotate(45deg);
  }
  .he-quiz__chip-label { flex: 0 1 auto; min-width: 0; }

  /* "Other" chip in inline-input mode — the chip becomes an editable text field,
     keeping the purple selected styling. Click drops the cursor straight in. */
  .he-quiz__chip--input { padding: 0; cursor: text; }
  .he-quiz__chip-inline-input {
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    color: inherit;
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
    text-align: center;
    padding: 18px 26px;
    min-height: 56px;
    border-radius: 100px;
  }
  .he-quiz__chip-inline-input::placeholder {
    color: rgba(255,255,255,0.65);
    font-style: italic;
  }

  /* Primary button, full-width rounded pill (Bloom's Next CTA) */
  .he-quiz__btn {
    display: inline-flex; align-items: center; justify-content: center;
    background: var(--he-quiz-accent, #5B4B9E); color: #FFFFFF;
    border: none; border-radius: 100px;
    padding: 18px 32px; min-height: 58px;
    width: 100%; max-width: 440px; align-self: center;
    font-family: var(--font-heading--family);
    font-size: 16px; font-weight: 600; letter-spacing: 0;
    text-transform: none; cursor: pointer;
    box-shadow: 0 4px 16px rgba(91,75,158,0.20);
    transition: opacity 0.2s ease, transform 0.1s ease, box-shadow 0.2s ease;
  }
  .he-quiz__btn:hover { opacity: 0.95; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(91,75,158,0.28); }
  .he-quiz__btn:active { transform: translateY(0); }
  .he-quiz__btn:disabled { opacity: 0.4; cursor: not-allowed; box-shadow: none; }
  .he-quiz__btn:focus-visible { outline: 3px solid #000000; outline-offset: 3px; }
  .he-quiz__btn[hidden] { display: none !important; } /* override inline-flex */
  .he-quiz__btn--ghost {
    background: transparent; color: #000000;
    border: 1.5px solid #000000; box-shadow: none;
  }
  .he-quiz__btn--link {
    background: transparent; color: #000000;
    border: none; min-height: auto; padding: 6px 0;
    border-bottom: 1.5px solid #000000; border-radius: 0;
    width: auto; max-width: none; letter-spacing: 0.04em; font-size: 13px;
    box-shadow: none;
  }

  /* Subtle Continue, when multi-select has no selection yet, so the bold
     purple pill doesn't compete visually with the actual answer chips. */
  .he-quiz__btn--subtle {
    background: transparent;
    color: var(--he-quiz-accent, #5B4B9E);
    box-shadow: none;
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-thickness: 1.5px;
    opacity: 0.7;
    font-weight: 500;
    min-height: 44px;
    padding: 10px 24px;
  }
  .he-quiz__btn--subtle:hover { opacity: 1; transform: none; box-shadow: none; }
  .he-quiz__btn--subtle:active { transform: none; }

  /* Subtle skip chip, rendered below the main chips for "I'd need to check, skip" style answers.
     Same visual language as the subtle Continue. Used on Q4 self-assessment + email-screen Continue. */
  .he-quiz__subtle-chips {
    display: flex; flex-direction: column; align-items: center; gap: 6px;
    margin-top: 6px;
    width: 100%; max-width: 440px; align-self: center;
  }
  .he-quiz__subtle-chips:empty { display: none; }
  .he-quiz__subtle-chip,
  .he-quiz__subtle-link {
    background: none; border: none; cursor: pointer;
    color: var(--he-quiz-accent, #5B4B9E);
    font-family: var(--font-heading--family);
    font-size: 14px; font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-thickness: 1.5px;
    opacity: 0.65;
    padding: 8px 16px;
    transition: opacity 0.14s ease;
  }
  .he-quiz__subtle-chip:hover,
  .he-quiz__subtle-link:hover { opacity: 1; }

  /* Gradient backdrop tray, paints below the fixed Continue button on mobile.
     Fades content into the panel wash above the button so the CTA reads as an
     anchored action zone, not a floating overlay. */
  .he-quiz__continue-tray {
    display: none;
    position: fixed;
    left: 0; right: 0; bottom: 0;
    height: 140px;
    background: linear-gradient(
      to top,
      #F0EDF7 0%,
      #F0EDF7 45%,
      rgba(240, 237, 247, 0.92) 70%,
      rgba(240, 237, 247, 0) 100%
    );
    pointer-events: none;
    z-index: 99; /* below the button (100), above all content */
  }

  /* Fixed Continue, pinned to viewport bottom on BOTH mobile and desktop, sitting
     over the gradient tray. (position: sticky doesn't work because .he-quiz__content
     has overflow: hidden for the slide animation.) */
  .he-quiz__btn[data-q-continue]:not([hidden]):not(.he-quiz__btn--subtle) {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 48px);
    max-width: 440px;
    z-index: 100;
    box-shadow: 0 8px 24px rgba(91,75,158,0.28);
  }
  /* Show the gradient tray whenever a prominent Continue is rendered on the question screen */
  .he-quiz__shell:has(.he-quiz__screen.is-active[data-screen="question"] .he-quiz__btn[data-q-continue]:not([hidden]):not(.he-quiz__btn--subtle)) .he-quiz__continue-tray {
    display: block;
  }
  /* Reserve bottom space inside content so the last chip isn't hidden under the tray */
  .he-quiz__content:has(.he-quiz__btn[data-q-continue]:not([hidden]):not(.he-quiz__btn--subtle)) {
    padding-bottom: 140px;
  }
  /* Desktop refinement: on the panel side (50% width), constrain Continue to the panel
     instead of stretching across the full viewport */
  @media (min-width: 750px) {
    .he-quiz__btn[data-q-continue]:not([hidden]):not(.he-quiz__btn--subtle) {
      left: 75%; /* center on the right 50% panel: (50% + 100%) / 2 */
      max-width: 380px;
    }
    .he-quiz__continue-tray {
      left: 50%; /* tray covers only the content panel, not the image side */
    }
  }

  /* TOP BAR, "Question X of N" label + progress bar with 3 checkpoint dots.
     Always visible above the fold on mobile (no sticky needed since it's at top). */
  .he-quiz__topbar {
    display: flex; flex-direction: column; align-items: center; gap: 0;
    width: 100%; max-width: 480px; align-self: center;
    margin-bottom: 16px;
  }
  @media (min-width: 750px) { .he-quiz__topbar { margin-bottom: 20px; } }

  /* Extra breathing room before the answer chips (not the topic pill) */
  .he-quiz__chips { margin-top: 24px; }
  @media (min-width: 750px) { .he-quiz__chips { margin-top: 32px; } }
  .he-quiz__progress-text { display: none; }
  /* SOLID opaque colors, no transparency means no darker zone where dot overlaps bar.
     Bar track + inactive dot = exact same color. Bar fill + active dot = exact same color.
     Result: the bar+dots read as one continuous shape with bumps. Inner edges invisible
     because there's no color difference at the overlap. */
  .he-quiz__progress-bar {
    position: relative;
    width: 100%; height: 8px;
    background: #D5D0E7; /* solid equivalent of bar track on the light-purple panel */
    border-radius: 100px;
    overflow: visible; /* dots extend beyond bar to create the bumps */
  }
  .he-quiz__progress-fill {
    position: absolute; top: 0; left: 0; bottom: 0;
    width: 0;
    background: #5B4B9E; /* solid purple */
    border-radius: 100px;
    transition: width 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
  }
  /* Dots are taller than the bar, but same colors. Where dot covers bar, no color change.
     Where dot extends above/below the bar, it bulges out as part of the same shape. */
  .he-quiz__progress-dot {
    position: absolute; top: 50%;
    width: 14px; height: 14px;
    border-radius: 100px;
    background: #D5D0E7; /* exact match for track */
    transform: translate(-50%, -50%);
    transition: background 0.45s ease;
    z-index: 2;
  }
  .he-quiz__progress-dot.is-active {
    background: #5B4B9E; /* exact match for fill */
  }
  /* Outer dots positioned so the bulge stays aligned with the bar's rounded ends */
  .he-quiz__progress-dot[data-q-dot="0"]   { left: 4px;  }
  .he-quiz__progress-dot[data-q-dot="50"]  { left: 50%;  }
  .he-quiz__progress-dot[data-q-dot="100"] { left: calc(100% - 4px); }

  /* Footer, just Back, centered, follows the content (no margin-top auto)
     so on short screens (email) it sits right under the form, not at viewport bottom. */
  .he-quiz__foot {
    display: flex; flex-direction: column; align-items: center;
    gap: 12px; padding: 24px 0 8px;
    width: 100%; max-width: 480px; align-self: center;
  }
  .he-quiz__back {
    background: none; border: none; padding: 10px 16px; cursor: pointer;
    font-family: var(--font-heading--family);
    font-size: 17px; font-weight: 700; color: var(--he-quiz-accent, #5B4B9E);
    display: inline-flex; align-items: center; gap: 6px;
    letter-spacing: -0.01em;
  }
  .he-quiz__back:hover { opacity: 0.75; }
  .he-quiz__back[hidden] { display: none; }

  /* Screen transition, fade for ack / loading (those screens don't slide) */
  .he-quiz__screen.is-active > .he-quiz__ack,
  .he-quiz__screen.is-active > .he-quiz__loading {
    animation: heQuizScreenFade 320ms cubic-bezier(0.4, 0, 0.2, 1);
  }
  @keyframes heQuizScreenFade {
    0% { opacity: 0; transform: translateY(4px); }
    100% { opacity: 1; transform: translateY(0); }
  }

  /* Question slide transition, Bloom pattern: content-inner slides fully off, new slides in
     from off-panel. Outer .he-quiz__content keeps the bg painted so nothing flashes white. */
  @keyframes heQuizSlideFromRight {
    0%   { opacity: 0; transform: translateX(60%); }
    100% { opacity: 1; transform: translateX(0); }
  }
  @keyframes heQuizSlideFromLeft {
    0%   { opacity: 0; transform: translateX(-60%); }
    100% { opacity: 1; transform: translateX(0); }
  }
  @keyframes heQuizSlideOutLeft {
    0%   { opacity: 1; transform: translateX(0); }
    100% { opacity: 0; transform: translateX(-60%); }
  }
  @keyframes heQuizSlideOutRight {
    0%   { opacity: 1; transform: translateX(0); }
    100% { opacity: 0; transform: translateX(60%); }
  }

  /* =========================================================================
     LANDING, centered headline + body + full-width CTA (Bloom landing pattern)
     ========================================================================= */
  .he-quiz__landing-inner {
    display: flex; flex-direction: column; align-items: center; gap: 22px;
    max-width: 480px; text-align: center;
  }
  .he-quiz__landing-headline {
    font-family: var(--font-heading--family);
    font-size: clamp(34px, 8vw, 48px);
    font-weight: 700; line-height: 1.08; letter-spacing: -0.03em;
    color: var(--he-quiz-accent, #5B4B9E); margin: 0; font-style: normal; text-align: center;
  }
  .he-quiz__landing-sub {
    font-family: var(--font-body--family);
    font-size: 16px; line-height: 1.5; color: var(--he-quiz-accent, #5B4B9E); opacity: 0.8;
    margin: 0; max-width: 36ch; text-align: center;
  }

  /* =========================================================================
     ACKNOWLEDGMENT, full-screen empathy line
     ========================================================================= */
  .he-quiz__ack {
    display: flex; align-items: center; justify-content: center;
    min-height: 100svh; padding: 40px 28px;
    background: #F0EDF7;
    text-align: center;
  }
  .he-quiz__ack-text {
    font-family: var(--font-heading--family);
    font-size: clamp(22px, 4.5vw, 32px);
    font-weight: 600; line-height: 1.3; letter-spacing: -0.015em;
    color: var(--he-quiz-accent, #5B4B9E); margin: 0; max-width: 22ch;
    opacity: 0; animation: heQuizAckFade 600ms ease forwards;
  }
  @keyframes heQuizAckFade {
    0% { opacity: 0; transform: translateY(6px); }
    100% { opacity: 1; transform: translateY(0); }
  }

  /* =========================================================================
     LOADING
     ========================================================================= */
  .he-quiz__loading {
    display: flex; align-items: center; justify-content: center;
    min-height: 100svh; padding: 40px 28px;
    background: #F0EDF7; text-align: center;
    flex-direction: column; gap: 28px;
  }
  .he-quiz__loading-text {
    font-family: var(--font-heading--family);
    font-size: clamp(22px, 4vw, 30px);
    font-weight: 600; line-height: 1.3; letter-spacing: -0.015em;
    color: var(--he-quiz-accent, #5B4B9E); margin: 0; min-height: 2.5em;
    transition: opacity 0.3s ease;
  }
  .he-quiz__loading-dots {
    display: inline-flex; gap: 8px;
  }
  .he-quiz__loading-dots span {
    width: 8px; height: 8px; border-radius: 100px;
    background: var(--he-quiz-accent, #5B4B9E);
    animation: heQuizDot 1.4s infinite ease-in-out;
  }
  .he-quiz__loading-dots span:nth-child(2) { animation-delay: 0.18s; }
  .he-quiz__loading-dots span:nth-child(3) { animation-delay: 0.36s; }
  @keyframes heQuizDot {
    0%, 80%, 100% { transform: scale(0.5); opacity: 0.4; }
    40% { transform: scale(1); opacity: 1; }
  }

  /* =========================================================================
     EMAIL GATE, Bloom-style single optional input + terms line
     ========================================================================= */
  .he-quiz__form {
    display: flex; flex-direction: column; gap: 18px;
    width: 100%; max-width: 440px; align-self: center;
  }
  .he-quiz__input {
    font-family: var(--font-body--family);
    font-size: 16px; padding: 18px 24px; min-height: 58px;
    border: 1.5px solid transparent; border-radius: 100px;
    background: #FFFFFF; color: var(--he-quiz-accent, #5B4B9E);
    width: 100%; text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    transition: border-color 0.14s ease, box-shadow 0.14s ease;
  }
  .he-quiz__input::placeholder { color: rgba(91,75,158,0.4); }
  .he-quiz__input:focus {
    outline: none;
    border-color: var(--he-quiz-accent, #5B4B9E);
    box-shadow: 0 4px 16px rgba(91,75,158,0.18);
  }
  .he-quiz__terms {
    font-family: var(--font-body--family);
    font-size: 13px; line-height: 1.45; color: var(--he-quiz-accent, #5B4B9E); opacity: 0.7;
    margin: 0; text-align: center; max-width: 38ch; align-self: center;
  }
  .he-quiz__terms a { color: inherit; text-decoration: underline; }

  /* "Other" text input that appears when an other-chip is selected */
  .he-quiz__other-input {
    font-family: var(--font-body--family);
    font-size: 15px; padding: 14px 20px; min-height: 50px;
    border: 1.5px solid rgba(91,75,158,0.25); border-radius: 100px;
    background: #FFFFFF; color: var(--he-quiz-accent, #5B4B9E);
    width: 100%; max-width: 440px; align-self: center; text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    margin-top: -4px;
    transition: border-color 0.14s ease, box-shadow 0.14s ease;
  }
  .he-quiz__other-input::placeholder { color: rgba(91,75,158,0.45); font-style: italic; }
  .he-quiz__other-input:focus {
    outline: none; border-color: var(--he-quiz-accent, #5B4B9E);
    box-shadow: 0 4px 16px rgba(91,75,158,0.18);
  }
  .he-quiz__other-input[hidden] { display: none; }

  /* Bloom-style email foot: Back left, Continue right (no full-width CTA) */
  .he-quiz__foot--email .he-quiz__foot-row {
    display: flex; align-items: center; justify-content: space-between;
    width: 100%; gap: 16px;
  }
  .he-quiz__back--continue {
    color: var(--he-quiz-accent, #5B4B9E);
    font-size: 16px; font-weight: 700;
  }
  .he-quiz__back--continue:disabled { opacity: 0.4; cursor: not-allowed; }

  /* =========================================================================
     RESULT PAGE
     ========================================================================= */
  /* =========================================================================
     RESULT PAGE, full-bleed alternating sections with centered inner content.
     Each section paints its own bg edge-to-edge; inner div constrains content
     width and applies horizontal padding. Lets the page breathe rhythmically
     between white and #F0EDF7 wash without big artificial gaps.
     ========================================================================= */
  .he-quiz__result { background: #FFFFFF; min-height: 100svh; }
  .he-quiz__rsection { padding: 48px 0; }
  @media (min-width: 750px) { .he-quiz__rsection { padding: 72px 0; } }
  .he-quiz__rsection--wash { background: #F0EDF7; }
  .he-quiz__rsection-inner {
    max-width: 720px; margin: 0 auto;
    padding: 0 24px;
  }
  @media (min-width: 750px) { .he-quiz__rsection-inner { padding: 0 32px; } }

  /* Hero, formula identification (Stage 5) */
  .he-quiz__rhero {
    padding: 56px 0 32px;
    text-align: center;
  }
  @media (min-width: 750px) { .he-quiz__rhero { padding: 80px 0 48px; } }
  .he-quiz__rhero-eyebrow {
    font-family: var(--font-body--family);
    font-size: 13px; font-weight: 700; letter-spacing: 0.18em;
    text-transform: uppercase; color: var(--he-quiz-accent, #5B4B9E); opacity: 0.6;
    margin: 0 0 16px;
  }
  .he-quiz__rhero-headline {
    font-family: var(--font-heading--family);
    font-size: clamp(34px, 7vw, 48px);
    font-weight: 700; line-height: 1.1; letter-spacing: -0.03em;
    color: var(--he-quiz-accent, #5B4B9E);
    margin: 0 auto;
    max-width: 16ch;
  }
  @media (min-width: 750px) {
    /* Single-line headline on desktop. Its container (the merged section inner, --rec)
       is widened below so the nowrap text actually FITS and centers. */
    .he-quiz__rhero-headline {
      font-size: clamp(32px, 3.4vw, 44px);
      max-width: 100%;
      white-space: nowrap;
    }
  }
  /* Headline now opens the merged section — generous gap before the problem statement */
  .he-quiz__rsection-inner--rec .he-quiz__rhero-headline {
    text-align: center;
    margin: 0 auto 32px;
  }
  .he-quiz__rhero-quote {
    font-style: italic; font-weight: 700;
  }
  .he-quiz__rhero-sub {
    font-family: var(--font-body--family);
    font-size: 17px; line-height: 1.5; font-weight: 500;
    color: var(--he-quiz-accent, #5B4B9E); /* full purple, no fade, matches heading */
    margin: 40px auto 0; /* generous gap below the heading */
    max-width: 42ch;
    text-align: center;
  }
  @media (min-width: 750px) { .he-quiz__rhero-sub { margin-top: 48px; font-size: 18px; } }

  /* Section heads — centered across the result page so headings + subheads share the same axis */
  .he-quiz__rsection-head {
    font-family: var(--font-heading--family);
    font-size: clamp(26px, 5vw, 36px);
    font-weight: 700; line-height: 1.18; letter-spacing: -0.025em;
    color: var(--he-quiz-accent, #5B4B9E);
    margin: 0 auto 24px;
    text-align: center;
    max-width: 24ch;
  }
  .he-quiz__rsection p {
    font-family: var(--font-body--family);
    font-size: 17px; line-height: 1.6;
    color: #000000; margin: 0 0 14px;
    max-width: 60ch;
  }
  .he-quiz__rsection p:last-child { margin-bottom: 0; }

  /* Diagnosis paragraph — original doctor's-read typography, centered on the page axis */
  .he-quiz__rdiag {
    font-family: var(--font-heading--family);
    font-size: clamp(18px, 2.4vw, 22px);
    font-weight: 500; line-height: 1.55; letter-spacing: -0.005em;
    color: #000000;
    margin: 0 auto; max-width: 56ch;
    text-align: center;
  }
  .he-quiz__rdiag p { margin: 0 0 14px; }
  .he-quiz__rdiag p:last-child { margin: 0; }

  /* Diagnosis-top — problem + solution sentences under the headline.
     Selector is doubled with .he-quiz__rsection so these beat the generic
     `.he-quiz__rsection p` rule (which left-aligned the block via margin: 0 0 14px).
     Wide measure so the copy spreads out into fewer lines, centered on the page axis. */
  .he-quiz__rsection .he-quiz__rdiag-problem,
  .he-quiz__rsection .he-quiz__rdiag-fix {
    font-family: var(--font-body--family);
    font-size: clamp(16px, 2vw, 18px);
    font-weight: 400; line-height: 1.6;
    color: #000000;
    margin: 0 auto 14px;
    max-width: 72ch;
    text-align: center;
  }
  .he-quiz__rsection .he-quiz__rdiag-fix { margin-bottom: 0; }
  .he-quiz__rdiag-problem strong,
  .he-quiz__rdiag-fix strong { font-weight: 700; }

  /* Merged recommendation section — smaller lead-in heading, two-column layout on desktop */
  .he-quiz__rsection-head--rec {
    font-size: clamp(20px, 3vw, 24px);
    margin: 36px auto 24px; /* auto keeps the 24ch block on the page axis */
    text-align: center;
  }
  .he-quiz__rec-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    align-items: center;
    justify-items: center;
  }
  /* Right column: bullets on top, upsell card below them */
  .he-quiz__rec-side {
    display: flex; flex-direction: column; gap: 28px;
    align-items: center;
    width: 100%; max-width: 440px;
  }
  @media (min-width: 750px) {
    .he-quiz__rsection-inner--rec { max-width: 1100px; }
    .he-quiz__rec-layout {
      /* product card | (bullets + upsell) — one 1x2 grid, centered as a whole */
      grid-template-columns: minmax(0, 420px) minmax(0, 440px);
      gap: 56px;
      justify-content: center;
      align-items: center;
    }
    .he-quiz__rec-side { align-items: stretch; }
  }

  /* Big bullets beside the card — the personalization payload, sized to carry the section */
  .he-quiz__rec-bullets {
    list-style: none; padding: 0; margin: 0;
    display: flex; flex-direction: column; gap: 20px;
    text-align: left;
    width: 100%; max-width: 440px;
  }
  .he-quiz__rec-bullets li {
    display: flex; align-items: center; gap: 14px;
    font-family: var(--font-heading--family);
    font-size: 17px; line-height: 1.35;
    font-weight: 600;
    color: var(--he-quiz-accent, #5B4B9E);
  }
  .he-quiz__rec-bullets li::before {
    content: '';
    flex-shrink: 0;
    width: 34px; height: 34px;
    /* Inverted: dark purple circle, tick in the light wash purple, drawn as a thick stroke */
    background-color: var(--he-quiz-accent, #5B4B9E);
    border-radius: 100px;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23F0EDF7' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'><path d='M2.8 8.6 6.1 11.9 13.2 4.4'/></svg>");
    background-size: 18px 18px;
    background-position: center;
    background-repeat: no-repeat;
  }
  @media (min-width: 750px) {
    .he-quiz__rec-bullets li { font-size: 21px; }
    .he-quiz__rec-bullets li::before { width: 40px; height: 40px; background-size: 20px 20px; }
  }

  /* Upsell column right of the product card — small horizontal product card
     ("Supercharge your results"), image | name + save line | price, ATC below.
     Inner selectors are doubled so they beat the generic `.he-quiz__rsection p` rule. */
  .he-quiz__rec-upsell { width: 100%; max-width: 440px; }
  .he-quiz__rec-upsell-head {
    font-family: var(--font-heading--family);
    font-size: 20px; font-weight: 700; letter-spacing: -0.015em;
    color: var(--he-quiz-accent, #5B4B9E);
    margin: 0 0 14px; text-align: center;
  }
  .he-quiz__upsell-card {
    background: #FFFFFF;
    border: 1.5px solid rgba(91,75,158,0.16);
    border-radius: 18px;
    padding: 16px;
    box-shadow: 0 6px 28px rgba(91,75,158,0.08);
    display: flex; flex-direction: column; gap: 14px;
  }
  .he-quiz__upsell-row { display: flex; align-items: center; gap: 14px; }
  .he-quiz__upsell-media {
    width: 76px; height: 76px; border-radius: 12px;
    overflow: hidden; flex-shrink: 0; background: #F0EDF7;
  }
  .he-quiz__upsell-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .he-quiz__upsell-info { flex: 1; min-width: 0; }
  .he-quiz__upsell-card .he-quiz__upsell-name {
    font-family: var(--font-heading--family);
    font-size: 16px; font-weight: 700; line-height: 1.3;
    color: #000000; margin: 0 0 4px; max-width: none;
  }
  .he-quiz__upsell-card .he-quiz__upsell-save {
    font-family: var(--font-body--family);
    font-size: 14px; line-height: 1.4;
    color: #000000; opacity: 0.6; margin: 0; max-width: none;
  }
  .he-quiz__upsell-price {
    flex-shrink: 0; text-align: right;
    font-family: var(--font-heading--family);
    font-size: 19px; font-weight: 800; line-height: 1.25;
    color: var(--he-quiz-accent, #5B4B9E);
  }
  .he-quiz__upsell-price s {
    display: block;
    font-size: 14px; font-weight: 500;
    color: #000000; opacity: 0.4;
  }
  /* Native ATC fills the upsell card width, same hooks as the main card */
  .he-quiz__upsell-atc { width: 100%; }
  .he-quiz__upsell-atc product-form-component,
  .he-quiz__upsell-atc form,
  .he-quiz__upsell-atc add-to-cart-component { width: 100%; display: block; }
  .he-quiz__upsell-atc .add-to-cart-button { width: 100%; display: inline-flex; align-items: center; justify-content: center; }

  /* Recommendation product card — same stacked layout on mobile and desktop.
     Image on top (1:1), info below, centered. Card max-width keeps it from
     stretching too wide on desktop. */
  /* hidden attribute must win over the display rules below (CSS display beats [hidden]) —
     the per-track reveal relies on this to show only the chosen track's cards. */
  .he-quiz__rcard[hidden],
  .he-quiz__rec-upsell[hidden] { display: none !important; }
  .he-quiz__rcard {
    background: #FFFFFF;
    border: 1.5px solid rgba(91,75,158,0.16);
    border-radius: 24px;
    padding: 24px;
    display: flex; flex-direction: column; gap: 14px;
    box-shadow: 0 6px 28px rgba(91,75,158,0.08);
    text-align: left;
    max-width: 560px;
    margin: 0 auto;
  }
  .he-quiz__rcard .he-quiz__rcard-name { text-align: left; color: #000000; }
  .he-quiz__rcard .he-quiz__rcard-price,
  .he-quiz__rcard .he-quiz__rcard-price * { color: var(--he-quiz-accent, #5B4B9E) !important; }

  /* Add-to-cart button — EXACT copy of .he-cta-btn from assets/he-lp-hs-shared.css
     (the native landing-page CTA), with the quiz purple as the color. That stylesheet
     doesn't load on the quiz page, so the rules are duplicated here verbatim. */
  .he-quiz__rcard-btn {
    display: block;
    width: 100%;
    font-family: var(--font-heading--family);
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    padding: 18px 24px;
    border-radius: 10px;
    cursor: pointer;
    text-decoration: none;
    margin-bottom: 10px;
    box-sizing: border-box;
    background: var(--he-quiz-accent, #5B4B9E);
    color: #FFFFFF;
    border: 1.5px solid var(--he-quiz-accent, #5B4B9E);
    appearance: none; -webkit-appearance: none;
  }
  .he-quiz__rcard-btn:hover { opacity: 0.92; }
  .he-quiz__rcard-form { width: 100%; margin: 0; display: block; }
  @media (min-width: 750px) {
    /* Desktop: tighter card so it fits in one viewport — mobile size is fine as-is */
    .he-quiz__rcard { padding: 24px; gap: 14px; max-width: 420px; }
    .he-quiz__rcard-name { font-size: 24px; }
    .he-quiz__rcard-price { font-size: 24px; }
  }
  .he-quiz__rcard-media {
    aspect-ratio: 1 / 1; border-radius: 18px;
    background: #F0EDF7;
    overflow: hidden; display: flex; align-items: center; justify-content: center;
  }
  .he-quiz__rcard-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .he-quiz__rcard-name {
    font-family: var(--font-heading--family);
    font-size: clamp(22px, 3.5vw, 30px); font-weight: 700;
    color: var(--he-quiz-accent, #5B4B9E); margin: 0; line-height: 1.15;
  }
  .he-quiz__rcard-rating {
    display: inline-flex; align-items: center; gap: 6px;
    color: var(--he-quiz-accent, #5B4B9E);
    font-family: var(--font-body--family); font-size: 14px; font-weight: 600;
    margin: 0 auto;
    letter-spacing: 0.02em;
  }
  .he-quiz__rcard-benefit {
    font-family: var(--font-body--family);
    font-size: 16px; line-height: 1.5;
    color: #000000; margin: 0;
  }
  .he-quiz__rcard-price {
    font-family: var(--font-heading--family);
    font-size: clamp(24px, 3.5vw, 30px); font-weight: 700;
    color: var(--he-quiz-accent, #5B4B9E); margin: 0;
  }
  .he-quiz__rcard-price s { opacity: 0.4; font-weight: 500; font-size: 18px; margin-right: 8px; }

  /* Native Quick-Add fills its slot — let it inherit Horizon's own button styling, just sized full-width */
  .he-quiz__rcard-atc { display: block; width: 100%; }
  /* Native ATC fills the card width — same hooks as .he-bs__atc-wrap on the homepage */
  .he-quiz__rcard-atc { width: 100%; }
  .he-quiz__rcard-atc product-form-component,
  .he-quiz__rcard-atc form,
  .he-quiz__rcard-atc add-to-cart-component { width: 100%; display: block; }
  .he-quiz__rcard-atc .add-to-cart-button { width: 100%; display: inline-flex; align-items: center; justify-content: center; }

  .he-quiz__rcards-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
  @media (min-width: 750px) { .he-quiz__rcards-grid { grid-template-columns: 1fr 1fr; gap: 22px; } }

  .he-quiz__rcard--soon { opacity: 0.85; border-style: dashed; }
  .he-quiz__rcard--soon .he-quiz__rcard-soontag {
    display: inline-block; background: rgba(91,75,158,0.10);
    color: var(--he-quiz-accent, #5B4B9E);
    font-family: var(--font-body--family); font-size: 11px; font-weight: 700;
    letter-spacing: 0.12em; text-transform: uppercase;
    padding: 6px 12px; border-radius: 100px; align-self: flex-start;
  }

  /* Tailored bullet list — checkmark-in-circle, left-aligned */
  .he-quiz__rcard-bullets {
    list-style: none; padding: 0; margin: 4px 0 0;
    display: flex; flex-direction: column; gap: 12px;
    text-align: left;
  }
  .he-quiz__rcard-bullets li {
    display: flex; align-items: flex-start; gap: 12px;
    font-family: var(--font-body--family);
    font-size: 15px; line-height: 1.45;
    font-weight: 600;
    color: #000000;
    text-align: left;
    padding: 0;
  }
  @media (min-width: 750px) {
    /* Bullets carry the personalization — bigger on desktop even though the card shrinks */
    .he-quiz__rcard-bullets li { font-size: 18px; }
  }
  .he-quiz__rcard-bullets li::before {
    content: '';
    flex-shrink: 0;
    width: 22px; height: 22px;
    background-color: rgba(91,75,158,0.12);
    border-radius: 100px;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%235B4B9E'><path d='M13.5 4.5 6 12 2.5 8.5l1.4-1.4L6 9.2 12.1 3.1l1.4 1.4z'/></svg>");
    background-size: 12px 12px;
    background-position: center;
    background-repeat: no-repeat;
    margin-top: 2px;
  }

  /* Judge.me preview badge — Judge.me JS replaces this div with the star widget + (X reviews) */
  .he-quiz__rcard-jdgm {
    align-self: flex-start;
    min-height: 22px;
    margin: 0;
  }

  /* Price row — price + % OFF badge side by side, left-aligned */
  .he-quiz__rcard-price-row {
    display: flex; align-items: center; gap: 12px;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin: 0;
  }
  .he-quiz__rcard-offbadge {
    display: inline-flex; align-items: center; justify-content: center;
    background: var(--he-quiz-accent, #5B4B9E);
    color: #FFFFFF;
    font-family: var(--font-heading--family);
    font-size: 13px; font-weight: 700; letter-spacing: -0.005em;
    padding: 5px 12px;
    border-radius: 100px;
    white-space: nowrap;
  }

  .he-quiz__rcard-fine {
    font-family: var(--font-body--family);
    font-size: 13px; color: var(--he-quiz-accent, #5B4B9E); opacity: 0.6;
    margin: 4px 0 0; text-align: center;
  }

  /* Take Quiz Again — big CTA at the bottom of the result page */
  .he-quiz__rretake {
    text-align: center;
  }
  .he-quiz__rretake-text {
    font-family: var(--font-heading--family);
    font-size: clamp(20px, 3vw, 26px); font-weight: 700; line-height: 1.3;
    color: var(--he-quiz-accent, #5B4B9E);
    margin: 0 0 20px; letter-spacing: -0.02em;
  }
  .he-quiz__btn--retake {
    display: inline-flex; align-items: center; justify-content: center;
    background: transparent;
    color: var(--he-quiz-accent, #5B4B9E);
    border: 2px solid var(--he-quiz-accent, #5B4B9E);
    border-radius: 100px;
    padding: 18px 36px; min-height: 60px;
    width: auto; max-width: none;
    font-family: var(--font-heading--family);
    font-size: 17px; font-weight: 700;
    text-decoration: none;
    box-shadow: none;
    transition: background 0.14s ease, color 0.14s ease;
  }
  .he-quiz__btn--retake:hover {
    background: var(--he-quiz-accent, #5B4B9E);
    color: #FFFFFF;
    transform: none;
  }

  /* Stakes, kept for the toggle, default off */
  .he-quiz__rsection-2-5 {
    background: var(--he-quiz-accent-soft, #ECE8F6);
    border-radius: 18px; padding: 32px 28px;
    max-width: 720px; margin: 0 auto;
  }

  /* Guarantee block */
  .he-quiz__guarantee {
    background: #000000; color: #FFFFFF;
    border-radius: 20px; padding: 40px 28px;
    text-align: center;
    max-width: 720px; margin: 0 auto;
  }
  @media (min-width: 750px) { .he-quiz__guarantee { padding: 56px 40px; } }
  .he-quiz__guarantee h3 {
    font-family: var(--font-heading--family);
    font-size: clamp(22px, 4vw, 30px); font-weight: 700;
    letter-spacing: -0.015em; margin: 0 0 14px; color: #FFFFFF;
  }
  .he-quiz__guarantee p {
    font-family: var(--font-body--family);
    font-size: 15px; line-height: 1.55; opacity: 0.85;
    margin: 0 auto; max-width: 52ch;
  }

  /* Final CTA strip */
  .he-quiz__rfinal-cta { text-align: center; }
  .he-quiz__rfinal-text {
    font-family: var(--font-heading--family);
    font-size: clamp(22px, 3.6vw, 30px); font-weight: 700; line-height: 1.2;
    color: var(--he-quiz-accent, #5B4B9E);
    margin: 0 0 24px; letter-spacing: -0.02em;
  }
  .he-quiz__rfinal-atc { max-width: 440px; margin: 0 auto; }
  .he-quiz__rfinal-atc quick-add-component,
  .he-quiz__rfinal-atc product-form-component,
  .he-quiz__rfinal-atc form,
  .he-quiz__rfinal-atc .quick-add__button { width: 100%; display: block; }
  .he-quiz__rfinal-fine {
    font-family: var(--font-body--family);
    font-size: 13px; color: var(--he-quiz-accent, #5B4B9E); opacity: 0.55;
    margin: 14px 0 0;
  }

  .he-quiz__shell { overflow-x: clip; }
/* END_SECTION:he-hp-quiz */

/* START_SECTION:he-hp-results (INDEX:29) */
.he-res { box-sizing: border-box; background: #FFFFFF; padding: 72px 0 80px; }
  .he-res *, .he-res *::before, .he-res *::after { box-sizing: border-box; }

  .he-res__head {
    padding: 0 24px;
    max-width: 900px;
    margin: 0 auto 32px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .he-res__head > * { margin: 0; }

  .he-res__eyebrow {
    font-family: var(--font-body--family);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #F23440;
  }
  .he-res__heading {
    font-family: var(--font-heading--family);
    font-size: clamp(28px, 6vw, 40px);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.15;
    color: #000000;
  }
  .he-res__subtext {
    font-family: var(--font-body--family);
    font-size: 15px;
    line-height: 1.55;
    color: #000000;
    max-width: 56ch;
  }
  .he-res__divider {
    border: none;
    height: 2px;
    width: 40px;
    background: #000000;
  }
  .he-res__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading--family);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 10px;
    margin-top: 8px;
  }
  .he-res__btn--primary { background: #F23440; color: #FFFFFF; }
  .he-res__btn--secondary { background: transparent; color: #000000; border: 1.5px solid #000000; }
  .he-res__btn--link { color: #000000; border-bottom: 1.5px solid #000000; padding: 4px 0; border-radius: 0; }

  .he-res__track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 82%;
    gap: 16px;
    padding: 8px 24px 28px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .he-res__track::-webkit-scrollbar { display: none; }

  .he-res__card {
    scroll-snap-align: center;
    background: #FFFFFF;
    border: 1px solid #00000015;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
  }

  .he-res__pair { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: #00000015; }
  .he-res__cell {
    position: relative;
    aspect-ratio: 3 / 4;
    background: linear-gradient(135deg, #EFE9DF 0%, #E8E2D9 50%, #DFD8CC 100%);
    overflow: hidden;
  }
  .he-res__cell img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .he-res__cell-label {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #FFFFFF;
    color: #000000;
    font-family: var(--font-body--family);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 5px 9px;
    border-radius: 100px;
  }
  .he-res__cell--after .he-res__cell-label { background: #F23440; color: #FFFFFF; }

  .he-res__body { padding: 18px 18px 22px; display: flex; flex-direction: column; gap: 8px; }
  .he-res__meta { font-family: var(--font-body--family); font-size: 12px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: #F23440; margin: 0; }
  .he-res__name { font-family: var(--font-heading--family); font-size: 17px; font-weight: 700; color: #000000; margin: 0; line-height: 1.2; }
  .he-res__quote { font-family: var(--font-body--family); font-size: 14px; line-height: 1.55; color: #000000; margin: 4px 0 0; }

  .he-res__nav-hint { text-align: center; font-family: var(--font-body--family); font-size: 12px; color: #000000; opacity: 0.5; margin: 0; }

  @media (min-width: 750px) {
    .he-res { padding: 120px 0; }
    .he-res__head { margin-bottom: 48px; }
    .he-res__track {
      max-width: 1200px;
      margin: 0 auto;
      padding: 8px 40px 36px;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 20px;
      overflow: visible;
    }
    .he-res__name { font-size: 18px; }
    .he-res__nav-hint { display: none; }
  }
/* END_SECTION:he-hp-results */

/* START_SECTION:he-hp-shop-category (INDEX:30) */
.he-cat { box-sizing: border-box; }
  .he-cat *, .he-cat *::before, .he-cat *::after { box-sizing: border-box; }

  .he-cat__head {
    padding: 0 24px;
    max-width: 900px;
    margin: 0 auto var(--hp-head-gap-mobile, 32px);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
  }
  .he-cat__head > * { margin: 0; }

  .he-cat__eyebrow {
    font-family: var(--font-body--family);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #9B9790;
  }
  .he-cat__heading {
    font-family: var(--font-heading--family);
    font-size: clamp(28px, 5.5vw, 40px);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.12;
    color: #000000;
  }
  @media (min-width: 750px) {
    .he-cat__heading { font-size: clamp(32px, 3.5vw, 44px); }
  }
  .he-cat__subtext {
    font-family: var(--font-body--family);
    font-size: 16px;
    line-height: 1.5;
    color: #000000;
    max-width: 56ch;
    margin-top: 12px;
  }
  .he-cat__divider {
    border: none;
    height: 2px;
    width: 40px;
    background: #000000;
    margin: 4px 0;
  }
  .he-cat__head-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading--family);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 10px;
    margin-top: 8px;
  }
  .he-cat__head-btn--primary { background: #5B4B9E; color: #FFFFFF; }
  .he-cat__head-btn--secondary { background: transparent; color: #000000; border: 1.5px solid #000000; }
  .he-cat__head-btn--link { color: #000000; border-bottom: 1.5px solid #000000; padding: 4px 0; border-radius: 0; }

  /* Cards — horizontal scroll mobile, grid desktop (same pattern as Best Sellers / Shop by Concern) */
  .he-cat__track {
    display: flex;
    gap: 16px;
    padding: 0 24px 8px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .he-cat__track::-webkit-scrollbar { display: none; }

  .he-cat__card {
    flex: 0 0 78%;
    max-width: 380px;
    scroll-snap-align: center;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
  }

  .he-cat__media {
    position: relative;
    aspect-ratio: 4 / 5;
    border-radius: 14px;
    overflow: hidden;
    background: #E8E2D9;
  }
  .he-cat__media img { display: block; width: 100%; height: 100%; object-fit: cover; }

  .he-cat__body {
    margin-top: 14px;
    background: #FFFFFF;
    border: 2px solid #000000;
    border-radius: 16px;
    padding: 16px 18px 18px;
    text-align: center;
  }
  .he-cat__name {
    font-family: var(--font-heading--family);
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #5B4B9E;
    margin: 0 0 6px;
    line-height: 1.2;
  }
  .he-cat__desc {
    font-family: var(--font-body--family);
    font-size: 14px;
    line-height: 1.45;
    color: #000000;
    margin: 0;
  }

  @media (min-width: 750px) {
    .he-cat__head { margin-bottom: var(--hp-head-gap-desktop, 44px); }
    .he-cat__track {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 56px 8px;
      overflow: visible;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .he-cat__card { flex: initial; max-width: none; }
    .he-cat__name { font-size: 20px; }
  }
/* END_SECTION:he-hp-shop-category */

/* START_SECTION:he-hp-shop-concern (INDEX:31) */
.he-sbc {
    box-sizing: border-box;
    background: var(--sbc-band);
    padding: 32px 16px 32px;
  }
  .he-sbc *, .he-sbc *::before, .he-sbc *::after { box-sizing: border-box; }

  .he-sbc__title {
    font-family: var(--font-heading--family);
    font-size: clamp(28px, 5.5vw, 40px);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.025em;
    color: #FFFFFF;
    text-align: center;
    max-width: 720px;
    margin: 4px auto 24px;
  }

  .he-sbc__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    max-width: 1460px;
    margin: 0 auto;
  }

  .he-sbc__card {
    position: relative;
    display: flex;
    align-items: flex-start;
    min-height: 104px;
    padding: 18px 22px;
    border-radius: 22px;
    overflow: hidden;
    background: var(--sbc-card);
    text-decoration: none;
    /* Stroke + thick stroke-below — both driven by one color (--sbc-outline) */
    border: 2px solid var(--sbc-outline);
    box-shadow: 0 6px 0 var(--sbc-outline);
    transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.25s ease;
  }
  .he-sbc__card:hover {
    transform: translateY(-3px);
    box-shadow: 0 9px 0 var(--sbc-outline), 0 14px 24px rgba(0, 0, 0, 0.18);
  }
  .he-sbc__card:focus-visible {
    outline: 3px solid #FFFFFF;
    outline-offset: 3px;
  }

  /* Background image fills the card; text sits over it */
  .he-sbc__bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
  .he-sbc__bg img { display: block; width: 100%; height: 100%; object-fit: cover; }

  .he-sbc__label {
    position: relative;
    z-index: 2;
    font-family: var(--font-heading--family);
    font-size: clamp(17px, 3.8vw, 20px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--sbc-label);
    max-width: 60%;
  }

  .he-sbc__arrow {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    z-index: 2;
    width: 38px;
    height: 38px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: #FFFFFF;
    border: 2px solid var(--sbc-label);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.25s ease;
  }
  .he-sbc__arrow svg {
    width: 17px;
    height: 17px;
    color: var(--sbc-label);
    transition: color 0.25s ease, transform 0.25s ease;
  }
  .he-sbc__card:hover .he-sbc__arrow { background: var(--sbc-label); }
  .he-sbc__card:hover .he-sbc__arrow svg { color: #FFFFFF; transform: translateX(2px); }

  @media (min-width: 750px) {
    .he-sbc { padding: 32px 32px 32px; }
    .he-sbc__grid { grid-template-columns: repeat(3, 1fr); gap: 18px; }
    .he-sbc__card { min-height: 124px; padding: 22px 26px; border-radius: 24px; }
    .he-sbc__label { font-size: clamp(18px, 1.6vw, 22px); max-width: 62%; }
    .he-sbc__arrow { right: 24px; }
  }

  @media (prefers-reduced-motion: reduce) {
    .he-sbc__card, .he-sbc__arrow, .he-sbc__arrow svg { transition: none; }
    .he-sbc__card:hover { transform: none; }
  }
/* END_SECTION:he-hp-shop-concern */

/* START_SECTION:he-hp-trust-strip (INDEX:32) */
.he-trust { box-sizing: border-box; overflow: hidden; padding: 14px 0; position: relative; }
  .he-trust *, .he-trust *::before, .he-trust *::after { box-sizing: border-box; }

  .he-trust__viewport {
    overflow: hidden;
    width: 100%;
    mask-image: linear-gradient(to right, transparent 0, #000 48px, #000 calc(100% - 48px), transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0, #000 48px, #000 calc(100% - 48px), transparent 100%);
  }

  .he-trust__track {
    display: inline-flex;
    align-items: center;
    flex-wrap: nowrap;
    white-space: nowrap;
    animation: he-trust-scroll var(--marquee-duration, 40s) linear infinite;
    will-change: transform;
  }

  .he-trust:hover .he-trust__track,
  .he-trust__track:focus-within { animation-play-state: paused; }

  @keyframes he-trust-scroll {
    from { transform: translate3d(0, 0, 0); }
    to   { transform: translate3d(-50%, 0, 0); }
  }

  .he-trust__item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0 36px;
    font-family: var(--font-heading--family);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: inherit;
    flex-shrink: 0;
  }

  .he-trust__stars {
    display: inline-flex;
    gap: 1px;
    font-size: 14px;
    color: #5B4B9E;
    line-height: 1;
    letter-spacing: 0;
  }

  @media (min-width: 750px) {
    .he-trust { padding: 18px 0; }
    .he-trust__item { font-size: 14px; padding: 0 48px; gap: 12px; }
  }

  @media (prefers-reduced-motion: reduce) {
    .he-trust__track { animation: none; }
    .he-trust__viewport { overflow-x: auto; mask-image: none; -webkit-mask-image: none; }
  }
/* END_SECTION:he-hp-trust-strip */

/* START_SECTION:he-hp-ugc (INDEX:33) */
.honest-ugc { position: relative; }

  .honest-ugc .hugc-inner { position: relative; z-index: 1; }

  /* Standard HP eyebrow/heading — matches Best Sellers, Before & After, etc. */
  .honest-ugc .he-hp-ugc__head {
    text-align: center;
    max-width: 900px;
    margin: 0 auto var(--hp-head-gap-mobile, 32px);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
  }
  @media (min-width: 750px) {
    .honest-ugc .he-hp-ugc__head { margin-bottom: var(--hp-head-gap-desktop, 44px); }
  }
  .honest-ugc .he-hp-ugc__eyebrow {
    font-family: var(--font-body--family);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #9B9790;
    margin: 0;
  }
  .honest-ugc .he-hp-ugc__heading {
    font-family: var(--font-heading--family);
    font-size: clamp(28px, 5.5vw, 40px);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.12;
    color: #000000;
    margin: 0;
  }
  @media (min-width: 750px) {
    .honest-ugc .he-hp-ugc__heading { font-size: clamp(32px, 3.5vw, 44px); }
  }

  .honest-ugc .hugc-band {
    position: relative;
    margin: 0 calc(var(--hugc-side-pad, 22px) * -1) 0;
    padding: 0;
  }
  @media (min-width: 750px) {
    /* Desktop: break out of section side-padding so the band + carousel
       go fully edge-to-edge across the viewport, matching homepage style. */
    .honest-ugc .hugc-band {
      margin-left: calc(50% - 50vw);
      margin-right: calc(50% - 50vw);
    }
  }
  .honest-ugc .hugc-bg-img {
    display: block;
    width: 100%;
    height: auto;
    pointer-events: none;
  }
  .honest-ugc .hugc-bg-img--mobile { display: block; }
  .honest-ugc .hugc-bg-img--desktop { display: none; }
  @media (min-width: 750px) {
    .honest-ugc .hugc-bg-img--mobile { display: none; }
    .honest-ugc .hugc-bg-img--desktop { display: block; }
  }
  .honest-ugc .hugc-band > .hugc-scroll-wrap {
    position: relative;
    z-index: 1;
    /* Pull cards up so they sit ON the image; only ~20px of card bottom extends below */
    margin-top: calc(-1 * (calc(54vw - 20px) * 14 / 9) + 20px);
  }
  @media (min-width: 750px) {
    .honest-ugc .hugc-band > .hugc-scroll-wrap {
      margin-top: -290px;
    }
  }
  @media (min-width: 1100px) {
    .honest-ugc .hugc-band > .hugc-scroll-wrap {
      margin-top: -322px;
    }
  }

  /* Chrome alignment override — center under .honest-ugc (subheading/subtext
     still route through the landing-page chrome-block snippet) */
  .honest-ugc .he-block-subheading,
  .honest-ugc .he-block-subtext { text-align: center; }

  /* Handle pill — styled as a "JOIN THE COMMUNITY" button per user
     reference (Obvi). Pill shape, solid border, bold uppercase text. */
  .honest-ugc .hugc-handle {
    display: inline-block;
    background: #FAF8F4;
    color: #000000;
    border: 2px solid #000000;
    padding: 16px 36px;
    border-radius: 999px;
    font-family: var(--font-heading--family);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    line-height: 1;
    margin: 8px auto 0;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.10);
  }
  @media (min-width: 750px) {
    .honest-ugc .hugc-handle { font-size: 16px; padding: 18px 42px; }
  }

  /* Carousel wrap — full-bleed scroll on mobile. Margins handled by
     the parent .hugc-band wrapper now. */
  .honest-ugc .hugc-scroll-wrap { position: relative; }
  @media (min-width: 750px) {
    /* Cards span the full band — no centering padding on sides */
    .honest-ugc .hugc-scroll-wrap { max-width: none; margin-left: auto; margin-right: auto; }
  }

  .honest-ugc .hugc-grid {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    overflow-y: visible;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    /* Symmetric side padding + scroll-padding so the first AND last
       cards can scroll-snap into the center of the viewport. */
    padding: 4px max(7.5vw, 18px) 12px;
    scroll-padding-inline: max(7.5vw, 18px);
  }
  .honest-ugc .hugc-grid::-webkit-scrollbar { display: none; }
  /* Desktop: stay a horizontal carousel (NOT a stacking grid).
     A grid orphans rows when card count doesn't divide evenly into
     columns (5 cards in a 4-col grid → orphan row of 1). Carousel
     keeps everything on one row regardless of count. */
  @media (min-width: 750px) {
    .honest-ugc .hugc-grid {
      gap: 20px;
      padding: 4px max(40px, 4vw) 12px;
      scroll-padding-inline: max(40px, 4vw);
    }
  }

  /* UGC card — Obvi-sized: smaller, more peek of next card */
  .honest-ugc .hugc-card {
    flex: 0 0 calc(54vw - 20px);
    max-width: 220px;
    scroll-snap-align: center;
    aspect-ratio: 9 / 14;
    background: #E8E2D9;
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    display: block;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.24s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.24s cubic-bezier(0.16, 1, 0.3, 1);
  }
  @media (hover: hover) {
    .honest-ugc .hugc-card:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0, 0, 0, 0.16); }
  }
  @media (min-width: 750px) {
    /* Smaller, fixed-size cards on desktop — Obvi-sized, ~5+ visible
       at once on a 1200px viewport, scrollable for the rest. */
    .honest-ugc .hugc-card {
      flex: 0 0 200px;
      max-width: 200px;
      scroll-snap-align: start;
    }
  }
  @media (min-width: 1100px) {
    .honest-ugc .hugc-card { flex-basis: 220px; max-width: 220px; }
  }
  .honest-ugc .hugc-card img,
  .honest-ugc .hugc-card video {
    width: 100%; height: 100%; object-fit: cover; display: block;
  }

  /* Platform badge — top-right, circular, brand color */
  .honest-ugc .hugc-badge {
    position: absolute;
    top: 10px; right: 10px;
    width: 32px; height: 32px;
    border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    color: #FAF8F4;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.18);
    z-index: 2;
  }
  .honest-ugc .hugc-badge svg { width: 16px; height: 16px; display: block; }
  .honest-ugc .hugc-badge--instagram { background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
  .honest-ugc .hugc-badge--tiktok { background: #000000; }
  .honest-ugc .hugc-badge--facebook { background: #1877f2; }
  @media (min-width: 750px) {
    .honest-ugc .hugc-badge { width: 36px; height: 36px; }
    .honest-ugc .hugc-badge svg { width: 18px; height: 18px; }
  }

  /* Carousel arrows. Sit OUTSIDE the .hugc-band so the bg image
     doesn't extend behind them — only behind the cards. Visible on
     both mobile + desktop now that the desktop layout is also a
     carousel (avoids orphan rows when card count ≠ multiple of 4). */
  .honest-ugc .hugc-arrows {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 12px;
  }
  .honest-ugc .hugc-arrow {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: rgba(250, 248, 244, 0.95);
    border: 1px solid rgba(0, 0, 0, 0.10);
    color: #000000;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    padding: 0;
  }
  .honest-ugc .hugc-arrow svg { width: 18px; height: 18px; display: block; }
  .honest-ugc .hugc-arrow:active { transform: scale(0.94); }

  /* Spacing under chrome before the carousel */
  .honest-ugc .hugc-handle-wrap { text-align: center; margin-top: 0; }
/* END_SECTION:he-hp-ugc */

/* START_SECTION:he-lp-badge (INDEX:34) */
.he-lp-badge {
  display: flex;
  justify-content: center;
  width: 100%;
  grid-column: 2;
}

.he-lp-badge__pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 20px;
  background: var(--badge-bg);
  color: var(--badge-color);
  border-radius: var(--badge-radius);
  font-size: var(--badge-font-size);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.3;
  white-space: normal;
  text-align: center;
}
/* END_SECTION:he-lp-badge */

/* START_SECTION:he-lp-feature (INDEX:35) */
.he-lp-feature,
.he-lp-feature * {
  box-sizing: border-box;
}

/* ── Two-column grid on desktop, vertically centered ── */
.he-lp-feature {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media screen and (min-width: 750px) {
  .he-lp-feature {
    grid-template-columns: var(--feat-col-split, 45%) 1fr;
    gap: var(--feat-col-gap, 48px);
    align-items: center;
  }

  .he-lp-feature--single-col {
    grid-template-columns: 1fr;
  }

  .he-lp-feature--sticky .he-lp-feature__col--right {
    align-self: start;
    position: sticky;
    top: 100px;
  }
}

/* ── Column wrappers ── */
.he-lp-feature__col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* ── Mobile: unwrap columns, reorder by original block position ── */
@media screen and (max-width: 749px) {
  .he-lp-feature__col {
    display: contents;
  }

  .he-lp-feature__col > * {
    order: var(--mob-order, 0);
  }
}

/* ── Topline (eyebrow + number) ── */
.he-lp-feature__topline {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.he-lp-feature__eyebrow {
  font-family: var(--font-accent--family), monospace;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--feat-eyebrow-color, currentColor);
}

.he-lp-feature__number {
  font-family: var(--font-accent--family), monospace;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--feat-number-color, currentColor);
}

/* ── Separator ── */
.he-lp-feature__separator {
  width: 100%;
  height: 1px;
  background: var(--feat-separator-color, currentColor);
}

/* ── Numbered item divider ── */
.he-lp-feature__ni-divider {
  width: 80%;
  height: 1px;
  background: var(--ni-divider-color, #d1d1d1);
  opacity: 0.6;
  margin-inline: auto;
}

/* ── Heading ── */
.he-lp-feature__heading {
  margin: 0;
  color: currentColor;
}

.he-lp-feature__heading > * {
  margin: 0;
}

/* ── Body ── */
.he-lp-feature__body {
  margin: 0;
  color: currentColor;
}

.he-lp-feature__body > * {
  margin: 0;
  font-family: var(--font-body--family), sans-serif;
  font-size: 16px;
  line-height: 1.65;
}

.he-lp-feature__body > * + * {
  margin-top: 0.75em;
}

/* ── Button ── */
.he-lp-feature__btn {
  display: block;
  width: 100%;
  padding: 18px 24px;
  background-color: var(--feat-btn-bg, #0C0C0C);
  color: var(--feat-btn-color, #ffffff);
  font-family: var(--font-body--family), sans-serif;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  border-radius: var(--feat-btn-radius, 8px);
  line-height: 1.2;
  transition: opacity 0.15s ease;
  -webkit-font-smoothing: antialiased;
}

.he-lp-feature__btn:hover {
  opacity: 0.88;
}

/* ── Numbered item ── */
.he-lp-feature__numbered-item {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.he-lp-feature__numbered-item-row {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding-top: 24px;
  padding-bottom: 24px;
}

.he-lp-feature__numbered-item-num {
  font-family: var(--font-body--family), sans-serif;
  font-size: 64px;
  font-weight: 700;
  line-height: 1;
  color: var(--feat-number-color, currentColor);
  opacity: 0.15;
  flex-shrink: 0;
  min-width: 70px;
}

@media screen and (max-width: 749px) {
  .he-lp-feature__numbered-item-num {
    font-size: 48px;
    min-width: 54px;
  }
}

.he-lp-feature__numbered-item-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 8px;
}

.he-lp-feature__numbered-item-heading {
  margin: 0;
  color: currentColor;
}

.he-lp-feature__numbered-item-heading > * {
  margin: 0;
}

.he-lp-feature__numbered-item-label {
  display: inline-block;
  align-self: flex-start;
  font-family: var(--font-accent--family), monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--feat-label-color, currentColor);
  background: var(--feat-label-bg, rgba(0,0,0,0.06));
  padding: 4px 10px;
  border-radius: 4px;
}

/* ── Image grid ── */
.he-lp-feature__image-grid {
  display: grid;
  gap: var(--feat-image-gap, 8px);
  aspect-ratio: var(--feat-image-aspect, 1/1);
}

/* 1 image — fill the container */
.he-lp-feature__image-grid[data-count="1"] {
  grid-template-columns: 1fr;
}

/* 2 images — side by side */
.he-lp-feature__image-grid[data-count="2"] {
  grid-template-columns: 1fr 1fr;
}

/* 3 images — first tall left, two stacked right */
.he-lp-feature__image-grid[data-count="3"] {
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
}

.he-lp-feature__image-grid[data-count="3"] .he-lp-feature__image-wrap:first-child {
  grid-row: 1 / -1;
}

/* 4 images — 2×2 grid */
.he-lp-feature__image-grid[data-count="4"] {
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
}

/* ── Image items ── */
.he-lp-feature__image-wrap {
  overflow: hidden;
  min-height: 0;
  border-radius: var(--feat-image-radius, 8px);
}

.he-lp-feature__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── Image gallery (16 images) ── */
.he-lp-feature__image-gallery {
  display: grid;
  grid-template-columns: repeat(var(--gal-cols, 4), 1fr);
  gap: var(--gal-gap, 6px);
  aspect-ratio: 1/1;
}

.he-lp-feature__gal-wrap {
  overflow: hidden;
  min-height: 0;
  border-radius: var(--gal-radius, 4px);
}

.he-lp-feature__gal-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── Detail card ── */
.he-lp-feature__detail-card {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: var(--dc-bg, transparent);
  border-radius: var(--dc-radius, 12px);
  padding: 28px;
}

@media screen and (max-width: 749px) {
  .he-lp-feature__detail-card {
    padding: 20px;
  }
}

.he-lp-feature__dc-divider {
  width: 100%;
  height: 1px;
  background: var(--dc-divider-color, var(--feat-separator-color, currentColor));
  margin: 4px 0;
}

.he-lp-feature__dc-divider--subtle {
  opacity: 0.3;
}

.he-lp-feature__dc-header {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 16px;
}

.he-lp-feature__dc-number {
  font-family: var(--font-body--family), sans-serif;
  font-size: 64px;
  font-weight: 700;
  line-height: 1;
  color: var(--dc-number-color, var(--feat-number-color, currentColor));
  opacity: 0.15;
  flex-shrink: 0;
}

@media screen and (max-width: 749px) {
  .he-lp-feature__dc-number {
    font-size: 48px;
  }
}

.he-lp-feature__dc-heading {
  margin: 0;
  padding-top: 8px;
  font-family: var(--font-accent--family), monospace;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: currentColor;
}

/* ── Detail card images ── */
.he-lp-feature__dc-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--dc-img-gap, 8px);
  margin-bottom: 20px;
}

.he-lp-feature__dc-images[data-count="1"] {
  grid-template-columns: 1fr;
}

.he-lp-feature__dc-img-wrap {
  overflow: hidden;
  border-radius: var(--dc-img-radius, 8px);
  aspect-ratio: 1/1;
}

.he-lp-feature__dc-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── Detail card bullets ── */
.he-lp-feature__dc-bullet {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
}

.he-lp-feature__dc-arrow {
  flex-shrink: 0;
  font-size: 18px;
  line-height: 1.6;
  color: var(--feat-eyebrow-color, currentColor);
}

.he-lp-feature__dc-bullet-text {
  margin: 0;
  font-family: var(--font-body--family), sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  color: currentColor;
}

.he-lp-feature__dc-bullet-text strong {
  font-weight: 700;
}

/* ── Synergy card ── */
.he-lp-feature__synergy-card {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: var(--sc-bg, transparent);
  border-radius: var(--sc-radius, 12px);
  padding: 28px;
  border: 1px solid var(--sc-border-color, transparent);
}

@media screen and (max-width: 749px) {
  .he-lp-feature__synergy-card {
    padding: 20px;
  }
}

.he-lp-feature__sc-header {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 16px;
}

.he-lp-feature__sc-combo-num {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}

.he-lp-feature__sc-num {
  font-family: var(--font-body--family), sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
  opacity: 0.4;
}

.he-lp-feature__sc-plus {
  font-family: var(--font-body--family), sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  opacity: 0.25;
  color: currentColor;
}

@media screen and (max-width: 749px) {
  .he-lp-feature__sc-num {
    font-size: 32px;
  }
  .he-lp-feature__sc-plus {
    font-size: 22px;
  }
}

.he-lp-feature__sc-heading {
  margin: 0;
  padding-top: 6px;
  font-family: var(--font-accent--family), monospace;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: currentColor;
}

/* ── Synergy card images ── */
.he-lp-feature__sc-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sc-img-gap, 8px);
  margin-bottom: 20px;
}

.he-lp-feature__sc-images[data-count="1"] {
  grid-template-columns: 1fr;
}

.he-lp-feature__sc-img-wrap {
  overflow: hidden;
  border-radius: var(--sc-img-radius, 8px);
  aspect-ratio: 1/1;
}

.he-lp-feature__sc-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── Synergy card divider ── */
.he-lp-feature__sc-divider {
  width: 100%;
  height: 1px;
  background: var(--sc-divider-color, var(--feat-separator-color, currentColor));
  margin: 4px 0 20px;
}

/* ── Synergy card body prose ── */
.he-lp-feature__sc-body {
  color: currentColor;
}

.he-lp-feature__sc-body > * {
  margin: 0;
  font-family: var(--font-body--family), sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
}

.he-lp-feature__sc-body > * + * {
  margin-top: 0.6em;
}

.he-lp-feature__sc-body strong {
  font-weight: 700;
}

/* ── Results card ── */
.he-lp-feature__results-card {
  border: 1px solid var(--rc-border-color, rgba(0,0,0,0.12));
  border-radius: var(--rc-radius, 12px);
  padding: 28px;
}

@media screen and (max-width: 749px) {
  .he-lp-feature__results-card {
    padding: 20px;
  }
}

.he-lp-feature__rc-heading {
  margin: 0;
  font-family: var(--font-body--family), sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--rc-heading-color, currentColor);
}

.he-lp-feature__rc-body {
  margin: 12px 0 20px;
  color: currentColor;
}

.he-lp-feature__rc-body > * {
  margin: 0;
  font-family: var(--font-body--family), sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.55;
}

.he-lp-feature__rc-body > * + * {
  margin-top: 0.5em;
}

/* ── Stats grid — 2 per row ── */
.he-lp-feature__rc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 20px;
}

.he-lp-feature__rc-stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.he-lp-feature__rc-value {
  font-family: var(--font-body--family), sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
  color: var(--rc-stat-color, currentColor);
}

@media screen and (max-width: 749px) {
  .he-lp-feature__rc-value {
    font-size: 32px;
  }
}

.he-lp-feature__rc-text {
  margin: 0;
  font-family: var(--font-body--family), sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.45;
  color: currentColor;
}

/* ── Disclaimer ── */
.he-lp-feature__rc-disclaimer {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--rc-divider-color, var(--rc-border-color, rgba(0,0,0,0.12)));
  color: var(--rc-disclaimer-color, currentColor);
  text-align: center;
}

.he-lp-feature__rc-disclaimer > * {
  margin: 0;
  font-family: var(--font-body--family), sans-serif;
  font-size: 13px;
  line-height: 1.5;
  font-style: italic;
}

/* ── Studies grid ── */
.he-lp-feature__studies-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 16px;
}

@media screen and (max-width: 749px) {
  .he-lp-feature__studies-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Study compact card ── */
.he-lp-feature__study-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  color: inherit;
  transition: box-shadow 0.2s ease;
  -webkit-appearance: none;
  appearance: none;
}

.he-lp-feature__study-card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.he-lp-feature__study-card-badge {
  display: inline-block;
  align-self: flex-start;
  padding: 4px 12px;
  font-family: var(--font-body--family), sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  background: var(--study-badge-bg, #c0392b);
  border-radius: 20px;
  line-height: 1.4;
  white-space: nowrap;
}

.he-lp-feature__study-card-finding {
  margin: 0 !important;
  font-family: var(--font-body--family), sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
  color: currentColor;
}

.he-lp-feature__study-card-readmore {
  font-family: var(--font-body--family), sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--study-readmore-color, #c0392b);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ── Studies show-more toggle ── */
.he-lp-feature__study-card--extra {
  display: none;
}

.he-lp-feature__studies-grid.is-expanded .he-lp-feature__study-card--extra {
  display: flex;
}


.he-lp-feature__studies-show-more {
  display: block;
  width: 100%;
  padding: 12px;
  margin-top: 4px;
  border: 1px solid #E2E4E8;
  border-radius: 8px;
  background: transparent;
  font-family: var(--font-body--family), sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: inherit;
  cursor: pointer;
  transition: background 0.2s;
  -webkit-appearance: none;
  appearance: none;
}

.he-lp-feature__studies-show-more:hover {
  background: rgba(0, 0, 0, 0.04);
}

.he-lp-feature__studies-show-more.is-hidden {
  display: none;
}

/* ── Study modal (hidden by default) ── */
.he-lp-feature__study-modal {
  display: none;
}

.he-lp-feature__study-modal[aria-hidden="false"] {
  display: flex;
  position: fixed;
  inset: 0;
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.he-lp-feature__study-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}

.he-lp-feature__study-modal-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
  max-width: 480px;
  max-height: 80vh;
  overflow-y: auto;
  padding: 24px 24px 28px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.he-lp-feature__study-modal-badge {
  display: inline-block;
  align-self: flex-start;
  padding: 4px 12px;
  font-family: var(--font-body--family), sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  background: var(--study-badge-bg, #c0392b);
  border-radius: 20px;
  line-height: 1.4;
  white-space: nowrap;
}

.he-lp-feature__study-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.06);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  padding: 0;
  color: #333;
  transition: background 0.15s ease;
  -webkit-appearance: none;
  appearance: none;
}

.he-lp-feature__study-modal-close:hover {
  background: rgba(0,0,0,0.12);
}

.he-lp-feature__study-modal-finding {
  margin: 0 !important;
  font-family: var(--font-body--family), sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
  color: #1a1a1a;
  padding-right: 32px;
}

.he-lp-feature__study-modal-title {
  margin: 0 !important;
  font-family: var(--font-body--family), sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  color: #1a1a1a;
  opacity: 0.7;
}

.he-lp-feature__study-modal-source {
  margin: 0 !important;
  font-family: var(--font-body--family), sans-serif;
  font-size: 13px;
  font-weight: 400;
  font-style: italic;
  line-height: 1.4;
  color: #1a1a1a;
  opacity: 0.5;
}

.he-lp-feature__study-modal-link {
  display: inline-block;
  margin-top: 4px;
  font-family: var(--font-body--family), sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #1a1a1a;
  opacity: 0.6;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity 0.15s ease;
}

.he-lp-feature__study-modal-link:hover {
  opacity: 1;
}

/* ── Timeline ── */
.he-lp-feature__timeline {
  display: flex;
  flex-direction: column;
  gap: 2px;
  border-radius: var(--tl-radius, 12px);
  overflow: hidden;
  border: 2px solid var(--tl-divider-color, #ffffff);
  background: var(--tl-divider-color, #ffffff);
}

@media screen and (min-width: 750px) {
  .he-lp-feature__timeline {
    flex-direction: row;
    overflow: visible;
    border: none;
    background: none;
    gap: 12px;
  }

  /* Break timeline out of its column to span full section width */
  .he-lp-feature:not(.he-lp-feature--single-col) .he-lp-feature__timeline {
    width: calc(100% * 100 / var(--feat-col-split-raw, 45));
  }
}

.he-lp-feature__tl-row {
  display: grid;
  grid-template-columns: var(--tl-week-width, 140px) 1fr;
  min-height: 0;
}

@media screen and (min-width: 750px) {
  .he-lp-feature__tl-row {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
    border-radius: var(--tl-radius, 12px);
    overflow: hidden;
  }
}

@media screen and (max-width: 749px) {
  .he-lp-feature__tl-row {
    grid-template-columns: 100px 1fr;
  }
}

/* ── Week column ── */
.he-lp-feature__tl-week {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  padding: 24px 16px;
  background-color: #2a2a2a;
  color: #ffffff;
}

.he-lp-feature__tl-week-label {
  font-family: var(--font-accent--family), monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.5;
}

.he-lp-feature__tl-week-period {
  font-family: var(--font-body--family), sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
}

@media screen and (min-width: 750px) {
  .he-lp-feature__tl-week-period {
    font-size: 32px;
  }
}

@media screen and (max-width: 749px) {
  .he-lp-feature__tl-week-period {
    font-size: 30px;
  }
}

/* ── Content column ── */
.he-lp-feature__tl-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 24px 28px;
  background: var(--color-background, #ffffff);
}

@media screen and (min-width: 750px) {
  .he-lp-feature__tl-content {
    flex: 1;
    padding: 20px 16px;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 0 0 var(--tl-radius, 12px) var(--tl-radius, 12px);
  }
}

@media screen and (max-width: 749px) {
  .he-lp-feature__tl-content {
    padding: 20px 16px;
  }
}

.he-lp-feature__tl-heading {
  margin: 0;
  font-family: var(--font-body--family), sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  color: currentColor;
}

@media screen and (min-width: 750px) {
  .he-lp-feature__tl-heading {
    font-size: 16px;
  }
}

.he-lp-feature__tl-body {
  margin: 0;
  font-family: var(--font-body--family), sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.55;
  color: currentColor;
  opacity: 0.65;
}

@media screen and (min-width: 750px) {
  .he-lp-feature__tl-body {
    font-size: 13px;
  }
}

.he-lp-feature__tl-badge {
  display: inline-block;
  align-self: flex-start;
  margin-top: 4px;
  padding: 3px 9px;
  font-family: var(--font-accent--family), monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffffff;
  background-color: #888;
  border-radius: 20px;
  line-height: 1.3;
  white-space: nowrap;
}

@media screen and (min-width: 750px) {
  .he-lp-feature__tl-badge {
    font-size: 9px;
    margin-top: auto;
  }
}

/* ── Before / After Carousel ── */
.he-lp-feature__ba {
  overflow: hidden;
}

@media screen and (min-width: 750px) {
  /* Break before/after out of its column to span full section width */
  .he-lp-feature:not(.he-lp-feature--single-col) .he-lp-feature__col--left > .he-lp-feature__ba {
    width: calc(100% * 100 / var(--feat-col-split-raw, 45));
  }

  /* Keep slides compact at full-width breakout */
  .he-lp-feature:not(.he-lp-feature--single-col) .he-lp-feature__col--left > .he-lp-feature__ba .he-lp-feature__ba-slide {
    flex: 0 0 48%;
  }
}

.he-lp-feature__ba-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  gap: 12px;
}

.he-lp-feature__ba-track::-webkit-scrollbar {
  display: none;
}

.he-lp-feature__ba-slide {
  flex: 0 0 88%;
  scroll-snap-align: start;
  min-width: 0;
  display: flex;
}

.he-lp-feature__ba-slide:only-child {
  flex: 0 0 100%;
}

.he-lp-feature__ba-card {
  background: var(--ba-card-bg, #faf6ee);
  border-radius: var(--ba-card-radius, 16px);
  padding: 16px 16px 20px;
  display: flex;
  flex-direction: column;
  width: 100%;
}

.he-lp-feature__ba-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--ba-gap, 4px);
}

.he-lp-feature__ba-img-wrap {
  overflow: hidden;
  border-radius: var(--ba-radius, 8px) var(--ba-radius, 8px) 0 0;
  aspect-ratio: var(--ba-aspect, 1/1);
}

.he-lp-feature__ba-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.he-lp-feature__ba-label {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px 8px;
  font-family: var(--font-body--family), sans-serif;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ba-label-color, #fff);
  background: var(--ba-label-bg, #1a1a1a);
  border-radius: 0 0 var(--ba-radius, 8px) var(--ba-radius, 8px);
  line-height: 1.4;
}

.he-lp-feature__ba-label--after {
  background: var(--ba-label-after-bg, var(--ba-label-bg, #1a1a1a));
}

/* Quote */
.he-lp-feature__ba-quote {
  padding: 16px 4px 0;
  flex: 1;
}

.he-lp-feature__ba-quote-mark {
  font-family: Georgia, serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
  color: var(--ba-quote-color, #e74c3c);
}

.he-lp-feature__ba-quote-body {
  margin: -12px 0 0 !important;
  padding: 0;
  max-height: calc(1.5em * 3);
  overflow: hidden;
  font-family: var(--font-body--family), sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: currentColor;
  transition: max-height 0.3s ease;
}

.he-lp-feature__ba-quote.is-expanded .he-lp-feature__ba-quote-body {
  max-height: 500px;
}

.he-lp-feature__ba-see-more {
  display: none;
  margin-top: 4px;
  padding: 0;
  background: none;
  border: none;
  font-family: var(--font-body--family), sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: currentColor;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

/* Meta */
.he-lp-feature__ba-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: auto;
  padding: 16px 4px 0;
}

.he-lp-feature__ba-name {
  font-family: var(--font-body--family), sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: currentColor;
}

.he-lp-feature__ba-verified {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-body--family), sans-serif;
  font-size: 11px;
  font-weight: 500;
  color: currentColor;
  opacity: 0.8;
}

.he-lp-feature__ba-verified-icon {
  color: var(--ba-badge-color, #e74c3c);
  flex-shrink: 0;
  vertical-align: middle;
}

.he-lp-feature__ba-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}

.he-lp-feature__ba-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: #1a1a1a;
  opacity: 0.2;
  cursor: pointer;
  transition: opacity 0.2s ease;
  -webkit-appearance: none;
  appearance: none;
}

.he-lp-feature__ba-dot.is-active {
  opacity: 0.7;
}

/* ── Badge pill ── */
.he-lp-feature__badge-wrap {
  display: flex;
  justify-content: center;
  width: 100%;
}

.he-lp-feature__badge-pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 20px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.3;
  white-space: normal;
  text-align: center;
}
/* END_SECTION:he-lp-feature */

/* START_SECTION:he-lp-hb-box (INDEX:36) */
.he-lp-hb-box * { box-sizing: border-box; }
  .he-lp-hb-box .hbbox-inner { max-width: 1100px; margin: 0 auto; text-align: center; }

  .he-lp-hb-box .hbbox-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 28px;
  }
  @media (min-width: 750px) {
    .he-lp-hb-box .hbbox-grid {
      grid-template-columns: repeat(var(--hbbox-cols, 4), 1fr);
      gap: 20px;
      margin-top: 40px;
    }
  }

  .he-lp-hb-box .hbbox-item {
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04), 0 8px 24px rgba(0, 0, 0, 0.04);
    padding: 14px 14px 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  @media (min-width: 750px) {
    .he-lp-hb-box .hbbox-item { padding: 18px 18px 22px; }
  }

  .he-lp-hb-box .hbbox-img {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 12px;
    overflow: hidden;
    background: #F4F2F7;
    margin-bottom: 12px;
  }
  .he-lp-hb-box .hbbox-img img,
  .he-lp-hb-box .hbbox-img svg {
    width: 100%; height: 100%; object-fit: cover; display: block;
  }

  .he-lp-hb-box .hbbox-title {
    font-family: var(--font-heading--family);
    font-size: 15px;
    font-weight: 700;
    color: #000000;
    line-height: 1.25;
    margin: 0 0 4px;
  }
  @media (min-width: 750px) {
    .he-lp-hb-box .hbbox-title { font-size: 17px; }
  }
  .he-lp-hb-box .hbbox-caption {
    font-family: var(--font-body--family);
    font-size: 13px;
    color: #6B7280;
    line-height: 1.4;
    margin: 0;
  }
  @media (min-width: 750px) {
    .he-lp-hb-box .hbbox-caption { font-size: 14px; }
  }
/* END_SECTION:he-lp-hb-box */

/* START_SECTION:he-lp-hb-closer (INDEX:37) */
.he-lp-hb-closer * { box-sizing: border-box; }
  .he-lp-hb-closer .hbclose-inner { max-width: 720px; margin: 0 auto; text-align: center; }
  /* Lift the shared 320px subtext cap (same override as mist/features). */
  .he-lp-hb-closer .he-block-subtext p { margin-left: auto; margin-right: auto; max-width: none; }

  /* Checkmark grid — fixed 2x2 */
  .he-lp-hb-closer .hbclose-points {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, max-content));
    justify-content: center;
    gap: 12px 26px;
    margin: 18px 0 26px;
    padding: 0;
    list-style: none;
    text-align: left;
  }
  .he-lp-hb-closer .hbclose-point {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body--family);
    font-size: 14px;
    color: #000000;
    line-height: 1.3;
  }
  /* When a point wraps, balance the lines ("Works with your / own oil")
     instead of leaving a one-word widow on line two. */
  .he-lp-hb-closer .hbclose-point > span:last-child { text-wrap: balance; }
  .he-lp-hb-closer .hbclose-check {
    width: 20px; height: 20px;
    border-radius: 50%;
    background: var(--hbclose-check-bg, #58468B);
    color: var(--hbclose-check-color, #F6F3FD);
    display: inline-flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .he-lp-hb-closer .hbclose-check svg { width: 11px; height: 11px; display: block; }

  /* Native ATC sizing */
  .he-lp-hb-closer .hbclose-form { max-width: 420px; margin: 0 auto; }
  .he-lp-hb-closer .hbclose-form .button { width: 100%; }
  .he-lp-hb-closer .hbclose-sub {
    font-family: var(--font-body--family);
    font-size: 13px;
    color: #6B6963;
    margin: 14px 0 0;
  }
  .he-lp-hb-closer .product-form-text__error { display: block; margin-top: 10px; }

  @media (min-width: 750px) {
    .he-lp-hb-closer .hbclose-points { gap: 14px 40px; margin: 22px 0 30px; }
    .he-lp-hb-closer .hbclose-point { font-size: 15px; }
    .he-lp-hb-closer .hbclose-check { width: 22px; height: 22px; }
    .he-lp-hb-closer .hbclose-check svg { width: 12px; height: 12px; }
    .he-lp-hb-closer .hbclose-sub { font-size: 14px; }
  }
/* END_SECTION:he-lp-hb-closer */

/* START_SECTION:he-lp-hb-features (INDEX:38) */
.he-lp-hb-features * { box-sizing: border-box; }
  .he-lp-hb-features .hbfeat-wrap { max-width: 1080px; margin: 0 auto; }

  /* Header */
  .he-lp-hb-features .hbfeat-head { text-align: center; }
  /* Lift the shared 320px subtext cap (same override as the mist section)
     so the intro text spans the full content width on mobile. Desktop
     keeps the 760px cap via the chrome block's #id rule. */
  .he-lp-hb-features .he-block-subtext p { margin-left: auto; margin-right: auto; max-width: none; }

  /* Rows */
  .he-lp-hb-features .hbfeat-rows {
    display: flex;
    flex-direction: column;
    gap: 44px;
    margin-top: 40px;
  }
  .he-lp-hb-features .hbfeat-row { display: grid; gap: 20px; }

  .he-lp-hb-features .hbfeat-media {
    border-radius: 20px;
    overflow: hidden;
    background: #EEEAF4;
    aspect-ratio: 4 / 3;
  }
  .he-lp-hb-features .hbfeat-media img,
  .he-lp-hb-features .hbfeat-media svg {
    width: 100%; height: 100%; object-fit: cover; display: block;
  }

  .he-lp-hb-features .hbfeat-text {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }
  .he-lp-hb-features .hbfeat-index {
    font-family: var(--font-heading--family);
    font-size: 22px; font-weight: 700; line-height: 1;
    color: var(--hbfeat-index, #B7A6DD);
    letter-spacing: 0.02em;
  }
  .he-lp-hb-features .hbfeat-label {
    font-family: var(--font-body--family);
    font-size: 11.5px; font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--hbfeat-label, #9B9790);
    margin-top: 6px;
  }
  .he-lp-hb-features .hbfeat-headline {
    font-family: var(--font-heading--family);
    font-size: 22px; font-weight: 700;
    color: #000000; line-height: 1.2;
    letter-spacing: -0.01em;
    margin: 2px 0 0;
  }
  .he-lp-hb-features .hbfeat-desc {
    font-family: var(--font-body--family);
    font-size: 15px; color: #6B7280;
    line-height: 1.55; margin: 6px 0 0;
    max-width: 52ch;
  }

  /* Desktop: 2-col rows, alternating image side */
  @media (min-width: 750px) {
    .he-lp-hb-features .hbfeat-rows { gap: 72px; margin-top: 56px; }
    .he-lp-hb-features .hbfeat-row {
      grid-template-columns: 1fr 1fr;
      gap: 56px;
      align-items: center;
    }
    .he-lp-hb-features .hbfeat-row:nth-child(even) .hbfeat-media { order: 2; }
    .he-lp-hb-features .hbfeat-headline { font-size: 26px; }
    .he-lp-hb-features .hbfeat-desc { font-size: 16px; }
    .he-lp-hb-features .hbfeat-media { aspect-ratio: 5 / 4; }
  }
/* END_SECTION:he-lp-hb-features */

/* START_SECTION:he-lp-hb-howto (INDEX:39) */
.he-lp-hb-howto * { box-sizing: border-box; }
  .he-lp-hb-howto .hbhow-inner { max-width: 1100px; margin: 0 auto; }

  /* Media — contained in a rounded box, sitting inside the section's side
     padding (not full-bleed). */
  .he-lp-hb-howto .hbhow-media {
    border-radius: 16px;
    overflow: hidden;
    background: #ECE9EE;
    aspect-ratio: 4 / 5;
  }
  .he-lp-hb-howto .hbhow-media img,
  .he-lp-hb-howto .hbhow-media video,
  .he-lp-hb-howto .hbhow-media svg {
    width: 100%; height: 100%; object-fit: cover; display: block;
  }
  /* Mobile/desktop video toggle — only used when a separate mobile clip is set */
  .he-lp-hb-howto .hbhow-media video.hbhow-vid--desktop { display: none; }
  .he-lp-hb-howto .hbhow-media video.hbhow-vid--mobile { display: block; }

  /* Mobile: chrome on top, then media, then steps */
  .he-lp-hb-howto .hbhow-media { margin-top: 22px; }

  /* Chrome as flex column: prevents margin-collapse between the blocks,
     so each block's "Spacing below" slider applies exactly as set. */
  .he-lp-hb-howto .hbhow-chrome { display: flex; flex-direction: column; }
  .he-lp-hb-howto .hbhow-chrome p { margin-top: 0; margin-bottom: 0; }

  /* Heading / chrome — centred on mobile, left-aligned on desktop */
  .he-lp-hb-howto .he-block-eyebrow,
  .he-lp-hb-howto .he-block-heading,
  .he-lp-hb-howto .he-block-subheading,
  .he-lp-hb-howto .he-block-subtext { text-align: center; }
  .he-lp-hb-howto .he-block-subtext p { margin-left: auto; margin-right: auto; max-width: none; }

  /* Footnote under the steps */
  .he-lp-hb-howto .hbhow-note {
    font-family: var(--font-body--family);
    font-size: 12.5px;
    color: #9B9790;
    margin: 16px 0 0;
    text-align: center;
  }

  /* Steps */
  .he-lp-hb-howto .hbhow-steps {
    list-style: none;
    margin: 24px 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 22px;
    counter-reset: hbhow;
  }
  .he-lp-hb-howto .hbhow-step {
    display: flex;
    align-items: flex-start;
    gap: 16px;
  }
  .he-lp-hb-howto .hbhow-num {
    counter-increment: hbhow;
    flex-shrink: 0;
    width: 40px; height: 40px;
    border-radius: 50%;
    border: 1.5px solid var(--hbhow-accent, #58468B);
    color: var(--hbhow-accent, #58468B);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-heading--family);
    font-size: 16px; font-weight: 600; line-height: 1;
  }
  .he-lp-hb-howto .hbhow-num::before { content: counter(hbhow); }
  .he-lp-hb-howto .hbhow-textstack {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
    /* Nudges the stack down slightly so the headline's cap-height lines
       up with the number circle's center, instead of the top of the
       (taller) 2-line stack pinning to the circle's very top edge. */
    padding-top: 8px;
  }
  .he-lp-hb-howto .hbhow-headline {
    font-family: var(--font-heading--family);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.35;
    color: #000000;
    margin: 0;
  }
  .he-lp-hb-howto .hbhow-text {
    font-family: var(--font-body--family);
    font-size: 15px;
    line-height: 1.5;
    color: #6B6963;
    margin: 0;
  }

  /* Desktop: media in one column (spanning), chrome + steps in the other */
  @media (min-width: 750px) {
    .he-lp-hb-howto .hbhow-inner {
      display: grid;
      grid-template-columns: 0.76fr 1fr;
      /* 1fr spacer rows top + bottom keep the heading/steps/note as ONE
         block, centered vertically against the tall image — instead of the
         old 2-row split that pushed the steps floating low. */
      grid-template-rows: 1fr auto auto auto 1fr;
      column-gap: 56px;
      row-gap: 0;
      align-items: start;
    }
    .he-lp-hb-howto .hbhow-media { grid-column: 1; grid-row: 1 / -1; margin-top: 0; margin-left: 0; margin-right: 0; border-radius: 16px; align-self: center; }
    .he-lp-hb-howto .hbhow-media video.hbhow-vid--desktop { display: block; }
    .he-lp-hb-howto .hbhow-media video.hbhow-vid--mobile { display: none; }
    .he-lp-hb-howto .hbhow-chrome { grid-column: 2; grid-row: 2; }
    .he-lp-hb-howto .hbhow-steps { grid-column: 2; grid-row: 3; margin-top: 44px; gap: 26px; }
    .he-lp-hb-howto .hbhow-note { grid-column: 2; grid-row: 4; margin-top: 16px; text-align: left; }
    .he-lp-hb-howto.hbhow--media-right .hbhow-note { grid-column: 1; }
    /* Media on the right variant */
    .he-lp-hb-howto.hbhow--media-right .hbhow-media { grid-column: 2; }
    .he-lp-hb-howto.hbhow--media-right .hbhow-chrome { grid-column: 1; }
    .he-lp-hb-howto.hbhow--media-right .hbhow-steps { grid-column: 1; }
    .he-lp-hb-howto .hbhow-headline { font-size: 17px; }
    .he-lp-hb-howto .hbhow-text { font-size: 15.5px; }
    /* Desktop: chrome left-aligned (sits beside the image, above the steps) */
    .he-lp-hb-howto .he-block-eyebrow,
    .he-lp-hb-howto .he-block-heading,
    .he-lp-hb-howto .he-block-subheading,
    .he-lp-hb-howto .he-block-subtext { text-align: left; }
    .he-lp-hb-howto .he-block-subtext p { margin-left: 0; margin-right: 0; }
  }
/* END_SECTION:he-lp-hb-howto */

/* START_SECTION:he-lp-hb-mist (INDEX:40) */
.he-lp-hb-mist * { box-sizing: border-box; }
  .he-lp-hb-mist { display: flex; flex-direction: column; position: relative; }

  /* ── Mobile base (stacked) ──────────────────────────────────── */
  /* 1. Chrome styled like a feature-ribbon row (index + label +
        headline + description), shown BELOW the image on mobile. */
  .he-lp-hb-mist .hbmist-chrome {
    padding: 26px var(--hbmist-pad-mobile, 22px) 8px;
    text-align: left;
  }
  .he-lp-hb-mist .he-block-heading,
  .he-lp-hb-mist .he-block-subheading,
  .he-lp-hb-mist .he-block-subtext { text-align: left; }
  .he-lp-hb-mist .he-block-subtext p { margin-left: 0; margin-right: 0; max-width: 52ch; }
  /* Feature-row anatomy, matching hbfeat-index / hbfeat-label */
  .he-lp-hb-mist .hbmist-findex {
    display: block;
    font-family: var(--font-heading--family);
    font-size: 22px; font-weight: 700; line-height: 1;
    color: var(--hbmist-findex-color, #B7A6DD);
    letter-spacing: 0.02em;
    margin-bottom: 12px; /* match hbfeat row's measured gap below the index */
  }
  .he-lp-hb-mist .hbmist-flabel {
    display: block;
    font-family: var(--font-body--family);
    font-size: 11.5px; font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--hbmist-flabel-color, #9B9790);
    margin: 6px 0 2px;
  }

  /* 2. Media banner — first on mobile (chrome reads below it) */
  .he-lp-hb-mist .hbmist-media {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 5;
    background: #ECE9EE;
    order: -1;
  }
  .he-lp-hb-mist .hbmist-media img {
    width: 100%; height: 100%; object-fit: cover; display: block;
  }
  /* Image toggle: use img.class for enough specificity to beat
     the generic ".hbmist-media img" display:block rule above. */
  .he-lp-hb-mist .hbmist-media img.hbmist-img--desktop { display: none; }
  .he-lp-hb-mist .hbmist-overlay { display: none; }

  /* 3. Stats below the image */
  .he-lp-hb-mist .hbmist-stats {
    padding: 26px var(--hbmist-pad-mobile, 22px) 34px;
  }
  .he-lp-hb-mist .hbmist-statrow {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 32px 26px;
  }

  /* Stat callout (dark-purple stroke, disclaimer inside) */
  .he-lp-hb-mist .hbmist-stat {
    background: var(--hbmist-stat-bg, #F6F3FD);
    border: 1px solid var(--hbmist-stat-stroke, #58468B);
    border-radius: 18px;
    padding: 24px 32px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .he-lp-hb-mist .hbmist-stat-num {
    font-family: var(--font-heading--family);
    font-size: 56px; font-weight: 800; line-height: 1;
    color: var(--hbmist-stat-color, #58468B);
    letter-spacing: -0.02em;
  }
  @media (min-width: 750px) { .he-lp-hb-mist .hbmist-stat-num { font-size: 68px; } }
  .he-lp-hb-mist .hbmist-stat-label {
    font-family: var(--font-body--family);
    font-size: 12px; font-weight: 700;
    color: #58468B; line-height: 1.3;
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
  }
  .he-lp-hb-mist .hbmist-stat-note {
    font-family: var(--font-body--family);
    font-size: 10.5px; color: #9B8FC0;
    line-height: 1.35; margin: 8px 0 0;
  }

  /* Benefit checkmarks (bigger, more spread) */
  .he-lp-hb-mist .hbmist-points {
    list-style: none; margin: 0 auto; padding: 0;
    width: fit-content;
    display: grid; grid-template-columns: 1fr; gap: 16px;
  }
  .he-lp-hb-mist .hbmist-point {
    display: flex; align-items: center; gap: 12px;
    font-family: var(--font-body--family);
    font-size: 17px; font-weight: 600;
    color: #58468B; line-height: 1.4;
  }
  .he-lp-hb-mist .hbmist-check {
    flex-shrink: 0;
    width: 27px; height: 27px;
    border-radius: 50%;
    background: var(--hbmist-check-bg, #58468B);
    color: var(--hbmist-check-color, #F1ECFB);
    display: inline-flex; align-items: center; justify-content: center;
  }
  .he-lp-hb-mist .hbmist-check svg { width: 14px; height: 14px; display: block; }

  /* Mobile: the 200% stat box floats as a compact, slightly transparent
     badge on the image's top-right corner; bullets align left with the
     chrome text. MUST come after the base rules above (same specificity,
     last-one-wins). */
  @media (max-width: 749px) {
    .he-lp-hb-mist .hbmist-stat {
      position: absolute;
      top: 12px;
      right: 12px;
      z-index: 2;
      padding: 14px 18px;
      border-radius: 14px;
      background: rgba(246, 243, 253, 0.78);
    }
    .he-lp-hb-mist .hbmist-stat-num { font-size: 50px; }
    .he-lp-hb-mist .hbmist-stat-label { font-size: 11px; margin-top: 5px; }
    .he-lp-hb-mist .hbmist-stat-note { font-size: 9.5px; margin-top: 4px; white-space: nowrap; }
    /* Breathing room above the bullets; tight below so the gap to the
       next feature image equals the ribbon's own row-to-row rhythm. */
    .he-lp-hb-mist .hbmist-stats { padding-top: 16px; padding-bottom: 4px; }
    .he-lp-hb-mist .hbmist-statrow { justify-content: flex-start; }
    .he-lp-hb-mist .hbmist-points { margin-left: 0; margin-right: 0; width: auto; }
  }

  /* ── Desktop: full-bleed hero image + content overlaid right ── */
  @media (min-width: 750px) {
    .he-lp-hb-mist {
      min-height: 560px;
      justify-content: center;
      align-items: flex-start;
    }
    /* Image becomes the full-bleed background */
    .he-lp-hb-mist .hbmist-media {
      position: absolute;
      inset: 0;
      width: 100%; height: 100%;
      aspect-ratio: auto;
    }
    .he-lp-hb-mist .hbmist-media img.hbmist-img--mobile { display: none; }
    .he-lp-hb-mist .hbmist-media img.hbmist-img--desktop { display: block; }
    /* Gradient over the picture so the left-side content stays readable */
    .he-lp-hb-mist .hbmist-overlay {
      display: block;
      position: absolute;
      inset: 0;
      z-index: 1;
      background: linear-gradient(
        to left,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0) 42%,
        rgba(255, 255, 255, 0.85) 60%,
        rgba(255, 255, 255, 0.98) 80%,
        rgba(255, 255, 255, 1) 100%
      );
    }
    /* Chrome + stats stack on the left over the image */
    .he-lp-hb-mist .hbmist-chrome,
    .he-lp-hb-mist .hbmist-stats {
      position: relative;
      z-index: 2;
      width: 50%;
      max-width: 540px;
      /* Pull the content in from the left edge toward the centre.
         Scales with viewport so it sits mid-left on wide screens. */
      margin-left: clamp(var(--hbmist-pad-desktop, 80px), 12vw, 280px);
      text-align: left;
    }
    .he-lp-hb-mist .hbmist-chrome { padding: 0 0 18px; }
    .he-lp-hb-mist .hbmist-stats { padding: 0; }
    .he-lp-hb-mist .he-block-heading,
    .he-lp-hb-mist .he-block-subheading,
    .he-lp-hb-mist .he-block-subtext { text-align: left; }
    .he-lp-hb-mist .he-block-subtext p { margin-left: 0; margin-right: 0; }
    .he-lp-hb-mist .hbmist-statrow { justify-content: flex-start; }
    .he-lp-hb-mist .hbmist-stat { align-items: flex-start; text-align: left; }
    .he-lp-hb-mist .hbmist-points { margin-left: 0; margin-right: 0; width: auto; }
  }
/* END_SECTION:he-lp-hb-mist */

/* START_SECTION:he-lp-hb-oils (INDEX:41) */
.he-lp-hb-oils * { box-sizing: border-box; }
  .he-lp-hb-oils .hboils-inner { max-width: 980px; margin: 0 auto; text-align: center; }

  .he-lp-hb-oils .hboils-img {
    width: 100%;
    max-width: 440px;
    margin: 0 auto 22px;
    border-radius: 18px;
    overflow: hidden;
  }
  .he-lp-hb-oils .hboils-img img {
    width: 100%; height: auto; display: block;
  }

  .he-lp-hb-oils .hboils-points {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 28px;
    text-align: left;
  }
  @media (min-width: 750px) {
    .he-lp-hb-oils .hboils-points {
      grid-template-columns: repeat(var(--hboils-cols, 3), 1fr);
      gap: 20px;
      margin-top: 36px;
    }
  }

  .he-lp-hb-oils .hboils-point {
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 14px;
    padding: 18px 18px 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .he-lp-hb-oils .hboils-check {
    width: 28px; height: 28px;
    border-radius: 50%;
    background: var(--hboils-check-bg, #F6F3FD);
    color: var(--hboils-check-color, #58468B);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .he-lp-hb-oils .hboils-check svg { width: 14px; height: 14px; display: block; }

  .he-lp-hb-oils .hboils-point-title {
    font-family: var(--font-heading--family);
    font-size: 16px; font-weight: 700;
    color: #000000; line-height: 1.25; margin: 0;
  }
  @media (min-width: 750px) { .he-lp-hb-oils .hboils-point-title { font-size: 17px; } }
  .he-lp-hb-oils .hboils-point-text {
    font-family: var(--font-body--family);
    font-size: 14px; color: #6B7280;
    line-height: 1.45; margin: 0;
  }
/* END_SECTION:he-lp-hb-oils */

/* START_SECTION:he-lp-hb-problem (INDEX:42) */
.he-lp-hb-problem * { box-sizing: border-box; }
  .he-lp-hb-problem .hbprob-inner { max-width: 900px; margin: 0 auto; text-align: center; }

  .he-lp-hb-problem .hbprob-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 28px;
  }
  @media (min-width: 750px) {
    .he-lp-hb-problem .hbprob-grid {
      grid-template-columns: 1fr 1fr;
      gap: 16px;
      margin-top: 36px;
    }
  }

  .he-lp-hb-problem .hbprob-card {
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 14px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04), 0 8px 24px rgba(0, 0, 0, 0.04);
    padding: 16px 18px;
    display: grid;
    grid-template-columns: 28px 1fr;
    align-items: start;
    gap: 14px;
    text-align: left;
  }

  .he-lp-hb-problem .hbprob-x {
    flex-shrink: 0;
    width: 28px; height: 28px;
    border-radius: 50%;
    background: var(--hbprob-x-bg, rgba(229, 86, 75, 0.12));
    color: var(--hbprob-x-color, #E5564B);
    display: flex; align-items: center; justify-content: center;
    margin-top: 2px;
  }
  .he-lp-hb-problem .hbprob-x svg { width: 13px; height: 13px; display: block; }

  .he-lp-hb-problem .hbprob-title {
    font-family: var(--font-heading--family);
    font-size: 16px; font-weight: 700;
    color: #000000; line-height: 1.25;
    margin: 0 0 4px;
  }
  @media (min-width: 750px) { .he-lp-hb-problem .hbprob-title { font-size: 17px; } }
  .he-lp-hb-problem .hbprob-text {
    font-family: var(--font-body--family);
    font-size: 14px; color: #6B7280;
    line-height: 1.45; margin: 0;
  }

  .he-lp-hb-problem .hbprob-reframe {
    margin: 28px auto 0;
    max-width: 600px;
    font-family: var(--font-heading--family);
    font-size: 18px; font-weight: 700;
    line-height: 1.35; color: #000000;
  }
  @media (min-width: 750px) { .he-lp-hb-problem .hbprob-reframe { font-size: 22px; margin-top: 36px; } }
  .he-lp-hb-problem .hbprob-reframe em { font-style: italic; color: var(--hbprob-reframe-accent, #58468B); }
/* END_SECTION:he-lp-hb-problem */

/* START_SECTION:he-lp-hero (INDEX:43) */
.he-lp-hero,
.he-lp-hero * {
  box-sizing: border-box;
}

/* ── Grid ── */
.he-lp-hero {
  display: grid;
  grid-template-columns: var(--hero-col-split, 55%) 1fr;
  gap: var(--hero-col-gap, 48px);
  align-items: center;
}

@media screen and (max-width: 749px) {
  .he-lp-hero {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* ── Image wrap ── */
.he-lp-hero__image-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: var(--hero-image-aspect, 4/3);
  border-radius: var(--hero-image-radius, 16px);
  overflow: hidden;
}

.he-lp-hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.he-lp-hero__image--placeholder {
  background-color: #E8E2D9;
}

/* ── Gradient overlay ── */
.he-lp-hero__gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 45%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.55), transparent);
  pointer-events: none;
}

/* ── Badge ── */
.he-lp-hero__badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: #ffffff;
  border-radius: 12px;
  padding: 12px 14px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  max-width: calc(100% - 32px);
  text-decoration: none;
}

.he-lp-hero__badge-logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
  border-radius: 8px;
  flex-shrink: 0;
  display: block;
}

.he-lp-hero__badge-logo-placeholder {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 8px;
  background: #F2F0EC;
  border: 1px solid #E0DDD8;
}

.he-lp-hero__badge-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.he-lp-hero__badge-line1 {
  font-family: var(--font-body--family), sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #0C0C0C;
  line-height: 1.2;
}

.he-lp-hero__badge-line2 {
  font-family: var(--font-body--family), sans-serif;
  font-size: 11px;
  color: #555555;
  line-height: 1.3;
}

.he-lp-hero__badge-link {
  font-family: var(--font-accent--family), monospace;
  font-size: 10px;
  font-weight: 700;
  color: #F23440;
  letter-spacing: 0.04em;
  margin-top: 4px;
  display: block;
}

/* ── Content column ── */
.he-lp-hero__content-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

@media screen and (max-width: 749px) {
  .he-lp-hero__content-col {
    align-items: center;
    text-align: center;
  }
}

/* ── Eyebrow ── */
.he-lp-hero__eyebrow {
  display: inline-block;
  padding: 4px 14px;
  font-family: var(--font-body--family), sans-serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--hero-eyebrow-color, #0C0C0C);
  background-color: var(--hero-eyebrow-bg, #F5E9C8);
  border: 1px solid var(--hero-eyebrow-border, #E8D5A0);
  border-radius: 6px;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-skip-ink: none;
}

/* ── Heading ── */
.he-lp-hero__heading {
  margin: 0;
  color: #000000;
}

.he-lp-hero__heading > * {
  margin: 0;
}

/* ── Subheading ── */
.he-lp-hero__subheading {
  color: #000000;
  margin: 0;
}

.he-lp-hero__subheading > * {
  margin: 0;
  font-family: var(--font-body--family), sans-serif;
  font-size: 17px;
  line-height: 1.6;
}

/* ── Button ── */
.he-lp-hero__btn {
  display: block;
  width: 100%;
  padding: 18px 24px;
  background-color: var(--hero-btn-bg, #0C0C0C);
  color: var(--hero-btn-color, #ffffff);
  font-family: var(--font-body--family), sans-serif;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  border-radius: var(--hero-btn-radius, 8px);
  line-height: 1.2;
  transition: opacity 0.15s ease;
  -webkit-font-smoothing: antialiased;
}

.he-lp-hero__btn:hover {
  opacity: 0.88;
}

/* ── Stars row ── */
.he-lp-hero__stars-row {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 8px;
  flex-wrap: wrap;
}

.he-lp-hero__stars {
  display: flex;
  gap: 2px;
  color: var(--hero-star-color, #F5A623);
  flex-shrink: 0;
  line-height: 0;
}

.he-lp-hero__star {
  display: block;
}

.he-lp-hero__stars-text {
  font-family: var(--font-body--family), sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: currentColor;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
  -webkit-font-smoothing: antialiased;
}

.he-lp-hero__stars-text strong {
  font-weight: 700;
  color: var(--hero-accent-color, currentColor);
}

.he-lp-hero__stars-sep {
  opacity: 0.7;
  font-size: 10px;
  margin: 0 2px;
}
/* END_SECTION:he-lp-hero */

/* START_SECTION:he-lp-hs-ba-v2 (INDEX:44) */
.he-lp-hs-ba-v2 .bav2-image { border-radius: 14px; overflow: hidden; }
  .he-lp-hs-ba-v2 .bav2-image img,
  .he-lp-hs-ba-v2 .bav2-image video { display: block; width: 100%; height: 100%; object-fit: cover; }

  /* Avatar badge — ported from he-lp-hs-cta-v2's .ctav2-badge */
  .he-lp-hs-ba-v2 .bav2-badge-wrap { text-align: center; margin-bottom: 20px; }
  .he-lp-hs-ba-v2 .bav2-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--bav2-badge-bg, #FFFFFF);
    border: 1px solid var(--bav2-badge-border, #58468B);
    border-radius: 999px;
    padding: 4px 16px 4px 4px;
  }
  .he-lp-hs-ba-v2 .bav2-avatars { display: flex; align-items: center; }
  .he-lp-hs-ba-v2 .bav2-avatar {
    width: 32px; height: 32px;
    border-radius: 50%;
    border: 2px solid var(--bav2-badge-bg, #FFFFFF);
    margin-left: -10px;
    overflow: hidden;
    flex-shrink: 0;
    background: #E8E2D9;
  }
  .he-lp-hs-ba-v2 .bav2-avatar:first-child { margin-left: 0; }
  .he-lp-hs-ba-v2 .bav2-avatar img { display: block; width: 100%; height: 100%; object-fit: cover; }
  .he-lp-hs-ba-v2 .bav2-badge-text {
    font-family: var(--font-body--family);
    font-size: 13px;
    color: var(--bav2-badge-text, #000000);
  }
  .he-lp-hs-ba-v2 .bav2-badge-text strong { font-weight: 700; }
  @media (min-width: 750px) {
    .he-lp-hs-ba-v2 .bav2-badge-wrap { margin-bottom: 28px; }
    .he-lp-hs-ba-v2 .bav2-badge-text { font-size: 14px; }
  }

  /* Mobile: horizontal scroll-snap carousel; cards peek past edge */
  .he-lp-hs-ba-v2 .bav2-scroll-wrap {
    position: relative;
    margin-left: calc(var(--bav2-side-pad) * -1);
    margin-right: calc(var(--bav2-side-pad) * -1);
  }
  .he-lp-hs-ba-v2 .bav2-grid {
    display: flex;
    /* stretch (not flex-start) so every card matches the tallest card's
       height. Shorter testimonials (no "see more" button) get blank space
       at the bottom instead of a shorter card — keeps the row even. */
    align-items: stretch;
    gap: 14px;
    overflow-x: auto;
    overflow-y: visible;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    /* Symmetric side padding so first/last cards center-snap. Top +
       bottom kept tight (4/12) — matches honest-ugc pattern; just
       enough to not clip the card's drop shadow. */
    padding: 4px max(7.5vw, 18px) 12px;
    scroll-padding-inline: max(7.5vw, 18px);
  }
  .he-lp-hs-ba-v2 .bav2-grid::-webkit-scrollbar { display: none; }
  .he-lp-hs-ba-v2 .bav2-grid > .bav2-card {
    /* Card sized so it dominates the viewport with peek of next card on
       each side. Centered via scroll-snap-align: center + symmetric
       grid padding above. */
    flex: 0 0 calc(85vw - 28px);
    max-width: 460px;
    scroll-snap-align: center;
  }

  /* Carousel arrows (mobile) — prev + next, below the carousel.
     Matches the honest-ugc section's arrow pattern. */
  .he-lp-hs-ba-v2 .bav2-arrows {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 12px;
  }
  .he-lp-hs-ba-v2 .bav2-arrow {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: rgba(250, 248, 244, 0.95);
    border: 1px solid rgba(0, 0, 0, 0.10);
    color: #000000;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    padding: 0;
  }
  .he-lp-hs-ba-v2 .bav2-arrow svg { width: 18px; height: 18px; display: block; }
  .he-lp-hs-ba-v2 .bav2-arrow:active { transform: scale(0.94); }

  /* Card */
  .he-lp-hs-ba-v2 .bav2-card {
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    overflow: hidden;
    display: flex; flex-direction: column;
  }
  .he-lp-hs-ba-v2 .bav2-pair-wrap { padding: 18px 18px 0; }
  .he-lp-hs-ba-v2 .bav2-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
  /* Single combined before/after image (labels baked into the graphic) */
  .he-lp-hs-ba-v2 .bav2-combined { position: relative; aspect-ratio: var(--bav2-image-ratio, 562 / 750); border-radius: 10px; overflow: hidden; background: #E8E2D9; }
  .he-lp-hs-ba-v2 .bav2-combined img { display: block; width: 100%; height: 100%; object-fit: cover; }
  /* BEFORE on the left half, AFTER on the right half of the combined image */
  .he-lp-hs-ba-v2 .bav2-combined .bav2-clabel--before { right: auto; width: 50%; }
  .he-lp-hs-ba-v2 .bav2-combined .bav2-clabel--after { left: auto; width: 50%; }
  .he-lp-hs-ba-v2 .bav2-frame {
    position: relative;
    aspect-ratio: var(--bav2-image-ratio, 3/4.4);
    border-radius: 10px;
    overflow: hidden;
    background: #E8E2D9;
  }
  .he-lp-hs-ba-v2 .bav2-frame img,
  .he-lp-hs-ba-v2 .bav2-frame svg { display: block; width: 100%; height: 100%; object-fit: cover; }
  .he-lp-hs-ba-v2 .bav2-label {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    color: var(--bav2-before-text, #FAF8F4);
    background: var(--bav2-before-bg, #000000);
    font-family: var(--font-accent--family);
    font-size: 12px; font-weight: 700;
    letter-spacing: 0.18em; text-transform: uppercase;
    text-align: center;
    padding: 5px 6px;
    line-height: 1.3;
  }
  .he-lp-hs-ba-v2 .bav2-label--after {
    background: var(--bav2-accent, #F23440);
    color: var(--bav2-after-text, #FAF8F4);
  }

  .he-lp-hs-ba-v2 .bav2-content {
    padding: 28px 18px 18px;
    display: flex; flex-direction: column;
    gap: 12px;
  }
  @media (min-width: 750px) {
    .he-lp-hs-ba-v2 .bav2-content { padding: 32px 22px 18px; }
  }

  /* Italic-red opening quote glyph that sits just above the customer
     quote — signals "this is a customer testimonial". Tight to the
     quote so it reads as one unit. */
  .he-lp-hs-ba-v2 .bav2-quote-mark {
    display: block;
    font-family: var(--font-heading--family);
    font-size: 44px;
    font-style: italic;
    font-weight: 700;
    line-height: 0.5;
    letter-spacing: -0.06em;
    margin: 0 0 -10px;
  }
  @media (min-width: 750px) {
    .he-lp-hs-ba-v2 .bav2-quote-mark { font-size: 52px; margin-bottom: -14px; }
  }

  .he-lp-hs-ba-v2 .bav2-quote {
    font-family: var(--font-body--family);
    font-size: 16px;
    color: #000000;
    line-height: 1.5;
    margin: 0;
    /* Reserve 4 lines, clip past 4 unless expanded */
    min-height: calc(1.5em * 4);
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  @media (min-width: 750px) { .he-lp-hs-ba-v2 .bav2-quote { font-size: 17px; } }
  .he-lp-hs-ba-v2 .bav2-quote-block.is-expanded .bav2-quote {
    -webkit-line-clamp: unset;
    display: block;
    overflow: visible;
    min-height: 0;
  }
  .he-lp-hs-ba-v2 .bav2-see-more {
    display: none; margin-top: 4px;
    border: 0; background: none; padding: 0;
    font-family: var(--font-accent--family);
    font-size: 12px; font-weight: 700;
    letter-spacing: 0.16em; text-transform: uppercase;
    color: #000000; text-decoration: underline;
    cursor: pointer; user-select: none; align-self: flex-start;
  }
  .he-lp-hs-ba-v2 .bav2-quote-block.is-overflowing .bav2-see-more { display: inline-block; }
  .he-lp-hs-ba-v2 .bav2-quote-block.is-expanded .bav2-see-more { display: none; }

  .he-lp-hs-ba-v2 .bav2-attr { display: flex; flex-direction: column; gap: 4px; }
  .he-lp-hs-ba-v2 .bav2-stars {
    display: flex;
    align-items: center;
    gap: 3px;
    color: var(--bav2-accent, #F23440);
  }
  .he-lp-hs-ba-v2 .bav2-stars svg {
    width: 16px;
    height: 16px;
    stroke: var(--bav2-star-outline, #000000);
    stroke-width: 1.4;
    stroke-linejoin: round;
    display: block;
  }
  .he-lp-hs-ba-v2 .bav2-name {
    font-family: var(--font-heading--family);
    font-size: 15px; font-weight: 700;
    letter-spacing: 0.06em; text-transform: uppercase;
    color: #000000; margin: 0;
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }
  /* Inline SVG, not the 🇺🇸 emoji — flag emoji render as plain "US" text
     on Windows and inconsistently on some Android/browser combos. An SVG
     looks identical on every device and OS. */
  .he-lp-hs-ba-v2 .bav2-flag {
    width: 17px;
    height: 11px;
    flex-shrink: 0;
    border-radius: 1.5px;
    overflow: hidden;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.12);
  }
  .he-lp-hs-ba-v2 .bav2-flag svg { display: block; width: 100%; height: 100%; }
  .he-lp-hs-ba-v2 .bav2-verified {
    display: inline-flex; align-items: center; gap: 5px;
    font-family: var(--font-body--family);
    font-size: 12px; color: #6B6963;
  }
  .he-lp-hs-ba-v2 .bav2-verified svg {
    width: 14px; height: 14px; color: var(--bav2-accent, #F23440);
    flex-shrink: 0;
  }

  /* Desktop: stay a horizontal carousel (NOT a stacking grid).
     A 3-col grid orphans rows when card count isn't a multiple of 3
     (4 cards → orphan row of 1). Carousel keeps all cards on one row
     regardless of count. */
  @media (min-width: 750px) {
    .he-lp-hs-ba-v2 .bav2-scroll-wrap { max-width: var(--he-max-inner, 1100px); margin: 0 auto; }
    .he-lp-hs-ba-v2 .bav2-grid {
      gap: 20px;
      padding: 4px 4px 12px;
      scroll-padding-inline: 4px;
    }
    .he-lp-hs-ba-v2 .bav2-grid > .bav2-card {
      flex: 0 0 310px;
      max-width: 310px;
      scroll-snap-align: start;
    }
  }
/* END_SECTION:he-lp-hs-ba-v2 */

/* START_SECTION:he-lp-hs-ba (INDEX:45) */
/* ─── Scroll wrap (full-bleed on mobile) ─── */
  .he-lp-hs-ba .ba-scroll-wrap {
    position: relative;
    margin-left: calc(var(--ba-side-pad) * -1);
    margin-right: calc(var(--ba-side-pad) * -1);
  }

  .he-lp-hs-ba .ba-grid {
    display: flex;
    gap: var(--he-card-to-card-mobile);
    overflow-x: auto;
    overflow-y: visible;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-left: var(--ba-side-pad);
    padding-right: var(--ba-side-pad);
    padding-bottom: 8px;
  }
  .he-lp-hs-ba .ba-grid::-webkit-scrollbar { display: none; }
  .he-lp-hs-ba .ba-grid > .he-card {
    flex: 0 0 calc(100% - 28px);
    max-width: 460px;
    scroll-snap-align: start;
    scroll-margin-left: var(--ba-side-pad);
  }

  /* ─── Scroll cue (mobile only) — clickable button that advances to next card ─── */
  .he-lp-hs-ba .ba-scroll-cue {
    position: absolute;
    top: 38%;
    right: calc(var(--ba-side-pad) + 8px);
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(12, 12, 12, 0.78);
    color: #FAF8F4;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
    animation: ba-pulse 1.8s ease-in-out infinite;
    z-index: 5;
    padding: 0;
  }
  .he-lp-hs-ba .ba-scroll-cue:hover { background: #0C0C0C; animation-play-state: paused; }
  .he-lp-hs-ba .ba-scroll-cue:active { transform: translateY(-50%) scale(0.94); }
  .he-lp-hs-ba .ba-scroll-cue svg { width: 18px; height: 18px; }

  @keyframes ba-pulse {
    0%, 100% { transform: translateY(-50%) translateX(0); }
    50%      { transform: translateY(-50%) translateX(6px); }
  }

  /* ─── Image pair ─── */
  .he-lp-hs-ba .ba-pair {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin: -4px -4px 4px;
  }
  .he-lp-hs-ba .ba-frame {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    background: rgba(12, 12, 12, 0.04);
    border: 1px solid rgba(12, 12, 12, 0.06);
    aspect-ratio: 3 / 4.4;
  }
  .he-lp-hs-ba .ba-frame img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .he-lp-hs-ba .ba-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-accent--family);
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #9B9790;
  }
  .he-lp-hs-ba .ba-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: #0C0C0C;
    color: #FAF8F4;
    font-family: var(--font-accent--family);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    text-align: center;
    padding: 4px 6px;
    line-height: 1.4;
  }
  .he-lp-hs-ba .ba-label.after { background: var(--he-card-accent); }

  /* ─── Quote ─── */
  .he-lp-hs-ba .ba-quote-block {
    position: relative;
    padding-top: 10px;
  }
  .he-lp-hs-ba .ba-quote-block::before {
    content: '\201C';
    position: absolute;
    top: -16px;
    left: 0;
    font-family: var(--font-heading--family);
    font-size: 38px;
    line-height: 0.9;
    color: var(--he-card-accent);
    font-weight: 700;
  }
  .he-lp-hs-ba .ba-expand-cb { position: absolute; opacity: 0; pointer-events: none; }
  .he-lp-hs-ba .ba-quote {
    font-family: var(--font-body--family);
    font-size: 15px;
    color: #0C0C0C;
    line-height: 1.5;
    margin: 0;
    /* Always reserve 3 lines of space; clip anything past 3 lines */
    min-height: calc(1.5em * 3);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .he-lp-hs-ba .ba-expand-cb:checked ~ .ba-quote {
    -webkit-line-clamp: unset;
    overflow: visible;
    min-height: 0;
  }
  .he-lp-hs-ba .ba-see-more {
    display: none;
    margin-top: 8px;
    font-family: var(--font-accent--family);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #0C0C0C;
    text-decoration: underline;
    cursor: pointer;
    user-select: none;
  }
  .he-lp-hs-ba .ba-quote-block.is-overflowing .ba-see-more { display: inline-block; }
  .he-lp-hs-ba .ba-expand-cb:checked ~ .ba-see-more { display: none; }

  /* ─── Attribution (name + verified grouped tightly) ─── */
  .he-lp-hs-ba .ba-attribution {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
  .he-lp-hs-ba .ba-name {
    font-family: var(--font-heading--family);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #0C0C0C;
    margin: 0;
  }
  .he-lp-hs-ba .ba-verified {
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: var(--font-body--family);
    font-size: 11px;
    color: #6B6963;
    margin: 0;
  }
  .he-lp-hs-ba .ba-verified-icon {
    width: 12px;
    height: 12px;
    flex-shrink: 0;
    color: var(--he-card-accent);
  }

  /* ─── Desktop: 3-col grid, no scroll ─── */
  @media (min-width: 750px) {
    .he-lp-hs-ba .ba-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: var(--he-card-to-card-desktop);
      overflow: visible;
      padding-left: 0;
      padding-right: 0;
    }
    .he-lp-hs-ba .ba-grid > .he-card {
      flex: unset;
      max-width: unset;
      height: 100%;
    }
    .he-lp-hs-ba .ba-grid > .he-card:first-child,
    .he-lp-hs-ba .ba-grid > .he-card:last-child { margin-left: 0; margin-right: 0; }
    .he-lp-hs-ba .ba-scroll-cue { display: none; }
    .he-lp-hs-ba .ba-quote { font-size: 16px; }
  }
/* END_SECTION:he-lp-hs-ba */

/* START_SECTION:he-lp-hs-compare-v2 (INDEX:46) */
.he-lp-hs-compare-v2 * { box-sizing: border-box; }
  .he-lp-hs-compare-v2 .uvt-chrome { text-align: center; margin-bottom: 32px; }
  .he-lp-hs-compare-v2 .uvt-inner { max-width: 640px; margin: 0 auto; }
  /* Horizontal scroll wrapper — invisible/no-op today (2 columns already
     fit), but lets any extra comparison columns added later scroll into
     view instead of squeezing the label column unreadably thin. */
  .he-lp-hs-compare-v2 .uvt-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .he-lp-hs-compare-v2 .uvt-scroll::-webkit-scrollbar { display: none; }
  .he-lp-hs-compare-v2 .uvt-table { display: flex; flex-direction: column; width: 100%; min-width: fit-content; }
  .he-lp-hs-compare-v2 .uvt-row { display: flex; align-items: stretch; width: 100%; }
  /* Header/cap rows must NOT stretch — that would force the pill's
     header/cap cells to match the short label/others cells' height,
     killing the overlap. flex-end bottom-aligns the header row (so the
     taller pill sticks up above); flex-start top-aligns the cap row
     (so the taller pill sticks down below). Content rows keep the
     default stretch so labels of any length always line up 1:1 with
     their checkmark/dash on the same row. */
  .he-lp-hs-compare-v2 .uvt-row--head { align-items: flex-end; }
  .he-lp-hs-compare-v2 .uvt-row--cap { align-items: flex-start; }

  /* ─── Label column (left) ─── */
  .he-lp-hs-compare-v2 .uvt-label {
    flex: 1 1 auto;
    min-width: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--uvt-cell-bg, #FFFFFF);
    color: var(--uvt-row-text, #000000);
    text-transform: uppercase;
    font-family: var(--font-body--family);
    font-weight: 500;
    font-size: 12.5px;
    line-height: 1.3;
    border-left: 1px solid var(--uvt-border, #000000);
    border-bottom: 1px dashed var(--uvt-divider, #E8E2D9);
    padding: 10px 8px;
    min-height: 58px;
  }
  /* First CONTENT row (row 2 — row 1 is the floating header row below)
     gets the top border + radius. The header row's label cell is a
     separate, borderless spacer (.uvt-head-label) — only the "ours"
     pill actually starts at the header row. */
  .he-lp-hs-compare-v2 .uvt-row:nth-child(2) .uvt-label {
    border-top: 1px solid var(--uvt-border, #000000);
    border-top-left-radius: 14px;
  }
  /* Last CONTENT row (second-to-last row overall — the cap row is
     last) closes the box directly on itself: solid border + radius,
     no dashed divider, same height as every other row. The cap row's
     label/others cells are just invisible spacers (below) so the pill
     alone gets the separate bottom-overlap segment. */
  .he-lp-hs-compare-v2 .uvt-row:nth-last-child(2) .uvt-label {
    border-bottom: 1px solid var(--uvt-border, #000000);
    border-bottom-left-radius: 14px;
  }
  .he-lp-hs-compare-v2 .uvt-head-label {
    flex: 1 1 auto;
    min-width: 130px;
    height: 36px;
  }

  /* ─── "Ours" column (center) — continuous rounded pill ─── */
  .he-lp-hs-compare-v2 .uvt-ours {
    flex: 0 0 92px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--uvt-ours-bg, #58468B);
    border-left: 1px solid var(--uvt-border, #000000);
    border-right: 1px solid var(--uvt-border, #000000);
    min-height: 58px;
  }
  .he-lp-hs-compare-v2 .uvt-row:first-child .uvt-ours {
    border-top: 1px solid var(--uvt-border, #000000);
    border-top-left-radius: 14px;
    border-top-right-radius: 14px;
  }
  .he-lp-hs-compare-v2 .uvt-ours-logo {
    max-width: 85%;
    max-height: var(--uvt-logo-height, 28px);
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
  }
  .he-lp-hs-compare-v2 .uvt-ours-label {
    font-family: var(--font-heading--family);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.02em;
    color: var(--uvt-ours-text, #FFFFFF);
    text-align: center;
    padding: 0 6px;
  }

  /* ─── "Others" column (right) ─── */
  .he-lp-hs-compare-v2 .uvt-others {
    flex: 0 0 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--uvt-cell-bg, #FFFFFF);
    border-right: 1px solid var(--uvt-border, #000000);
    border-bottom: 1px dashed var(--uvt-divider, #E8E2D9);
    min-height: 58px;
  }
  /* See .uvt-row:nth-child(2) .uvt-label above — same reasoning: the
     box border starts at the first content row, not the header row.
     :last-child targets whichever comparison column ends up rightmost —
     the built-in "Others" column when it's alone, or the last extra
     comparison column when one or more have been added — so the box's
     corner radius always lands on the true right edge either way. */
  .he-lp-hs-compare-v2 .uvt-row:nth-child(2) .uvt-others:last-child {
    border-top: 1px solid var(--uvt-border, #000000);
    border-top-right-radius: 14px;
  }
  /* See .uvt-row:nth-last-child(2) .uvt-label above — same reasoning. */
  .he-lp-hs-compare-v2 .uvt-row:nth-last-child(2) .uvt-others:last-child {
    border-bottom: 1px solid var(--uvt-border, #000000);
    border-bottom-right-radius: 14px;
  }
  .he-lp-hs-compare-v2 .uvt-head-others {
    flex: 0 0 80px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .he-lp-hs-compare-v2 .uvt-others-label {
    font-family: var(--font-heading--family);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    color: var(--uvt-others-text, #000000);
  }

  /* ─── Cap row — only the pill needs this. The box (label/others)
     already closed itself on the last content row above, so its cap
     cells here are just invisible spacers that reserve the right
     amount of horizontal space for the pill's cap to lay out correctly
     between them. ─── */
  .he-lp-hs-compare-v2 .uvt-cap-label {
    flex: 1 1 auto;
    min-width: 130px;
    height: 0;
  }
  .he-lp-hs-compare-v2 .uvt-cap-ours {
    flex: 0 0 92px;
    background: var(--uvt-ours-bg, #58468B);
    border-left: 1px solid var(--uvt-border, #000000);
    border-right: 1px solid var(--uvt-border, #000000);
    border-bottom: 1px solid var(--uvt-border, #000000);
    border-bottom-left-radius: 14px;
    border-bottom-right-radius: 14px;
    /* This entire height is now pure overlap (the box's own cap cells
       are height:0 since the box closes on the last content row
       instead), so keep it modest — the reference's pill pokes out
       past the box by a small amount, not by a full extra row. */
    height: 18px;
  }
  .he-lp-hs-compare-v2 .uvt-cap-others {
    flex: 0 0 80px;
    height: 0;
  }

  /* ─── Icons ─── */
  .he-lp-hs-compare-v2 .uvt-check {
    width: 28px; height: 28px;
    border-radius: 50%;
    background: var(--uvt-check-bg, #FFFFFF);
    color: var(--uvt-check-color, #58468B);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .he-lp-hs-compare-v2 .uvt-check svg { width: 15px; height: 15px; }
  .he-lp-hs-compare-v2 .uvt-dash {
    width: 28px; height: 28px;
    border-radius: 50%;
    border: 1.5px solid var(--uvt-dash-color, #9B9790);
    color: var(--uvt-dash-color, #9B9790);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .he-lp-hs-compare-v2 .uvt-dash svg { width: 14px; height: 14px; }

  /* ─── Benefits row (optional, shown under the CTA button if any
     "Benefit" blocks are added) — same checkmark-row pattern as the
     Risk-Free CTA section. ─── */
  .he-lp-hs-compare-v2 .uvt-benefits {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
  }
  .he-lp-hs-compare-v2 .uvt-benefit {
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .he-lp-hs-compare-v2 .uvt-benefit-icon {
    flex-shrink: 0;
    width: 18px; height: 18px;
    border-radius: 50%;
    background: var(--uvt-benefit-icon-bg, #58468B);
    color: var(--uvt-benefit-icon-color, #FFFFFF);
    display: flex; align-items: center; justify-content: center;
  }
  .he-lp-hs-compare-v2 .uvt-benefit-icon svg { width: 10px; height: 10px; }
  .he-lp-hs-compare-v2 .uvt-benefit-text {
    font-family: var(--font-body--family);
    font-size: 13px;
    font-weight: 500;
    color: var(--uvt-row-text, #000000);
  }
  @media (min-width: 750px) {
    .he-lp-hs-compare-v2 .uvt-benefits { flex-direction: row; justify-content: center; flex-wrap: wrap; gap: 10px 28px; }
  }

  @media (min-width: 750px) {
    .he-lp-hs-compare-v2 .uvt-label { font-size: 15px; padding: 14px 20px; min-height: 66px; }
    .he-lp-hs-compare-v2 .uvt-ours,
    .he-lp-hs-compare-v2 .uvt-others { min-height: 66px; }
    .he-lp-hs-compare-v2 .uvt-ours,
    .he-lp-hs-compare-v2 .uvt-cap-ours { flex-basis: 130px; }
    .he-lp-hs-compare-v2 .uvt-others,
    .he-lp-hs-compare-v2 .uvt-head-others,
    .he-lp-hs-compare-v2 .uvt-cap-others { flex-basis: 110px; }
    .he-lp-hs-compare-v2 .uvt-ours-label { font-size: 15px; }
    .he-lp-hs-compare-v2 .uvt-others-label { font-size: 15px; }
    .he-lp-hs-compare-v2 .uvt-head-label,
    .he-lp-hs-compare-v2 .uvt-head-others { height: 44px; }
    .he-lp-hs-compare-v2 .uvt-cap-ours { height: 22px; }
    .he-lp-hs-compare-v2 .uvt-check,
    .he-lp-hs-compare-v2 .uvt-dash { width: 34px; height: 34px; }
    .he-lp-hs-compare-v2 .uvt-check svg { width: 18px; height: 18px; }
    .he-lp-hs-compare-v2 .uvt-dash svg { width: 16px; height: 16px; }
  }
/* END_SECTION:he-lp-hs-compare-v2 */

/* START_SECTION:he-lp-hs-cta-v2 (INDEX:47) */
.he-lp-hs-cta-v2 * { box-sizing: border-box; }
  .he-lp-hs-cta-v2 { position: relative; }
  .he-lp-hs-cta-v2 .ctav2-inner {
    max-width: var(--he-max-summary, 720px);
    margin: 0 auto;
    position: relative;
    z-index: 2;
    text-align: center;
  }

  /* ─── Avatar badge ─── */
  .he-lp-hs-cta-v2 .ctav2-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--ctav2-badge-bg, #FFFFFF);
    border: 1px solid var(--ctav2-accent, #58468B);
    border-radius: 999px;
    padding: 4px 16px 4px 4px;
    margin: 0 auto 20px;
  }
  .he-lp-hs-cta-v2 .ctav2-avatars { display: flex; align-items: center; }
  .he-lp-hs-cta-v2 .ctav2-avatar {
    width: 32px; height: 32px;
    border-radius: 50%;
    border: 2px solid var(--ctav2-badge-bg, #FFFFFF);
    margin-left: -10px;
    overflow: hidden;
    flex-shrink: 0;
  }
  .he-lp-hs-cta-v2 .ctav2-avatar:first-child { margin-left: 0; }
  .he-lp-hs-cta-v2 .ctav2-avatar img { display: block; width: 100%; height: 100%; object-fit: cover; }
  .he-lp-hs-cta-v2 .ctav2-badge-text {
    font-family: var(--font-body--family);
    font-size: 13px;
    color: var(--ctav2-title-color, #000000);
  }
  .he-lp-hs-cta-v2 .ctav2-badge-text strong { font-weight: 700; }

  /* ─── Chrome (heading/subtext already center via shared CSS) ─── */
  .he-lp-hs-cta-v2 .ctav2-chrome { margin-bottom: 20px; }

  /* ─── CTA + benefits ─── */
  .he-lp-hs-cta-v2 .he-block-cta { margin-top: 4px !important; }
  .he-lp-hs-cta-v2 .ctav2-benefits {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
  }
  .he-lp-hs-cta-v2 .ctav2-benefit {
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .he-lp-hs-cta-v2 .ctav2-benefit-icon {
    flex-shrink: 0;
    width: 18px; height: 18px;
    border-radius: 50%;
    background: var(--ctav2-benefit-icon-bg, #58468B);
    color: var(--ctav2-benefit-icon-color, #FFFFFF);
    display: flex; align-items: center; justify-content: center;
  }
  .he-lp-hs-cta-v2 .ctav2-benefit-icon svg { width: 10px; height: 10px; }
  .he-lp-hs-cta-v2 .ctav2-benefit-text {
    font-family: var(--font-body--family);
    font-size: 13px;
    font-weight: 500;
    color: var(--ctav2-title-color, #000000);
  }

  /* ─── Photo cluster ─── */
  .he-lp-hs-cta-v2 .ctav2-photo {
    background: #FFFFFF;
    padding: 6px 6px 6px;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    width: 110px;
    flex-shrink: 0;
  }
  .he-lp-hs-cta-v2 .ctav2-photo-img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 5;
    border-radius: 3px;
    overflow: hidden;
    background: #EFEBE4;
  }
  .he-lp-hs-cta-v2 .ctav2-photo-img img { width: 100%; height: 100%; object-fit: cover; display: block; }

  /* Mobile: flowing overlapped row above the content */
  .he-lp-hs-cta-v2 .ctav2-photos--mobile {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    margin-bottom: 28px;
  }
  .he-lp-hs-cta-v2 .ctav2-photos--mobile .ctav2-photo:not(:first-child) { margin-left: -18px; }
  .he-lp-hs-cta-v2 .ctav2-photos--mobile .ctav2-photo:nth-child(2) { width: 130px; z-index: 2; }

  /* Desktop: absolute clusters flanking the content, hidden on mobile */
  .he-lp-hs-cta-v2 .ctav2-photos--left,
  .he-lp-hs-cta-v2 .ctav2-photos--right { display: none; }

  @media (min-width: 750px) {
    .he-lp-hs-cta-v2 .ctav2-photos--mobile { display: none; }
    .he-lp-hs-cta-v2 .ctav2-photos--left,
    .he-lp-hs-cta-v2 .ctav2-photos--right {
      display: flex;
      flex-direction: column;
      align-items: center;
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      z-index: 1;
    }
    .he-lp-hs-cta-v2 .ctav2-photos--left { left: 0; }
    .he-lp-hs-cta-v2 .ctav2-photos--right { right: 0; }
    .he-lp-hs-cta-v2 .ctav2-photos--left .ctav2-photo,
    .he-lp-hs-cta-v2 .ctav2-photos--right .ctav2-photo { width: 150px; }
    /* Explicit per-position cascade (desktop only) instead of a generic
       nth-child(2n) rule — each photo after the first gets a clear
       diagonal step down/out plus a deeper shadow, so a 2-3 photo stack
       reads as a deliberately scattered pile rather than a near-flat
       overlap. Photos also bleed slightly toward the outer page edge
       (away from center) instead of drifting inward. */
    .he-lp-hs-cta-v2 .ctav2-photos--left .ctav2-photo:nth-child(1) { z-index: 1; }
    .he-lp-hs-cta-v2 .ctav2-photos--left .ctav2-photo:nth-child(2) {
      margin-top: -30px;
      margin-left: -22px;
      z-index: 2;
      box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
    }
    .he-lp-hs-cta-v2 .ctav2-photos--left .ctav2-photo:nth-child(3) {
      margin-top: -30px;
      margin-left: 22px;
      z-index: 3;
      box-shadow: 0 16px 32px rgba(0, 0, 0, 0.20);
    }
    .he-lp-hs-cta-v2 .ctav2-photos--right .ctav2-photo:nth-child(1) { z-index: 1; }
    .he-lp-hs-cta-v2 .ctav2-photos--right .ctav2-photo:nth-child(2) {
      margin-top: -30px;
      margin-right: -22px;
      z-index: 2;
      box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
    }
    .he-lp-hs-cta-v2 .ctav2-photos--right .ctav2-photo:nth-child(3) {
      margin-top: -30px;
      margin-right: 22px;
      z-index: 3;
      box-shadow: 0 16px 32px rgba(0, 0, 0, 0.20);
    }

    .he-lp-hs-cta-v2 .ctav2-benefits { flex-direction: row; justify-content: center; flex-wrap: wrap; gap: 10px 28px; }
    .he-lp-hs-cta-v2 .ctav2-badge-text { font-size: 14px; }
  }

  @media (min-width: 1100px) {
    .he-lp-hs-cta-v2 .ctav2-photos--left .ctav2-photo,
    .he-lp-hs-cta-v2 .ctav2-photos--right .ctav2-photo { width: 180px; }
  }
/* END_SECTION:he-lp-hs-cta-v2 */

/* START_SECTION:he-lp-hs-disclaimer (INDEX:48) */
.he-lp-hs-disclaimer * { box-sizing: border-box; }
  .he-lp-hs-disclaimer .disc-inner {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
  }
  .he-lp-hs-disclaimer .disc-title {
    font-family: var(--font-heading--family);
    font-weight: 700;
    margin: 0 0 10px;
  }
  .he-lp-hs-disclaimer .disc-body,
  .he-lp-hs-disclaimer .disc-body p {
    font-family: var(--font-body--family);
    line-height: 1.55;
    margin: 0;
  }
/* END_SECTION:he-lp-hs-disclaimer */

/* START_SECTION:he-lp-hs-faq-v2 (INDEX:49) */
.he-lp-hs-faq-v2 * { box-sizing: border-box; }
  .he-lp-hs-faq-v2 .faqv2-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
    max-width: 920px;
    margin-left: auto;
    margin-right: auto;
  }
  .he-lp-hs-faq-v2 .faqv2-tabs + .faqv2-list { margin-top: 20px; }

  .he-lp-hs-faq-v2 .faqv2-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
    max-width: 920px;
    margin-left: auto;
    margin-right: auto;
  }
  .he-lp-hs-faq-v2 .faqv2-tab {
    font-family: var(--font-heading--family);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    padding: 11px 22px;
    border-radius: 999px;
    border: 1.5px solid var(--faqv2-border, #000000);
    background: transparent;
    color: var(--faqv2-title-color, #000000);
    cursor: pointer;
    line-height: 1.2;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    -webkit-tap-highlight-color: transparent;
  }
  .he-lp-hs-faq-v2 .faqv2-tab.is-active {
    background: var(--faqv2-pill-bg, #FFF0F1);
    border-color: var(--faqv2-border, #000000);
    color: var(--faqv2-title-color, #000000);
  }

  .he-lp-hs-faq-v2 .faqv2-row {
    background: var(--faqv2-pill-bg, #FFF0F1);
    border: 1px solid var(--faqv2-border, transparent);
    border-radius: var(--faqv2-radius, 999px);
    overflow: hidden;
    transition: border-radius 0.3s ease;
  }
  .he-lp-hs-faq-v2 .faqv2-row[open] {
    border-radius: 24px;
  }

  .he-lp-hs-faq-v2 .faqv2-summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 22px;
    -webkit-tap-highlight-color: transparent;
  }
  .he-lp-hs-faq-v2 .faqv2-summary::-webkit-details-marker { display: none; }
  .he-lp-hs-faq-v2 .faqv2-summary::marker { display: none; }

  .he-lp-hs-faq-v2 .faqv2-question {
    font-family: var(--font-heading--family);
    font-size: 16px;
    font-weight: 700;
    color: var(--faqv2-title-color, #000000);
    line-height: 1.3;
    flex: 1;
    min-width: 0;
  }

  .he-lp-hs-faq-v2 .faqv2-icon {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    color: var(--faqv2-icon-color, #58468B);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
  }
  .he-lp-hs-faq-v2 .faqv2-icon svg { width: 100%; height: 100%; display: block; }
  .he-lp-hs-faq-v2 .faqv2-row[open] .faqv2-icon { transform: rotate(45deg); }

  /* Smooth-ish expand via max-height. Large enough to cover most answers. */
  .he-lp-hs-faq-v2 .faqv2-answer-wrap {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s ease;
  }
  .he-lp-hs-faq-v2 .faqv2-row[open] .faqv2-answer-wrap {
    max-height: 1200px;
  }
  .he-lp-hs-faq-v2 .faqv2-answer {
    padding: 0 22px 22px;
    font-family: var(--font-body--family);
    font-size: 16px;
    line-height: 1.55;
    color: var(--faqv2-answer-color, #000000);
  }
  .he-lp-hs-faq-v2 .faqv2-answer p { margin: 0 0 10px; }
  .he-lp-hs-faq-v2 .faqv2-answer p:last-child { margin-bottom: 0; }
  .he-lp-hs-faq-v2 .faqv2-answer ul,
  .he-lp-hs-faq-v2 .faqv2-answer ol { margin: 0 0 10px; padding-left: 20px; }
  .he-lp-hs-faq-v2 .faqv2-answer a {
    color: var(--faqv2-icon-color, #58468B);
    text-decoration: underline;
  }

  @media (min-width: 750px) {
    .he-lp-hs-faq-v2 .faqv2-list { margin-top: 36px; gap: 14px; }
    .he-lp-hs-faq-v2 .faqv2-summary { padding: 22px 28px; }
    .he-lp-hs-faq-v2 .faqv2-question { font-size: 16px; }
    .he-lp-hs-faq-v2 .faqv2-icon { width: 18px; height: 18px; }
    .he-lp-hs-faq-v2 .faqv2-answer { padding: 0 28px 26px; font-size: 16px; }
  }
/* END_SECTION:he-lp-hs-faq-v2 */

/* START_SECTION:he-lp-hs-feat-v2 (INDEX:50) */
.he-lp-hs-feat-v2 .ftv2-scroll {
    overflow-x: auto;
    overflow-y: visible;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .he-lp-hs-feat-v2 .ftv2-scroll::-webkit-scrollbar { display: none; }
  .he-lp-hs-feat-v2 .ftv2-container { min-width: 620px; padding-top: 8px; padding-bottom: 36px; }

  .he-lp-hs-feat-v2 .ftv2-header { display: flex; align-items: flex-end; padding-bottom: 10px; position: relative; z-index: 2; }
  .he-lp-hs-feat-v2 .ftv2-row { display: flex; align-items: stretch; }
  .he-lp-hs-feat-v2 .ftv2-name { width: 18%; flex-shrink: 0; box-sizing: border-box; }
  .he-lp-hs-feat-v2 .ftv2-ours { width: 16%; flex-shrink: 0; text-align: center; box-sizing: border-box; }
  .he-lp-hs-feat-v2 .ftv2-comp { width: 16.5%; flex-shrink: 0; text-align: center; box-sizing: border-box; }
  .he-lp-hs-feat-v2 .ftv2-row .ftv2-name { border-right: 1px solid var(--ftv2-stroke, #E8E2D9); }
  .he-lp-hs-feat-v2 .ftv2-row .ftv2-comp { border-left: 1px solid var(--ftv2-stroke, #E8E2D9); }
  .he-lp-hs-feat-v2 .ftv2-row:last-child .ftv2-name { border-right: none; }
  .he-lp-hs-feat-v2 .ftv2-row:last-child .ftv2-comp { border-left: none; }

  .he-lp-hs-feat-v2 .ftv2-header .ftv2-ours {
    padding: 16px 0 1px;
    margin-top: 24px;
    display: flex; justify-content: center; align-items: flex-end;
  }
  .he-lp-hs-feat-v2 .ftv2-header .ftv2-comp {
    font-family: var(--font-heading--family);
    font-size: 14px;
    font-weight: 700;
    color: var(--ftv2-text, #9B9790);
    padding-bottom: 11px;
    margin-top: 24px;
  }
  @media (min-width: 750px) {
    .he-lp-hs-feat-v2 .ftv2-header .ftv2-comp { font-size: 16px; }
  }

  .he-lp-hs-feat-v2 .ftv2-badge {
    display: inline-block;
    color: #FAF8F4;
    font-family: var(--font-heading--family);
    font-size: 14px;
    font-weight: 700;
    position: relative;
    z-index: 3;
    text-align: left;
    line-height: 1.3;
  }
  @media (min-width: 750px) {
    .he-lp-hs-feat-v2 .ftv2-badge { font-size: 17px; }
  }
  .he-lp-hs-feat-v2 .ftv2-badge .ftv2-tm { font-size: 8px; vertical-align: super; line-height: 0; }

  .he-lp-hs-feat-v2 .ftv2-card {
    background: var(--ftv2-bg, #FAF8F4);
    border: 1.5px solid var(--ftv2-stroke, #E8E2D9);
    border-radius: 14px;
    overflow: visible;
  }
  .he-lp-hs-feat-v2 .ftv2-row + .ftv2-row .ftv2-name,
  .he-lp-hs-feat-v2 .ftv2-row + .ftv2-row .ftv2-comp { border-top: 1px solid var(--ftv2-stroke, #E8E2D9); }

  .he-lp-hs-feat-v2 .ftv2-row .ftv2-name {
    padding: 16px 14px;
    font-family: var(--font-body--family);
    font-size: 14px;
    font-weight: 700;
    color: var(--ftv2-text, #6B6963);
    line-height: 1.35;
    text-align: left;
  }
  @media (min-width: 750px) {
    .he-lp-hs-feat-v2 .ftv2-row .ftv2-name { font-size: 17px; }
  }
  .he-lp-hs-feat-v2 .ftv2-row .ftv2-comp { padding: 16px 4px; display: flex; align-items: center; justify-content: center; }
  .he-lp-hs-feat-v2 .ftv2-row .ftv2-ours {
    background: var(--ftv2-accent, #F23440);
    padding: 16px 4px;
    display: flex; align-items: center; justify-content: center;
  }

  /* Red ours-strip caps (top + bottom rounded) */
  .he-lp-hs-feat-v2 .ftv2-row:first-child .ftv2-ours { position: relative; }
  .he-lp-hs-feat-v2 .ftv2-row:first-child .ftv2-ours::before {
    content: '';
    position: absolute;
    top: -59px; left: 0; right: 0;
    height: 59px;
    background: var(--ftv2-accent, #F23440);
    border-radius: 12px 12px 0 0;
    z-index: 1;
  }
  .he-lp-hs-feat-v2 .ftv2-row:last-child .ftv2-ours { position: relative; }
  .he-lp-hs-feat-v2 .ftv2-row:last-child .ftv2-ours::after {
    content: '';
    position: absolute;
    bottom: -23px; left: 0; right: 0;
    height: 24px;
    background: var(--ftv2-accent, #F23440);
    border-radius: 0 0 12px 12px;
  }

  .he-lp-hs-feat-v2 .ftv2-icon-yes {
    display: inline-flex; align-items: center; justify-content: center;
    width: 36px; height: 36px;
    border-radius: 50%;
    border: 2px solid rgba(250,248,244,0.6);
    background: transparent;
  }
  .he-lp-hs-feat-v2 .ftv2-icon-yes svg { width: 18px; height: 18px; }
  .he-lp-hs-feat-v2 .ftv2-icon-yes-comp { display: inline-flex; align-items: center; justify-content: center; }
  .he-lp-hs-feat-v2 .ftv2-icon-yes-comp svg { width: 20px; height: 20px; }
  .he-lp-hs-feat-v2 .ftv2-icon-no { display: inline-flex; align-items: center; justify-content: center; }
  .he-lp-hs-feat-v2 .ftv2-icon-no svg { width: 18px; height: 18px; }

  /* Savings callout */
  .he-lp-hs-feat-v2 .ftv2-savings {
    display: flex; align-items: center; justify-content: space-between;
    background: #FAF8F4;
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: 14px;
    padding: 18px 20px;
    text-align: left;
    max-width: 720px;
    width: 100%;
    margin-left: auto; margin-right: auto;
    box-sizing: border-box;
  }
  .he-lp-hs-feat-v2 .ftv2-save-label {
    font-family: var(--font-body--family);
    font-size: 16px;
    color: #6B6963;
    line-height: 1.4;
  }
  .he-lp-hs-feat-v2 .ftv2-save-label strong {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #9B9790;
    font-weight: 700;
    margin-bottom: 2px;
  }
  .he-lp-hs-feat-v2 .ftv2-save-num {
    font-family: var(--font-heading--family);
    font-size: 40px;
    font-weight: 700;
    color: var(--ftv2-accent, #F23440);
    line-height: 1;
    white-space: nowrap;
  }
  @media (min-width: 750px) {
    .he-lp-hs-feat-v2 .ftv2-scroll { overflow-x: visible; }
    .he-lp-hs-feat-v2 .ftv2-container { min-width: 0; }
    .he-lp-hs-feat-v2 .ftv2-save-label { font-size: 18px; }
    .he-lp-hs-feat-v2 .ftv2-save-num { font-size: 52px; }
  }
/* END_SECTION:he-lp-hs-feat-v2 */

/* START_SECTION:he-lp-hs-feat (INDEX:51) */
/* Feature table — same layout as the previous S3 implementation */
  .he-lp-hs-feat .ft-scroll {
    overflow-x: auto; overflow-y: visible;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .he-lp-hs-feat .ft-scroll::-webkit-scrollbar { display: none; }
  .he-lp-hs-feat .ft-container { min-width: 620px; padding-top: 8px; padding-bottom: 36px; }
  .he-lp-hs-feat .ft-header { display: flex; align-items: flex-end; padding-bottom: 10px; position: relative; z-index: 2; }
  .he-lp-hs-feat .ft-row { display: flex; align-items: stretch; }
  .he-lp-hs-feat .ft-name { width: 18%; flex-shrink: 0; box-sizing: border-box; }
  .he-lp-hs-feat .ft-ours { width: 16%; flex-shrink: 0; text-align: center; box-sizing: border-box; }
  .he-lp-hs-feat .ft-comp { width: 16.5%; flex-shrink: 0; text-align: center; box-sizing: border-box; }
  .he-lp-hs-feat .ft-row .ft-name { border-right: 1px solid var(--ft-stroke, #E8E2D9); }
  .he-lp-hs-feat .ft-row .ft-comp { border-left: 1px solid var(--ft-stroke, #E8E2D9); }
  .he-lp-hs-feat .ft-header .ft-ours { padding: 16px 0 1px; margin-top: 24px; display: flex; justify-content: center; align-items: flex-end; }
  .he-lp-hs-feat .ft-header .ft-comp { font-family: var(--font-heading--family); font-size: 13px; font-weight: 700; color: var(--ft-text, #9B9790); padding-bottom: 11px; margin-top: 24px; }
  .he-lp-hs-feat .ft-badge { display: inline-block; color: #FAF8F4; font-family: var(--font-heading--family); font-size: 13px; font-weight: 700; position: relative; z-index: 3; text-align: left; line-height: 1.3; }
  .he-lp-hs-feat .ft-badge .ft-tm { font-size: 8px; vertical-align: super; line-height: 0; }
  .he-lp-hs-feat .ft-card { background: var(--ft-bg, #FAF8F4); border: 1.5px solid var(--ft-stroke, #E8E2D9); border-radius: 14px; overflow: visible; }
  .he-lp-hs-feat .ft-row + .ft-row .ft-name,
  .he-lp-hs-feat .ft-row + .ft-row .ft-comp { border-top: 1px solid var(--ft-stroke, #E8E2D9); }
  .he-lp-hs-feat .ft-row .ft-name { padding: 16px 14px; font-family: var(--font-body--family); font-size: 13px; font-weight: 700; color: var(--ft-text, #6B6963); line-height: 1.35; text-align: left; }
  .he-lp-hs-feat .ft-row .ft-comp { padding: 16px 4px; display: flex; align-items: center; justify-content: center; }
  .he-lp-hs-feat .ft-row .ft-ours { background: var(--he-card-accent, #F23440); padding: 16px 4px; display: flex; align-items: center; justify-content: center; }
  .he-lp-hs-feat .ft-row:first-child .ft-ours { position: relative; }
  .he-lp-hs-feat .ft-row:first-child .ft-ours::before { content: ''; position: absolute; top: -59px; left: 0; right: 0; height: 59px; background: var(--he-card-accent, #F23440); border-radius: 12px 12px 0 0; z-index: 1; }
  .he-lp-hs-feat .ft-row:last-child .ft-ours { position: relative; }
  .he-lp-hs-feat .ft-row:last-child .ft-ours::after { content: ''; position: absolute; bottom: -23px; left: 0; right: 0; height: 24px; background: var(--he-card-accent, #F23440); border-radius: 0 0 12px 12px; }
  .he-lp-hs-feat .ft-icon-yes { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 50%; border: 2px solid rgba(250,248,244,0.6); background: transparent; }
  .he-lp-hs-feat .ft-icon-yes svg { width: 18px; height: 18px; }
  .he-lp-hs-feat .ft-icon-yes-comp { display: inline-flex; align-items: center; justify-content: center; }
  .he-lp-hs-feat .ft-icon-yes-comp svg { width: 20px; height: 20px; }
  .he-lp-hs-feat .ft-icon-no { display: inline-flex; align-items: center; justify-content: center; }
  .he-lp-hs-feat .ft-icon-no svg { width: 18px; height: 18px; }

  /* Savings callout (footer summary) */
  .he-lp-hs-feat .ft-savings-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #FAF8F4;
    border: 1px solid rgba(0,0,0,0.03);
    border-radius: 14px;
    padding: 18px 20px;
    text-align: left;
    max-width: var(--he-max-summary);
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
  }
  .he-lp-hs-feat .ft-save-label { font-family: var(--font-body--family); font-size: 13px; color: #9B9790; line-height: 1.4; }
  .he-lp-hs-feat .ft-save-label strong { display: block; font-size: 11px; text-transform: uppercase; letter-spacing: .1em; color: #555; font-weight: 400; margin-bottom: 2px; }
  .he-lp-hs-feat .ft-save-num { font-family: var(--font-heading--family); font-size: 40px; font-weight: 700; color: var(--he-card-accent, #F23440); line-height: 1; white-space: nowrap; }

  @media (min-width: 750px) {
    .he-lp-hs-feat .ft-scroll { overflow-x: visible; }
    .he-lp-hs-feat .ft-container { min-width: 0; }
    .he-lp-hs-feat .ft-save-label { font-size: 16px; }
    .he-lp-hs-feat .ft-save-label strong { font-size: 13px; }
    .he-lp-hs-feat .ft-save-num { font-size: 48px; }
  }
/* END_SECTION:he-lp-hs-feat */

/* START_SECTION:he-lp-hs-lights-v2 (INDEX:52) */
.he-lp-hs-lights-v2 * { box-sizing: border-box; }
  .he-lp-hs-lights-v2 .lightsv2-inner { max-width: 1500px; margin: 0 auto; text-align: center; }

  /* Eyebrow inherits from the shared .he-block-eyebrow rule (10px mobile /
     13px desktop, 3px/4px letter-spacing). The old hardcoded override here
     (11px / 0.14em) made 7 Lights' eyebrow visibly inconsistent with every
     other section — removed for consistency. */

  /* Video stage */
  .he-lp-hs-lights-v2 .lightsv2-stage {
    margin: 0 auto;
    overflow: hidden;
    display: block;
    position: relative;
  }
  .he-lp-hs-lights-v2 .lightsv2-video {
    width: 100%;
    height: auto;
    display: block;
  }

  /* Desktop: 2-col split — image left, cards right.
     Wider max so a 760px video + 2-col cards fit side by side.
     No hard-coded margin-top — the gap before the split is controlled
     entirely by the last chrome block's "Spacing below" setting. */
  /* ── Mobile base layout ──────────────────────────────────────
     Image on top (full width), then cards in a 2-col grid below,
     White card spanning both columns at the bottom. */
  .he-lp-hs-lights-v2 .lightsv2-ushape {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    text-align: left;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
  }
  .he-lp-hs-lights-v2 .lightsv2-ushape .lightsv2-stage {
    grid-column: 1 / -1;
    max-width: 380px;
    margin: 0 auto 8px;
  }
  /* White (last) card spans full width + centered text — MOBILE ONLY.
     Scoped to max-width:749px so it doesn't override the desktop U-shape
     placement (which has lower specificity and would otherwise lose). */
  @media (max-width: 749px) {
    .he-lp-hs-lights-v2 .lightsv2-ushape .lightsv2-mode:last-child:nth-child(even) {
      grid-column: 1 / -1;
      align-items: center;
      text-align: center;
    }
    .he-lp-hs-lights-v2 .lightsv2-ushape .lightsv2-mode:last-child:nth-child(even) .lightsv2-pills {
      justify-content: center;
    }
  }
  .he-lp-hs-lights-v2 .lightsv2-mode {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 12px 14px;
    background: transparent;
    border: 1px solid rgba(12, 12, 12, 0.08);
    border-radius: 10px;
    min-width: 0;
  }
  .he-lp-hs-lights-v2 .lightsv2-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    align-items: center;
  }
  .he-lp-hs-lights-v2 .lightsv2-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--mode-color, #F23440);
    color: var(--pill-text, #FFFFFF);
    padding: 4px 10px 4px 8px;
    border-radius: 999px;
    font-family: var(--font-body--family);
    font-size: 10.5px;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
    letter-spacing: 0.02em;
  }
  /* Static live-indicator dot (animation removed per user request) */
  .he-lp-hs-lights-v2 .lightsv2-pill::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--pill-text, #FFFFFF);
    flex-shrink: 0;
  }
  .he-lp-hs-lights-v2 .lightsv2-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: var(--badge-bg, #FCE4E5);
    color: var(--badge-color, #F23440);
    padding: 4px 9px;
    border-radius: 999px;
    font-family: var(--font-body--family);
    font-size: 10.5px;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
    letter-spacing: 0.02em;
  }
  .he-lp-hs-lights-v2 .lightsv2-name {
    font-family: var(--font-heading--family);
    font-size: 14px;
    font-weight: 700;
    color: #0C0C0C;
    line-height: 1.25;
    letter-spacing: -0.15px;
  }
  .he-lp-hs-lights-v2 .lightsv2-desc {
    font-family: var(--font-body--family);
    font-size: 14px;
    color: #6B7280;
    line-height: 1.4;
    margin: 0;
  }

  @media (min-width: 750px) {
    .he-lp-hs-lights-v2 .lightsv2-stage { margin-top: 0; }

    /* ── Desktop U-shape ─────────────────────────────────────────
       3 columns: left cards | centre image | right cards.
       Image spans the 3 card-rows; White card sits centred below it.
       NOTE: assumes exactly 7 mode cards (8 grid children incl. stage).
         child 1 = stage   → col 2, rows 1-3
         child 2 = Red     → col 1, row 1     child 3 = Blue  → col 3, row 1
         child 4 = Yellow  → col 1, row 2     child 5 = Green → col 3, row 2
         child 6 = Purple  → col 1, row 3     child 7 = Cyan  → col 3, row 3
         child 8 = White   → col 2, row 4 (below image) */
    .he-lp-hs-lights-v2 .lightsv2-ushape {
      grid-template-columns: 1fr minmax(280px, 360px) 1fr;
      grid-template-rows: auto auto auto auto;
      gap: 12px 28px;
      align-items: center;
      max-width: 1100px;
    }
    .he-lp-hs-lights-v2 .lightsv2-ushape .lightsv2-stage {
      grid-column: 2;
      grid-row: 1 / 4;
      max-width: none;
      margin: 0;
      align-self: center;
    }
    /* Narrower cards (~1/3 off) so they don't dominate + leave room to
       offset the middle pair outward for the U-curve. */
    .he-lp-hs-lights-v2 .lightsv2-ushape > .lightsv2-mode {
      max-width: 320px;
      width: 100%;
    }
    /* Left column (Red, Yellow, Purple) */
    .he-lp-hs-lights-v2 .lightsv2-ushape > .lightsv2-mode:nth-child(2) { grid-column: 1; grid-row: 1; justify-self: end; }
    .he-lp-hs-lights-v2 .lightsv2-ushape > .lightsv2-mode:nth-child(4) { grid-column: 1; grid-row: 2; justify-self: start; } /* Yellow — bow OUT (left) */
    .he-lp-hs-lights-v2 .lightsv2-ushape > .lightsv2-mode:nth-child(6) { grid-column: 1; grid-row: 3; justify-self: end; }
    /* Right column (Blue, Green, Cyan) */
    .he-lp-hs-lights-v2 .lightsv2-ushape > .lightsv2-mode:nth-child(3) { grid-column: 3; grid-row: 1; justify-self: start; }
    .he-lp-hs-lights-v2 .lightsv2-ushape > .lightsv2-mode:nth-child(5) { grid-column: 3; grid-row: 2; justify-self: end; } /* Green — bow OUT (right) */
    .he-lp-hs-lights-v2 .lightsv2-ushape > .lightsv2-mode:nth-child(7) { grid-column: 3; grid-row: 3; justify-self: start; }
    /* White card — same width as the others, centred below the image */
    .he-lp-hs-lights-v2 .lightsv2-ushape > .lightsv2-mode:nth-child(8) {
      grid-column: 2;
      grid-row: 4;
      justify-self: center;
      align-items: center;
      text-align: center;
    }
    .he-lp-hs-lights-v2 .lightsv2-ushape > .lightsv2-mode:nth-child(8) .lightsv2-pills {
      justify-content: center;
    }

    .he-lp-hs-lights-v2 .lightsv2-mode { padding: 12px 14px; }
    .he-lp-hs-lights-v2 .lightsv2-pill { font-size: 11px; padding: 5px 11px 5px 9px; }
    .he-lp-hs-lights-v2 .lightsv2-badge { font-size: 11px; padding: 5px 10px; }
    .he-lp-hs-lights-v2 .lightsv2-name { font-size: 14.5px; }
    .he-lp-hs-lights-v2 .lightsv2-desc { font-size: 14px; }
  }
/* END_SECTION:he-lp-hs-lights-v2 */

/* START_SECTION:he-lp-hs-logo-band (INDEX:53) */
.he-lp-hs-logo-band {
    border-top: 1px solid #000000;
    border-bottom: 1px solid #000000;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .he-lp-hs-logo-band .logo-band-img {
    height: var(--logo-band-height, 28px);
    width: auto;
    max-width: 100%;
    object-fit: contain;
    display: block;
  }
  .he-lp-hs-logo-band .logo-band-name {
    font-family: var(--font-heading--family);
    font-size: var(--logo-band-height, 28px);
    font-weight: 700;
    color: #000000;
    line-height: 1;
  }
/* END_SECTION:he-lp-hs-logo-band */

/* START_SECTION:he-lp-hs-protocol-v2 (INDEX:54) */
.he-lp-hs-protocol-v2 * { box-sizing: border-box; }

  /* ── Mobile: vertical stack, each step horizontal (image left, text right) ── */
  .he-lp-hs-protocol-v2 .hp2-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 24px;
  }
  .he-lp-hs-protocol-v2 .hp2-step {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 14px;
    align-items: center;
  }

  .he-lp-hs-protocol-v2 .hp2-step-img {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    background: #E8E2D9;
  }
  .he-lp-hs-protocol-v2 .hp2-step-img img {
    width: 100%; height: 100%; object-fit: cover; display: block;
  }

  /* Numbered badge — top-left of image */
  .he-lp-hs-protocol-v2 .hp2-step-num {
    position: absolute;
    top: 8px; left: 8px;
    width: 28px; height: 28px;
    border-radius: 50%;
    background: var(--hp2-num-bg, #58468B);
    color: #FFFFFF;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-heading--family);
    font-size: 14px; font-weight: 700; line-height: 1;
    z-index: 2;
  }

  .he-lp-hs-protocol-v2 .hp2-step-text h3 {
    margin: 0 0 6px;
    font-family: var(--font-heading--family);
    font-size: 22px; font-weight: 700; line-height: 1.2;
    color: #000000;
  }
  .he-lp-hs-protocol-v2 .hp2-step-text p {
    margin: 0;
    font-family: var(--font-body--family);
    font-size: 16px; line-height: 1.55;
    color: #6B7280;
  }

  /* ── Desktop: 3 cards in a row, fixed width, spanning full inner width ── */
  @media (min-width: 750px) {
    .he-lp-hs-protocol-v2 .hp2-steps {
      flex-direction: row;
      justify-content: space-between;
      gap: 32px;
      margin-top: 40px;
    }
    .he-lp-hs-protocol-v2 .hp2-step {
      display: flex;
      flex-direction: column;
      gap: 16px;
      width: 300px;
      flex-shrink: 0;
    }
    .he-lp-hs-protocol-v2 .hp2-step-img {
      aspect-ratio: 4 / 3;
      border-radius: 16px;
    }
    .he-lp-hs-protocol-v2 .hp2-step-text { text-align: center; }
    .he-lp-hs-protocol-v2 .hp2-step-num {
      top: 12px; left: 12px;
      width: 32px; height: 32px;
      font-size: 14px;
    }
    .he-lp-hs-protocol-v2 .hp2-step-text h3 { font-size: 22px; }
    .he-lp-hs-protocol-v2 .hp2-step-text p { font-size: 16px; }
  }
/* END_SECTION:he-lp-hs-protocol-v2 */

/* START_SECTION:he-lp-hs-reviews-v2 (INDEX:55) */
.he-lp-hs-reviews-v2 * { box-sizing: border-box; }
  /* Fallback offset for plain #honest-reviews anchor jumps (e.g. typed
     URL hash) so the sticky header doesn't cover the top of the section.
     The he-review-bar block's own click handler computes a live offset
     from --header-height instead, so this is just a backstop. */
  .he-lp-hs-reviews-v2 { scroll-margin-top: 100px; }
  .he-lp-hs-reviews-v2 .revc-chrome { margin-bottom: 8px; }

  /* ─── Carousel track — ported from honest-ugc .hugc-grid ─── */
  .he-lp-hs-reviews-v2 .revc-scroll-wrap { position: relative; margin-top: 24px; }
  .he-lp-hs-reviews-v2 .revc-grid {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    overflow-y: visible;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 4px max(7.5vw, 18px) 12px;
    scroll-padding-inline: max(7.5vw, 18px);
    justify-content: center;
  }
  .he-lp-hs-reviews-v2 .revc-grid::-webkit-scrollbar { display: none; }
  @media (min-width: 750px) {
    .he-lp-hs-reviews-v2 .revc-grid {
      gap: 12px;
      padding: 4px max(40px, 4vw) 12px;
      scroll-padding-inline: max(40px, 4vw);
      max-width: var(--he-max-inner, 1100px);
      margin: 0 auto;
    }
  }

  /* ─── Review card — built on the shared .he-card primitive ───
     aspect-ratio:1 forces an actual square, not just a width that
     happens to land near-square for a given amount of text. Content is
     vertically centered inside it; the quote's line-clamp+min-height
     keeps that content block a predictable size so it never overflows
     the square. */
  .he-lp-hs-reviews-v2 .revc-card {
    flex: 0 0 220px;
    max-width: 220px;
    aspect-ratio: 1 / 1;
    scroll-snap-align: center;
    background: var(--revc-card-bg, #FFFFFF);
    border: 1.5px solid var(--revc-card-border, #58468B);
    border-radius: 12px;
    text-align: center;
    align-items: center;
    justify-content: center;
    padding: 18px;
    gap: 8px;
    overflow: hidden;
  }
  @media (min-width: 750px) {
    .he-lp-hs-reviews-v2 .revc-card {
      flex: 0 0 250px;
      max-width: 250px;
      padding: 20px;
    }
  }

  .he-lp-hs-reviews-v2 .revc-stars {
    display: flex;
    gap: 4px;
    color: var(--revc-star, #FFDA36);
  }
  .he-lp-hs-reviews-v2 .revc-stars svg {
    width: 21px;
    height: 21px;
    stroke: var(--revc-star-outline, #000000);
    stroke-width: 1.4;
    stroke-linejoin: round;
  }

  .he-lp-hs-reviews-v2 .revc-attr {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
  }
  .he-lp-hs-reviews-v2 .revc-name {
    font-family: var(--font-heading--family);
    font-size: 15px;
    font-weight: 700;
    color: var(--revc-title-color, #000000);
  }
  .he-lp-hs-reviews-v2 .revc-verified {
    display: inline-block;
    background: var(--revc-badge-bg, #58468B);
    color: var(--revc-badge-text, #FFFFFF);
    font-family: var(--font-body--family);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.02em;
    padding: 3px 9px;
    border-radius: 6px;
    white-space: nowrap;
  }

  .he-lp-hs-reviews-v2 .revc-quote {
    font-family: var(--font-body--family);
    font-size: 14.5px;
    line-height: 1.55;
    color: var(--revc-desc-color, #6B6963);
    margin: 0;
    min-height: calc(1.55em * 3);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  /* ─── Arrows — ported from honest-ugc .hugc-arrow ─── */
  .he-lp-hs-reviews-v2 .revc-arrows {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 16px;
  }
  .he-lp-hs-reviews-v2 .revc-arrow {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.10);
    color: var(--revc-arrow-color, #58468B);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    padding: 0;
  }
  .he-lp-hs-reviews-v2 .revc-arrow svg { width: 18px; height: 18px; display: block; }
  .he-lp-hs-reviews-v2 .revc-arrow:active { transform: scale(0.94); }
/* END_SECTION:he-lp-hs-reviews-v2 */

/* START_SECTION:he-lp-hs-s2-v2 (INDEX:56) */
.he-lp-hs-s2-v2 .s2v2-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 1100px;
    margin: 0 auto;
  }
  @media (min-width: 750px) {
    .he-lp-hs-s2-v2 .s2v2-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  }

  .he-lp-hs-s2-v2 .s2v2-card {
    background: var(--s2v2-card-bg, #FFFFFF);
    border: 1px solid var(--s2v2-card-stroke, rgba(12, 12, 12, 0.08));
    border-radius: 16px;
    padding: 28px 24px;
    box-shadow: 0 1px 2px rgba(12, 12, 12, 0.04), 0 8px 24px rgba(12, 12, 12, 0.04);
    display: flex;
    flex-direction: column;
    gap: 18px;
    /* overflow: hidden so the synergy panel's negative-margin bleed
       gets clipped to the card's rounded corners */
    overflow: hidden;
  }
  @media (min-width: 750px) {
    .he-lp-hs-s2-v2 .s2v2-card { padding: 24px 20px; gap: 16px; }
  }

  .he-lp-hs-s2-v2 .s2v2-head-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 14px;
  }
  .he-lp-hs-s2-v2 .s2v2-head {
    margin: 0;
    font-family: var(--font-heading--family);
    font-size: 22px;
    font-weight: 700;
    line-height: 1.2;
    color: #000000;
    flex: 1;
  }
  @media (min-width: 750px) { .he-lp-hs-s2-v2 .s2v2-head { font-size: 20px; } }

  .he-lp-hs-s2-v2 .s2v2-spec {
    font-family: var(--font-accent--family);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    padding: 5px 11px;
    border-radius: 999px;
    color: var(--s2v2-spec-color, #F23440);
    background: var(--s2v2-spec-bg, rgba(242, 52, 64, 0.08));
    border: 1px solid var(--s2v2-spec-stroke, rgba(242, 52, 64, 0.16));
    white-space: nowrap;
  }

  .he-lp-hs-s2-v2 .s2v2-imgrow { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
  .he-lp-hs-s2-v2 .s2v2-frame {
    aspect-ratio: 1/1;
    background: rgba(12, 12, 12, 0.04);
    border: 1px solid rgba(12, 12, 12, 0.06);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
  }
  .he-lp-hs-s2-v2 .s2v2-frame img,
  .he-lp-hs-s2-v2 .s2v2-frame svg { width: 100%; height: 100%; object-fit: cover; display: block; }
  .he-lp-hs-s2-v2 .s2v2-frame-spec {
    position: absolute;
    bottom: 6px; left: 8px;
    font-family: var(--font-accent--family);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(12, 12, 12, 0.72);
    background: rgba(250, 248, 244, 0.85);
    padding: 3px 7px;
    border-radius: 4px;
  }

  .he-lp-hs-s2-v2 .s2v2-spectrum { padding-top: 14px; border-top: 1px solid #E8E2D9; }
  .he-lp-hs-s2-v2 .s2v2-bar { position: relative; height: 12px; border-radius: 999px; margin-bottom: 12px; }
  .he-lp-hs-s2-v2 .s2v2-bar--red { background: linear-gradient(to right, #e07030 0%, #c84028 40%, #f23440 55%, #9a2828 75%, #7a1818 100%); }
  .he-lp-hs-s2-v2 .s2v2-bar--blue { background: linear-gradient(to right, #1a3050 0%, #2a5080 25%, #5B8CCC 45%, #3a6a9a 70%, #1a3050 100%); }
  .he-lp-hs-s2-v2 .s2v2-marker {
    position: absolute; top: -4px; left: 50%; transform: translateX(-50%);
    width: 2px; height: 20px; background: #000000; border-radius: 1px;
  }

  .he-lp-hs-s2-v2 .s2v2-ticks { display: flex; justify-content: space-between; }
  .he-lp-hs-s2-v2 .s2v2-tick { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 2px; text-align: center; }
  .he-lp-hs-s2-v2 .s2v2-tick-val {
    font-family: var(--font-accent--family);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: #6B6963;
  }
  .he-lp-hs-s2-v2 .s2v2-tick-lbl {
    font-family: var(--font-accent--family);
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #9B9790;
  }
  .he-lp-hs-s2-v2 .s2v2-tick.active .s2v2-tick-val { color: #000000; font-weight: 700; }
  .he-lp-hs-s2-v2 .s2v2-tick.active .s2v2-tick-lbl { color: var(--s2v2-tick-active, #F23440); font-weight: 700; }
  @media (min-width: 750px) {
    .he-lp-hs-s2-v2 .s2v2-tick-val { font-size: 12px; }
    .he-lp-hs-s2-v2 .s2v2-tick-lbl { font-size: 10px; }
  }

  /* Bullets fill the ENTIRE bottom half of the card with the accent
     tint (red on red-light, blue on EMS). Breaks out of the card's
     padding so the tint reaches the card's left/right/bottom edges,
     and uses border-radius to match the card's bottom corners. A
     hairline rule above separates from the spectrum section. Each
     bullet has its own icon (circular tinted bubble) on the left. */
  .he-lp-hs-s2-v2 .s2v2-bullets {
    list-style: none;
    display: flex;
    flex-direction: column;
    flex: 1;
    justify-content: space-evenly;
    margin: 4px -28px -60px;
    padding: 22px 28px 60px;
    background: var(--s2v2-bullets-bg, rgba(242, 52, 64, 0.07));
    border-top: 1px solid var(--s2v2-bullets-stroke, rgba(242, 52, 64, 0.18));
  }
  @media (min-width: 750px) {
    .he-lp-hs-s2-v2 .s2v2-bullets {
      margin: 4px -24px -60px;
      padding: 20px 24px 60px;
    }
  }
  .he-lp-hs-s2-v2 .s2v2-bullets li {
    display: flex;
    align-items: center;
    gap: 14px;
    font-family: var(--font-body--family);
    font-size: 18px;
    font-weight: 600;
    color: #000000;
    line-height: 1.4;
    padding: 14px 0;
    border-bottom: 1px solid var(--s2v2-bullets-divider, rgba(242, 52, 64, 0.14));
  }
  .he-lp-hs-s2-v2 .s2v2-bullets li:first-child { padding-top: 4px; }
  .he-lp-hs-s2-v2 .s2v2-bullets li:last-child { padding-bottom: 4px; border-bottom: none; }
  @media (min-width: 750px) {
    .he-lp-hs-s2-v2 .s2v2-bullets li { font-size: 16px; padding: 12px 0; gap: 14px; }
  }
  .he-lp-hs-s2-v2 .s2v2-bullets li strong { color: #000000; font-weight: 700; }

  /* Bullet icon — circular tinted bubble matching the bullets bg accent.
     SVG icons inherit color from --s2v2-tick-active via currentColor. */
  .he-lp-hs-s2-v2 .s2v2-bullet-icon {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--s2v2-bullet-icon-bg, rgba(242, 52, 64, 0.18));
    color: var(--s2v2-icon-color, var(--s2v2-tick-active, #F23440));
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    line-height: 1;
  }
  .he-lp-hs-s2-v2 .s2v2-bullet-icon svg { width: 22px; height: 22px; display: block; }
  @media (min-width: 750px) {
    .he-lp-hs-s2-v2 .s2v2-bullet-icon { width: 38px; height: 38px; font-size: 18px; }
    .he-lp-hs-s2-v2 .s2v2-bullet-icon svg { width: 20px; height: 20px; }
  }

  .he-lp-hs-s2-v2 .s2v2-syn-img {
    aspect-ratio: 4/3;
    background: rgba(12, 12, 12, 0.04);
    border: 1px solid rgba(12, 12, 12, 0.06);
    border-radius: 12px;
    overflow: hidden;
  }
  .he-lp-hs-s2-v2 .s2v2-syn-img img,
  .he-lp-hs-s2-v2 .s2v2-syn-img svg { width: 100%; height: 100%; object-fit: cover; display: block; }
  .he-lp-hs-s2-v2 .s2v2-syn-bars {
    position: relative; height: 14px; background: #E8E2D9;
    border-radius: 999px; overflow: hidden; margin: 12px 0 10px;
  }
  .he-lp-hs-s2-v2 .s2v2-syn-bars > div { position: absolute; top: 0; height: 100%; width: 58%; }
  .he-lp-hs-s2-v2 .s2v2-syn-bars > div:first-child {
    left: 0; background: linear-gradient(to right, #F23440, rgba(242, 52, 64, 0));
    border-radius: 999px 0 0 999px;
  }
  .he-lp-hs-s2-v2 .s2v2-syn-bars > div:last-child {
    right: 0; background: linear-gradient(to left, #5B8CCC, rgba(91, 140, 204, 0));
    border-radius: 0 999px 999px 0;
  }
  .he-lp-hs-s2-v2 .s2v2-syn-tags {
    display: flex; justify-content: space-between;
    font-family: var(--font-accent--family);
    font-size: 11px; font-weight: 700;
    letter-spacing: 0.16em; text-transform: uppercase;
  }
  .he-lp-hs-s2-v2 .s2v2-syn-tags .red { color: #F23440; }
  .he-lp-hs-s2-v2 .s2v2-syn-tags .blue { color: #3A6A9A; }
  .he-lp-hs-s2-v2 .s2v2-syn-text { font-size: 16px; line-height: 1.55; color: #000000; margin: 14px 0 0; }
  @media (min-width: 750px) { .he-lp-hs-s2-v2 .s2v2-syn-text { font-size: 18px; } }
  .he-lp-hs-s2-v2 .s2v2-syn-text strong { color: #000000; font-weight: 700; }

  /* Synergy panel — violet-tinted strip that wraps the bullet AND the
     body text. Bleeds full-width via negative margins (same trick as
     .s2v2-bullets) and extends to the bottom of the card via negative
     margin-bottom + matching padding. */
  /* Bumped opacity 0.07 -> 0.14 so the lower part of the card reads
     as distinctly colored (per user feedback — was too subtle to
     see at 7%). Negative margins match the card's exact padding
     (24/28 mobile, 32/36 desktop) so the panel bleeds edge-to-edge
     of the card on all four sides — covering the lower half with
     no untinted gap. */
  .he-lp-hs-s2-v2 .s2v2-syn-panel {
    margin: 4px -24px -60px;
    padding: 24px 24px 60px;
    background: var(--s2v2-syn-panel-bg, rgba(140, 90, 200, 0.14));
    border-top: 1px solid var(--s2v2-syn-panel-stroke, rgba(140, 90, 200, 0.28));
  }
  @media (min-width: 750px) {
    .he-lp-hs-s2-v2 .s2v2-syn-panel {
      margin: 4px -20px -60px;
      padding: 20px 20px 60px;
    }
  }
  /* Inside the panel, the s2v2-bullets list sits at the top. Strip
     ITS extra negative-margin/padding since the panel already provides
     them. */
  .he-lp-hs-s2-v2 .s2v2-syn-panel .s2v2-bullets {
    margin: 0;
    padding: 0;
    background: transparent;
    border: none;
  }
  .he-lp-hs-s2-v2 .s2v2-syn-panel .s2v2-bullets li {
    border-bottom-color: var(--s2v2-syn-panel-divider, rgba(140, 90, 200, 0.18));
    font-weight: 700;
  }

  /* Reframe footer — stone-bg card centered at end of section */
  .he-lp-hs-s2-v2 .s2v2-reframe {
    background: var(--s2v2-reframe-bg, #F2EDE7);
    border-radius: 14px;
    padding: 32px 24px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
  @media (min-width: 750px) {
    .he-lp-hs-s2-v2 .s2v2-reframe { padding: 44px 36px; max-width: 760px; }
  }
  .he-lp-hs-s2-v2 .s2v2-reframe-head { margin: 0; }
  .he-lp-hs-s2-v2 .s2v2-reframe-head :is(h1, h2, h3, p) {
    margin: 0;
    font-family: var(--font-heading--family);
    font-size: 24px; font-weight: 700;
    line-height: 1.22; letter-spacing: -0.015em; color: #000000;
  }
  @media (min-width: 750px) {
    .he-lp-hs-s2-v2 .s2v2-reframe-head :is(h1, h2, h3, p) { font-size: 32px; }
  }
  .he-lp-hs-s2-v2 .s2v2-reframe-head em {
    font-style: italic; color: var(--s2v2-reframe-em, #58468B);
  }
  .he-lp-hs-s2-v2 .s2v2-reframe-body {
    margin: 14px 0 0; font-family: var(--font-body--family);
    font-size: 15px; line-height: 1.6; color: #6B6963;
  }
  @media (min-width: 750px) { .he-lp-hs-s2-v2 .s2v2-reframe-body { font-size: 17px; } }
  .he-lp-hs-s2-v2 .s2v2-reframe-body p { margin: 0; }
  .he-lp-hs-s2-v2 .s2v2-reframe-body strong { color: #000000; font-weight: 600; }
/* END_SECTION:he-lp-hs-s2-v2 */

/* START_SECTION:he-lp-hs-s2 (INDEX:57) */
/* S2 payload-specific styles only */
  .he-lp-hs-s2 .s2-subtext-citation {
    font-family: var(--font-accent--family);
    font-size: 10px;
    letter-spacing: .06em;
    display: block;
    margin-top: 8px;
  }

  .he-lp-hs-s2 .s2-block-image { overflow: hidden; border-radius: 14px; }
  .he-lp-hs-s2 .s2-block-image img {
    display: block; width: 100%; height: 100%; object-fit: cover;
  }

  /* Depth chart */
  .he-lp-hs-s2 .s2-depth-chart {
    background: #141010;
    border: 1px solid #2A1A1A;
    border-radius: 16px;
    padding: 18px 16px;
    text-align: left;
  }
  .he-lp-hs-s2 .s2-dc-title {
    font-family: var(--font-heading--family);
    font-size: 17px;
    font-weight: 700;
    color: #FAF8F4;
    line-height: 1.25;
    margin-bottom: 14px;
  }
  .he-lp-hs-s2 .s2-dc-row { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
  .he-lp-hs-s2 .s2-dc-row:last-child { margin-bottom: 0; }
  .he-lp-hs-s2 .s2-dc-label {
    font-family: var(--font-accent--family);
    font-size: 10px;
    color: #444;
    width: 70px;
    flex-shrink: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  .he-lp-hs-s2 .s2-dc-track {
    flex: 1; height: 18px;
    background: #1A1A1A;
    border-radius: 4px;
    overflow: hidden;
  }
  .he-lp-hs-s2 .s2-dc-fill {
    height: 100%; border-radius: 4px;
    display: flex; align-items: center; padding: 0 8px;
  }
  .he-lp-hs-s2 .s2-dc-fill-label {
    font-family: var(--font-accent--family);
    font-size: 9px;
    letter-spacing: 1px;
    color: rgba(250,248,244,0.7);
    text-transform: uppercase;
    white-space: nowrap;
  }
  .he-lp-hs-s2 .s2-dc-cream { width: 25%; background: rgba(180,140,100,0.3); border: 1px solid rgba(180,140,100,0.2); }
  .he-lp-hs-s2 .s2-dc-light { width: 90%; background: linear-gradient(to right, #F23440, rgba(242, 52, 64,0.4)); }
  .he-lp-hs-s2 .s2-dc-ems   { width: 75%; background: linear-gradient(to right, rgba(60,100,200,0.5), rgba(60,100,200,0.2)); }
  .he-lp-hs-s2 .s2-dc-val {
    font-family: var(--font-accent--family);
    font-size: 9px;
    color: #3A3A3A;
    width: 40px;
    text-align: right;
    flex-shrink: 0;
  }

  /* Tech card internals (spectrum bar, images, bullets) */
  .he-lp-hs-s2 .s2-card-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .he-lp-hs-s2 .s2-card-img-frame {
    border-radius: 10px;
    overflow: hidden;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
  }
  .he-lp-hs-s2 .s2-card-img-frame img {
    display: block; width: 100%; height: 100%; object-fit: cover;
  }
  .he-lp-hs-s2 .s2-card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
  }
  .he-lp-hs-s2 .s2-card-head {
    font-family: var(--font-heading--family);
    font-size: 17px;
    font-weight: 700;
    color: #FAF8F4;
    line-height: 1.25;
    flex: 1;
    margin: 0;
  }
  .he-lp-hs-s2 .s2-spec-badge {
    font-family: var(--font-accent--family);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    padding: 3px 8px;
    border-radius: 999px;
    white-space: nowrap;
    flex-shrink: 0;
    margin-top: 4px;
    background: rgba(255, 255, 255, 0.04);
    color: var(--he-card-accent);
    border: 1px solid rgba(255, 255, 255, 0.08);
  }

  /* Spectrum viz — single divider above (was full-bordered, too noisy) */
  .he-lp-hs-s2 .s2-card-viz {
    padding: 12px 0 0;
    border-top: 1px solid rgba(255,255,255,.06);
  }
  .he-lp-hs-s2 .s2-viz-bar-wrap { position: relative; margin-bottom: 10px; }
  .he-lp-hs-s2 .s2-viz-bar { height: 10px; border-radius: 999px; }
  .he-lp-hs-s2 .s2-viz-bar.red-bar {
    background: linear-gradient(to right, #e07030 0%, #c84028 40%, #f23440 55%, #9a2828 75%, #7a1818 100%);
  }
  .he-lp-hs-s2 .s2-viz-bar.blue-bar {
    background: linear-gradient(to right, #1a3050 0%, #2a5080 25%, #5B8CCC 45%, #3a6a9a 70%, #1a3050 100%);
  }
  .he-lp-hs-s2 .s2-viz-marker {
    position: absolute;
    top: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 18px;
    background: #FAF8F4;
    border-radius: 1px;
  }
  .he-lp-hs-s2 .s2-viz-ticks { display: flex; justify-content: space-between; }
  .he-lp-hs-s2 .s2-viz-ticks .s2-tick-nm,
  .he-lp-hs-s2 .s2-viz-ticks .s2-tick-label {
    font-family: var(--font-accent--family);
    font-size: 10px;
    color: #555;
    display: block;
    text-align: center;
  }
  .he-lp-hs-s2 .s2-viz-ticks .s2-tick-label { color: #333; margin-top: 2px; }
  .he-lp-hs-s2 .s2-viz-ticks .active .s2-tick-nm { color: #FAF8F4; }
  .he-lp-hs-s2 .s2-viz-ticks .active .s2-tick-label { color: var(--he-card-accent); }

  .he-lp-hs-s2 .s2-bullet-list { list-style: none; display: flex; flex-direction: column; gap: 7px; padding: 0; margin: 0; }
  .he-lp-hs-s2 .s2-bullet {
    display: flex;
    align-items: baseline;
    gap: 8px;
    font-family: var(--font-body--family);
    line-height: 1.4;
  }
  .he-lp-hs-s2 .s2-arrow { font-size: 11px; flex-shrink: 0; color: var(--he-card-accent); }
  .he-lp-hs-s2 .s2-bullet em {
    font-style: normal;
    color: #444;
    font-family: var(--font-accent--family);
    font-size: 10px;
    letter-spacing: .04em;
  }

  /* Synergy visualization */
  .he-lp-hs-s2 .s2-synergy-img-frame {
    border-radius: 10px;
    overflow: hidden;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
  }
  .he-lp-hs-s2 .s2-synergy-img-frame img {
    display: block; width: 100%; height: 100%; object-fit: cover;
  }
  .he-lp-hs-s2 .s2-synergy-viz { }
  .he-lp-hs-s2 .s2-synergy-bars {
    position: relative;
    height: 8px;
    border-radius: 999px;
    background: #1a1a1a;
    overflow: hidden;
    margin-bottom: 10px;
  }
  .he-lp-hs-s2 .s2-syn-bar {
    position: absolute;
    top: 0;
    height: 100%;
    width: 58%;
  }
  .he-lp-hs-s2 .s2-syn-bar.red-syn {
    left: 0;
    background: linear-gradient(to right, #F23440, rgba(242, 52, 64,0));
    border-radius: 999px 0 0 999px;
  }
  .he-lp-hs-s2 .s2-syn-bar.blue-syn {
    right: 0;
    background: linear-gradient(to left, #5B8CCC, rgba(91,140,204,0));
    border-radius: 0 999px 999px 0;
  }
  .he-lp-hs-s2 .s2-synergy-bar-labels { display: flex; justify-content: space-between; }
  .he-lp-hs-s2 .s2-syn-tag {
    font-family: var(--font-accent--family);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 3px 9px;
    border-radius: 999px;
  }
  .he-lp-hs-s2 .s2-syn-tag.red {
    background: rgba(242, 52, 64,.12); color: #F23440;
    border: 1px solid rgba(242, 52, 64,.25);
  }
  .he-lp-hs-s2 .s2-syn-tag.blue {
    background: rgba(58,90,122,.15); color: #7ab0d4;
    border: 1px solid rgba(58,90,122,.3);
  }
  .he-lp-hs-s2 .s2-synergy-text {
    font-family: var(--font-body--family);
    line-height: 1.55;
    text-align: center;
    margin: 0;
  }
  .he-lp-hs-s2 .s2-synergy-text-desktop { display: none; }

  /* Card trio: vertical stack on mobile; 2-col grid on desktop with synergy
     spanning full width. The previous 3-col cramped everything; the all-stack
     felt suffocating. 2-col strikes the balance — tech_red + tech_ems can be
     scanned side-by-side, synergy is the conclusion that lands full width. */
  .he-lp-hs-s2 .s2-card-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
  }
  .he-lp-hs-s2 .s2-card-grid > .he-card {
    padding: 24px 20px;
  }

  @media (min-width: 750px) {
    .he-lp-hs-s2 .s2-card-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 20px;
      max-width: 1100px;
    }
    /* Synergy spans full width below tech cards */
    .he-lp-hs-s2 .s2-card-grid > [id^="s2-syn-"] {
      grid-column: 1 / -1;
    }
    .he-lp-hs-s2 .he-section-inner > .s2-block-image { display: none !important; }
    .he-lp-hs-s2 .s2-card-grid > .he-card {
      padding: 28px 28px;
    }
    .he-lp-hs-s2 .s2-card-head { font-size: 22px; }
    .he-lp-hs-s2 .s2-spec-badge { font-size: 11px; padding: 5px 11px; }
    .he-lp-hs-s2 .s2-viz-bar { height: 14px; }
    .he-lp-hs-s2 .s2-viz-ticks .s2-tick-nm,
    .he-lp-hs-s2 .s2-viz-ticks .s2-tick-label { font-size: 12px; }
    .he-lp-hs-s2 .s2-synergy-bars { height: 12px; }
    .he-lp-hs-s2 .s2-synergy-text-mobile { display: none; }
    .he-lp-hs-s2 .s2-synergy-text-desktop { display: block; }
    .he-lp-hs-s2 .s2-syn-tag { font-size: 11px; padding: 4px 11px; }
  }
/* END_SECTION:he-lp-hs-s2 */

/* START_SECTION:he-lp-hs-s3-v2 (INDEX:58) */
.he-lp-hs-s3-v2 .s3v2-chart {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 18px;
  }
  @media (min-width: 750px) {
    .he-lp-hs-s3-v2 .s3v2-chart { gap: 22px; }
  }

  .he-lp-hs-s3-v2 .s3v2-row { display: flex; flex-direction: column; gap: 8px; }
  .he-lp-hs-s3-v2 .s3v2-meta {
    display: flex; justify-content: space-between; align-items: baseline;
    gap: 12px;
    font-family: var(--font-body--family);
  }
  /* Names + prices in light grey (was too dark before — user feedback).
     Only the "ours" row's name strong + price get the brand red. */
  .he-lp-hs-s3-v2 .s3v2-name {
    font-size: 16px;
    color: #9B9790;
    line-height: 1.3;
  }
  @media (min-width: 750px) { .he-lp-hs-s3-v2 .s3v2-name { font-size: 18px; } }
  .he-lp-hs-s3-v2 .s3v2-name strong { font-weight: 700; color: #0C0C0C; }
  .he-lp-hs-s3-v2 .s3v2-price {
    font-family: var(--font-accent--family);
    font-size: 16px;
    font-weight: 500;
    color: #9B9790;
    flex-shrink: 0;
    font-variant-numeric: tabular-nums;
  }
  @media (min-width: 750px) { .he-lp-hs-s3-v2 .s3v2-price { font-size: 18px; } }
  .he-lp-hs-s3-v2 .s3v2-price--ours {
    color: #F23440;
    font-size: 18px;
    font-weight: 700;
  }
  @media (min-width: 750px) { .he-lp-hs-s3-v2 .s3v2-price--ours { font-size: 20px; } }

  .he-lp-hs-s3-v2 .s3v2-track {
    height: 14px;
    background: #E0D9D0;
    border-radius: 999px;
    overflow: hidden;
  }
  @media (min-width: 750px) { .he-lp-hs-s3-v2 .s3v2-track { height: 22px; } }
  .he-lp-hs-s3-v2 .s3v2-track--ours {
    background: rgba(242, 52, 64, 0.12);
    border: 1px solid rgba(242, 52, 64, 0.20);
  }
  .he-lp-hs-s3-v2 .s3v2-fill {
    height: 100%;
    border-radius: 999px;
  }
  /* Bars in dark-red shades (was grey — user feedback: "they should be the
     red shades again as before"). Restored from original he-lp-hs-s3 values:
     high = #8a3028, med = #6a2820, ours = brand #F23440. */
  .he-lp-hs-s3-v2 .s3v2-fill--high { background: #8a3028; }
  .he-lp-hs-s3-v2 .s3v2-fill--med { background: #6a2820; }
  .he-lp-hs-s3-v2 .s3v2-fill--low { background: #F23440; }

  /* "One-time. Then free every day after." note is right-aligned to
     match the v1 layout. Italic (matches old .s3-chart-note style). */
  .he-lp-hs-s3-v2 .s3v2-note {
    margin: 6px 0 0;
    font-family: var(--font-body--family);
    font-size: 12px;
    color: #6B6963;
    text-align: right;
    font-style: italic;
  }
  @media (min-width: 750px) { .he-lp-hs-s3-v2 .s3v2-note { font-size: 14px; } }

  /* Savings callout — moved here from Feature Comparison since the
     "you save $X" framing is the conclusion of the cost chart. */
  .he-lp-hs-s3-v2 .s3v2-savings {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #FAF8F4;
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: 14px;
    padding: 18px 20px;
    text-align: left;
    max-width: 720px;
    width: 100%;
    margin: 32px auto 0;
    box-sizing: border-box;
  }
  .he-lp-hs-s3-v2 .s3v2-save-label {
    font-family: var(--font-body--family);
    font-size: 16px;
    color: #6B6963;
    line-height: 1.4;
  }
  .he-lp-hs-s3-v2 .s3v2-save-label strong {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #9B9790;
    font-weight: 700;
    margin-bottom: 2px;
  }
  .he-lp-hs-s3-v2 .s3v2-save-num {
    font-family: var(--font-heading--family);
    font-size: 40px;
    font-weight: 700;
    color: var(--s3v2-savings-accent, #F23440);
    line-height: 1;
    white-space: nowrap;
  }
  @media (min-width: 750px) {
    .he-lp-hs-s3-v2 .s3v2-save-label { font-size: 18px; }
    .he-lp-hs-s3-v2 .s3v2-save-num { font-size: 52px; }
  }
/* END_SECTION:he-lp-hs-s3-v2 */

/* START_SECTION:he-lp-hs-s3 (INDEX:59) */
/* Bar chart */
  .he-lp-hs-s3 .s3-bar-chart { text-align: left; }
  .he-lp-hs-s3 .s3-bar-row { margin-bottom: 16px; }
  .he-lp-hs-s3 .s3-bar-meta { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 6px; }
  .he-lp-hs-s3 .s3-bar-name { font-family: var(--font-body--family); font-size: 13px; color: #9B9790; }
  .he-lp-hs-s3 .s3-bar-name strong { color: #0C0C0C; font-weight: 600; }
  .he-lp-hs-s3 .s3-bar-price { font-family: var(--font-accent--family); font-size: 13px; font-weight: 500; color: #9B9790; }
  .he-lp-hs-s3 .s3-bar-price.ours { color: var(--he-card-accent); font-size: 15px; }
  .he-lp-hs-s3 .s3-bar-track { height: 10px; background: #E0D9D0; border-radius: 999px; overflow: hidden; }
  .he-lp-hs-s3 .s3-bar-fill { height: 100%; border-radius: 999px; }
  .he-lp-hs-s3 .s3-bar-fill.high { background: #8a3028; }
  .he-lp-hs-s3 .s3-bar-fill.med  { background: #6a2820; }
  .he-lp-hs-s3 .s3-bar-fill.low  { background: var(--he-card-accent); }
  .he-lp-hs-s3 .s3-chart-note { font-family: var(--font-body--family); font-size: 12px; color: #555; margin-top: 4px; text-align: right; font-style: italic; }

  @media (min-width: 750px) {
    .he-lp-hs-s3 .s3-bar-name { font-size: 18px; }
    .he-lp-hs-s3 .s3-bar-price { font-size: 18px; }
    .he-lp-hs-s3 .s3-bar-price.ours { font-size: 20px; }
    .he-lp-hs-s3 .s3-bar-row { margin-bottom: 22px; }
    .he-lp-hs-s3 .s3-bar-track { height: 26px; }
    .he-lp-hs-s3 .s3-chart-note { font-size: 14px; }
  }
/* END_SECTION:he-lp-hs-s3 */

/* START_SECTION:he-lp-hs-s4-v2 (INDEX:60) */
.he-lp-hs-s4-v2 .s4v2-image { border-radius: 14px; overflow: hidden; }
  .he-lp-hs-s4-v2 .s4v2-image img,
  .he-lp-hs-s4-v2 .s4v2-image video { display: block; width: 100%; height: 100%; object-fit: cover; }

  /* Stack: vertical column. Each card's wrapper holds the connector
     line to the next card. */
  .he-lp-hs-s4-v2 .s4v2-stack {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .he-lp-hs-s4-v2 .s4v2-tl {
    position: relative;
    padding-bottom: 32px;
  }
  .he-lp-hs-s4-v2 .s4v2-tl:last-child { padding-bottom: 0; }
  /* Connector line: 2px wide, sits in the icon column (centered on the
     icon at 28+24=52px in from the left edge of the card). Runs from the
     bottom of the icon down to the next card's icon. */
  .he-lp-hs-s4-v2 .s4v2-tl:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 51px;            /* card padding 28 + half icon (40/2 = 20) on mobile -> 28+20=48; tweaked to 51 for visual center */
    top: 76px;             /* below the icon — icon center at 28+20=48 + 28 (radius+gap)= visually past icon */
    bottom: 0;
    width: 2px;
    background: var(--s4v2-line, #58468B);
    opacity: 0.45;
  }
  @media (min-width: 750px) {
    .he-lp-hs-s4-v2 .s4v2-tl:not(:last-child)::after {
      left: 60px;          /* card padding 32 + half icon (56/2 = 28) on desktop = 60 */
      top: 92px;
    }
  }

  /* Card */
  .he-lp-hs-s4-v2 .s4v2-card {
    background: var(--s4v2-card-bg, #FAF8F4);
    border: 1px solid rgba(12, 12, 12, 0.08);
    border-radius: 20px;
    padding: 22px 24px 22px 28px;
    box-shadow: 0 1px 2px rgba(12, 12, 12, 0.04), 0 8px 24px rgba(12, 12, 12, 0.04);
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 18px;
    position: relative;
    z-index: 1;
  }
  @media (min-width: 750px) {
    .he-lp-hs-s4-v2 .s4v2-card { padding: 28px 32px 28px 32px; gap: 22px; border-radius: 24px; }
  }

  /* Icon — circle on the LEFT, vertically centered within content */
  .he-lp-hs-s4-v2 .s4v2-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--s4v2-icon-bg, rgba(88, 70, 139, 0.12));
    color: var(--s4v2-icon-color, #58468B);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    line-height: 1;
    margin-top: 2px;
  }
  .he-lp-hs-s4-v2 .s4v2-icon svg { width: 20px; height: 20px; display: block; color: currentColor; }
  @media (min-width: 750px) {
    .he-lp-hs-s4-v2 .s4v2-icon { width: 56px; height: 56px; font-size: 22px; }
    .he-lp-hs-s4-v2 .s4v2-icon svg { width: 24px; height: 24px; }
  }

  /* Content. Gap is 0 — child margins control spacing so the
     "32px below each headline" rhythm is explicit, not implicit. */
  .he-lp-hs-s4-v2 .s4v2-content { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 0; align-items: flex-start; }

  /* Pill — small purple-bg badge above the headline */
  .he-lp-hs-s4-v2 .s4v2-pill {
    align-self: flex-start;
    display: inline-block;
    font-family: var(--font-accent--family);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    background: var(--s4v2-pill-color, #58468B);
    color: #FAF8F4;
    padding: 5px 11px;
    border-radius: 999px;
    line-height: 1;
    margin-bottom: 12px;
  }
  @media (min-width: 750px) { .he-lp-hs-s4-v2 .s4v2-pill { font-size: 12px; padding: 6px 13px; } }

  /* Headline — the BENEFIT (big, bold, dark). Normal 10px gap below
     before the supporting body (was 32 — too much air per user). */
  .he-lp-hs-s4-v2 .s4v2-headline {
    margin: 0 0 10px;
    font-family: var(--font-heading--family);
    font-size: 22px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.01em;
    color: #000000;
  }
  @media (min-width: 750px) { .he-lp-hs-s4-v2 .s4v2-headline { font-size: 26px; } }
  .he-lp-hs-s4-v2 .s4v2-headline em { color: var(--s4v2-pill-color, #58468B); font-style: normal; }

  /* Body — small supporting text */
  .he-lp-hs-s4-v2 .s4v2-body {
    margin: 0;
    font-family: var(--font-body--family);
    font-size: 14px;
    line-height: 1.5;
    color: #6B6963;
  }
  @media (min-width: 750px) { .he-lp-hs-s4-v2 .s4v2-body { font-size: 15px; } }
  .he-lp-hs-s4-v2 .s4v2-body strong { color: #000000; font-weight: 600; }
  .he-lp-hs-s4-v2 .s4v2-body p { margin: 0 0 5px; }
  .he-lp-hs-s4-v2 .s4v2-body p:last-child { margin-bottom: 0; }

  /* ─── Stat strip (after the timeline) ─── */
  .he-lp-hs-s4-v2 .s4v2-stat-strip {
    display: flex; flex-wrap: wrap; justify-content: center;
    gap: 1px;
    background: var(--s4v2-stat-stroke, #58468B);
    border: 1.5px solid var(--s4v2-stat-stroke, #58468B);
    border-radius: 14px;
    overflow: hidden;
    max-width: 720px;
    margin: 0 auto;
    box-sizing: border-box;
  }
  .he-lp-hs-s4-v2 .s4v2-stat-cell {
    flex: 1 1 0; min-width: 160px;
    background: #FAF8F4;
    padding: 22px 20px;
    text-align: center;
  }
  @media (min-width: 750px) { .he-lp-hs-s4-v2 .s4v2-stat-cell { padding: 28px 24px; } }
  .he-lp-hs-s4-v2 .s4v2-stat-num {
    font-family: var(--font-heading--family);
    font-size: 40px; font-weight: 700;
    color: #000000; line-height: 1;
    margin-bottom: 8px;
    letter-spacing: -0.035em;
    font-variant-numeric: tabular-nums;
  }
  @media (min-width: 750px) { .he-lp-hs-s4-v2 .s4v2-stat-num { font-size: 56px; } }
  .he-lp-hs-s4-v2 .s4v2-stat-num span {
    color: #58468B;
    line-height: 1;
    margin-left: 2px;
    letter-spacing: -0.04em;
  }
  .he-lp-hs-s4-v2 .s4v2-stat-label {
    font-family: var(--font-body--family);
    font-size: 14px; color: #6B6963; line-height: 1.4;
  }
  @media (min-width: 750px) { .he-lp-hs-s4-v2 .s4v2-stat-label { font-size: 15px; } }
/* END_SECTION:he-lp-hs-s4-v2 */

/* START_SECTION:he-lp-hs-s4 (INDEX:61) */
/* ─── Milestone cards grid ─── */
  /* Mobile: stacked vertical. Desktop: 3 equal columns. */
  .he-lp-hs-s4 .s4-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin: 0 auto;
  }

  /* ─── Single milestone card ─── */
  .he-lp-hs-s4 .s4-card {
    background: #FAF8F4;
    border: 1px solid rgba(12, 12, 12, 0.08);
    border-radius: 14px;
    padding: 24px 22px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    text-align: left;
    box-sizing: border-box;
  }

  /* ─── Day badge (mono, red, in top-left) ─── */
  .he-lp-hs-s4 .s4-day {
    align-self: flex-start;
    display: inline-block;
    font-family: var(--font-accent--family);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #F23440;
    padding: 5px 11px;
    border-radius: 999px;
    background: rgba(242, 52, 64, 0.08);
    line-height: 1;
  }

  /* ─── Card heading ─── */
  .he-lp-hs-s4 .s4-card-head {
    margin: 0;
    font-family: var(--font-heading--family);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.22;
    letter-spacing: -0.015em;
    color: #0C0C0C;
  }

  /* ─── Card body ─── */
  .he-lp-hs-s4 .s4-card-body,
  .he-lp-hs-s4 .s4-card-body p {
    margin: 0;
    font-family: var(--font-body--family);
    font-size: 15px;
    line-height: 1.55;
    color: #6B6963;
  }
  .he-lp-hs-s4 .s4-card-body strong {
    color: #0C0C0C;
    font-weight: 600;
  }

  /* ─── Stat strip (proof bar after the cards) ─── */
  .he-lp-hs-s4 .s4-stat-strip {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1px;
    background: #E8E2D9;
    border: 1px solid #E8E2D9;
    border-radius: 12px;
    overflow: hidden;
    max-width: 540px;
    margin: 32px auto 0;
    box-sizing: border-box;
  }
  .he-lp-hs-s4 .s4-stat-cell {
    flex: 1 1 0;
    min-width: 140px;
    background: #FAF8F4;
    padding: 20px 18px;
    text-align: center;
  }
  .he-lp-hs-s4 .s4-stat-num {
    font-family: var(--font-heading--family);
    font-size: 36px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.025em;
    color: #0C0C0C;
    margin-bottom: 6px;
    font-variant-numeric: tabular-nums;
  }
  .he-lp-hs-s4 .s4-stat-num span {
    color: #F23440;
  }
  .he-lp-hs-s4 .s4-stat-label {
    font-family: var(--font-body--family);
    font-size: 12px;
    line-height: 1.4;
    color: #6B6963;
    margin: 0;
  }

  /* ─── Spacing between header chrome and cards ─── */
  /* The chrome block snippet handles its own internal spacing,
     so we just space the card grid below the last header element. */
  .he-lp-hs-s4 .s4-cards {
    margin-top: 8px;
  }

  /* ─── Desktop ─── */
  @media (min-width: 750px) {
    .he-lp-hs-s4 .s4-cards {
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 20px;
      max-width: 1100px;
    }
    .he-lp-hs-s4 .s4-card {
      padding: 32px 28px;
      gap: 16px;
    }
    .he-lp-hs-s4 .s4-day {
      font-size: 12px;
      padding: 6px 13px;
      letter-spacing: 0.2em;
    }
    .he-lp-hs-s4 .s4-card-head {
      font-size: 22px;
    }
    .he-lp-hs-s4 .s4-card-body,
    .he-lp-hs-s4 .s4-card-body p {
      font-size: 16px;
    }
    .he-lp-hs-s4 .s4-stat-strip {
      margin-top: 48px;
      max-width: 600px;
    }
    .he-lp-hs-s4 .s4-stat-cell {
      padding: 24px 22px;
    }
    .he-lp-hs-s4 .s4-stat-num {
      font-size: 44px;
    }
    .he-lp-hs-s4 .s4-stat-label {
      font-size: 13px;
    }
    .he-lp-hs-s4 .s4-cards {
      margin-top: 16px;
    }
  }
/* END_SECTION:he-lp-hs-s4 */

/* START_SECTION:he-lp-hs-s5-v2 (INDEX:62) */
.he-lp-hs-s5-v2 .s5v2-image { border-radius: 14px; overflow: hidden; }
  .he-lp-hs-s5-v2 .s5v2-image img,
  .he-lp-hs-s5-v2 .s5v2-image video { display: block; width: 100%; height: 100%; object-fit: cover; }

  .he-lp-hs-s5-v2 .s5v2-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 1100px;
    margin: 0 auto;
  }
  @media (min-width: 750px) {
    .he-lp-hs-s5-v2 .s5v2-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  }

  /* Card — overflow:hidden so the top objection bar clips to the rounded corners */
  .he-lp-hs-s5-v2 .s5v2-card {
    background: #FAF8F4;
    border: 1px solid rgba(12, 12, 12, 0.08);
    border-radius: 16px;
    box-shadow: 0 1px 2px rgba(12, 12, 12, 0.04), 0 8px 24px rgba(12, 12, 12, 0.04);
    overflow: hidden;
    display: flex; flex-direction: column;
  }

  /* Top objection bar — cream surface, icon + bold question */
  .he-lp-hs-s5-v2 .s5v2-objection {
    background: #F2EDE7;
    border-bottom: 1px solid rgba(12, 12, 12, 0.06);
    padding: 14px 22px;
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .he-lp-hs-s5-v2 .s5v2-objection-icon { font-size: 18px; line-height: 1; flex-shrink: 0; }
  .he-lp-hs-s5-v2 .s5v2-objection-text {
    font-family: var(--font-heading--family);
    font-size: 15px;
    font-weight: 700;
    color: #0C0C0C;
    line-height: 1.35;
  }
  @media (min-width: 750px) {
    .he-lp-hs-s5-v2 .s5v2-objection { padding: 16px 26px; }
    .he-lp-hs-s5-v2 .s5v2-objection-text { font-size: 17px; }
  }

  /* Card body */
  .he-lp-hs-s5-v2 .s5v2-body {
    padding: 22px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    flex: 1;
  }
  @media (min-width: 750px) {
    .he-lp-hs-s5-v2 .s5v2-body { padding: 28px; gap: 22px; }
  }

  /* Pull quote — no quote-mark icon. Em phrase gets a subtle red highlight. */
  .he-lp-hs-s5-v2 .s5v2-quote,
  .he-lp-hs-s5-v2 .s5v2-quote p {
    margin: 0;
    font-family: var(--font-heading--family);
    font-size: 18px;
    font-weight: 700;
    color: #0C0C0C;
    line-height: 1.4;
  }
  @media (min-width: 750px) {
    .he-lp-hs-s5-v2 .s5v2-quote,
    .he-lp-hs-s5-v2 .s5v2-quote p { font-size: 20px; }
  }
  .he-lp-hs-s5-v2 .s5v2-quote em {
    background: rgba(242, 52, 64, 0.08);
    color: #F23440;
    border-radius: 3px;
    padding: 0 4px;
    font-style: normal;
  }

  /* Attribution row — avatar + name/meta + stars */
  .he-lp-hs-s5-v2 .s5v2-attr {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid rgba(12, 12, 12, 0.06);
  }
  .he-lp-hs-s5-v2 .s5v2-avatar {
    flex-shrink: 0;
    width: 38px; height: 38px;
    border-radius: 50%;
    background: #F2EDE7;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-heading--family);
    font-size: 15px; font-weight: 700;
    color: #0C0C0C;
  }
  .he-lp-hs-s5-v2 .s5v2-attr-text { flex: 1; min-width: 0; line-height: 1.3; }
  .he-lp-hs-s5-v2 .s5v2-attr-name {
    font-family: var(--font-body--family);
    font-size: 14px;
    font-weight: 600;
    color: #0C0C0C;
    margin: 0;
  }
  .he-lp-hs-s5-v2 .s5v2-attr-meta {
    font-family: var(--font-body--family);
    font-size: 12px;
    color: #9B9790;
    margin-top: 1px;
  }
  .he-lp-hs-s5-v2 .s5v2-stars {
    margin-left: auto;
    font-size: 13px;
    color: #F23440;
    letter-spacing: 0.06em;
    flex-shrink: 0;
  }
/* END_SECTION:he-lp-hs-s5-v2 */

/* START_SECTION:he-lp-hs-s5 (INDEX:63) */
/* S5 payload-specific styles */
  /* Card lets the objection bar clip cleanly to its rounded top corners */
  .he-lp-hs-s5 .he-card { overflow: hidden; }
  .he-lp-hs-s5 .s5-objection {
    background: #F2EDE7;
    border-bottom: 1px solid rgba(12,12,12,0.06);
    padding: 10px 16px;
    margin: calc(var(--he-card-padding-mobile) * -1) calc(var(--he-card-padding-mobile) * -1) 0;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  @media (min-width: 750px) {
    .he-lp-hs-s5 .s5-objection {
      margin-left: calc(var(--he-card-padding-desktop) * -1);
      margin-right: calc(var(--he-card-padding-desktop) * -1);
      margin-top: calc(var(--he-card-padding-desktop) * -1);
    }
  }
  .he-lp-hs-s5 .s5-objection-icon { font-size: 14px; }
  .he-lp-hs-s5 .s5-objection-text {
    font-family: var(--font-accent--family);
    font-size: 10px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #0C0C0C;
  }
  .he-lp-hs-s5 .s5-pull-quote,
  .he-lp-hs-s5 .s5-pull-quote p {
    font-family: var(--font-heading--family);
    font-size: 17px;
    font-weight: 700;
    color: #0C0C0C;
    line-height: 1.4;
    margin: 0;
  }
  /* Pull quote: leading red opening quote-mark glyph instead of a 3px
     side-stripe (impeccable absolute ban: side-stripes >1px). The mark
     is a typographic device, not a colored chrome accent. */
  .he-lp-hs-s5 .s5-pull-quote {
    position: relative;
    padding-left: 22px;
  }
  .he-lp-hs-s5 .s5-pull-quote::before {
    content: '\201C';
    position: absolute;
    top: -8px;
    left: 0;
    font-family: var(--font-heading--family);
    font-size: 36px;
    line-height: 1;
    color: var(--he-card-accent);
    font-weight: 700;
  }
  .he-lp-hs-s5 .s5-pull-quote em {
    background: rgba(242, 52, 64, 0.08);
    color: var(--he-card-accent);
    border-radius: 3px;
    padding: 0 3px;
    font-style: normal;
  }
  .he-lp-hs-s5 .s5-attr { display: flex; align-items: center; gap: 10px; }
  .he-lp-hs-s5 .s5-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #F2EDE7;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading--family);
    font-size: 13px;
    font-weight: 700;
    color: #0C0C0C;
    flex-shrink: 0;
  }
  .he-lp-hs-s5 .s5-attr-name { font-family: var(--font-body--family); font-size: 13px; font-weight: 500; color: #0C0C0C; }
  .he-lp-hs-s5 .s5-attr-meta { font-family: var(--font-body--family); font-size: 11px; color: #9B9790; margin-top: 1px; }
  .he-lp-hs-s5 .s5-stars { font-size: 11px; color: var(--he-card-accent); margin-left: auto; }

  /* Spacing between the testimonial card grid and the next block (CTA) */
  .he-lp-hs-s5 .he-card-grid {
    margin-bottom: var(--he-card-to-card-mobile);
  }

  @media (min-width: 750px) {
    .he-lp-hs-s5 .s5-objection { padding: 12px 20px; }
    .he-lp-hs-s5 .s5-pull-quote,
    .he-lp-hs-s5 .s5-pull-quote p { font-size: 20px; }
    .he-lp-hs-s5 .he-card-grid { margin-bottom: var(--he-card-to-card-desktop); }
  }
/* END_SECTION:he-lp-hs-s5 */

/* START_SECTION:he-lp-hs-se-v2 (INDEX:64) */
.he-lp-hs-se-v2 .se-v2-inner { max-width: 1100px; margin: 0 auto; }

  .he-lp-hs-se-v2 .he-block-heading,
  .he-lp-hs-se-v2 .he-block-subheading,
  .he-lp-hs-se-v2 .he-block-subtext { text-align: inherit; }
  .he-lp-hs-se-v2 .he-block-subtext p { margin-left: 0; margin-right: 0; max-width: 56ch; }
  .he-lp-hs-se-v2[style*="text-align: center"] .he-block-subtext p { margin-left: auto; margin-right: auto; }

  .he-lp-hs-se-v2 .se-v2-image { border-radius: 16px; overflow: hidden; margin-bottom: 32px; }
  .he-lp-hs-se-v2 .se-v2-image img,
  .he-lp-hs-se-v2 .se-v2-image video { display: block; width: 100%; height: auto; }

  .he-lp-hs-se-v2 .se-v2-bridge {
    display: inline-block;
    font-family: var(--font-accent--family);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    padding: 12px 26px;
    border-radius: 999px;
    line-height: 1;
    margin-top: 20px;
  }
  @media (min-width: 750px) {
    .he-lp-hs-se-v2 .se-v2-bridge { font-size: 13px; padding: 14px 30px; }
    .he-lp-hs-se-v2 .se-v2-bridge br { display: none; }
  }
/* END_SECTION:he-lp-hs-se-v2 */

/* START_SECTION:he-lp-hs-se (INDEX:65) */
/* ─── Asymmetric editorial layout ─── */
  /* Content pulls left and breathes right — deliberately not centered.
     Empty space on the right is part of the composition, not waste. */
  .he-lp-hs-se .se-inner {
    max-width: 1240px;
    margin: 0 auto;
  }

  /* ─── Headline ─── */
  .he-lp-hs-se .se-headline { text-align: left; }
  .he-lp-hs-se .se-headline :is(h1, h2, h3, p) {
    margin: 0;
    font-family: var(--font-heading--family);
    font-weight: 700;
    line-height: 1.02;       /* Tight leading at display sizes */
    letter-spacing: -.035em; /* Display tracking — tighten as size grows */
    text-wrap: balance;      /* Better line breaks for headlines */
    max-width: 16ch;         /* Force 2-3 line wrap even at huge sizes */
  }
  .he-lp-hs-se .se-headline em { font-style: italic; }

  /* ─── Subtext ─── */
  /* Constrained measure so even at 18-22px it stays readable. */
  .he-lp-hs-se .se-sub {
    text-align: left;
    max-width: 52ch;
    font-family: var(--font-body--family);
    line-height: 1.55;
  }
  .he-lp-hs-se .se-sub p {
    margin: 0;
    font-family: var(--font-body--family);
    line-height: 1.55;
  }
  .he-lp-hs-se .se-sub strong { font-weight: 500; }

  /* ─── Bridge pill (closing punchline) ─── */
  .he-lp-hs-se .se-bridge-row { text-align: left; }
  .he-lp-hs-se .se-bridge {
    display: inline-block;
    font-family: var(--font-accent--family);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .22em;
    text-transform: uppercase;
    padding: 10px 22px;
    border: 1px solid;
    border-radius: 999px;
  }

  /* ─── Desktop ─── */
  @media (min-width: 750px) {
    .he-lp-hs-se .se-headline :is(h1, h2, h3, p) { letter-spacing: -.04em; }
    .he-lp-hs-se .se-bridge { font-size: 12px; padding: 12px 26px; letter-spacing: .26em; }
  }
/* END_SECTION:he-lp-hs-se */

/* START_SECTION:he-lp-hs-study-v2 (INDEX:66) */
/* Mobile: header (eyebrow/heading) → image → content (subtext/rings).
     Desktop: two-column card, left text drives the height. */
  .he-lp-hs-study-v2 .stv2-split {
    display: flex;
    flex-direction: column;
  }

  @media (min-width: 750px) {
    .he-lp-hs-study-v2 .stv2-split {
      display: grid;
      grid-template-columns: 1fr auto;
      grid-template-rows: auto 1fr;
      gap: 0;
      max-width: 1240px;
      margin: 0 auto;
      background: #FAF8F4;
      border-radius: 20px;
      overflow: hidden;
    }
    .he-lp-hs-study-v2 .stv2-header {
      grid-column: 1;
      grid-row: 1;
      padding: 28px 36px 0;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
    }
    .he-lp-hs-study-v2 .stv2-content {
      grid-column: 1;
      grid-row: 2;
      padding: 0 36px 28px;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
    }
    .he-lp-hs-study-v2 .stv2-content .he-block-subtext p {
      font-size: 15px !important;
    }
    .he-lp-hs-study-v2 .stv2-content .stv2-rings {
      max-width: none;
      background: transparent;
      border-left: none;
      border-radius: 0;
      padding: 0;
      box-shadow: none;
      margin: 0;
    }
    .he-lp-hs-study-v2 .stv2-img-wrap {
      grid-column: 2;
      grid-row: 1 / -1;
      overflow: hidden;
    }
    .he-lp-hs-study-v2 .stv2-img-wrap .stv2-image {
      border-radius: 0;
      margin-bottom: 0 !important;
      aspect-ratio: unset !important;
    }
    .he-lp-hs-study-v2 .stv2-img-wrap .stv2-image img,
    .he-lp-hs-study-v2 .stv2-img-wrap .stv2-image video {
      display: block;
      width: auto;
      height: 100%;
      max-height: 657px;
      object-fit: contain;
    }
  }

  .he-lp-hs-study-v2 .stv2-image { border-radius: 14px; overflow: hidden; }
  .he-lp-hs-study-v2 .stv2-image img,
  .he-lp-hs-study-v2 .stv2-image video { display: block; width: 100%; height: 100%; object-fit: cover; }

  /* ─── Stats card: red stripe rendered as a real `border-left` so it
     actually curves into the rounded corner at the top and bottom.
     Earlier attempts used a flat-edge background gradient clipped by
     overflow:hidden — that just chopped the stripe at the corner with
     no curve. CSS borders honor border-radius natively, so a 4px
     border-left wraps around the corner radius cleanly. ─── */
  .he-lp-hs-study-v2 .stv2-rings {
    background: #FAF8F4;
    border-left: 4px solid var(--stv2-stripe, #F23440);
    border-radius: 16px;
    padding: 28px 28px 28px 28px;
    box-shadow: 0 1px 2px rgba(12, 12, 12, 0.04), 0 8px 24px rgba(12, 12, 12, 0.04);
    max-width: 760px;
    margin: 0 auto;
  }
  @media (min-width: 750px) {
    .he-lp-hs-study-v2 .stv2-rings { padding: 0; }
  }
  .he-lp-hs-study-v2 .stv2-row {
    display: flex; align-items: center; gap: 22px;
    padding: 18px 0;
    border-top: 1px solid rgba(12, 12, 12, 0.08);
  }
  .he-lp-hs-study-v2 .stv2-row:first-of-type { padding-top: 4px; border-top: none; }
  .he-lp-hs-study-v2 .stv2-row:last-of-type { padding-bottom: 4px; }
  @media (min-width: 750px) {
    .he-lp-hs-study-v2 .stv2-row { gap: 24px; padding: 18px 0; }
  }

  .he-lp-hs-study-v2 .stv2-ring {
    --percent: 0%;
    flex: 0 0 80px; width: 80px; height: 80px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    background:
      radial-gradient(closest-side, #FAF8F4 78%, transparent 79% 100%),
      conic-gradient(var(--stv2-ring-color, #F23440) var(--percent), #E8E2D9 0);
    transition: background 0.05s linear;
  }
  @media (min-width: 750px) {
    .he-lp-hs-study-v2 .stv2-ring { flex: 0 0 72px; width: 72px; height: 72px; }
  }
  .he-lp-hs-study-v2 .stv2-ring-num {
    font-family: var(--font-heading--family);
    font-size: 22px; font-weight: 700; line-height: 1;
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.02em;
    color: var(--stv2-ring-color, #F23440);
  }
  @media (min-width: 750px) { .he-lp-hs-study-v2 .stv2-ring-num { font-size: 22px; } }
  .he-lp-hs-study-v2 .stv2-row-label {
    flex: 1;
    font-family: var(--font-heading--family);
    font-size: 17px; font-weight: 700; line-height: 1.3;
    color: #0C0C0C;
  }
  @media (min-width: 750px) { .he-lp-hs-study-v2 .stv2-row-label { font-size: 17px; } }

  /* Disclaimer text trimmed (15→12 mobile, 16→13 desktop) per user feedback. */
  .he-lp-hs-study-v2 .stv2-disclaimer {
    margin: 14px 0 0; padding-top: 14px;
    border-top: 1px solid rgba(12, 12, 12, 0.08);
    text-align: center;
    font-family: var(--font-body--family);
    font-size: 12px; font-style: italic;
    color: #9B9790; line-height: 1.5;
  }
  @media (min-width: 750px) { .he-lp-hs-study-v2 .stv2-disclaimer { font-size: 13px; } }

  /* ─── Reference cards (study citations with colored pills + modal) ─── */
  .he-lp-hs-study-v2 .stv2-ref-grid {
    display: flex; flex-direction: column;
    gap: 16px; margin-top: 32px;
  }
  @media (min-width: 750px) {
    .he-lp-hs-study-v2 .stv2-ref-grid {
      display: grid; grid-template-columns: repeat(2, 1fr);
      gap: 20px; margin-top: 40px;
    }
    .he-lp-hs-study-v2 .stv2-ref-grid > .stv2-ref-wrap > .stv2-ref-card { height: 100%; }
  }
  .he-lp-hs-study-v2 .stv2-ref-wrap { position: relative; }

  .he-lp-hs-study-v2 .stv2-ref-card {
    background: #FAF8F4;
    border: 1px solid rgba(12, 12, 12, 0.08);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 1px 2px rgba(12, 12, 12, 0.04);
    display: flex; flex-direction: column;
    gap: 14px;
  }
  @media (min-width: 750px) {
    .he-lp-hs-study-v2 .stv2-ref-card { padding: 28px; }
  }
  .he-lp-hs-study-v2 .stv2-pill {
    align-self: flex-start;
    display: inline-block;
    font-family: var(--font-accent--family);
    font-size: 11px; font-weight: 700;
    letter-spacing: 0.16em; text-transform: uppercase;
    padding: 6px 14px; border-radius: 999px;
    line-height: 1;
  }
  .he-lp-hs-study-v2 .stv2-ref-title {
    margin: 0;
    font-family: var(--font-heading--family);
    font-size: 19px; font-weight: 700; line-height: 1.3;
    color: #0C0C0C;
  }
  @media (min-width: 750px) { .he-lp-hs-study-v2 .stv2-ref-title { font-size: 21px; } }
  .he-lp-hs-study-v2 .stv2-ref-readmore {
    align-self: flex-start; margin-top: auto;
    font-family: var(--font-accent--family);
    font-size: 12px; font-weight: 700;
    letter-spacing: 0.16em; text-transform: uppercase;
    color: #0C0C0C; cursor: pointer; user-select: none;
    border-bottom: 1px solid #0C0C0C; padding-bottom: 2px;
    line-height: 1;
  }

  /* "Show more studies" toggle (hides everything past the 2nd card) */
  .he-lp-hs-study-v2 .stv2-expand-toggle { position: absolute; opacity: 0; pointer-events: none; }
  .he-lp-hs-study-v2 .stv2-ref-grid > .stv2-ref-wrap:nth-child(n+3) { display: none; }
  .he-lp-hs-study-v2 .stv2-expand-toggle:checked ~ .stv2-ref-grid > .stv2-ref-wrap:nth-child(n+3) { display: flex; flex-direction: column; }
  @media (min-width: 750px) {
    .he-lp-hs-study-v2 .stv2-expand-toggle:checked ~ .stv2-ref-grid > .stv2-ref-wrap:nth-child(n+3) { display: block; }
  }
  .he-lp-hs-study-v2 .stv2-expand-btn {
    display: block; margin: 24px auto 0;
    max-width: 260px; text-align: center;
    font-family: var(--font-accent--family);
    font-size: 13px; font-weight: 700;
    letter-spacing: 0.16em; text-transform: uppercase;
    color: #0C0C0C; background: transparent;
    border: 1.5px solid #0C0C0C;
    padding: 14px 24px; border-radius: 999px;
    cursor: pointer; user-select: none;
  }
  .he-lp-hs-study-v2 .stv2-expand-toggle:checked ~ .stv2-expand-btn .stv2-expand-more { display: none; }
  .he-lp-hs-study-v2 .stv2-expand-toggle:not(:checked) ~ .stv2-expand-btn .stv2-expand-less { display: none; }

  /* ─── Modal popup (CSS-only, per reference card) ─── */
  .he-lp-hs-study-v2 .stv2-modal-toggle { position: absolute; opacity: 0; pointer-events: none; }
  .he-lp-hs-study-v2 .stv2-modal {
    display: none; position: fixed; inset: 0; z-index: 9999;
    align-items: center; justify-content: center; padding: 22px;
  }
  .he-lp-hs-study-v2 .stv2-modal-toggle:checked ~ .stv2-modal { display: flex; }
  .he-lp-hs-study-v2 .stv2-modal-backdrop {
    position: absolute; inset: 0;
    background: rgba(12, 12, 12, 0.55); cursor: pointer;
  }
  .he-lp-hs-study-v2 .stv2-modal-card {
    position: relative; width: 100%; max-width: 540px;
    background: #FAF8F4; border-radius: 16px;
    padding: 28px 24px; max-height: 86vh; overflow-y: auto;
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.28);
    display: flex; flex-direction: column; gap: 14px;
  }
  @media (min-width: 750px) {
    .he-lp-hs-study-v2 .stv2-modal-card { padding: 32px 30px; }
  }
  .he-lp-hs-study-v2 .stv2-modal-close {
    position: absolute; top: 14px; right: 14px;
    width: 32px; height: 32px; border-radius: 50%;
    background: rgba(12, 12, 12, 0.06); color: #0C0C0C;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; user-select: none;
    font-family: var(--font-body--family);
    font-size: 22px; line-height: 1; z-index: 1;
  }
  .he-lp-hs-study-v2 .stv2-modal-card .stv2-pill { margin-right: 40px; }
  .he-lp-hs-study-v2 .stv2-modal-title {
    margin: 0;
    font-family: var(--font-heading--family);
    font-size: 22px; font-weight: 700; line-height: 1.3;
    color: #0C0C0C;
  }
  @media (min-width: 750px) { .he-lp-hs-study-v2 .stv2-modal-title { font-size: 24px; } }
  .he-lp-hs-study-v2 .stv2-modal-subtitle {
    margin: 0;
    font-family: var(--font-body--family);
    font-size: 16px; color: #6B6963; line-height: 1.5;
  }
  .he-lp-hs-study-v2 .stv2-modal-meta {
    margin: 0;
    font-family: var(--font-body--family);
    font-size: 14px; color: #9B9790; font-style: italic;
  }
  .he-lp-hs-study-v2 .stv2-modal-description {
    font-family: var(--font-body--family);
    font-size: 15px; color: #6B6963; line-height: 1.6;
  }
  .he-lp-hs-study-v2 .stv2-modal-description p { margin: 0 0 8px; }
  .he-lp-hs-study-v2 .stv2-modal-description p:last-child { margin-bottom: 0; }
  .he-lp-hs-study-v2 .stv2-modal-link {
    align-self: flex-start; margin-top: 4px;
    font-family: var(--font-accent--family);
    font-size: 12px; font-weight: 700;
    letter-spacing: 0.16em; text-transform: uppercase;
    color: #0C0C0C; text-decoration: none;
    border-bottom: 1px solid #0C0C0C;
    padding-bottom: 2px; line-height: 1;
  }

  /* ─── Studies grid (single-block pattern ported from he-lp-feature) ───
     One block holds up to 4 studies. Studies 3-4 hide behind a "Show
     more studies" button. Click any study card to open a modal popup
     with the full citation. JS-driven (data-* hooks), unlike the
     CSS-only checkbox toggle used by the legacy `reference` blocks. */
  .he-lp-hs-study-v2 .stv2-sg-wrap { max-width: 760px; margin: 32px auto 0; }
  .he-lp-hs-study-v2 .stv2-sg-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
  }
  @media (min-width: 750px) {
    .he-lp-hs-study-v2 .stv2-sg-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  }

  .he-lp-hs-study-v2 .stv2-sg-card {
    display: flex; flex-direction: column;
    gap: 14px;
    padding: 22px 22px;
    background: #FAF8F4;
    border: 1px solid rgba(12, 12, 12, 0.08);
    border-radius: 14px;
    box-shadow: 0 1px 2px rgba(12, 12, 12, 0.04), 0 8px 24px rgba(12, 12, 12, 0.04);
    cursor: pointer;
    text-align: left;
    font: inherit; color: inherit;
    -webkit-appearance: none; appearance: none;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
  }
  @media (hover: hover) {
    .he-lp-hs-study-v2 .stv2-sg-card:hover {
      box-shadow: 0 1px 2px rgba(12, 12, 12, 0.06), 0 16px 32px rgba(12, 12, 12, 0.08);
      transform: translateY(-2px);
    }
  }
  .he-lp-hs-study-v2 .stv2-sg-badge {
    display: inline-block;
    align-self: flex-start;
    padding: 6px 14px;
    font-family: var(--font-accent--family);
    font-size: 11px; font-weight: 700;
    letter-spacing: 0.16em; text-transform: uppercase;
    color: #FAF8F4;
    background: var(--stv2-sg-badge-bg, #F23440);
    border-radius: 999px;
    line-height: 1;
  }
  .he-lp-hs-study-v2 .stv2-sg-finding {
    margin: 0;
    font-family: var(--font-heading--family);
    font-size: 18px; font-weight: 700; line-height: 1.3;
    color: #0C0C0C;
  }
  @media (min-width: 750px) { .he-lp-hs-study-v2 .stv2-sg-finding { font-size: 20px; } }
  .he-lp-hs-study-v2 .stv2-sg-readmore {
    align-self: flex-start; margin-top: auto;
    font-family: var(--font-accent--family);
    font-size: 12px; font-weight: 700;
    letter-spacing: 0.16em; text-transform: uppercase;
    color: #0C0C0C;
    border-bottom: 1px solid #0C0C0C;
    padding-bottom: 2px; line-height: 1;
  }

  /* Studies 3-4 hidden until grid gets `is-expanded` class via JS */
  .he-lp-hs-study-v2 .stv2-sg-card--extra { display: none; }
  .he-lp-hs-study-v2 .stv2-sg-grid.is-expanded .stv2-sg-card--extra { display: flex; }

  /* Show-more button styled to match the study cards: same cream
     background, same hairline stroke, same corner radius, same shadow.
     Was a transparent pill before — looked like a different element type. */
  .he-lp-hs-study-v2 .stv2-sg-show-more {
    display: block;
    width: 100%;
    margin-top: 14px;
    padding: 22px;
    background: #FAF8F4;
    border: 1px solid rgba(12, 12, 12, 0.08);
    border-radius: 14px;
    box-shadow: 0 1px 2px rgba(12, 12, 12, 0.04), 0 8px 24px rgba(12, 12, 12, 0.04);
    font-family: var(--font-accent--family);
    font-size: 13px; font-weight: 700;
    letter-spacing: 0.16em; text-transform: uppercase;
    color: #0C0C0C;
    cursor: pointer;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
    -webkit-appearance: none; appearance: none;
  }
  @media (hover: hover) {
    .he-lp-hs-study-v2 .stv2-sg-show-more:hover {
      box-shadow: 0 1px 2px rgba(12, 12, 12, 0.06), 0 16px 32px rgba(12, 12, 12, 0.08);
      transform: translateY(-2px);
    }
  }
  .he-lp-hs-study-v2 .stv2-sg-show-more.is-hidden { display: none; }

  /* Modal popup (JS-driven) */
  .he-lp-hs-study-v2 .stv2-sg-modal { display: none; }
  .he-lp-hs-study-v2 .stv2-sg-modal[aria-hidden="false"] {
    display: flex;
    position: fixed; inset: 0;
    z-index: 9999;
    align-items: center; justify-content: center;
    padding: 22px;
  }
  .he-lp-hs-study-v2 .stv2-sg-modal-backdrop {
    position: absolute; inset: 0;
    background: rgba(12, 12, 12, 0.55);
    cursor: pointer;
  }
  .he-lp-hs-study-v2 .stv2-sg-modal-card {
    position: relative; width: 100%; max-width: 540px;
    background: #FAF8F4; border-radius: 16px;
    padding: 28px 24px;
    max-height: 86vh; overflow-y: auto;
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.28);
    display: flex; flex-direction: column;
    gap: 14px;
  }
  @media (min-width: 750px) {
    .he-lp-hs-study-v2 .stv2-sg-modal-card { padding: 32px 30px; }
  }
  .he-lp-hs-study-v2 .stv2-sg-modal-close {
    position: absolute; top: 14px; right: 14px;
    width: 32px; height: 32px; border-radius: 50%;
    background: rgba(12, 12, 12, 0.06); color: #0C0C0C;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; user-select: none;
    border: none;
    font-size: 22px; line-height: 1;
    z-index: 1;
  }
  .he-lp-hs-study-v2 .stv2-sg-modal-card .stv2-sg-badge { margin-right: 40px; }
  .he-lp-hs-study-v2 .stv2-sg-modal-finding {
    margin: 0;
    font-family: var(--font-heading--family);
    font-size: 22px; font-weight: 700; line-height: 1.3;
    color: #0C0C0C;
  }
  @media (min-width: 750px) { .he-lp-hs-study-v2 .stv2-sg-modal-finding { font-size: 24px; } }
  .he-lp-hs-study-v2 .stv2-sg-modal-title {
    margin: 0;
    font-family: var(--font-body--family);
    font-size: 16px; color: #6B6963; line-height: 1.5;
  }
  .he-lp-hs-study-v2 .stv2-sg-modal-source {
    margin: 0;
    font-family: var(--font-body--family);
    font-size: 14px; color: #9B9790; font-style: italic;
  }
  .he-lp-hs-study-v2 .stv2-sg-modal-link {
    align-self: flex-start; margin-top: 4px;
    font-family: var(--font-accent--family);
    font-size: 12px; font-weight: 700;
    letter-spacing: 0.16em; text-transform: uppercase;
    color: #0C0C0C; text-decoration: none;
    border-bottom: 1px solid #0C0C0C;
    padding-bottom: 2px; line-height: 1;
  }
/* END_SECTION:he-lp-hs-study-v2 */

/* START_SECTION:he-lp-hs-study (INDEX:67) */
/* Section-level image (between heading and subtext) */
  .he-lp-hs-study .st-block-image { border-radius: 14px; overflow: hidden; }
  .he-lp-hs-study .st-block-image img,
  .he-lp-hs-study .st-block-image video {
    display: block; width: 100%; height: 100%; object-fit: cover;
  }

  /* ─── Stats card (one card, multiple rows + disclaimer) ─── */
  .he-lp-hs-study .st-stats {
    padding: 0;
    gap: 0;
    border-left: 3px solid var(--he-card-accent);
  }
  .he-lp-hs-study .st-stats-row {
    padding: 22px 22px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-top: 1px solid rgba(12, 12, 12, 0.08);
  }
  .he-lp-hs-study .st-stats-row:first-of-type { border-top: none; }
  .he-lp-hs-study .st-stat-num {
    font-family: var(--font-heading--family);
    font-weight: 700;
    line-height: 0.9;
    letter-spacing: -0.03em;
    color: var(--he-card-accent);
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin: 0;
  }
  .he-lp-hs-study .st-stat-num .st-unit {
    font-size: 0.42em;
    color: var(--he-card-accent);
    opacity: 0.85;
    font-weight: 700;
    letter-spacing: 0.02em;
    align-self: flex-start;
    margin-top: 0.45em;
  }
  .he-lp-hs-study .st-stat-heading {
    margin: 0;
    font-family: var(--font-heading--family);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.25;
    color: #0C0C0C;
  }
  .he-lp-hs-study .st-stats-disclaimer {
    padding: 18px 22px 22px;
    border-top: 1px solid rgba(12, 12, 12, 0.08);
    text-align: center;
    font-family: var(--font-body--family);
    font-size: 13px;
    color: #6B6963;
    line-height: 1.55;
    font-style: italic;
    margin: 0;
  }
  @media (min-width: 750px) {
    .he-lp-hs-study .st-stats-row { padding: 28px 28px; }
    .he-lp-hs-study .st-stat-heading { font-size: 22px; }
    .he-lp-hs-study .st-stats-disclaimer { padding: 22px 28px 28px; font-size: 14px; }

    /* Chrome (eyebrow / heading / subheading / subtext) stays
       centered in normal block flow above. Image + stats share a
       2-col row via .st-payload wrapper. References sit full-width
       below.

       Image stays in its slider-controlled aspect-ratio but is capped
       at 50% column width on desktop so it doesn't dominate. */
    .he-lp-hs-study .st-payload {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
      column-gap: 40px;
      align-items: stretch;
      margin-bottom: 16px;
    }
    .he-lp-hs-study .st-payload > .st-block-image {
      margin-bottom: 0;
      align-self: stretch;
      max-height: 420px;
      overflow: hidden;
    }
    .he-lp-hs-study .st-payload > .st-block-image img,
    .he-lp-hs-study .st-payload > .st-block-image video {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .he-lp-hs-study .st-payload > .st-stats {
      margin: 0;
      align-self: stretch;
    }
  }

  /* ─── Reference cards grid ─── */
  .he-lp-hs-study .ref-grid {
    display: flex;
    flex-direction: column;
    gap: var(--he-card-to-card-mobile);
    margin-top: var(--he-card-to-card-mobile);
  }
  @media (min-width: 750px) {
    .he-lp-hs-study .ref-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: var(--he-card-to-card-desktop);
      margin-top: var(--he-card-to-card-desktop);
    }
    .he-lp-hs-study .ref-grid > .ref-card-wrap > .he-card { height: 100%; }
  }
  .he-lp-hs-study .ref-card-wrap { position: relative; }

  .he-lp-hs-study .ref-pill {
    align-self: flex-start;
    display: inline-block;
    font-family: var(--font-accent--family);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 999px;
    color: #FAF8F4;
    background: var(--he-card-accent);
  }
  .he-lp-hs-study .ref-title {
    margin: 0;
    font-family: var(--font-heading--family);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
    color: #0C0C0C;
  }
  @media (min-width: 750px) {
    .he-lp-hs-study .ref-title { font-size: 20px; }
  }
  .he-lp-hs-study .ref-readmore {
    align-self: flex-start;
    margin-top: auto;
    font-family: var(--font-accent--family);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: #0C0C0C;
    cursor: pointer;
    user-select: none;
    border-bottom: 1px solid #0C0C0C;
    padding-bottom: 2px;
    line-height: 1;
  }

  /* ─── "Show more studies" toggle (section-level) ─── */
  .he-lp-hs-study .ref-expand-toggle { position: absolute; opacity: 0; pointer-events: none; }
  .he-lp-hs-study .ref-grid > .ref-card-wrap:nth-child(n+3) { display: none; }
  .he-lp-hs-study .ref-expand-toggle:checked ~ .ref-grid > .ref-card-wrap:nth-child(n+3) { display: flex; flex-direction: column; }
  @media (min-width: 750px) {
    .he-lp-hs-study .ref-expand-toggle:checked ~ .ref-grid > .ref-card-wrap:nth-child(n+3) { display: block; }
  }
  .he-lp-hs-study .ref-expand-btn {
    display: block;
    margin: 24px auto 0;
    max-width: 240px;
    text-align: center;
    font-family: var(--font-accent--family);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: #0C0C0C;
    background: transparent;
    border: 1.5px solid #0C0C0C;
    padding: 12px 22px;
    border-radius: 999px;
    cursor: pointer;
    user-select: none;
  }
  .he-lp-hs-study .ref-expand-toggle:checked ~ .ref-expand-btn .ref-expand-more { display: none; }
  .he-lp-hs-study .ref-expand-toggle:not(:checked) ~ .ref-expand-btn .ref-expand-less { display: none; }

  /* ─── Modal popup (per reference card, CSS-only) ─── */
  .he-lp-hs-study .ref-modal-toggle { position: absolute; opacity: 0; pointer-events: none; }
  .he-lp-hs-study .ref-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 22px;
  }
  .he-lp-hs-study .ref-modal-toggle:checked ~ .ref-modal { display: flex; }
  .he-lp-hs-study .ref-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(12, 12, 12, 0.55);
    cursor: pointer;
  }
  .he-lp-hs-study .ref-modal-card {
    position: relative;
    width: 100%;
    max-width: 520px;
    background: #FAF8F4;
    border-radius: 14px;
    padding: 26px 22px 22px;
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.28);
    display: flex;
    flex-direction: column;
    gap: 14px;
    max-height: 86vh;
    overflow-y: auto;
  }
  .he-lp-hs-study .ref-modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(12, 12, 12, 0.06);
    color: #0C0C0C;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    user-select: none;
    font-family: var(--font-body--family);
    font-size: 22px;
    line-height: 1;
    z-index: 1;
  }
  .he-lp-hs-study .ref-modal-card .ref-pill { margin-right: 40px; }
  .he-lp-hs-study .ref-modal-title {
    margin: 0;
    font-family: var(--font-heading--family);
    font-size: 22px;
    font-weight: 700;
    line-height: 1.3;
    color: #0C0C0C;
  }
  .he-lp-hs-study .ref-modal-subtitle {
    margin: 0;
    font-family: var(--font-body--family);
    font-size: 15px;
    color: #6B6963;
    line-height: 1.5;
  }
  .he-lp-hs-study .ref-modal-meta {
    margin: 0;
    font-family: var(--font-body--family);
    font-size: 14px;
    color: #9B9790;
    font-style: italic;
  }
  .he-lp-hs-study .ref-modal-description {
    font-family: var(--font-body--family);
    font-size: 14px;
    color: #6B6963;
    line-height: 1.6;
  }
  .he-lp-hs-study .ref-modal-description p { margin: 0 0 8px; }
  .he-lp-hs-study .ref-modal-description p:last-child { margin-bottom: 0; }
  .he-lp-hs-study .ref-modal-link {
    align-self: flex-start;
    margin-top: 4px;
    font-family: var(--font-accent--family);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: #0C0C0C;
    text-decoration: none;
    border-bottom: 1px solid #0C0C0C;
    padding-bottom: 2px;
    line-height: 1;
  }
  @media (min-width: 750px) {
    .he-lp-hs-study .ref-modal-card { padding: 30px 28px 26px; }
    .he-lp-hs-study .ref-modal-title { font-size: 24px; }
  }
/* END_SECTION:he-lp-hs-study */

/* START_SECTION:he-lp-hs-tech-v2 (INDEX:68) */
.he-lp-hs-tech-v2 * { box-sizing: border-box; }
  .he-lp-hs-tech-v2 .itech-inner { max-width: var(--he-max-inner, 1100px); margin: 0 auto; }
  .he-lp-hs-tech-v2 .itech-chrome { margin-bottom: 32px; }

  /* Mobile: media then flat feature list, natural document order */
  .he-lp-hs-tech-v2 .itech-body {
    display: flex;
    flex-direction: column;
    gap: 36px;
  }
  .he-lp-hs-tech-v2 .itech-media { text-align: center; }
  .he-lp-hs-tech-v2 .itech-media-frame { position: relative; display: inline-block; }
  .he-lp-hs-tech-v2 .itech-media-frame img {
    display: block;
    margin: 0 auto;
    width: auto;
    height: auto;
    max-width: var(--itech-img-w-mobile, 160px);
  }
  .he-lp-hs-tech-v2 .itech-media-badge {
    display: inline-block;
    margin-top: 20px;
    background: var(--itech-badge-bg, #F6F3FD);
    color: var(--itech-badge-text-color, #58468B);
    font-family: var(--font-body--family);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.02em;
    white-space: nowrap;
    padding: 7px 14px;
    border-radius: 999px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.10);
  }

  /* Feature: mobile = dash beside a stacked title/spec/desc block */
  .he-lp-hs-tech-v2 .itech-feature {
    display: grid;
    grid-template-columns: 32px 1fr;
    grid-template-areas: "line title" "line spec" "line desc";
    column-gap: 16px;
    row-gap: 6px;
    align-items: start;
  }
  .he-lp-hs-tech-v2 .itech-feature-line {
    grid-area: line;
    width: 100%;
    height: 1px;
    margin-top: 10px;
    background: var(--itech-accent, #58468B);
  }
  .he-lp-hs-tech-v2 .itech-feature-title {
    grid-area: title;
    font-family: var(--font-heading--family);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--itech-title-color, #000000);
    margin: 0;
  }
  /* Spec pill — same visual language as the device image's badge pill,
     so a spec detail (e.g. "Adjustable heat · 45–55°C") reads as a
     distinct tag rather than getting crammed into the bold title. */
  .he-lp-hs-tech-v2 .itech-feature-spec {
    grid-area: spec;
    display: inline-block;
    justify-self: start;
    background: var(--itech-spec-bg, #F6F3FD);
    color: var(--itech-spec-text-color, #58468B);
    font-family: var(--font-body--family);
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 0.01em;
    padding: 4px 10px;
    border-radius: 999px;
    margin: 2px 0 0;
  }
  .he-lp-hs-tech-v2 .itech-feature-desc {
    grid-area: desc;
    font-family: var(--font-body--family);
    font-size: 14.5px;
    line-height: 1.55;
    color: var(--itech-desc-color, #6B6963);
    margin: 0;
  }

  @media (min-width: 750px) {
    .he-lp-hs-tech-v2 .itech-body {
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      grid-template-rows: auto auto;
      column-gap: 56px;
      row-gap: 40px;
      align-content: space-between;
      align-items: start;
    }
    .he-lp-hs-tech-v2 .itech-media {
      grid-column: 2;
      grid-row: 1 / -1;
      align-self: center;
    }
    .he-lp-hs-tech-v2 .itech-media-frame img { max-width: var(--itech-img-w-desktop, 220px); }

    /* Desktop: dash becomes a horizontal underline below the title,
       stretched to the full column width so it visually points toward
       the product image on both sides. */
    .he-lp-hs-tech-v2 .itech-feature {
      grid-template-columns: 1fr;
      grid-template-areas: "title" "spec" "line" "desc";
      column-gap: 0;
      row-gap: 10px;
    }
    .he-lp-hs-tech-v2 .itech-feature-line { width: 100%; max-width: none; margin-top: 0; }
    .he-lp-hs-tech-v2 .itech-feature-title { font-size: 16px; }
    .he-lp-hs-tech-v2 .itech-feature-spec { margin-top: 0; }
    .he-lp-hs-tech-v2 .itech-feature-desc { font-size: 15px; max-width: 320px; }

    .he-lp-hs-tech-v2 .itech-feature[data-column="left"] { grid-column: 1; }
    .he-lp-hs-tech-v2 .itech-feature[data-column="right"] { grid-column: 3; }
    .he-lp-hs-tech-v2 .itech-feature[data-row="1"] { grid-row: 1; }
    .he-lp-hs-tech-v2 .itech-feature[data-row="2"] { grid-row: 2; }
    /* A column with only one feature centers vertically against the
       image instead of pinning to the top row. */
    .he-lp-hs-tech-v2 .itech-feature[data-solo="true"] {
      grid-row: 1 / -1;
      align-self: center;
    }

    .he-lp-hs-tech-v2 .itech-feature[data-column="right"] { text-align: right; }
    .he-lp-hs-tech-v2 .itech-feature[data-column="right"] .itech-feature-line { margin-left: auto; margin-right: 0; }
    .he-lp-hs-tech-v2 .itech-feature[data-column="right"] .itech-feature-spec { justify-self: end; }
    .he-lp-hs-tech-v2 .itech-feature[data-column="right"] .itech-feature-desc { margin-left: auto; }
  }

  /* Benefits grid — icon + label card at the bottom of the section */
  .he-lp-hs-tech-v2 .itech-benefits {
    max-width: 720px;
    margin: var(--itech-benefits-margin-top, 48px) auto 0;
    background: var(--itech-benefits-bg, #FAF8F4);
    border-radius: 14px;
    padding: 28px 20px;
  }
  .he-lp-hs-tech-v2 .itech-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px 10px;
  }
  .he-lp-hs-tech-v2 .itech-benefit {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
  }
  .he-lp-hs-tech-v2 .itech-benefit-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--itech-benefit-icon-color, #58468B);
  }
  .he-lp-hs-tech-v2 .itech-benefit-icon svg { width: 100%; height: 100%; display: block; }
  .he-lp-hs-tech-v2 .itech-benefit-label {
    font-family: var(--font-body--family);
    font-weight: 500;
    font-size: 14px;
    line-height: 1.35;
    color: #000000;
    margin: 0;
  }
  @media (min-width: 750px) {
    .he-lp-hs-tech-v2 .itech-benefits {
      max-width: 100%;
      margin-top: 72px;
      padding: 36px 48px;
    }
    .he-lp-hs-tech-v2 .itech-benefits-grid { grid-template-columns: repeat(6, 1fr); gap: 32px 24px; }
  }
/* END_SECTION:he-lp-hs-tech-v2 */

/* START_SECTION:he-lp-hs-timeline-v2 (INDEX:69) */
.he-lp-hs-timeline-v2 * { box-sizing: border-box; }
  .he-lp-hs-timeline-v2 .tl-inner { max-width: 620px; margin: 0 auto; }

  .he-lp-hs-timeline-v2 .tl-chrome { text-align: center; margin-bottom: 32px; }
  .he-lp-hs-timeline-v2 .he-block-eyebrow,
  .he-lp-hs-timeline-v2 .he-block-heading,
  .he-lp-hs-timeline-v2 .he-block-subheading,
  .he-lp-hs-timeline-v2 .he-block-subtext { text-align: center; }

  .he-lp-hs-timeline-v2 .tl-list {
    display: flex;
    flex-direction: column;
  }

  .he-lp-hs-timeline-v2 .tl-box {
    position: relative;
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--tl-box-bg, #FFFFFF);
    border: 1.5px dashed var(--tl-accent, #58468B);
    padding: 20px 16px;
  }
  /* Image position is set per block via .tl-box--right (image swaps to the
     right, tag swaps to the right with it) */
  .he-lp-hs-timeline-v2 .tl-box--right { flex-direction: row-reverse; }

  .he-lp-hs-timeline-v2 .tl-tag {
    position: absolute;
    top: -14px;
    left: -10px;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: var(--tl-accent, #58468B);
    color: var(--tl-tag-text, #FFFFFF);
    font-family: var(--font-body--family);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.2;
    white-space: nowrap;
    padding: 7px 11px;
    border-radius: 4px;
    transform: rotate(-6deg);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.12);
  }
  .he-lp-hs-timeline-v2 .tl-tag svg { width: 11px; height: 11px; flex-shrink: 0; }
  .he-lp-hs-timeline-v2 .tl-box--right .tl-tag {
    left: auto;
    right: -10px;
    transform: rotate(6deg);
  }

  .he-lp-hs-timeline-v2 .tl-media {
    flex: none;
    width: 100px;
    aspect-ratio: 1;
    overflow: hidden;
    background: #EFEBE4;
  }
  .he-lp-hs-timeline-v2 .tl-media img { width: 100%; height: 100%; object-fit: cover; display: block; }

  .he-lp-hs-timeline-v2 .tl-info { flex: 1; min-width: 0; }
  .he-lp-hs-timeline-v2 .tl-title {
    font-family: var(--font-heading--family);
    font-size: 16px;
    font-weight: 700;
    color: var(--tl-title-color, #000000);
    margin: 0 0 6px;
    line-height: 1.25;
  }
  .he-lp-hs-timeline-v2 .tl-desc {
    font-family: var(--font-body--family);
    font-size: 13.5px;
    line-height: 1.55;
    color: var(--tl-desc-color, #6B6963);
    margin: 0;
  }

  .he-lp-hs-timeline-v2 .tl-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: center;
    width: 40px;
    height: 40px;
    margin: 6px 0;
    color: var(--tl-accent, #58468B);
  }
  .he-lp-hs-timeline-v2 .tl-arrow svg { width: 22px; height: 22px; display: block; }

  @media (min-width: 750px) {
    .he-lp-hs-timeline-v2 .tl-chrome { margin-bottom: 40px; }
    .he-lp-hs-timeline-v2 .tl-box { gap: 20px; padding: 26px 22px; }
    .he-lp-hs-timeline-v2 .tl-media { width: 140px; }
    .he-lp-hs-timeline-v2 .tl-title { font-size: 18px; margin-bottom: 8px; }
    .he-lp-hs-timeline-v2 .tl-desc { font-size: 15px; }
    .he-lp-hs-timeline-v2 .tl-tag { font-size: 14px; padding: 8px 13px; top: -16px; }
    .he-lp-hs-timeline-v2 .tl-arrow { width: 48px; height: 48px; margin: 8px 0; }
    .he-lp-hs-timeline-v2 .tl-arrow svg { width: 26px; height: 26px; }
  }
/* END_SECTION:he-lp-hs-timeline-v2 */

/* START_SECTION:he-lp-hs-truth-v2 (INDEX:70) */
.he-lp-hs-truth-v2 * { box-sizing: border-box; }
  .he-lp-hs-truth-v2 .trv2-inner { max-width: var(--he-max-inner, 1100px); margin: 0 auto; }

  .he-lp-hs-truth-v2 .trv2-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 36px;
  }
  @media (min-width: 750px) {
    .he-lp-hs-truth-v2 .trv2-grid {
      grid-template-columns: 1fr 1fr;
      gap: 56px;
      align-items: center;
    }
    .he-lp-hs-truth-v2 .trv2-grid--media-right .trv2-media { order: 2; }
    .he-lp-hs-truth-v2 .trv2-grid--media-right .trv2-content { order: 1; }
  }

  /* ─── Media + hotspots ─── */
  .he-lp-hs-truth-v2 .trv2-media-frame {
    position: relative;
    aspect-ratio: 1 / 1.02;
    max-width: 420px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    background: #EFEBE4;
  }
  .he-lp-hs-truth-v2 .trv2-media-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .he-lp-hs-truth-v2 .trv2-lines { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 1; }
  .he-lp-hs-truth-v2 .trv2-lines line { stroke: var(--trv2-accent, #58468B); stroke-width: 0.4; }
  .he-lp-hs-truth-v2 .trv2-dot {
    position: absolute;
    z-index: 2;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--trv2-accent, #58468B);
    transform: translate(-50%, -50%);
  }
  .he-lp-hs-truth-v2 .trv2-pill {
    position: absolute;
    z-index: 2;
    transform: translate(-50%, -50%);
    background: var(--trv2-pill-bg, #FFFFFF);
    color: var(--trv2-pill-text, #58468B);
    border: 1.5px solid var(--trv2-accent, #58468B);
    border-radius: 999px;
    padding: 6px 14px;
    font-family: var(--font-body--family);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.10);
  }
  @media (min-width: 750px) {
    .he-lp-hs-truth-v2 .trv2-pill { font-size: 12px; padding: 7px 16px; }
  }

  /* ─── Content: chrome + stats card ─── */
  .he-lp-hs-truth-v2 .trv2-chrome { margin-bottom: 24px; }

  .he-lp-hs-truth-v2 .trv2-card {
    background: var(--trv2-card-bg, #FFFFFF);
    border: 1.5px solid var(--trv2-card-border, #58468B);
    border-radius: var(--he-card-radius, 14px);
    overflow: hidden;
    max-width: 560px;
  }
  .he-lp-hs-truth-v2 .trv2-card-title {
    background: var(--trv2-title-bg, #58468B);
    color: var(--trv2-title-text, #FFFFFF);
    text-align: center;
    padding: 12px 16px;
    font-family: var(--font-body--family);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
  }
  .he-lp-hs-truth-v2 .trv2-card-body {
    padding: 22px;
    display: flex;
    flex-direction: column;
    gap: 22px;
  }
  .he-lp-hs-truth-v2 .trv2-stat {
    display: flex;
    align-items: center;
    gap: 16px;
  }
  .he-lp-hs-truth-v2 .trv2-stat-circle {
    flex-shrink: 0;
    width: 66px;
    height: 66px;
    border-radius: 50%;
    background: var(--trv2-circle-bg, #F6F3FD);
    color: var(--trv2-circle-text, #58468B);
    border: 1px solid var(--trv2-card-border, #58468B);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1;
    padding: 0 6px;
    font-family: var(--font-heading--family);
    font-size: var(--trv2-circle-font-size, 19px);
    font-weight: 700;
  }
  .he-lp-hs-truth-v2 .trv2-stat-heading {
    font-family: var(--font-heading--family);
    font-size: 14.5px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--trv2-heading-color, #000000);
    margin: 0 0 4px;
    line-height: 1.3;
  }
  .he-lp-hs-truth-v2 .trv2-stat-desc {
    font-family: var(--font-body--family);
    font-size: 13.5px;
    line-height: 1.5;
    color: var(--trv2-desc-color, #6B6963);
    margin: 0;
  }
  @media (min-width: 750px) {
    .he-lp-hs-truth-v2 .trv2-stat-circle { width: 72px; height: 72px; }
    .he-lp-hs-truth-v2 .trv2-stat-heading { font-size: 15.5px; }
    .he-lp-hs-truth-v2 .trv2-stat-desc { font-size: 14.5px; }
  }
/* END_SECTION:he-lp-hs-truth-v2 */

/* START_SECTION:he-lp-hs-videos-v2 (INDEX:71) */
.he-lp-hs-videos-v2 * { box-sizing: border-box; }
  .he-lp-hs-videos-v2 .vidc-inner { max-width: var(--he-max-inner, 1100px); margin: 0 auto; }

  .he-lp-hs-videos-v2 .vidc-heading-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }
  .he-lp-hs-videos-v2 .vidc-heading-row .he-block-heading { text-align: left; margin: 0 !important; }

  .he-lp-hs-videos-v2 .vidc-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
  }
  .he-lp-hs-videos-v2 .vidc-navbtn {
    background: none;
    border: none;
    padding: 0 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--vidc-nav-color, #1D211E);
  }
  .he-lp-hs-videos-v2 .vidc-navbtn svg { width: 24px; height: 24px; display: block; }

  /* ─── Carousel track ─── */
  .he-lp-hs-videos-v2 .vidc-scroll-wrap { position: relative; margin-top: 18px; }
  .he-lp-hs-videos-v2 .vidc-grid {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    overflow-y: visible;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 8px 4px;
  }
  .he-lp-hs-videos-v2 .vidc-grid::-webkit-scrollbar { display: none; }

  /* Exact 3-up at every breakpoint — same formula reused mobile/desktop
     in the source, so a narrow viewport naturally clips the 3rd card. */
  .he-lp-hs-videos-v2 .vidc-card {
    flex: 0 0 calc((100% - 32px) / 3);
    scroll-snap-align: start;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.25);
    cursor: pointer;
    background: #FFFFFF;
  }

  .he-lp-hs-videos-v2 .vidc-media {
    position: relative;
    aspect-ratio: 9 / 16;
    overflow: hidden;
    background-image: linear-gradient(to top, #000000, #252525, #444444, #676767, #8b8b8b, #9e9e9e, #b1b1b1, #c5c5c5, #cbcbcb, #d0d0d0, #d6d6d6, #dcdcdc);
  }
  .he-lp-hs-videos-v2 .vidc-media.vidc-loading { animation: vidc-pulse 0.5s infinite alternate; }
  @keyframes vidc-pulse { from { opacity: 1; } to { opacity: 0.55; } }
  .he-lp-hs-videos-v2 .vidc-media img,
  .he-lp-hs-videos-v2 .vidc-media video {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
  }

  .he-lp-hs-videos-v2 .vidc-play {
    position: absolute;
    bottom: 10px; left: 10px;
    width: 34px; height: 34px;
    border-radius: 50%;
    border: 1px solid var(--vidc-icon-border, #FFFFFF);
    background: var(--vidc-icon-bg, rgba(0, 0, 0, 0.3));
    display: flex; align-items: center; justify-content: center;
    pointer-events: none;
    z-index: 2;
  }
  .he-lp-hs-videos-v2 .vidc-play svg { width: 12px; height: 12px; color: var(--vidc-icon-color, #FFFFFF); }

  /* Edge "tab" hint buttons — overlaid on the track itself, not per-card */
  .he-lp-hs-videos-v2 .vidc-tab {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 30px; height: 48px;
    display: flex; align-items: center; justify-content: center;
    background: var(--vidc-tab-bg, rgba(255, 255, 255, 0.7));
    border: none;
    cursor: pointer;
    z-index: 3;
    color: var(--vidc-nav-color, #1D211E);
  }
  .he-lp-hs-videos-v2 .vidc-tab svg { width: 16px; height: 16px; display: block; }
  .he-lp-hs-videos-v2 .vidc-tab--prev { left: 0; border-radius: 0 5px 5px 0; }
  .he-lp-hs-videos-v2 .vidc-tab--next { right: 0; border-radius: 5px 0 0 5px; }

  @media (min-width: 750px) {
    .he-lp-hs-videos-v2 .vidc-scroll-wrap { margin-top: 20px; }
  }
/* END_SECTION:he-lp-hs-videos-v2 */

/* START_SECTION:he-lp-hs-vs-v2 (INDEX:72) */
.he-lp-hs-vs-v2 * { box-sizing: border-box; }
  .he-lp-hs-vs-v2 .vsv2-inner { max-width: 920px; margin: 0 auto; }
  .he-lp-hs-vs-v2 .vsv2-container { padding-top: 56px; padding-bottom: 24px; }

  /* CSS Grid — 3 columns, label / ours / comp. Each row is its own grid. */
  .he-lp-hs-vs-v2 .vsv2-row {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.2fr) minmax(0, 0.9fr);
    align-items: stretch;
  }

  /* Header row: image + brand name (no border between brand panel rounded
     top and first data row — the bg color flows continuously). */
  .he-lp-hs-vs-v2 .vsv2-row-header { align-items: end; }

  .he-lp-hs-vs-v2 .vsv2-header-ours {
    background: var(--vsv2-accent, #F23440);
    border-top-left-radius: 14px;
    border-top-right-radius: 14px;
    padding: 14px 8px 16px;
    flex-direction: column;
    align-items: center;
    text-align: center;
    display: flex;
    justify-content: flex-end;
    min-width: 0;
  }
  .he-lp-hs-vs-v2 .vsv2-header-ours .vsv2-img-ours {
    width: 86px;
    margin-top: -48px;
    margin-bottom: 10px;
  }
  .he-lp-hs-vs-v2 .vsv2-header-ours .vsv2-img-ours img {
    width: 100%; height: auto; display: block;
  }
  .he-lp-hs-vs-v2 .vsv2-header-ours .vsv2-brand-ours {
    font-family: var(--font-heading--family);
    font-size: 16px;
    font-weight: 700;
    color: #FFFFFF;
    letter-spacing: 0.03em;
    line-height: 1.1;
    word-break: break-word;
  }

  .he-lp-hs-vs-v2 .vsv2-header-comp {
    padding: 0 6px 16px;
    flex-direction: column;
    align-items: center;
    text-align: center;
    display: flex;
    justify-content: flex-end;
    min-width: 0;
  }
  .he-lp-hs-vs-v2 .vsv2-header-comp .vsv2-img-comp {
    width: 44px;
    margin-bottom: 10px;
  }
  .he-lp-hs-vs-v2 .vsv2-header-comp .vsv2-img-comp img {
    width: 100%; height: auto; display: block;
  }
  .he-lp-hs-vs-v2 .vsv2-header-comp .vsv2-brand-comp {
    font-family: var(--font-body--family);
    font-size: 11px;
    font-weight: 700;
    color: var(--vsv2-text-muted, #9B9790);
    line-height: 1.3;
    word-break: break-word;
  }

  /* Data cells */
  .he-lp-hs-vs-v2 .vsv2-row-data .vsv2-col-label {
    padding: 14px 8px 14px 0;
    display: flex;
    align-items: center;
    font-family: var(--font-heading--family);
    font-size: 12.5px;
    font-weight: 700;
    color: var(--vsv2-text-label, #000000);
    line-height: 1.25;
    text-align: left;
    word-break: break-word;
  }
  .he-lp-hs-vs-v2 .vsv2-row-data .vsv2-col-ours {
    background: var(--vsv2-accent, #F23440);
    padding: 14px 8px;
    display: flex; align-items: center; justify-content: center;
    text-align: center;
    font-family: var(--font-body--family);
    font-size: 12.5px;
    color: #FFFFFF;
    line-height: 1.25;
    word-break: break-word;
  }
  .he-lp-hs-vs-v2 .vsv2-row-data .vsv2-col-ours strong { color: #FFFFFF; font-weight: 700; }
  .he-lp-hs-vs-v2 .vsv2-row-data .vsv2-col-comp {
    padding: 14px 6px;
    display: flex; align-items: center; justify-content: center;
    text-align: center;
    font-family: var(--font-body--family);
    font-size: 12.5px;
    color: var(--vsv2-text-comp, #F23440);
    line-height: 1.25;
    word-break: break-word;
  }

  /* Bottom caps for ours column */
  .he-lp-hs-vs-v2 .vsv2-row-data:last-of-type .vsv2-col-ours {
    border-bottom-left-radius: 14px;
    border-bottom-right-radius: 14px;
    padding-bottom: 22px;
  }
  /* Match the cap's extra bottom padding so last-row text stays level
     across all three columns (ours cell otherwise centers higher). */
  .he-lp-hs-vs-v2 .vsv2-row-data:last-of-type .vsv2-col-label,
  .he-lp-hs-vs-v2 .vsv2-row-data:last-of-type .vsv2-col-comp {
    padding-bottom: 22px;
  }

  /* Hairline dividers between data rows */
  .he-lp-hs-vs-v2 .vsv2-row-data + .vsv2-row-data .vsv2-col-label,
  .he-lp-hs-vs-v2 .vsv2-row-data + .vsv2-row-data .vsv2-col-comp {
    border-top: 1px solid var(--vsv2-stroke, #E8E2D9);
  }
  .he-lp-hs-vs-v2 .vsv2-row-data + .vsv2-row-data .vsv2-col-ours {
    border-top: 1px solid rgba(255, 255, 255, 0.22);
  }

  /* Inline icons */
  .he-lp-hs-vs-v2 .vsv2-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 4px;
    vertical-align: middle;
    flex-shrink: 0;
  }
  .he-lp-hs-vs-v2 .vsv2-icon svg { width: 12px; height: 12px; display: block; }
  .he-lp-hs-vs-v2 .vsv2-cell-text { display: inline; }
  .he-lp-hs-vs-v2 .vsv2-strike {
    color: var(--vsv2-text-muted, #9B9790);
    font-weight: 400;
    text-decoration: line-through;
    margin-left: 4px;
  }
  /* Icon + text as one tight unit, centered in the cell as a whole.
     Cells WITHOUT an icon stay plain centered text. Cells WITH an icon:
     icon vertically centered across BOTH lines of wrapped text, and the
     wrapped lines left-aligned with each other. */
  .he-lp-hs-vs-v2 .vsv2-cell-inner {
    display: inline-block;
    max-width: 100%;
    text-align: center;
  }
  .he-lp-hs-vs-v2 .vsv2-cell-inner:has(.vsv2-icon) {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  /* Wrapped lines center under each other in the space next to the icon;
     the icon stays vertically centered across both lines. */
  .he-lp-hs-vs-v2 .vsv2-cell-inner:has(.vsv2-icon) .vsv2-cell-text {
    text-align: center;
    min-width: 0;
    text-wrap: balance;
  }

  @media (min-width: 750px) {
    .he-lp-hs-vs-v2 .vsv2-container { padding-top: 90px; padding-bottom: 36px; }
    .he-lp-hs-vs-v2 .vsv2-row {
      grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.3fr) minmax(0, 1fr);
    }

    .he-lp-hs-vs-v2 .vsv2-header-ours { padding: 20px 14px 22px; border-top-left-radius: 16px; border-top-right-radius: 16px; }
    .he-lp-hs-vs-v2 .vsv2-header-ours .vsv2-img-ours { width: 140px; margin-top: -90px; margin-bottom: 14px; }
    .he-lp-hs-vs-v2 .vsv2-header-ours .vsv2-brand-ours { font-size: 24px; letter-spacing: 0.04em; }

    .he-lp-hs-vs-v2 .vsv2-header-comp { padding: 0 10px 22px; }
    .he-lp-hs-vs-v2 .vsv2-header-comp .vsv2-img-comp { width: 70px; margin-bottom: 14px; }
    .he-lp-hs-vs-v2 .vsv2-header-comp .vsv2-brand-comp { font-size: 14px; }

    .he-lp-hs-vs-v2 .vsv2-row-data .vsv2-col-label { font-size: 16px; padding: 20px 16px 20px 0; }
    .he-lp-hs-vs-v2 .vsv2-row-data .vsv2-col-ours { font-size: 16px; padding: 20px 14px; }
    .he-lp-hs-vs-v2 .vsv2-row-data .vsv2-col-comp { font-size: 16px; padding: 20px 12px; }
    .he-lp-hs-vs-v2 .vsv2-row-data:last-of-type .vsv2-col-ours { padding-bottom: 26px; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; }
    .he-lp-hs-vs-v2 .vsv2-row-data:last-of-type .vsv2-col-label,
    .he-lp-hs-vs-v2 .vsv2-row-data:last-of-type .vsv2-col-comp { padding-bottom: 26px; }

    .he-lp-hs-vs-v2 .vsv2-icon { margin-right: 6px; }
    .he-lp-hs-vs-v2 .vsv2-icon svg { width: 15px; height: 15px; }
  }
/* END_SECTION:he-lp-hs-vs-v2 */

/* START_SECTION:he-lp-hs-why-switch-v2 (INDEX:73) */
.he-lp-hs-why-switch-v2 * { box-sizing: border-box; }
  .he-lp-hs-why-switch-v2 .wsw-inner { max-width: var(--he-max-inner, 1100px); margin: 0 auto; }

  .he-lp-hs-why-switch-v2 .wsw-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
  }
  @media (min-width: 750px) {
    .he-lp-hs-why-switch-v2 .wsw-grid {
      grid-template-columns: 1fr 1fr;
      gap: 56px;
      align-items: center;
    }
  }

  /* ─── Left: chrome + feature card ─── */
  .he-lp-hs-why-switch-v2 .wsw-chrome { margin-bottom: 28px; }

  .he-lp-hs-why-switch-v2 .wsw-card {
    background: var(--wsw-card-bg, #FFFFFF);
    border: 1.5px solid var(--wsw-accent, #58468B);
    border-radius: var(--he-card-radius, 14px);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 22px;
  }
  .he-lp-hs-why-switch-v2 .wsw-feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
  }
  .he-lp-hs-why-switch-v2 .wsw-feature-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--wsw-icon-bg, #F6F3FD);
    color: var(--wsw-icon-color, #58468B);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .he-lp-hs-why-switch-v2 .wsw-feature-icon svg { width: 24px; height: 24px; display: block; }
  .he-lp-hs-why-switch-v2 .wsw-feature-title {
    font-family: var(--font-heading--family);
    font-size: 16px;
    font-weight: 700;
    color: var(--wsw-title-color, #000000);
    text-transform: uppercase;
    margin: 0 0 4px;
    line-height: 1.25;
  }
  .he-lp-hs-why-switch-v2 .wsw-feature-desc {
    font-family: var(--font-body--family);
    font-size: 14.5px;
    line-height: 1.55;
    color: var(--wsw-desc-color, #6B6963);
    margin: 0;
  }

  /* ─── Right: media + floating review cards ─── */
  .he-lp-hs-why-switch-v2 .wsw-media {
    position: relative;
    aspect-ratio: 4 / 5;
    max-width: 420px;
    margin: 0 auto;
  }
  .he-lp-hs-why-switch-v2 .wsw-media-frame {
    width: 100%;
    height: 100%;
    border: 1.5px solid var(--wsw-accent, #58468B);
    border-radius: 20px;
    overflow: hidden;
  }
  .he-lp-hs-why-switch-v2 .wsw-media-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }

  .he-lp-hs-why-switch-v2 .wsw-review {
    position: absolute;
    z-index: 2;
    width: clamp(170px, 55vw, 230px);
    background: var(--wsw-card-bg, #FFFFFF);
    border: 1.5px solid var(--wsw-accent, #58468B);
    border-radius: 12px;
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.10);
  }
  .he-lp-hs-why-switch-v2 .wsw-review--top-left { top: -14px; left: -14px; }
  .he-lp-hs-why-switch-v2 .wsw-review--top-right { top: -14px; right: -14px; }
  .he-lp-hs-why-switch-v2 .wsw-review--bottom-left { bottom: -14px; left: -14px; }
  .he-lp-hs-why-switch-v2 .wsw-review--bottom-right { bottom: -14px; right: -14px; }

  .he-lp-hs-why-switch-v2 .wsw-review-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
  }
  .he-lp-hs-why-switch-v2 .wsw-review-stars {
    display: flex;
    gap: 2px;
    color: var(--wsw-star, #FFDA36);
    flex-shrink: 0;
  }
  .he-lp-hs-why-switch-v2 .wsw-review-stars svg {
    width: 13px;
    height: 13px;
    stroke: var(--wsw-star-outline, #000000);
    stroke-width: 1.3;
    stroke-linejoin: round;
  }
  .he-lp-hs-why-switch-v2 .wsw-review-label {
    background: var(--wsw-label-bg, #58468B);
    color: var(--wsw-label-text, #FFFFFF);
    font-family: var(--font-body--family);
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    padding: 3px 6px;
    border-radius: 4px;
    white-space: nowrap;
    flex-shrink: 0;
  }
  .he-lp-hs-why-switch-v2 .wsw-review-quote {
    font-family: var(--font-body--family);
    font-size: 12.5px;
    line-height: 1.45;
    color: var(--wsw-title-color, #000000);
    margin: 0;
  }
  .he-lp-hs-why-switch-v2 .wsw-review-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--wsw-tag-bg, #F6F3FD);
    color: var(--wsw-tag-text, #58468B);
    border-radius: 999px;
    padding: 4px 10px 4px 4px;
    align-self: flex-start;
  }
  .he-lp-hs-why-switch-v2 .wsw-review-badge { flex-shrink: 0; width: 16px; height: 16px; display: flex; }
  .he-lp-hs-why-switch-v2 .wsw-review-badge svg { width: 100%; height: 100%; display: block; }
  .he-lp-hs-why-switch-v2 .wsw-review-name {
    font-family: var(--font-body--family);
    font-size: 10.5px;
    font-weight: 600;
    white-space: nowrap;
  }
  .he-lp-hs-why-switch-v2 .wsw-review-status {
    font-family: var(--font-body--family);
    font-size: 10px;
    font-weight: 700;
    white-space: nowrap;
  }

  @media (min-width: 750px) {
    .he-lp-hs-why-switch-v2 .wsw-feature-title { font-size: 17px; }
    .he-lp-hs-why-switch-v2 .wsw-feature-desc { font-size: 15px; }
    .he-lp-hs-why-switch-v2 .wsw-review { padding: 16px; gap: 10px; }
    .he-lp-hs-why-switch-v2 .wsw-review-quote { font-size: 13.5px; }
  }
/* END_SECTION:he-lp-hs-why-switch-v2 */

/* START_SECTION:he-lp-logo-header (INDEX:74) */
.he-lp-logo-header {
    width: 100%;
    box-sizing: border-box;
  }

  .he-lp-logo-header__inner {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .he-lp-logo-header__link {
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    width: var(--logo-width);
    max-width: 100%;

    @media screen and (max-width: 749px) {
      width: var(--logo-width-mobile, var(--logo-width));
    }
  }

  .he-lp-logo-header__image {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
  }

  .he-lp-logo-header__name {
    font-family: var(--font-body--family);
    font-size: var(--logo-height, 1.5rem);
    font-weight: 700;
    color: currentColor;
  }
/* END_SECTION:he-lp-logo-header */

/* START_SECTION:he-lp-sticky-cta (INDEX:75) */
.he-lp-sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.he-lp-sticky-cta.is-visible {
  transform: translateY(0);
}

@media screen and (min-width: 750px) {
  .he-lp-sticky-cta {
    bottom: auto;
    top: 0;
    transform: translateY(-100%);
  }

  .he-lp-sticky-cta.is-visible {
    transform: translateY(0);
  }
}

/* ── Logo (hidden on mobile) ── */
.he-lp-sticky-cta__logo {
  display: none;
}

.he-lp-sticky-cta__logo-img {
  height: 28px;
  width: auto;
  display: block;
}

/* ── Mobile layout (unchanged) ── */
.he-lp-sticky-cta__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 12px 20px 16px;
  padding-bottom: max(16px, env(safe-area-inset-bottom));
  box-shadow: 0 -2px 12px rgba(0,0,0,0.08);
}

.he-lp-sticky-cta__btn {
  display: block;
  width: 100%;
  max-width: 600px;
  padding: 16px 24px;
  font-family: var(--font-body--family), sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  line-height: 1.3;
  transition: opacity 0.15s ease;
  -webkit-font-smoothing: antialiased;
}

.he-lp-sticky-cta__btn:hover {
  opacity: 0.9;
}

.he-lp-sticky-cta__trust {
  margin: 0;
  font-family: var(--font-body--family), sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-align: center;
  line-height: 1.4;
  opacity: 0.85;
  order: 1;
}

/* ── Desktop: 3-column bar (logo | trust | CTA) ── */
@media screen and (min-width: 750px) {
  .he-lp-sticky-cta__trust,
  .he-lp-sticky-cta__btn {
    order: unset;
  }

  .he-lp-sticky-cta__logo {
    display: flex;
    align-items: center;
  }

  .he-lp-sticky-cta__inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 12px 60px;
  }

  .he-lp-sticky-cta__trust {
    font-size: 13px;
  }

  .he-lp-sticky-cta__btn {
    width: auto;
    max-width: none;
    padding: 14px 32px;
    white-space: nowrap;
  }
}
/* END_SECTION:he-lp-sticky-cta */

/* START_SECTION:he-promo-card-v2 (INDEX:76) */
.hpcard * { box-sizing: border-box; }
  .hpcard .hpcard-inner { max-width: 920px; margin: 0 auto; }
  .hpcard .hpcard-card {
    padding: 22px 22px 26px;
    font-family: var(--font-body--family);
    color: #000000;
  }

  .hpcard .hpcard-badge {
    display: inline-block;
    font-family: var(--font-body--family);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 7px 14px;
    line-height: 1;
  }

  .hpcard .hpcard-headline {
    margin: 18px 0 4px;
  }
  .hpcard .hpcard-headline > * {
    font-family: var(--font-heading--family);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -1.5px;
    text-transform: uppercase;
    margin: 0;
  }
  .hpcard .hpcard-sub {
    font-family: var(--font-heading--family);
    font-weight: 700;
    line-height: 1.15;
    margin: 0;
  }

  .hpcard .hpcard-progress { margin-top: 22px; }
  .hpcard .hpcard-progress-label {
    font-weight: 700;
    margin: 0 0 10px;
    line-height: 1.2;
  }
  .hpcard .hpcard-bar {
    position: relative;
    height: 32px;
    display: flex;
    align-items: center;
  }
  .hpcard .hpcard-bar-track,
  .hpcard .hpcard-bar-fill {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    height: 8px;
    border-radius: 999px;
  }
  .hpcard .hpcard-bar-track { left: 0; right: 0; }
  .hpcard .hpcard-bar-fill { left: 0; max-width: 100%; }
  .hpcard .hpcard-bar-thumb {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 18px;
    height: 18px;
    background: #FFFFFF;
    border-radius: 50%;
    z-index: 2;
  }
  .hpcard .hpcard-bar-dest {
    position: absolute;
    top: 50%;
    right: -6px;
    transform: translate(50%, -50%);
    width: 30px;
    height: 30px;
    background: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
    z-index: 1;
  }
  .hpcard .hpcard-bar-dest svg { width: 16px; height: 16px; display: block; }

  .hpcard .hpcard-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px 18px;
    margin-top: 22px;
  }
  .hpcard .hpcard-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body--family);
    font-size: 15px;
    font-weight: 700;
    padding: 14px 24px;
    border-radius: 999px;
    text-decoration: none;
    line-height: 1;
    transition: filter 0.2s ease;
  }
  .hpcard .hpcard-btn:hover { filter: brightness(0.92); }
  .hpcard .hpcard-aside {
    font-weight: 700;
    line-height: 1.3;
  }

  @media (min-width: 750px) {
    .hpcard .hpcard-card { padding: 28px 30px 32px; }
    .hpcard .hpcard-btn { font-size: 16px; padding: 16px 26px; }
  }
/* END_SECTION:he-promo-card-v2 */

/* START_SECTION:he-s1-why-nothing-worked (INDEX:77) */
/* ── Reset ── */
.he-s1, .he-s1 *,
.he-s1-reframe, .he-s1-reframe * {
  box-sizing: border-box;
}
.he-s1 h1, .he-s1 h2, .he-s1 h3,
.he-s1 p, .he-s1 ul, .he-s1 li,
.he-s1-reframe h1, .he-s1-reframe h2,
.he-s1-reframe p {
  margin: 0;
  padding: 0;
}

/* ── Section Root ── */
.he-s1 {
  width: 100%;
  -webkit-font-smoothing: antialiased;
}
.he-s1-inner {
  padding-left: 22px;
  padding-right: 22px;
}

/* ── Eyebrow ── */
.he-s1-eyebrow {
  font-family: var(--font-accent--family), monospace;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-align: center;
  /* color, font-size, margin-bottom → set dynamically via {%- style -%} */
}

/* ── Stat Hero ── */
.he-s1-stat-hero {
  text-align: center;
  margin-bottom: 20px;
}
.he-s1-stat-num {
  font-family: var(--font-heading--family), sans-serif;
  font-size: 108px;
  font-weight: 700;
  color: #0C0C0C;
  line-height: .88;
  letter-spacing: -.04em;
  display: inline;
}
.he-s1-stat-pct {
  font-family: var(--font-heading--family), sans-serif;
  font-size: 52px;
  font-weight: 700;
  color: #B94A3A;
  letter-spacing: -.02em;
  display: inline;
  vertical-align: top;
  margin-top: 14px;
}
.he-s1-stat-body {
  font-family: var(--font-body--family), sans-serif;
  font-size: 16px;
  line-height: 1.55;
  margin-top: 18px;
  margin-bottom: 10px;
  /* color, text-align → set dynamically via {%- style -%} */
}
@media screen and (min-width: 750px) {
  .he-s1-stat-body {
    text-align: center;
  }
}
.he-s1-citation {
  font-family: var(--font-accent--family), monospace;
  font-size: 10px;
  letter-spacing: .06em;
  display: block;
  margin-bottom: 36px;
  /* color, text-align → set dynamically via {%- style -%} */
}
@media screen and (min-width: 750px) {
  .he-s1-citation {
    text-align: center;
  }
}

/* ── Beam Box ── */
.he-s1-beam-box {
  background: #161010;
  border: 1px solid #2A1A1A;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 28px;
}
.he-s1-beam-header {
  background: #1a1414;
  border-bottom: 1px solid #2A1A1A;
  padding: 11px 16px;
  font-family: var(--font-accent--family), monospace;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #444;
  text-align: center;
}
.he-s1-beam-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.he-s1-beam-left,
.he-s1-beam-right {
  padding: 18px 12px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.he-s1-beam-left {
  border-right: 1px solid #1e1e1e;
}
.he-s1-beam-col-label {
  font-family: var(--font-accent--family), monospace;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #555;
  margin-bottom: 14px;
  text-align: center;
}
.he-s1-beam-col-label--active {
  color: #B94A3A;
}
.he-s1-beam-visual {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 12px;
  min-height: 76px;
  justify-content: flex-end;
}
.he-s1-cream-blob {
  width: 44px;
  height: 12px;
  background: #3a3a3a;
  border-radius: 999px;
  margin-bottom: 8px;
}
.he-s1-beams {
  display: flex;
  gap: 5px;
  align-items: flex-end;
  height: 68px;
}
.he-s1-beam {
  width: 6px;
  border-radius: 3px 3px 0 0;
  background: linear-gradient(to bottom, #B94A3A, rgba(185,74,58,.18));
}
.he-s1-beam:nth-child(1) { height: 68px; }
.he-s1-beam:nth-child(2) { height: 56px; }
.he-s1-beam:nth-child(3) { height: 68px; }
.he-s1-layers {
  width: 100%;
}
.he-s1-layer {
  padding: 5px 8px;
  font-family: var(--font-accent--family), monospace;
  font-size: 9px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #2e2e2e;
  border-top: 1px solid #1a1a1a;
}
.he-s1-layer--blocked {
  color: #555;
  border-color: #222;
}
.he-s1-layer--active {
  color: #B94A3A;
  border-color: rgba(185,74,58,.18);
}
.he-s1-beam-verdict {
  font-family: var(--font-accent--family), monospace;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: center;
  color: #333;
  padding-top: 10px;
  border-top: 1px solid #1a1a1a;
  width: 100%;
  margin-top: 4px;
}
.he-s1-beam-verdict--win {
  color: #B94A3A;
  border-top-color: rgba(185,74,58,.15);
}

/* ── Cards Label ── */
.he-s1-cards-label {
  font-family: var(--font-accent--family), monospace;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #3a3a3a;
  margin-bottom: 12px;
}

/* ── Fail Cards ── */
.he-s1-fail-card {
  /* background, border → set dynamically via {%- style -%} */
  border-radius: 14px;
  padding: 16px 16px 14px;
  display: flex;
  gap: 13px;
  align-items: flex-start;
  margin-bottom: 10px;
}
.he-s1-x-wrap {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  border-radius: 10px;
  background: rgba(185,74,58,.1);
  border: 1px solid rgba(185,74,58,.22);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading--family), sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #B94A3A;
}
.he-s1-card-body {
  flex: 1;
  min-width: 0;
}
.he-s1-card-cat {
  font-family: var(--font-accent--family), monospace;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #444;
  margin-bottom: 4px;
}
.he-s1-card-head {
  font-family: var(--font-heading--family), sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #EEE;
  margin-bottom: 6px;
  line-height: 1.25;
}
.he-s1-card-text {
  font-family: var(--font-body--family), sans-serif;
  font-size: 14px;
  color: #5A5A5A;
  line-height: 1.55;
  margin-bottom: 9px;
}
.he-s1-card-tag {
  display: inline-block;
  font-family: var(--font-accent--family), monospace;
  font-size: 9px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 20px;
  background: rgba(185,74,58,.12);
  color: #FF7070;
  border: 1px solid rgba(185,74,58,.2);
}

/* ── Reframe Strip ── */
.he-s1-reframe {
  width: 100%;
  border-top: 1px solid #1a1a1a;
  text-align: center;
  -webkit-font-smoothing: antialiased;
}
.he-s1-reframe-inner {
  padding-left: 22px;
  padding-right: 22px;
}
.he-s1-reframe-head {
  font-family: var(--font-heading--family), sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #FAF8F4;
  line-height: 1.3;
  margin-bottom: 4px;
}
.he-s1-reframe-head em {
  display: block;
  font-style: italic;
  color: #B94A3A;
}
.he-s1-reframe-sub {
  font-family: var(--font-body--family), sans-serif;
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  margin-top: 12px;
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
}
/* END_SECTION:he-s1-why-nothing-worked */

/* START_SECTION:header-announcements (INDEX:78) */
.announcement-bar {
    border-block-end: var(--border-bottom-width) solid var(--color-border);
  }

  .announcement-bar__slider {
    display: flex;
    flex-direction: row;
    align-items: center;
    position: relative;

    @media screen and (max-width: 749px) {
      grid-column: 1 / -1;
    }
  }

  .announcement-bar__slides {
    display: grid;
    grid: [stack] auto / [stack] auto;
    width: calc(100% - var(--button-size) * 2);
    max-width: 680px;
    margin-inline: auto;
  }

  .announcement-bar__slides > * {
    grid-area: stack;
  }

  .announcement-bar__slide {
    transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
    content-visibility: visible;

    &[aria-hidden='true'] {
      opacity: 0;
      visibility: hidden;
    }
  }

  .announcement-bar__slider slideshow-arrows {
    padding: 0;
    mix-blend-mode: normal;
  }

  .announcement-bar__slider slideshow-arrows .slideshow-control {
    color: var(--color-foreground);
  }

  .announcement-bar__slider .slideshow-control {
    display: flex;
    padding: 0;
    width: var(--button-size);
    height: var(--button-size);
    align-items: center;
    justify-content: center;
    opacity: 1;
    animation: none;

    @media screen and (min-width: 750px) {
      --slideshow-control-offset: calc((var(--button-size) - var(--icon-size-xs)) / 2);

      .section--page-width &.slideshow-control--previous {
        transform: translateX(var(--slideshow-control-offset));
      }
    }
  }

  .announcement-bar__slider .slideshow-control .svg-wrapper {
    width: var(--icon-size-xs);
    height: var(--icon-size-xs);
  }

  .announcement-bar__slide {
    place-content: center;
  }

  .announcement-bar__text:first-child {
    margin: 0;
  }

  .announcement-bar__link {
    position: absolute;
    inset: 0;
  }
/* END_SECTION:header-announcements */

/* START_SECTION:header (INDEX:79) */
body {
    --header-height: 60px;
    --header-group-height: var(--header-height);
    --transparent-header-offset-boolean: 0; /* stylelint-disable-line declaration-property-value-disallowed-list */
  }

  .header {
    /* Set header paddings based on height setting */
    --header-padding: var(--padding-sm);
    --font-paragraph--line-height: 1;
    --header-content-transition-timing: 0s;

    display: block;
    contain: layout style;
    background: transparent;

    a,
    .button,
    .button-secondary,
    .header-actions__action {
      /* reset style from base.css */
      transition: color var(--header-content-transition-timing), border-color var(--header-content-transition-timing);
    }
  }

  #header-component :is(.header-menu, .dropdown-localization) {
    display: none;
  }

  @media screen and (min-width: 750px) {
    #header-component[data-menu-style='menu'] :is(.header-menu, .dropdown-localization) {
      display: flex;
    }
  }

  #header-component[data-menu-style='drawer'] .header__column {
    display: contents;
  }

  @media screen and (min-width: 750px) {
    #header-component[data-menu-style='menu'] .header__navigation-bar-row {
      display: none;
    }
  }

  .header[transparent] {
    --language-button-background-color: transparent;
    --language-button-border-color: transparent;
    --header-content-transition-timing: calc(var(--submenu-animation-speed) - var(--animation-speed-fast))
      var(--animation-speed-fast) var(--ease-out-cubic);

    --closed-underlay-height: 0px;

    /* used to display the appropriate logo based on transparency state */
    --header-logo-display: none;
    --header-logo-inverse-display: block;

    position: absolute;
    top: 0;
    left: 0;
    right: 0;

    z-index: var(--layer-overlay);

    &[transparent='not-sticky'][data-sticky-state='active'],
    &:has(.menu-list__link:not([aria-haspopup]):hover) {
      --header-logo-display: unset;
      --header-logo-inverse-display: unset;
      --color-foreground: inherit;
      --color-foreground-rgb: inherit;
      --color-background: inherit;
      --color-background-rgb: inherit;
      --color-border: inherit;
      --color-border-rgb: inherit;
      --closed-underlay-height: 100%;
    }

    /** For transparent header, apply inherit to rows when menu is not hovered */
    &:not([data-sticky-state='active']):not(:has(.menu-list__link:is(:hover, [aria-expanded='true']))) .header__row {
      --color-foreground: inherit;
      --color-foreground-rgb: inherit;
      --color-border: inherit;
      --color-border-rgb: inherit;
      --color-primary-button-background: inherit;
      --color-primary-button-text: inherit;
    }

    /* Multiple selectors for performance: each simple :has() check is faster than one complex selector with multiple conditions */
    &:has(.mega-menu__list:hover),
    &:has(.menu-list__link:is(:hover, [aria-expanded='true'])),
    &:has(.menu-list__list-item[slot='overflow'] .menu-list__link:is(:hover, [aria-expanded='true'])) {
      --header-logo-display: unset;
      --header-logo-inverse-display: unset;
      --color-foreground: inherit;
      --color-foreground-rgb: inherit;
      --color-background: inherit;
      --color-background-rgb: inherit;
      --color-border: inherit;
      --color-border-rgb: inherit;
      --header-content-transition-timing: var(--submenu-animation-speed) var(--ease-out-cubic);
    }
  }

  /* When top row has transparent background, make it inherit colors from header component */
  [data-transparent-color-scheme='top']:hover .header__row--top,
  [data-transparent-color-scheme='top']:focus-within .header__row--top,
  [data-transparent-color-scheme='both']:hover .header__row--top,
  [data-transparent-color-scheme='both']:focus-within .header__row--top {
    --color-foreground: inherit;
    --color-foreground-rgb: inherit;
    --color-border: inherit;
    --color-border-rgb: inherit;
    --color-primary-button-background: inherit;
    --color-primary-button-text: inherit;
  }

  /* When bottom row has transparent background, make it inherit colors from header component */
  [data-transparent-color-scheme='bottom']:hover .header__row--bottom,
  [data-transparent-color-scheme='bottom']:focus-within .header__row--bottom,
  [data-transparent-color-scheme='both']:hover .header__row--bottom,
  [data-transparent-color-scheme='both']:focus-within .header__row--bottom {
    --color-foreground: inherit;
    --color-foreground-rgb: inherit;
    --color-border: inherit;
    --color-border-rgb: inherit;
    --color-primary-button-background: inherit;
    --color-primary-button-text: inherit;
  }

  .header-section {
    position: relative;
    z-index: var(--layer-heightened);
  }

  /* need default values for non-flash transitions on first overflow menu open */
  #header-component {
    --submenu-height: 0px;
    --full-open-header-height: 0px;
  }

  #header-group:has(#header-component[sticky]) {
    display: contents;
  }

  .header-section:has(> #header-component[sticky='always']),
  .header-section:has(> #header-component[sticky='scroll-up'][data-sticky-state='active']) {
    position: sticky;

    /* Use -1 instead of 0 so intersection observer can track sticky state */
    top: -1px;
    z-index: var(--layer-sticky);
  }

  .header[data-sticky-state] {
    transition: opacity var(--animation-speed) var(--animation-easing);
    opacity: 1;
  }

  .header[data-sticky-state='active'] {
    view-transition-name: sticky-header;
  }

  :active-view-transition-type(empty-cart-drawer) {
    .header[data-sticky-state='active'] {
      view-transition-name: none;
    }
  }

  .header[data-sticky-state='idle'] {
    opacity: 0;
  }

  /* ================================
     * Underlays
     * ================================ */
  .header__underlay {
    position: absolute;
    inset: 0;
  }

  .header__underlay-closed {
    height: var(--closed-underlay-height, 100%);
    z-index: var(--layer-lowest);
    background: linear-gradient(
      var(--color-scheme-top-row) 0 var(--top-row-height),
      var(--color-scheme-bottom-row) var(--top-row-height) var(--header-height)
    );
    transition: height var(--animation-speed-slow) var(--ease-out-cubic);
  }

  .header__underlay-open {
    height: var(--full-open-header-height);
    background: linear-gradient(
      var(--color-scheme-top-row) 0 var(--top-row-height),
      var(--color-scheme-bottom-row) var(--top-row-height) var(--header-height),
      var(--color-submenu) var(--header-height) 100%
    );
    /* header-height is updated via js, the transition works automagically */
    transition: height var(--submenu-animation-speed) var(--ease-out-cubic);
  }

  .header__underlay-open::after {
    content: '';
    position: absolute;
    inset: 0;
    box-shadow: var(--shadow-popover);
    clip-path: inset(var(--header-height) 0 -100px 0); /* stylelint-disable-line */
    transition: height var(--submenu-animation-speed) var(--ease-out-cubic);
  }

  /* When top row has transparent background, make underlay inherit colors from header component */
  [data-transparent-color-scheme='top']:hover,
  [data-transparent-color-scheme='top']:focus-within,
  [data-transparent-color-scheme='both']:hover,
  [data-transparent-color-scheme='both']:focus-within {
    :is(.header__underlay-open, .header__underlay-closed) {
      --color-scheme-top-row: var(--color-background);
    }
  }

  /* When bottom row has transparent background, make underlay inherit colors from header component */
  [data-transparent-color-scheme='bottom']:hover,
  [data-transparent-color-scheme='bottom']:focus-within,
  [data-transparent-color-scheme='both']:hover,
  [data-transparent-color-scheme='both']:focus-within {
    :is(.header__underlay-open, .header__underlay-closed) {
      --color-scheme-bottom-row: var(--color-background);
    }
  }

  [data-submenu-overlap-bottom-row] {
    .header__underlay-open {
      background: linear-gradient(
        var(--color-scheme-top-row) 0 var(--top-row-height),
        var(--color-submenu) var(--top-row-height) 100%
      );
    }

    .header__row--bottom {
      z-index: var(--layer-lowest);
    }
  }

  /* End Underlays ================ */

  .header__row {
    /* The account component uses a different color scheme, but we need to override it to inherit the color of the header row */
    --color-account-icon: var(--color-foreground);

    position: relative;

    /* Overwrite color from color scheme, background is controlled by the underlays */
    background-color: transparent;

    &:has(.mega-menu__list:hover),
    &:has(.menu-list__link[aria-haspopup]:is(:hover, [aria-expanded='true'])),
    &:has(.menu-list__list-item[slot='overflow'] .menu-list__link:is(:hover, [aria-expanded='true'])) {
      /* Only elevate the row when the submenu is open to avoid overlapping other elevated content */
      z-index: var(--layer-heightened);
    }
  }

  .header__row--top:not(.divider--page-width),
  .header__row--top.divider--page-width .header__columns,
  .header__row--bottom {
    border-bottom: var(--border-bottom-width) solid var(--color-border);
  }

  @media screen and (max-width: 749px) {
    .header__row--top:not(.divider--page-width),
    .header__row--top.divider--page-width .header__columns {
      border-bottom-width: var(--border-bottom-width-mobile);
    }
  }

  #header-component[data-menu-style='drawer'] .header__row--top:not(.divider--page-width),
  #header-component[data-menu-style='drawer'] .header__row--top.divider--page-width .header__columns {
    border-bottom-width: var(--border-bottom-width-mobile);
  }

  .header__row.divider--page-width:not(.section--page-width) .header__columns {
    @media screen and (min-width: 750px) {
      padding-inline-start: 0;
      padding-inline-end: 0;
      margin-inline-start: var(--page-margin);
      margin-inline-end: var(--page-margin);
    }
  }

  .header__column {
    display: flex;
    align-items: center;

    /* on mobile, header__column nodes are ignored to create a new grid-template-area based on all visible content */
    @media screen and (max-width: 749px) {
      display: contents;
    }
  }

  .header__column--left,
  .header__column--center {
    gap: var(--gap-xl);
    grid-area: left;
  }

  .header__column--center {
    justify-content: center;
    grid-area: center;

    header-menu:only-child .overflow-menu::part(list) {
      justify-content: center;
    }
  }

  .header__column--right {
    gap: var(--gap-xl);
    justify-content: flex-end;
    grid-area: right;

    .overflow-menu::part(list) {
      justify-content: flex-end;
    }
  }

  .header__columns {
    /* Three column layout */
    --header-left: 1fr;
    --header-center: auto;
    --header-right: 1fr;
    --header-template-columns: var(--header-left) var(--header-center) var(--header-right);

    /* Mobile layout */
    --header-mobile-bookend: 44px;

    display: grid;
    grid-template-areas: 'left center right';
    grid-gap: var(--gap-xl);
    grid-template-columns: var(--header-template-columns);

    /* If menu is in center column */
    &:has(.header__column--center header-menu) {
      --header-center: auto;
      --header-left: minmax(max-content, 1fr);
      --header-right: minmax(max-content, 1fr);
    }

    /* If there is no center column, make the column the menu is in grow eagerly */
    &:where(:not(:has(.header__column--center))) {
      @media screen and (min-width: 750px) {
        --header-template-columns: var(--header-left) var(--header-right);

        grid-template-areas: 'left right';
      }

      /* If the header-menu is in the right column */
      &:has(.header__column--right header-menu) {
        --header-right: auto;
        --header-left: minmax(max-content, 1fr);
      }

      /* If the header-menu is in the left column */
      &:has(.header__column--left header-menu) {
        --header-left: auto;
        --header-right: minmax(max-content, 1fr);
      }
    }

    @media screen and (max-width: 749px) {
      --header-template-columns: var(--header-mobile-bookend) var(--header-mobile-bookend) 1fr
        var(--header-mobile-bookend) var(--header-mobile-bookend);

      grid-template-areas: 'leftA leftB center rightA rightB';
      grid-column: span 3;
      column-gap: 0;
      align-items: center;
      padding-block: 0;
      padding-inline: 0 var(--padding-3xs);

      .header-logo {
        grid-area: center;
      }

      &:not(:has(header-actions)) .search-action {
        grid-area: leftB;
      }

      &:not(:has(shopify-account)) .search-action {
        grid-area: rightA;
      }

      .search-action {
        grid-area: leftB;
      }

      header-actions {
        grid-area: rightB;
      }
    }
  }

  /* not ideal but we need to duplicate these styles for when touch comes into play
    We could avoid the duplication using js to set the data-menu-style attribute on small screens instead of using @media queries */
  #header-component[data-menu-style='drawer'] .header__columns {
    --header-template-columns: var(--header-mobile-bookend) var(--header-mobile-bookend) 1fr
      var(--header-mobile-bookend) var(--header-mobile-bookend);

    grid-template-areas: 'leftA leftB center rightA rightB';
    grid-column: span 3;
    column-gap: 0;
    align-items: center;
    padding-block: 0;
    padding-inline: 0 var(--padding-3xs);

    .header-logo {
      grid-area: center;
    }

    &:not(:has(header-actions)) .search-action {
      grid-area: leftB;
    }

    &:not(:has(shopify-account)) .search-action {
      grid-area: rightA;
    }

    .search-action {
      grid-area: leftB;
    }

    header-actions {
      grid-area: rightB;
    }
  }

  /* Single column layout if there are no columns within */
  .header__columns:not(:has(.header__column)) {
    grid-template-columns: 1fr;
  }

  /* Check for hover support to avoid unnecessary expensive recalculations when tapping on mobile */
  @media (hover: hover) {
    /* Column-specific dimming effect when any interactive element is hovered
        Multiple selectors for performance: each simple :has() check is faster than one complex selector with multiple conditions */
    .header__column:has(header-menu:hover),
    .header__column:has(.header-actions__action:hover),
    .header__column:has(.header__icon--menu:hover) {
      header-menu:not(:hover),
      .header-actions__action:not(:hover),
      .header__icon--menu:not(:hover) {
        opacity: var(--opacity-subdued-text);
        transition: opacity var(--animation-speed) var(--animation-easing);
      }
    }
  }

  /* Ensure smooth transitions for all interactive elements */
  header-menu,
  .header-actions__action,
  .header__icon--menu {
    transition: opacity var(--animation-speed) var(--animation-easing);
  }

  /* Header action button styles */
  .header-actions__action {
    --button-color: var(--color-foreground);
    color: var(--button-color);
    cursor: pointer;
    display: flex;
    justify-content: center;

    &:hover {
      --button-color: var(--color-foreground);
    }
  }

  .header-actions__action:not(.account-button) .svg-wrapper {
    height: var(--button-size);
    width: var(--button-size);
  }

  .header-actions__action:not(.account-button) svg {
    width: var(--icon-size-md);
    height: var(--icon-size-md);
  }

  .header:has(#Details-menu-drawer-container[open]) {
    contain: style;
  }

  .header.header--compact {
    --header-padding: var(--padding-2xs);
  }

  .header__columns {
    --padding-block-start: var(--header-padding);
    --padding-block-end: var(--header-padding);
  }

  .header:not(.header--compact) .header__row--bottom {
    --header-padding: var(--padding-xs);
  }

  .header--collapse-row-paddings {
    .header__row--top .header__columns {
      --padding-block-end: 0px;
    }

    .header__row--bottom .header__columns {
      --padding-block-start: 0px;
    }
  }

  /* When the header is transparent, add a margin to a potential header-section below it */
  .header-section:has(.header[transparent]) + .shopify-section {
    margin-top: var(--header-height);
  }

  /* When the header is transparent, and when there is no header-section below it, offset the first main-section with
     * the height of the header
     */

  main > .shopify-section:first-child .section:not(.disable-section-top-offset) {
    &.spacing-style,
    .spacing-style {
      --section-top-offset: calc(var(--header-height) * var(--transparent-header-offset-boolean));

      /* Any nested sections should not be offset */
      :is(.spacing-style, .inherit-spacing) {
        --section-top-offset: 0px;
      }
    }

    /* Make sticky content immediately stick to the top of the page */
    .sticky-content {
      margin-top: calc(var(--header-height) * var(--transparent-header-offset-boolean) * -1);
    }
  }

  /* Optimize layout performance for hidden menus */
  .header-menu .menu-list__submenu {
    content-visibility: auto;
    contain-intrinsic-size: 0px 500px;
  }

  /* Force visibility when open/animating and in overflow submenu to prevent layout issues */
  .header-menu details[open] .menu-list__submenu,
  .header-menu .menu-list__submenu[data-active],
  .header-menu .menu-list__list-item[slot='overflow'] .menu-list__submenu {
    content-visibility: visible;
  }

  /* Dropdown Localization Styles */
  .dropdown-localization__button {
    display: flex;
    position: relative;
    align-items: center;
    gap: 4px;
    font-family: var(--menu-localization-font);
    font-size: var(--menu-localization-font-size);
    font-weight: var(--menu-top-level-font-weight);
    padding-inline: var(--padding-2xs);
    margin-inline: calc(-1 * var(--padding-2xs));
  }

  .dropdown-localization__button .svg-wrapper.icon-caret {
    height: var(--icon-size-xs);
    width: var(--icon-size-xs);
    right: var(--margin-xs);
    top: calc(50% - var(--padding-2xs));
    flex-shrink: 0;
    transition: transform var(--animation-speed) var(--animation-easing);
  }

  .dropdown-localization__button .icon-flag {
    width: var(--menu-localization-font-size, var(--icon-size-sm));
    height: var(--menu-localization-font-size, var(--icon-size-sm));
    clip-path: circle(50%); /* stylelint-disable-line */
    background-position: center;
    background-size: cover;
    margin-inline-end: 4px;
    position: relative;
  }

  .dropdown-localization__button .icon-flag::after {
    content: '';
    position: absolute;
    inset: 0;
    box-shadow: inset 0 0 var(--size-shadow) var(--color-shadow);
    border-radius: 50%;
  }

  .dropdown-localization__button[aria-expanded='true'] .icon-caret svg {
    transform: rotate(180deg);
  }

  .dropdown-localization__button,
  .dropdown-localization__button:hover {
    box-shadow: none;
    background-color: transparent;
    border-color: transparent;
  }

  dropdown-localization-component .localization-form__list {
    max-height: 20.5rem;
  }

  .localization-wrapper {
    position: fixed;
    z-index: var(--layer-raised);
    border-radius: var(--style-border-radius-popover);
    transition-property: display, opacity, translate;
    transition-duration: 0.3s;
    transition-timing-function: var(--ease-out-quad);
    transition-behavior: allow-discrete;
    translate: 0 20px;
    opacity: 0;
  }

  .localization-wrapper:not([hidden]) {
    translate: 0 0;
    opacity: 1;
  }

  @starting-style {
    .localization-wrapper:not([hidden]) {
      translate: 0 20px;
      opacity: 0;
    }
  }

  dropdown-localization-component {
    position: relative;
    background-color: transparent;
  }

  dropdown-localization-component .country-filter {
    position: relative;
    padding: 8px;
  }

  dropdown-localization-component .country-filter__input {
    border: none;
  }

  dropdown-localization-component .localization-form__list-item {
    margin-inline: 8px;
  }

  dropdown-localization-component .localization-wrapper {
    box-shadow: var(--shadow-popover);
    border: var(--style-border-popover);
    background-color: var(--color-background);
    max-height: 27.5rem;
    position: absolute;
    top: calc(100% + 10px);
    z-index: calc(var(--layer-header-menu) + 1);
  }

  dropdown-localization-component .localization-wrapper.right-bound {
    right: 0;
    left: unset;
  }

  dropdown-localization-component .localization-wrapper.left-bound {
    left: -8px;
    right: unset;
  }

  /* Additional specificity due to dropdown-localization-component getting a low score */
  dropdown-localization-component .language-selector.language-selector {
    padding: 10px 8px 10px 16px;
  }

  dropdown-localization-component .localization-form__currency {
    width: max-content;
    opacity: 0;
    visibility: hidden;
    transition: none;
  }

  dropdown-localization-component .localization-form__select:hover {
    background-color: rgb(var(--color-primary-hover-rgb) / var(--opacity-8));
  }

  dropdown-localization-component
    :is(
      .localization-form__list-item:hover,
      .localization-form__list-item[aria-selected='true'],
      .localization-form__list-item[aria-current='true']
    )
    .localization-form__currency {
    opacity: 1;
    color: var(--color-foreground-muted);
    transition: opacity var(--animation-speed-slow) var(--animation-easing);
    visibility: visible;
  }

  .dropdown-localization .language-selector:where(:not(.top-shadow)) {
    font-weight: var(--menu-top-level-font-weight);
  }

  .dropdown-localization:not(dropdown-localization-component) .language-selector {
    font-family: var(--menu-localization-font);
    font-size: var(--menu-localization-font-size);
  }
/* END_SECTION:header */

/* START_SECTION:hero (INDEX:80) */
.hero-wrapper {
    --hero-height-offset: 0px;
  }

  /* Being extra specific in the selector for performance reasons */
  body:has(> #header-group > .header-section > #header-component) .hero-wrapper:first-child {
    --hero-height-offset: var(--header-group-height, 0);
  }

  .hero {
    position: relative;
    min-height: calc(var(--hero-min-height) - var(--hero-height-offset));
  }

  .hero[data-shopify-visual-preview] {
    --hero-min-height: 600px;

    min-height: 600px;
  }

  .hero__container {
    position: relative;
    overflow: hidden;
    border: var(--hero-border-width) var(--hero-border-style) rgb(var(--color-border-rgb) / var(--hero-border-opacity));
    min-height: inherit;
    align-items: var(--vertical-alignment-mobile);
    justify-content: var(--horizontal-alignment);
    z-index: var(--layer-base);

    @media screen and (min-width: 750px) {
      align-items: var(--vertical-alignment);
    }
  }

  .hero__content-wrapper.page-width {
    grid-column: 2 / 3;
  }

  .hero__content-wrapper {
    position: relative;
    inset: 0;
    z-index: var(--layer-flat);
  }

  .hero__content-wrapper .group-block-content {
    position: relative;
  }

  .hero__media-grid {
    position: absolute;
    inset: 0;
    display: grid;
    grid-column: 1 / -1;
    grid-template-columns: repeat(var(--hero-media-count, 1), 1fr);
  }

  .hero--auto .hero__media {
    aspect-ratio: var(--hero-media-aspect-ratio);
  }

  .hero--no-blocks-auto-height {
    .hero__media {
      width: 100%;
      aspect-ratio: auto;
    }

    .hero__media-grid {
      /* When there are no blocks and the height is auto, allow the image to appear. */
      position: relative;
    }
  }

  .hero__media-wrapper {
    overflow: hidden;
    position: relative;
  }

  .hero__media {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center center;
    overflow: hidden;
    position: relative;
    z-index: var(--layer-base);
  }

  /* Mobile/Desktop media visibility */

  .hero__media-wrapper--mobile {
    display: none;
  }

  .hero__media-wrapper--desktop {
    display: block;
  }

  @media screen and (max-width: 749px) {
    .hero__media-wrapper--desktop {
      display: none;
    }

    .hero__media-wrapper--mobile {
      display: block;
    }

    .hero__media-grid {
      grid-template-columns: repeat(var(--hero-media-count-mobile, 1), 1fr);
    }

    /* Mobile stacking */
    .hero--stack-mobile .hero__media-grid {
      grid-template-columns: 1fr;
      grid-template-rows: repeat(var(--hero-media-count-mobile, 1), calc(100% / var(--hero-media-count-mobile, 1)));
    }
  }

  .hero__link {
    position: absolute;
    inset: 0;
    grid-column: 1 / -1;
  }

  .hero__media-grid,
  .hero__content-wrapper {
    pointer-events: none;

    :is(a, button, input, textarea, select, details, summary) {
      pointer-events: auto;
    }
  }

  .hero__content-wrapper--design-mode * {
    pointer-events: auto;
  }

  .hero[data-blur-shadow='true'] {
    --blurred-reflection-filter-saturate: saturate(1.5);
    --blurred-reflection-mask-image: linear-gradient(to bottom, #000 0%, #000 60%, transparent 100%);
    --blurred-reflection-box-shadow: rgb(0 0 0 / 5%) 0 0 1rem;
    --blurred-reflection-filter-blur: blur(20px);
    --blurred-reflection-scale: scale(2, 1.25);
    --blurred-reflection-padding-block-end: 60px;
  }

  .hero[data-blur-shadow='true'] .hero__container::before {
    content: '';
    position: absolute;
    inset: 0;
    box-shadow: var(--blurred-reflection-box-shadow);
    mix-blend-mode: overlay;
    pointer-events: none;
    z-index: -1;
  }

  .hero__blurred-image {
    position: absolute;
    inset: 0;
    z-index: -1;
    mask-image: var(--blurred-reflection-mask-image);
    filter: var(--blurred-reflection-filter-saturate);
    pointer-events: none;
    transform: translateY(50%);
    overflow: hidden;
  }

  .hero__blurred-image--desktop {
    display: none;

    @media screen and (min-width: 750px) {
      display: block;
    }
  }

  .hero__blurred-image--mobile {
    display: block;

    @media screen and (min-width: 750px) {
      display: none;
    }
  }

  .hero__blurred-image img,
  .hero__blurred-image svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    filter: var(--blurred-reflection-filter-blur);
    opacity: var(--blur-opacity);
    transform: var(--blurred-reflection-scale);
    padding-block-end: var(--blurred-reflection-padding-block-end);

    &:not(:only-child) {
      width: 50%;

      &:last-child {
        right: 0;
        left: auto;
      }
    }
  }
/* END_SECTION:hero */

/* START_SECTION:honest-about-believe (INDEX:81) */
.hab-believe .hab-inner { position: relative; z-index: 1; max-width: 1280px; margin: 0 auto; }

  /* Mobile: stacked — heading on top (centered), cards below */
  .hab-believe .hab-layout { display: flex; flex-direction: column; gap: 48px; }
  .hab-believe .hab-head { text-align: center; }
  .hab-believe .hab-grid { display: flex; flex-direction: column; gap: 44px; }

  /* Desktop: big heading left, row of badge cards right (goPure "love us") */
  @media (min-width: 750px) {
    .hab-believe .hab-layout { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 64px; align-items: center; }
    .hab-believe .hab-head { text-align: left; }
    .hab-believe .hab-head .he-block-eyebrow,
    .hab-believe .hab-head .he-block-heading,
    .hab-believe .hab-head .he-block-subheading,
    .hab-believe .hab-head .he-block-subtext { text-align: left; }
    .hab-believe .hab-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; }
  }

  .hab-believe .hab-belief { text-align: center; display: flex; flex-direction: column; align-items: center; }

  /* Metallic scalloped seal badge */
  .hab-believe .hab-badge { position: relative; width: 120px; height: 120px; margin-bottom: 22px; }
  .hab-believe .hab-badge .hab-seal { width: 100%; height: 100%; display: block; filter: drop-shadow(0 10px 16px rgba(48, 36, 96, 0.22)); }
  .hab-believe .hab-badge .hab-ic { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
  .hab-believe .hab-badge .hab-ic::before { content: ""; position: absolute; width: 78px; height: 78px; border-radius: 50%; border: 2px solid #3a2d6b; opacity: 0.85; }
  .hab-believe .hab-badge .hab-ic svg { position: relative; width: 54px; height: 54px; stroke: #3a2d6b; }

  .hab-believe .hab-num { font-family: var(--font-accent--family, var(--font-body--family)); font-size: 14px; font-weight: 700; color: #58468b; letter-spacing: 0.14em; margin: 0 0 8px; }
  .hab-believe .hab-title { font-family: var(--font-heading--family); font-size: 20px; font-weight: 700; line-height: 1.25; color: #000000; margin: 0 0 10px; }
  .hab-believe .hab-bbody { font-family: var(--font-body--family); font-size: 15px; line-height: 1.55; color: #6B7280; margin: 0; max-width: 30ch; }

  @media (prefers-reduced-motion: no-preference) {
    .hab-believe .hab-fade { opacity: 0; transform: translateY(16px); transition: opacity 0.6s ease, transform 0.6s ease; }
    .hab-believe .hab-fade.is-in { opacity: 1; transform: none; }
  }
/* END_SECTION:honest-about-believe */

/* START_SECTION:honest-about-cta (INDEX:82) */
.hab-cta { text-align: center; }
  .hab-cta .hab-inner { position: relative; z-index: 1; max-width: 660px; margin: 0 auto; }
  .hab-cta .hab-btns { display: flex; flex-direction: column; gap: 12px; align-items: stretch; max-width: 360px; margin: 28px auto 0; }
  @media (min-width: 600px) { .hab-cta .hab-btns { flex-direction: row; justify-content: center; max-width: none; } }
  .hab-cta .hab-btn {
    display: inline-flex; align-items: center; justify-content: center;
    font-family: var(--font-heading--family); font-size: 16px; font-weight: 700;
    padding: 16px 32px; border-radius: 999px; text-decoration: none; cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.18s ease; border: 2px solid transparent;
  }
  .hab-cta .hab-btn--primary { background: #58468b; color: #ffffff; border-color: #58468b; }
  @media (hover: hover) { .hab-cta .hab-btn--primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(88, 70, 139, 0.28); } }
  .hab-cta .hab-btn--secondary { background: transparent; color: #000000; border-color: #000000; }
  @media (hover: hover) { .hab-cta .hab-btn--secondary:hover { background: #000000; color: #ffffff; } }
  .hab-cta .hab-btn--link { background: transparent; color: #58468b; border: none; text-decoration: underline; }

  @media (prefers-reduced-motion: no-preference) {
    .hab-cta .hab-fade { opacity: 0; transform: translateY(16px); transition: opacity 0.6s ease, transform 0.6s ease; }
    .hab-cta .hab-fade.is-in { opacity: 1; transform: none; }
  }
/* END_SECTION:honest-about-cta */

/* START_SECTION:honest-about-hero (INDEX:83) */
/* Mobile: stacked — text on top (centered), image below flush to bottom */
  .hab-hero .hab-grid { display: flex; flex-direction: column; }
  .hab-hero .hab-copy { padding: 56px 22px 28px; text-align: center; }
  .hab-hero .hab-media { line-height: 0; }
  .hab-hero .hab-media img { display: block; width: 100%; height: auto; }
  .hab-hero .hab-media--ph {
    line-height: normal; display: flex; align-items: center; justify-content: center;
    aspect-ratio: 16 / 9; color: #9bb6dd;
  }
  .hab-hero .hab-media--ph svg { width: 45%; height: 45%; opacity: 0.5; }

  /* Desktop: 2-col, text left (centered vertically), image right flush bottom */
  @media (min-width: 750px) {
    .hab-hero .hab-grid {
      display: grid;
      grid-template-columns: 1.12fr 0.88fr;
      align-items: end;
      min-height: 480px;
      max-width: 1800px;
      margin: 0 auto;
    }
    .hab-hero .hab-copy {
      align-self: center;
      text-align: left;
      padding: 48px 24px 48px 48px;
      max-width: 820px;
      margin-left: 80px;
    }
    .hab-hero .hab-media { align-self: end; height: 100%; display: flex; align-items: flex-end; }
    .hab-hero .hab-media img { width: 100%; height: auto; object-fit: contain; object-position: bottom right; }
    /* Chrome blocks left-aligned on desktop (shared class centers by default) */
    .hab-hero .hab-copy .he-block-eyebrow,
    .hab-hero .hab-copy .he-block-heading,
    .hab-hero .hab-copy .he-block-subheading,
    .hab-hero .hab-copy .he-block-subtext { text-align: left; }
    .hab-hero .hab-copy .he-block-subtext p { max-width: none; margin-left: 0; margin-right: 0; }
  }

  @media (prefers-reduced-motion: no-preference) {
    .hab-hero .hab-fade { opacity: 0; transform: translateY(16px); transition: opacity 0.6s ease, transform 0.6s ease; }
    .hab-hero .hab-fade.is-in { opacity: 1; transform: none; }
  }
/* END_SECTION:honest-about-hero */

/* START_SECTION:honest-about-promise (INDEX:84) */
.hab-promise { text-align: center; }
  .hab-promise .hab-inner { max-width: 520px; margin: 0 auto; }
  .hab-promise .he-block-subtext p { max-width: 460px; margin-left: auto; margin-right: auto; }
  @media (prefers-reduced-motion: no-preference) {
    .hab-promise .hab-fade { opacity: 0; transform: translateY(16px); transition: opacity 0.6s ease, transform 0.6s ease; }
    .hab-promise .hab-fade.is-in { opacity: 1; transform: none; }
  }
/* END_SECTION:honest-about-promise */

/* START_SECTION:honest-about-quote (INDEX:85) */
.hab-quote-sec { text-align: center; color: #ffffff; }
  .hab-quote-sec::before {
    content: ""; position: absolute; top: -120px; right: -120px;
    width: 360px; height: 360px; border-radius: 100%;
    background: rgba(255,255,255,0.06); pointer-events: none;
  }
  .hab-quote-sec::after {
    content: ""; position: absolute; bottom: -160px; left: -100px;
    width: 320px; height: 320px; border-radius: 100%;
    background: rgba(255,255,255,0.05); pointer-events: none;
  }
  .hab-quote-sec .hab-inner { position: relative; z-index: 1; max-width: 920px; margin: 0 auto; }

  .hab-quote-sec .hab-mark {
    font-family: var(--font-heading--family); font-size: 64px; line-height: 1;
    color: rgba(255,255,255,0.35); margin: 0 0 8px;
  }
  @media (min-width: 750px) { .hab-quote-sec .hab-mark { font-size: 88px; } }

  /* Chrome blocks render white on this dark band */
  .hab-quote-sec .he-block-heading,
  .hab-quote-sec .he-block-subtext { text-align: center; }
  .hab-quote-sec .he-block-subtext p { max-width: 640px; margin-left: auto; margin-right: auto; opacity: 0.92; }

  @media (prefers-reduced-motion: no-preference) {
    .hab-quote-sec .hab-fade { opacity: 0; transform: translateY(16px); transition: opacity 0.6s ease, transform 0.6s ease; }
    .hab-quote-sec .hab-fade.is-in { opacity: 1; transform: none; }
  }
/* END_SECTION:honest-about-quote */

/* START_SECTION:honest-about-story (INDEX:86) */
.hab-story .hab-inner { max-width: 1100px; margin: 0 auto; }
  .hab-story .hab-grid { display: flex; flex-direction: column; gap: 32px; }
  @media (min-width: 750px) {
    .hab-story .hab-grid { display: grid; grid-template-columns: 45fr 55fr; gap: 56px; align-items: center; }
    .hab-story.hab-img-right .hab-grid { grid-template-columns: 55fr 45fr; }
    .hab-story.hab-img-right .hab-media { order: 2; }
  }
  .hab-story .hab-media { border-radius: 20px; background: #efeafb; padding: 16px; }
  @media (min-width: 750px) { .hab-story .hab-media { padding: 22px; } }
  .hab-story .hab-media img { width: 100%; display: block; object-fit: cover; aspect-ratio: 4 / 5; border-radius: 12px; }
  .hab-story .hab-media--ph { display: flex; align-items: center; justify-content: center; aspect-ratio: 4 / 5; }
  .hab-story .hab-media--ph svg { width: 55%; height: 55%; opacity: 0.4; }

  .hab-story .hab-copy .he-block-eyebrow,
  .hab-story .hab-copy .he-block-heading,
  .hab-story .hab-copy .he-block-subheading,
  .hab-story .hab-copy .he-block-subtext { text-align: left; }
  .hab-story .hab-copy .he-block-subtext p { max-width: none; margin-left: 0; margin-right: 0; }

  @media (prefers-reduced-motion: no-preference) {
    .hab-story .hab-fade { opacity: 0; transform: translateY(16px); transition: opacity 0.6s ease, transform 0.6s ease; }
    .hab-story .hab-fade.is-in { opacity: 1; transform: none; }
  }
/* END_SECTION:honest-about-story */

/* START_SECTION:honest-about (INDEX:87) */
.honest-about { --hab-accent: #58468b; --hab-gray: #6B7280; --hab-eyebrow: #9B9790; }
  .honest-about * { box-sizing: border-box; }
  .honest-about .hab-inner { max-width: 1100px; margin: 0 auto; padding-left: 22px; padding-right: 22px; }
  @media (min-width: 750px) {
    .honest-about .hab-inner { padding-left: 40px; padding-right: 40px; }
  }

  /* Shared eyebrow / heading / body atoms */
  .honest-about .hab-eyebrow {
    font-family: var(--font-accent--family, var(--font-body--family));
    font-size: 12px; font-weight: 700;
    letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--hab-eyebrow);
    margin: 0 0 16px;
  }
  .honest-about .hab-h1,
  .honest-about .hab-h2 {
    font-family: var(--font-heading--family);
    font-weight: 700; line-height: 1.1; letter-spacing: -0.02em;
    color: #000000; margin: 0;
  }
  .honest-about .hab-h1 { font-size: 34px; }
  .honest-about .hab-h2 { font-size: 28px; }
  @media (min-width: 750px) {
    .honest-about .hab-h1 { font-size: 56px; }
    .honest-about .hab-h2 { font-size: 38px; }
  }
  .honest-about .hab-h1 em,
  .honest-about .hab-h2 em { font-style: italic; color: var(--hab-accent); }
  .honest-about .hab-body p {
    font-family: var(--font-body--family);
    font-size: 17px; line-height: 1.6; color: #000000; margin: 0 0 18px;
  }
  .honest-about .hab-body p:last-child { margin-bottom: 0; }
  .honest-about .hab-body strong { font-weight: 600; }

  /* ── 1. HERO ─────────────────────────────────────────────── */
  .honest-about .hab-hero {
    text-align: center;
    padding: 110px 0;
  }
  @media (min-width: 750px) { .honest-about .hab-hero { padding: 180px 0; } }
  .honest-about .hab-hero .hab-hero-copy { max-width: 800px; margin: 0 auto; }
  .honest-about .hab-hero-subhead {
    font-family: var(--font-body--family);
    font-size: 18px; line-height: 1.6; color: var(--hab-gray);
    max-width: 600px; margin: 24px auto 0;
  }
  @media (min-width: 750px) { .honest-about .hab-hero-subhead { font-size: 20px; } }

  /* ── 2. STORY (2-col) ────────────────────────────────────── */
  .honest-about .hab-story { padding: 0 0 72px; }
  @media (min-width: 750px) { .honest-about .hab-story { padding: 0 0 110px; } }
  .honest-about .hab-story-grid {
    display: flex;
    flex-direction: column;
    gap: 32px;
  }
  @media (min-width: 750px) {
    .honest-about .hab-story-grid {
      display: grid;
      grid-template-columns: 45fr 55fr;
      gap: 56px;
      align-items: center;
    }
  }
  .honest-about .hab-story-img {
    border-radius: 16px;
    overflow: hidden;
    background: #f7f8fa;
    aspect-ratio: 4 / 5;
  }
  .honest-about .hab-story-img img {
    width: 100%; height: 100%; object-fit: cover; display: block;
  }
  .honest-about .hab-story-img--placeholder {
    display: flex; align-items: center; justify-content: center;
    color: #9B9790;
  }
  .honest-about .hab-story-img--placeholder svg { width: 60%; height: 60%; opacity: 0.5; }

  /* ── 3. WHAT WE BELIEVE (3-block) ────────────────────────── */
  .honest-about .hab-beliefs {
    background: {{ section.settings.beliefs_bg }};
    padding: 64px 0;
  }
  @media (min-width: 750px) { .honest-about .hab-beliefs { padding: 88px 0; } }
  .honest-about .hab-beliefs-head { text-align: center; margin-bottom: 40px; }
  @media (min-width: 750px) { .honest-about .hab-beliefs-head { margin-bottom: 56px; } }
  .honest-about .hab-beliefs-grid {
    display: flex;
    flex-direction: column;
    gap: 32px;
  }
  @media (min-width: 750px) {
    .honest-about .hab-beliefs-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 40px;
    }
  }
  .honest-about .hab-belief-num {
    font-family: var(--font-accent--family, var(--font-body--family));
    font-size: 16px; font-weight: 700;
    color: var(--hab-accent);
    letter-spacing: 0.08em;
    margin: 0 0 10px;
  }
  .honest-about .hab-belief-title {
    font-family: var(--font-heading--family);
    font-size: 22px; font-weight: 700; line-height: 1.25;
    color: #000000; margin: 0 0 8px;
  }
  .honest-about .hab-belief-body {
    font-family: var(--font-body--family);
    font-size: 16px; line-height: 1.55; color: var(--hab-gray); margin: 0;
  }

  /* ── 4. SOFT CTA ─────────────────────────────────────────── */
  .honest-about .hab-cta {
    text-align: center;
    padding: 88px 0;
  }
  @media (min-width: 750px) { .honest-about .hab-cta { padding: 130px 0; } }
  .honest-about .hab-cta-inner { max-width: 640px; margin: 0 auto; }
  .honest-about .hab-cta-body {
    font-family: var(--font-body--family);
    font-size: 17px; line-height: 1.6; color: #000000;
    margin: 20px 0 32px;
  }
  @media (min-width: 750px) { .honest-about .hab-cta-body { font-size: 18px; } }
  .honest-about .hab-cta-btns {
    display: flex; flex-direction: column; gap: 12px;
    align-items: stretch;
    max-width: 360px; margin: 0 auto;
  }
  @media (min-width: 600px) {
    .honest-about .hab-cta-btns { flex-direction: row; justify-content: center; max-width: none; }
  }
  .honest-about .hab-btn {
    display: inline-flex; align-items: center; justify-content: center;
    font-family: var(--font-heading--family);
    font-size: 16px; font-weight: 700;
    padding: 16px 32px; border-radius: 999px;
    text-decoration: none; cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
    border: 2px solid transparent;
  }
  .honest-about .hab-btn--primary {
    background: var(--hab-accent); color: #ffffff; border-color: var(--hab-accent);
  }
  @media (hover: hover) {
    .honest-about .hab-btn--primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(88, 70, 139, 0.28); }
  }
  .honest-about .hab-btn--secondary {
    background: transparent; color: #000000; border-color: #000000;
  }
  @media (hover: hover) {
    .honest-about .hab-btn--secondary:hover { background: #000000; color: #ffffff; }
  }

  /* ── Fade-in on scroll (disabled for reduced-motion) ─────── */
  @media (prefers-reduced-motion: no-preference) {
    .honest-about .hab-fade {
      opacity: 0;
      transform: translateY(16px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }
    .honest-about .hab-fade.is-in {
      opacity: 1;
      transform: none;
    }
  }
/* END_SECTION:honest-about */

/* START_SECTION:honest-guarantee (INDEX:88) */
.honest-guarantee .hguarantee-image { border-radius: 14px; overflow: hidden; }
  .honest-guarantee .hguarantee-image img,
  .honest-guarantee .hguarantee-image video { display: block; width: 100%; height: 100%; object-fit: cover; }

  .honest-guarantee .hguarantee-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto;
    align-items: center;
  }
  @media (min-width: 750px) {
    .honest-guarantee .hguarantee-row { grid-template-columns: 0.85fr 1.15fr; gap: 64px; }
  }

  .honest-guarantee .hguarantee-num { text-align: center; }
  .honest-guarantee .hguarantee-num-big {
    font-family: var(--font-heading--family);
    font-weight: 700;
    line-height: 0.82;
    letter-spacing: -0.05em;
    font-variant-numeric: tabular-nums;
  }
  .honest-guarantee .hguarantee-num-unit {
    font-family: var(--font-heading--family);
    font-weight: 700;
    margin-top: 10px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }
  .honest-guarantee .hguarantee-num-sub {
    font-family: var(--font-accent--family);
    font-size: 12px; font-weight: 700;
    letter-spacing: 0.16em; text-transform: uppercase;
    color: #F23440;
    margin-top: 16px;
  }

  .honest-guarantee .hguarantee-card {
    background: #FAF8F4;
    border: 1px solid rgba(12, 12, 12, 0.08);
    box-shadow: 0 1px 2px rgba(12, 12, 12, 0.04), 0 8px 24px rgba(12, 12, 12, 0.04);
    border-radius: 16px;
    padding: 28px 24px;
  }
  @media (min-width: 750px) {
    .honest-guarantee .hguarantee-card { padding: 36px 32px; }
  }
  .honest-guarantee .hguarantee-card-title {
    font-family: var(--font-heading--family);
    font-size: 24px; font-weight: 700;
    color: #0C0C0C; margin: 0 0 22px;
    line-height: 1.25;
  }
  .honest-guarantee .hguarantee-card-title em { color: #F23440; font-style: italic; }
  @media (min-width: 750px) { .honest-guarantee .hguarantee-card-title { font-size: 28px; } }

  .honest-guarantee .hguarantee-promises { display: flex; flex-direction: column; }
  .honest-guarantee .hguarantee-promise {
    padding: 16px 0;
    border-bottom: 1px solid #E8E2D9;
    display: flex; align-items: center; gap: 16px;
    font-family: var(--font-body--family);
    font-size: 16px; line-height: 1.5;
    color: #6B6963;
  }
  @media (min-width: 750px) { .honest-guarantee .hguarantee-promise { font-size: 17px; } }
  .honest-guarantee .hguarantee-promise:last-child { border-bottom: none; }
  .honest-guarantee .hguarantee-promise-icon {
    flex-shrink: 0;
    width: 40px; height: 40px;
    border-radius: 50%;
    background: rgba(242, 52, 64, 0.12);
    display: flex; align-items: center; justify-content: center;
    font-size: 18px;
  }
  .honest-guarantee .hguarantee-promise-text { flex: 1; }
  .honest-guarantee .hguarantee-promise-text p { margin: 0; }
  .honest-guarantee .hguarantee-promise-text strong {
    display: block;
    color: #0C0C0C;
    font-weight: 700;
    margin-bottom: 2px;
    font-size: 17px;
    font-family: var(--font-heading--family);
  }
  @media (min-width: 750px) {
    .honest-guarantee .hguarantee-promise-text strong { font-size: 18px; }
  }

  .honest-guarantee .hguarantee-reframe {
    background: rgba(242, 52, 64, 0.08);
    border: 1px solid rgba(242, 52, 64, 0.20);
    border-radius: 12px;
    padding: 24px 28px;
    margin: 36px auto 0;
    max-width: 640px;
    text-align: center;
  }
  .honest-guarantee .hguarantee-reframe-text {
    font-family: var(--font-heading--family);
    font-size: 20px; font-weight: 700;
    line-height: 1.4;
    color: #0C0C0C;
    margin: 0 0 8px;
  }
  @media (min-width: 750px) { .honest-guarantee .hguarantee-reframe-text { font-size: 24px; } }
  .honest-guarantee .hguarantee-reframe-text em { color: #F23440; font-style: italic; }
  .honest-guarantee .hguarantee-reframe-sub {
    font-family: var(--font-body--family);
    font-size: 14px; color: #6B6963; margin: 0;
  }
  @media (min-width: 750px) { .honest-guarantee .hguarantee-reframe-sub { font-size: 15px; } }
/* END_SECTION:honest-guarantee */

/* START_SECTION:honest-problem (INDEX:89) */
/* Defensive overflow guard — same pattern as the other v2 sections */
  .honest-problem { overflow-x: clip; max-width: 100vw; box-sizing: border-box; }
  .honest-problem * { box-sizing: border-box; }

  /* Reasons list ─────────────────────────────────────────────────── */
  .honest-problem .hprob-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
    max-width: 720px;
    margin: 0 auto;
  }
  @media (min-width: 750px) {
    .honest-problem .hprob-list { gap: 32px; max-width: 760px; }
  }

  .honest-problem .hprob-reason {
    display: grid;
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 18px;
    align-items: start;
  }
  @media (min-width: 750px) {
    .honest-problem .hprob-reason {
      grid-template-columns: 44px minmax(0, 1fr);
      gap: 22px;
    }
  }

  .honest-problem .hprob-num {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(242, 52, 64, 0.14);
    color: #F23440;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading--family);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1;
    margin-top: 4px;
    flex-shrink: 0;
    font-variant-numeric: tabular-nums;
  }
  @media (min-width: 750px) {
    .honest-problem .hprob-num {
      width: 36px;
      height: 36px;
      font-size: 15px;
      margin-top: 6px;
    }
  }

  .honest-problem .hprob-reason-body { min-width: 0; }
  .honest-problem .hprob-reason-title {
    margin: 0 0 6px;
    font-family: var(--font-heading--family);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.01em;
    color: #0C0C0C;
  }
  @media (min-width: 750px) {
    .honest-problem .hprob-reason-title { font-size: 20px; margin-bottom: 8px; }
  }
  .honest-problem .hprob-reason-text {
    margin: 0;
    font-family: var(--font-body--family);
    font-size: 15px;
    line-height: 1.55;
    color: #6B6963;
  }
  @media (min-width: 750px) {
    .honest-problem .hprob-reason-text { font-size: 16px; line-height: 1.6; }
  }
  .honest-problem .hprob-reason-text strong { color: #0C0C0C; font-weight: 600; }
  .honest-problem .hprob-reason-text em { font-style: normal; color: #F23440; font-weight: 600; }

  /* Reframe callout ──────────────────────────────────────────────── */
  .honest-problem .hprob-reframe {
    margin: 36px auto 0;
    max-width: 720px;
    background: #F2EDE7;
    border-radius: 14px;
    padding: 28px 24px;
  }
  @media (min-width: 750px) {
    .honest-problem .hprob-reframe {
      margin-top: 48px;
      padding: 36px 36px;
      max-width: 760px;
    }
  }
  .honest-problem .hprob-reframe-text {
    margin: 0;
    font-family: var(--font-body--family);
    font-size: 16px;
    line-height: 1.6;
    color: #0C0C0C;
    text-align: center;
  }
  @media (min-width: 750px) {
    .honest-problem .hprob-reframe-text { font-size: 17px; line-height: 1.65; }
  }
  .honest-problem .hprob-reframe-text strong { font-weight: 600; }
  .honest-problem .hprob-reframe-text em {
    font-style: normal;
    color: #F23440;
    font-weight: 700;
  }
/* END_SECTION:honest-problem */

/* START_SECTION:honest-protocol (INDEX:90) */
/* ── Protocol section base ──────────────────────────────────── */
  /* Constrain this section's content to 1100px (the original
     pre-global-change width). The global .he-section-inner no longer
     has a max-width, so each section that needs one declares it. */
  .honest-protocol .he-section-inner {
    max-width: 1100px;
  }
  .honest-protocol .hprotocol-main {
    max-width: 1100px;
    margin: 0 auto;
  }

  /* ── Hero video/image ───────────────────────────────────────── */
  .honest-protocol .hprotocol-hero {
    background: linear-gradient(135deg, #2a2020 0%, #4a3030 100%);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 12px 40px rgba(12, 12, 12, 0.12);
    aspect-ratio: 9 / 14;
    max-width: 400px;
    margin: 0 auto;
  }
  .honest-protocol .hprotocol-hero img,
  .honest-protocol .hprotocol-hero video,
  .honest-protocol .hprotocol-hero svg {
    width: 100%; height: 100%; object-fit: cover; display: block;
  }
  /* Play button overlay */
  .honest-protocol .hprotocol-play {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 64px; height: 64px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    pointer-events: none;
    z-index: 2;
  }
  .honest-protocol .hprotocol-play svg {
    width: 24px; height: 24px; margin-left: 3px;
  }

  /* ── Desktop: 2-col split layout ────────────────────────────── */
  @media (min-width: 750px) {
    .honest-protocol .hprotocol-split {
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      gap: 48px;
      align-items: start;
      max-width: 1100px;
      margin: 0 auto;
    }
    .honest-protocol .hprotocol-hero {
      aspect-ratio: 9 / 16;
      max-width: none;
      border-radius: 20px;
      margin: 0;
      height: 100%;
      min-height: 420px;
    }
    .honest-protocol .hprotocol-right {
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
  }

  /* ── Chrome (heading) inside right column on desktop ─────── */
  .honest-protocol .hprotocol-right-chrome {
    margin-bottom: 28px;
  }

  /* ── Step cards ─────────────────────────────────────────────── */
  .honest-protocol .hprotocol-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  /* Mobile: horizontal card (image left, text right) */
  .honest-protocol .hprotocol-step {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 16px;
    align-items: start;
  }

  .honest-protocol .hprotocol-step-img {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    background: #E8E2D9;
  }
  .honest-protocol .hprotocol-step-img img {
    width: 100%; height: 100%; object-fit: cover; display: block;
  }

  /* Numbered badge on step image */
  .honest-protocol .hprotocol-step-num {
    position: absolute;
    top: 8px; left: 8px;
    width: 28px; height: 28px;
    border-radius: 50%;
    background: var(--hprotocol-num-bg, #0C0C0C);
    color: #FAF8F4;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-heading--family);
    font-size: 14px; font-weight: 700; line-height: 1;
    z-index: 2;
  }

  .honest-protocol .hprotocol-step-text h3 {
    margin: 0 0 6px;
    font-family: var(--font-heading--family);
    font-size: 22px; font-weight: 700; line-height: 1.2;
    color: #0C0C0C;
  }
  .honest-protocol .hprotocol-step-text p {
    margin: 0;
    font-family: var(--font-body--family);
    font-size: 15px; line-height: 1.55;
    color: #6B6963;
  }
  .honest-protocol .hprotocol-step-text p strong { color: #0C0C0C; font-weight: 600; }

  /* Desktop: 3 fixed-width cards centered (each card = image width) */
  @media (min-width: 750px) {
    .honest-protocol .hprotocol-steps {
      display: flex;
      flex-direction: row;
      justify-content: center;
      gap: 32px;
      max-width: 1100px;
      margin-inline: auto;
    }
    .honest-protocol .hprotocol-step {
      display: flex;
      flex-direction: column;
      gap: 14px;
      flex: 0 0 300px;
      max-width: 300px;
    }
    .honest-protocol .hprotocol-step-img {
      aspect-ratio: 4 / 3;
      border-radius: 14px;
    }
    .honest-protocol .hprotocol-step-text h3 { font-size: 24px; }
    .honest-protocol .hprotocol-step-text p { font-size: 16px; }
  }

  /* ── Safety grid ────────────────────────────────────────────── */
  .honest-protocol .hprotocol-safety {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
  }
  @media (min-width: 750px) {
    .honest-protocol .hprotocol-safety { gap: 12px; max-width: 520px; }
  }

  .honest-protocol .hprotocol-safety-title {
    grid-column: 1 / -1;
    margin: 0 0 4px;
    font-family: var(--font-heading--family);
    font-size: 22px; font-weight: 700; line-height: 1.2;
    color: #0C0C0C;
    text-align: center;
  }
  @media (min-width: 750px) { .honest-protocol .hprotocol-safety-title { font-size: 24px; } }
  .honest-protocol .hprotocol-safety-title em { color: #F23440; font-style: italic; }

  .honest-protocol .hprotocol-safety-item {
    border: 1px solid rgba(12, 12, 12, 0.08);
    border-radius: 16px;
    box-shadow: 0 1px 2px rgba(12, 12, 12, 0.04), 0 8px 24px rgba(12, 12, 12, 0.04);
    padding: 14px 20px;
    display: grid;
    grid-template-columns: 28px 1fr;
    align-items: center;
    gap: 12px;
  }
  .honest-protocol .hprotocol-safety-icon {
    flex-shrink: 0;
    width: 28px; height: 28px;
    background: var(--hprotocol-safety-icon-bg, #F23440);
    color: #FAF8F4;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 14px; font-weight: 700;
  }
  .honest-protocol .hprotocol-safety-icon.is-no { background: rgba(12, 12, 12, 0.55); }
  .honest-protocol .hprotocol-safety-icon svg { width: 14px; height: 14px; display: block; }
  .honest-protocol .hprotocol-safety-text {
    margin: 0;
    font-family: var(--font-body--family);
    line-height: 1.4;
    color: #0C0C0C;
    font-weight: 600;
  }

  /* ── Sensation card ─────────────────────────────────────────── */
  .honest-protocol .hprotocol-sensation {
    max-width: 760px;
    margin: 32px auto 0;
    background: #FAF8F4;
    border: 1px solid rgba(12, 12, 12, 0.08);
    border-radius: 16px;
    box-shadow: 0 1px 2px rgba(12, 12, 12, 0.04), 0 8px 24px rgba(12, 12, 12, 0.04);
    overflow: hidden;
    padding: 22px 22px 8px;
  }
  @media (min-width: 750px) {
    .honest-protocol .hprotocol-sensation { padding: 28px 28px 12px; }
  }
  .honest-protocol .hprotocol-sens-title {
    margin: 0 0 12px;
    font-family: var(--font-heading--family);
    font-size: 20px; font-weight: 700; line-height: 1.2;
    color: #0C0C0C;
  }
  @media (min-width: 750px) {
    .honest-protocol .hprotocol-sens-title { font-size: 24px; margin-bottom: 16px; }
  }
  .honest-protocol .hprotocol-sens-title em { color: #F23440; font-style: italic; }

  .honest-protocol .hprotocol-sens-row {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 0;
    border-top: 1px solid rgba(12, 12, 12, 0.06);
  }
  .honest-protocol .hprotocol-sens-row:first-of-type { border-top: none; }

  .honest-protocol .hprotocol-sens-icon {
    flex-shrink: 0;
    width: 38px; height: 38px;
    border-radius: 50%;
    background: var(--sens-icon-bg, rgba(242, 52, 64, 0.10));
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 18px;
    line-height: 1;
    margin-top: 2px;
  }
  .honest-protocol .hprotocol-sens-body { flex: 1; min-width: 0; }
  .honest-protocol .hprotocol-sens-row-title {
    margin: 0 0 4px;
    font-family: var(--font-heading--family);
    font-size: 17px; font-weight: 700; line-height: 1.25;
    color: #0C0C0C;
  }
  @media (min-width: 750px) {
    .honest-protocol .hprotocol-sens-row-title { font-size: 19px; }
  }
  .honest-protocol .hprotocol-sens-row-text {
    margin: 0;
    font-family: var(--font-body--family);
    font-size: 14px; line-height: 1.5;
    color: #6B6963;
  }
  @media (min-width: 750px) {
    .honest-protocol .hprotocol-sens-row-text { font-size: 15px; }
  }
/* END_SECTION:honest-protocol */

/* START_SECTION:honest-trans (INDEX:91) */
.honest-trans { overflow-x: clip; max-width: 100vw; box-sizing: border-box; }
  .honest-trans * { box-sizing: border-box; }

  .honest-trans .htrans-card {
    background: #FAF8F4;
    border-radius: 24px;
    padding: 16px 16px 28px;
    box-shadow: 0 1px 2px rgba(12, 12, 12, 0.04), 0 8px 24px rgba(12, 12, 12, 0.04);
    overflow: hidden;
    text-align: center;
    width: 100%;
    max-width: 760px;
    margin: 0 auto;
  }
  @media (min-width: 750px) {
    .honest-trans .htrans-card { padding: 24px 24px 36px; }
  }

  .honest-trans .htrans-feat-img {
    aspect-ratio: 1 / var(--htrans-img-ratio, 1);
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 16px;
    background: linear-gradient(120deg, #ddc7b8 0%, #c2a98f 100%);
    position: relative;
  }
  .honest-trans .htrans-feat-img:last-of-type { margin-bottom: 28px; }
  .honest-trans .htrans-feat-img img,
  .honest-trans .htrans-feat-img video,
  .honest-trans .htrans-feat-img svg { width: 100%; height: 100%; object-fit: cover; display: block; }
  .honest-trans .htrans-feat-stat {
    position: absolute;
    top: 16px; left: 16px;
    background: rgba(12, 12, 12, 0.85);
    color: #FAF8F4;
    padding: 8px 14px;
    border-radius: 999px;
    font-family: var(--font-accent--family);
    font-size: 12px; font-weight: 700;
    letter-spacing: 0.14em; text-transform: uppercase;
  }
  .honest-trans .htrans-feat-stat strong { color: #F23440; }

  .honest-trans .htrans-feat-quote {
    font-family: var(--font-body--family);
    font-size: 16px;
    line-height: 1.55;
    color: #6B6963;
    max-width: 48ch;
    margin: 0 auto;
  }
  @media (min-width: 750px) { .honest-trans .htrans-feat-quote { font-size: 21px; } }
  .honest-trans .htrans-feat-quote strong { color: #0C0C0C; font-weight: 600; }

  /* Ring charts — side by side, labels below */
  .honest-trans .htrans-rings {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 28px;
    padding: 24px;
    border: 1px solid rgba(12, 12, 12, 0.08);
    border-radius: 16px;
  }
  .honest-trans .htrans-ring-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
  }
  .honest-trans .htrans-ring {
    --percent: 0%;
    --ring-color: #F23440;
    width: 76px; height: 76px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    background:
      radial-gradient(closest-side, #FAF8F4 78%, transparent 79% 100%),
      conic-gradient(var(--ring-color) var(--percent), #E8E2D9 0);
    transition: background 0.05s linear;
  }
  @media (min-width: 750px) {
    .honest-trans .htrans-ring { width: 72px; height: 72px; }
  }
  .honest-trans .htrans-ring-num {
    font-family: var(--font-heading--family);
    font-size: 20px; font-weight: 700; line-height: 1;
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.02em;
    color: #0C0C0C;
  }
  .honest-trans .htrans-ring-unit { color: var(--ring-color, #F23440); }
  .honest-trans .htrans-ring-label {
    font-family: var(--font-body--family);
    font-size: 14px; font-weight: 700; line-height: 1.4;
    color: #0C0C0C;
  }
  @media (min-width: 750px) {
    .honest-trans .htrans-ring-label { font-size: 15px; }
  }

  /* Desktop split — 50/50 two-column layout */
  @media (min-width: 750px) {
    .honest-trans .htrans-split {
      display: grid;
      grid-template-columns: 1fr 1fr;
      grid-template-rows: auto auto 1fr;
      gap: 0;
      background: #FAF8F4;
      border-radius: 20px;
      overflow: hidden;
      max-width: 1240px;
      margin: 0 auto;
      border: 1px solid rgba(12, 12, 12, 0.08);
      box-shadow: 0 1px 2px rgba(12, 12, 12, 0.04), 0 8px 24px rgba(12, 12, 12, 0.04);
    }
    .honest-trans .htrans-chrome {
      grid-column: 1;
      grid-row: 1;
      padding: 40px 40px 0;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      text-align: center;
    }
    .honest-trans .htrans-card {
      display: contents;
      background: none;
      padding: 0;
      box-shadow: none;
      border-radius: 0;
      max-width: none;
      overflow: visible;
      text-align: center;
    }
    .honest-trans .htrans-feat-img {
      grid-column: 2;
      grid-row: 1 / -1;
      overflow: hidden;
      aspect-ratio: unset;
      border-radius: 0;
      margin-bottom: 0;
    }
    .honest-trans .htrans-feat-img img,
    .honest-trans .htrans-feat-img video {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .honest-trans .htrans-feat-quote {
      grid-column: 1;
      grid-row: 2;
      padding: 0 40px;
      margin: 16px 0 0;
      text-align: center;
    }
    .honest-trans .htrans-rings {
      grid-column: 1;
      grid-row: 3;
      margin: 24px 40px 36px;
      padding: 24px;
      align-self: end;
    }
  }
/* END_SECTION:honest-trans */

/* START_SECTION:honest-ugc (INDEX:92) */
.honest-ugc { position: relative; }

  .honest-ugc .hugc-inner { position: relative; z-index: 1; }

  .honest-ugc .hugc-band {
    position: relative;
    margin: 32px calc(var(--hugc-side-pad, 22px) * -1) 0;
    padding: 0;
  }
  @media (min-width: 750px) {
    /* Desktop: break out of section side-padding so the band + carousel
       go fully edge-to-edge across the viewport, matching homepage style. */
    .honest-ugc .hugc-band {
      margin-left: calc(50% - 50vw);
      margin-right: calc(50% - 50vw);
    }
  }
  .honest-ugc .hugc-bg-img {
    display: block;
    width: 100%;
    height: auto;
    pointer-events: none;
  }
  .honest-ugc .hugc-bg-img--mobile { display: block; }
  .honest-ugc .hugc-bg-img--desktop { display: none; }
  @media (min-width: 750px) {
    .honest-ugc .hugc-bg-img--mobile { display: none; }
    .honest-ugc .hugc-bg-img--desktop { display: block; }
  }
  .honest-ugc .hugc-band > .hugc-scroll-wrap {
    position: relative;
    z-index: 1;
    /* Pull cards up so they sit ON the image; only ~20px of card bottom extends below */
    margin-top: calc(-1 * (calc(54vw - 20px) * 14 / 9) + 20px);
  }
  @media (min-width: 750px) {
    .honest-ugc .hugc-band > .hugc-scroll-wrap {
      margin-top: -290px;
    }
  }
  @media (min-width: 1100px) {
    .honest-ugc .hugc-band > .hugc-scroll-wrap {
      margin-top: -322px;
    }
  }

  /* Chrome alignment override — center under .honest-ugc */
  .honest-ugc .he-block-eyebrow,
  .honest-ugc .he-block-heading,
  .honest-ugc .he-block-subheading,
  .honest-ugc .he-block-subtext { text-align: center; }

  /* Handle pill — styled as a "JOIN THE COMMUNITY" button per user
     reference (Obvi). Pill shape, solid border, bold uppercase text. */
  .honest-ugc .hugc-handle {
    display: inline-block;
    background: #FAF8F4;
    color: #000000;
    border: 2px solid #000000;
    padding: 16px 36px;
    border-radius: 999px;
    font-family: var(--font-heading--family);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    line-height: 1;
    margin: 8px auto 0;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.10);
  }
  @media (min-width: 750px) {
    .honest-ugc .hugc-handle { font-size: 16px; padding: 18px 42px; }
  }

  /* Carousel wrap — full-bleed scroll on mobile. Margins handled by
     the parent .hugc-band wrapper now. */
  .honest-ugc .hugc-scroll-wrap { position: relative; }
  @media (min-width: 750px) {
    /* Cards span the full band — no centering padding on sides */
    .honest-ugc .hugc-scroll-wrap { max-width: none; margin-left: auto; margin-right: auto; }
  }

  .honest-ugc .hugc-grid {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    overflow-y: visible;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    /* Symmetric side padding + scroll-padding so the first AND last
       cards can scroll-snap into the center of the viewport. */
    padding: 4px max(7.5vw, 18px) 12px;
    scroll-padding-inline: max(7.5vw, 18px);
  }
  .honest-ugc .hugc-grid::-webkit-scrollbar { display: none; }
  /* Desktop: stay a horizontal carousel (NOT a stacking grid).
     A grid orphans rows when card count doesn't divide evenly into
     columns (5 cards in a 4-col grid → orphan row of 1). Carousel
     keeps everything on one row regardless of count. */
  @media (min-width: 750px) {
    .honest-ugc .hugc-grid {
      gap: 20px;
      padding: 4px max(40px, 4vw) 12px;
      scroll-padding-inline: max(40px, 4vw);
    }
  }

  /* UGC card — Obvi-sized: smaller, more peek of next card */
  .honest-ugc .hugc-card {
    flex: 0 0 calc(54vw - 20px);
    max-width: 220px;
    scroll-snap-align: center;
    aspect-ratio: 9 / 14;
    background: #E8E2D9;
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    display: block;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.24s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.24s cubic-bezier(0.16, 1, 0.3, 1);
  }
  @media (hover: hover) {
    .honest-ugc .hugc-card:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0, 0, 0, 0.16); }
  }
  @media (min-width: 750px) {
    /* Smaller, fixed-size cards on desktop — Obvi-sized, ~5+ visible
       at once on a 1200px viewport, scrollable for the rest. */
    .honest-ugc .hugc-card {
      flex: 0 0 200px;
      max-width: 200px;
      scroll-snap-align: start;
    }
  }
  @media (min-width: 1100px) {
    .honest-ugc .hugc-card { flex-basis: 220px; max-width: 220px; }
  }
  .honest-ugc .hugc-card img,
  .honest-ugc .hugc-card video {
    width: 100%; height: 100%; object-fit: cover; display: block;
  }

  /* Platform badge — top-right, circular, brand color */
  .honest-ugc .hugc-badge {
    position: absolute;
    top: 10px; right: 10px;
    width: 32px; height: 32px;
    border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    color: #FAF8F4;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.18);
    z-index: 2;
  }
  .honest-ugc .hugc-badge svg { width: 16px; height: 16px; display: block; }
  .honest-ugc .hugc-badge--instagram { background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
  .honest-ugc .hugc-badge--tiktok { background: #000000; }
  .honest-ugc .hugc-badge--facebook { background: #1877f2; }
  @media (min-width: 750px) {
    .honest-ugc .hugc-badge { width: 36px; height: 36px; }
    .honest-ugc .hugc-badge svg { width: 18px; height: 18px; }
  }

  /* Carousel arrows. Sit OUTSIDE the .hugc-band so the bg image
     doesn't extend behind them — only behind the cards. Visible on
     both mobile + desktop now that the desktop layout is also a
     carousel (avoids orphan rows when card count ≠ multiple of 4). */
  .honest-ugc .hugc-arrows {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 12px;
  }
  .honest-ugc .hugc-arrow {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: rgba(250, 248, 244, 0.95);
    border: 1px solid rgba(0, 0, 0, 0.10);
    color: #000000;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    padding: 0;
  }
  .honest-ugc .hugc-arrow svg { width: 18px; height: 18px; display: block; }
  .honest-ugc .hugc-arrow:active { transform: scale(0.94); }

  /* Spacing under chrome before the carousel */
  .honest-ugc .hugc-handle-wrap { text-align: center; margin-top: 0; }
/* END_SECTION:honest-ugc */

/* START_SECTION:honest-why (INDEX:93) */
.honest-why .hwhy-image { border-radius: 14px; overflow: hidden; }
  .honest-why .hwhy-image img,
  .honest-why .hwhy-image video { display: block; width: 100%; height: 100%; object-fit: cover; }

  /* Stat hero — number + unit inline at same size */
  .honest-why .hwhy-stat-hero { text-align: center; margin: 0 auto; }
  .honest-why .hwhy-stat-num,
  .honest-why .hwhy-stat-pct {
    font-family: var(--font-heading--family);
    font-weight: 700;
    line-height: 0.85;
    letter-spacing: -0.05em;
    display: inline;
    font-variant-numeric: tabular-nums;
  }
  .honest-why .hwhy-stat-sub {
    margin: 24px auto 0;
    max-width: 540px;
    text-align: center;
    font-family: var(--font-body--family);
    font-size: 17px;
    line-height: 1.55;
    color: #6B6963;
  }
  .honest-why .hwhy-stat-sub strong { color: #000000; font-weight: 600; }
  .honest-why .hwhy-citation {
    display: block;
    margin-top: 14px;
    font-family: var(--font-accent--family);
    font-size: 11px;
    color: #9B9790;
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }
  @media (min-width: 750px) {
    .honest-why .hwhy-stat-sub { font-size: 17px; }
  }

  /* Fail cards */
  /* Fails grid top margin removed (was hardcoded 56/72) — spacing
     above the grid is now driven by the previous block's
     padding/gap_bottom slider. User has full control. */
  .honest-why .hwhy-fails {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 1100px;
    margin: 0 auto;
  }
  @media (min-width: 750px) {
    .honest-why .hwhy-fails { grid-template-columns: repeat(3, 1fr); gap: 20px; }
  }

  .honest-why .hwhy-fail {
    background: #FFFFFF;
    border: 1px solid rgba(12, 12, 12, 0.06);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 1px 2px rgba(12, 12, 12, 0.04), 0 8px 24px rgba(12, 12, 12, 0.04);
    display: flex; flex-direction: column;
  }
  .honest-why .hwhy-fail-img {
    position: relative;
    /* Was 4/3 (h = 75% of w). Now 5/3 (h = 60% of w) — 20% shorter
       per user feedback: image was too tall vs. card body. */
    aspect-ratio: 5/3;
    background: #EEEAF4;
    overflow: hidden;
  }
  .honest-why .hwhy-fail-img img,
  .honest-why .hwhy-fail-img svg { display: block; width: 100%; height: 100%; object-fit: cover; }
  .honest-why .hwhy-fail-img::after {
    content: '✕';
    position: absolute;
    top: 14px; right: 14px;
    width: 36px; height: 36px;
    border-radius: 50%;
    background: var(--hwhy-x-bg, #58468B);
    color: var(--hwhy-x-icon, #FAF8F4);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-heading--family);
    font-size: 16px; font-weight: 700;
    box-shadow: 0 4px 12px color-mix(in srgb, var(--hwhy-x-bg, #58468B) 28%, transparent);
  }

  .honest-why .hwhy-fail-body {
    padding: 22px;
    display: flex; flex-direction: column;
    gap: 10px;
    flex: 1;
  }
  .honest-why .hwhy-fail-num {
    align-self: flex-start;
    font-family: var(--font-accent--family);
    font-size: 12px; font-weight: 700;
    letter-spacing: 0.16em; text-transform: uppercase;
    padding: 5px 11px; border-radius: 999px;
    background: rgba(88, 70, 139, 0.08);
    color: #58468B;
    line-height: 1;
  }
  .honest-why .hwhy-fail-cat {
    margin: 2px 0 0;
    font-family: var(--font-heading--family);
    font-size: 19px; font-weight: 700; line-height: 1.25;
    color: #000000;
  }
  @media (min-width: 750px) { .honest-why .hwhy-fail-cat { font-size: 21px; } }
  .honest-why .hwhy-fail-verdict {
    margin: 0;
    font-family: var(--font-body--family);
    font-size: 16px; line-height: 1.55;
    color: #6B6963;
  }
  @media (min-width: 750px) { .honest-why .hwhy-fail-verdict { font-size: 17px; } }
  .honest-why .hwhy-fail-verdict strong { color: #000000; font-weight: 600; }

  /* Red-pill spec tag (with X icon) — was a grey divider in v1 */
  .honest-why .hwhy-fail-spec {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: auto;
    padding: 8px 14px 8px 8px;
    background: color-mix(in srgb, var(--hwhy-spec, #58468B) 8%, transparent);
    border-radius: 999px;
    align-self: flex-start;
  }
  .honest-why .hwhy-fail-spec-x {
    flex-shrink: 0;
    width: 22px; height: 22px; border-radius: 50%;
    background: color-mix(in srgb, var(--hwhy-spec, #58468B) 16%, transparent);
    color: var(--hwhy-spec, #58468B);
    display: inline-flex; align-items: center; justify-content: center;
    font-family: var(--font-heading--family);
    font-size: 12px; font-weight: 700; line-height: 1;
  }
  .honest-why .hwhy-fail-tag {
    font-family: var(--font-accent--family);
    font-size: 12px; font-weight: 700;
    letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--hwhy-spec, #58468B); line-height: 1.2;
  }
  @media (min-width: 750px) { .honest-why .hwhy-fail-tag { font-size: 13px; } }

  /* Reframe footer — top + bottom margins are now driven by the
     reframe block's padding sliders (was hardcoded 88px). */
  .honest-why .hwhy-reframe {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
  }
  .honest-why .hwhy-reframe-head :is(h1, h2, h3, p) {
    margin: 0;
    font-family: var(--font-heading--family);
    font-size: 26px; font-weight: 700;
    line-height: 1.22;
    letter-spacing: -0.015em;
    color: #000000;
  }
  @media (min-width: 750px) {
    .honest-why .hwhy-reframe-head :is(h1, h2, h3, p) { font-size: 36px; }
  }
  .honest-why .hwhy-reframe-head em { font-style: italic; color: #58468B; }
  .honest-why .hwhy-reframe-sub {
    margin: 14px 0 0;
    font-family: var(--font-body--family);
    font-size: 16px; line-height: 1.55;
    color: #6B6963;
  }
/* END_SECTION:honest-why */

/* START_SECTION:layered-slideshow (INDEX:94) */
.layered-slideshow-section {
    position: relative;
  }

  layered-slideshow-component {
    display: block;
    width: 100%;
  }

  .layered-slideshow__container {
    --radius: calc(var(--corner-radius, 1) * 1rem);
    --button-width: 56px;
    --border-color: var(--color-background);
    --inactive-tabs-width: calc((var(--total-tabs) - 1) * var(--button-width));
    --active-panel-width: calc(100cqi - var(--inactive-tabs-width));
    width: 100%;
    position: relative;
    container-type: inline-size;
    border-radius: var(--radius);
    overflow: hidden;
  }

  .layered-slideshow__container:not([size='auto']) {
    height: 100%;
  }

  .layered-slideshow__container[size='auto'] {
    height: auto;
  }

  @media screen and (min-width: 750px) {
    layered-slideshow-component {
      min-height: var(--layered-min-height-desktop, 0px);
    }
  }

  .layered-slideshow__tablist {
    display: grid;
    grid-template-columns: var(--active-tab);
    position: absolute;
    inset: 0;
    height: 100%;
    pointer-events: none;
    z-index: var(--layer-raised);
  }

  .layered-slideshow__tablist button {
    width: var(--button-width);
    height: 100%;
    pointer-events: all;
    opacity: 0;
    cursor: grab;
    border: none;
    background: transparent;
    padding: 0;
    position: relative;
    outline: none;
    transition: opacity 0.2s ease;
  }

  .layered-slideshow__tablist button:active {
    cursor: grabbing;
  }

  .layered-slideshow__tablist button[aria-selected='true'] {
    cursor: default;
  }

  .layered-slideshow__tablist button:focus-visible {
    opacity: 1;
  }

  .layered-slideshow__container[data-dragging] {
    cursor: grabbing;
  }

  .layered-slideshow__container[data-instant-transitions],
  .layered-slideshow__container:is([data-dragging], [data-instant-transitions])
    :is(
      .layered-slideshow__tablist,
      .layered-slideshow__panels,
      .layered-slideshow__panel-content,
      .layered-slideshow__content
    ) {
    transition: none;
  }

  .layered-slideshow__panels {
    display: grid;
    grid-template-columns: var(--active-tab);
    height: 100%;
    overflow: hidden;
  }

  .layered-slideshow__panel {
    position: relative;
    height: 100%;
    min-width: var(--button-width);
    border-radius: var(--radius);
    z-index: calc(var(--total-tabs) - var(--index));
  }

  .layered-slideshow__panel:first-child .layered-slideshow__panel-content {
    width: var(--active-panel-width);
    border-left: var(--border-width) solid var(--border-color);
  }

  .layered-slideshow__panel:not(:first-child) .layered-slideshow__content {
    padding-inline-start: calc((var(--radius) * 2) + var(--padding-inline-start, 0px));
  }

  .layered-slideshow__panel-content {
    border: var(--border-width) solid var(--border-color);
    border-left: none;
    border-radius: var(--radius);
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    overflow: hidden;
    width: calc(var(--active-panel-width) + (var(--radius) * 2));
  }

  .layered-slideshow__panel-content :is(img, video, svg) {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* Video poster visibility - poster shows initially and hides when panel becomes active */
  .layered-slideshow__video-poster {
    z-index: 1;
  }

  .layered-slideshow__video {
    z-index: 0;
  }

  /* When panel is active, hide poster so video is visible */
  .layered-slideshow__panel:not([inert]) .layered-slideshow__video-poster {
    opacity: 0;
  }

  @media (prefers-reduced-motion: no-preference) {
    .layered-slideshow__video-poster {
      transition: opacity 0.3s ease;
    }
  }

  .layered-slideshow__content {
    height: 100%;
    position: relative;
    z-index: 1;
  }

  .layered-slideshow__content > * {
    margin: auto;
  }

  .layered-slideshow__content.background-transparent {
    background-color: transparent;
  }

  .layered-slideshow__panel--drop-shadow:not(:last-child) .layered-slideshow__panel-content {
    box-shadow: 4px 0 12px 0 rgba(0, 0, 0, 0.1);
  }

  /* Shared transitions (desktop and mobile) */
  @media (prefers-reduced-motion: no-preference) {
    .layered-slideshow__panels,
    .layered-slideshow__tablist {
      transition-property: grid-template-columns, grid-template-rows;
      transition-duration: 0.6s;
      transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    }

    .layered-slideshow__content {
      opacity: 0;
      transform: translateY(0.5lh);
      transition: opacity 0.48s, transform 0.48s;
    }

    .layered-slideshow__panel:not([inert]) .layered-slideshow__content {
      opacity: 1;
      transform: translateY(0);
      transition-delay: 0.24s;
    }
  }

  @media screen and (max-width: 749px) {
    .layered-slideshow__container {
      --button-height: 44px;
      --inactive-tabs-height: calc((var(--total-tabs) - 1) * var(--button-height));
    }

    .layered-slideshow__container:not([size='auto']) {
      --layered-total-height: calc(var(--layered-panel-height-mobile, 260px) + var(--inactive-tabs-height));
      --active-panel-height: var(--layered-panel-height-mobile, 260px);
      min-height: var(--layered-total-height);
      height: var(--layered-total-height);
    }

    .layered-slideshow__container[size='auto'] {
      height: auto;
    }

    .layered-slideshow__tablist {
      grid-template-rows: var(--active-tab);
      grid-template-columns: 1fr;
      grid-auto-flow: row;
    }

    .layered-slideshow__tablist button {
      width: 100%;
      height: var(--button-height);
    }

    .layered-slideshow__panels {
      grid-template-rows: var(--active-tab);
      grid-template-columns: 1fr;
      grid-auto-flow: row;
    }

    .layered-slideshow__panel {
      min-height: var(--button-height);
      width: 100%;
      height: 100%;
      position: relative;
      z-index: calc(var(--total-tabs) - var(--index));
    }

    .layered-slideshow__panel:first-child .layered-slideshow__panel-content {
      width: 100%;
      height: var(--active-panel-height);
      border-top: var(--border-width) solid var(--border-color);
      left: 0;
      right: 0;
      border-left: var(--border-width) solid var(--border-color);
    }

    .layered-slideshow__panel-content {
      position: absolute;
      border: var(--border-width) solid var(--border-color);
      border-radius: var(--radius);
      box-sizing: border-box;
      width: 100%;
      /* Clamp overlap to (button-height - border-width) to prevent visual issues with large radius + border */
      height: calc(var(--active-panel-height) + min(var(--radius) * 2, var(--button-height) - var(--border-width)));
      top: unset;
      left: 0;
      right: 0;
      bottom: 0;
      overflow: hidden;
    }

    .layered-slideshow__panel:not(:first-child) .layered-slideshow__panel-content {
      border-top: none;
    }

    .layered-slideshow__panel:not(:first-child) {
      margin-top: calc(var(--border-width) * -1);
    }

    .layered-slideshow__content {
      padding-inline-start: var(--padding-inline-start, 0px);
      padding-inline-end: var(--padding-inline-end, 0px);
    }

    /* Adjust padding for non-first slides to account for radius overlap at the top (not sides on mobile) */
    .layered-slideshow__panel:not(:first-child) .layered-slideshow__content {
      padding-block-start: calc((var(--radius) * 2) + var(--padding-block-start, 0px));
      padding-inline-start: var(--padding-inline-start, 0px);
    }

    .layered-slideshow__panel--drop-shadow:not(:last-child) .layered-slideshow__panel-content {
      box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.1);
    }
  }
/* END_SECTION:layered-slideshow */

/* START_SECTION:logo (INDEX:95) */
.logo-section {
    width: calc(var(--logo-width) + var(--padding-inline-start) + var(--padding-inline-end));
    max-width: 100%;
    max-height: calc(var(--logo-height, 100%) + var(--padding-block-start) + var(--padding-block-end));
    font-size: var(--logo-height);
    display: flex;

    @media screen and (max-width: 749px) {
      max-height: calc(
        var(--logo-height-mobile, var(--logo-height, 100%)) + var(--padding-block-start) + var(--padding-block-end)
      );
      font-size: var(--logo-height-mobile, var(--logo-height));
      width: calc(
        var(--logo-width-mobile, var(--logo-width)) + var(--padding-inline-start) + var(--padding-inline-end)
      );
    }
  }

  .logo-section--center {
    margin-inline: auto;
  }

  .logo-section--flex-end {
    margin-inline-start: auto;
  }

  .logo-section--flex-start {
    margin-inline-end: auto;
  }

  .logo-section__image-wrapper {
    display: flex;
    width: 100%;
    max-width: 100%;
    max-height: 100%;
  }

  .logo-section__image {
    object-fit: contain;
    width: 100%;
  }
/* END_SECTION:logo */

/* START_SECTION:main-blog-post (INDEX:97) */
.blog-post-comments-container {
    width: 100%;
    max-width: var(--normal-content-width);
    margin: 0 auto;
  }

  .blog-post-comments {
    display: flex;
    flex-direction: column;
    gap: var(--gap-3xl);
  }

  .blog-post-comment__author {
    display: flex;
    align-items: center;
    gap: var(--gap-2xs);
    margin-top: var(--margin-md);
    font-size: var(--font-size--body-sm);
    color: rgb(var(--color-foreground-rgb) / var(--opacity-subdued-text));
  }

  .blog-post-comments-pagination {
    display: flex;
    justify-content: center;
    gap: var(--gap-2xs);
  }

  .blog-post-comments-pagination,
  .blog-post-comments-pagination a {
    color: var(--color-foreground);
  }

  .blog-post-comments-pagination .current {
    color: var(--color-foreground);
  }

  .blog-post-comments-pagination .current,
  .blog-post-comments-pagination a {
    display: block;
    padding: var(--padding-2xs) var(--padding-xs);
  }

  .blog-post-comments-pagination .current,
  .blog-post-comments-pagination a:hover {
    border-bottom: 1px solid var(--color-foreground);
  }
/* END_SECTION:main-blog-post */

/* START_SECTION:main-blog (INDEX:98) */
/**
   * Blog posts page layout
   */
  .blog-posts {
    --page-content-width: var(--narrow-page-width);
    --page-width: calc(var(--page-content-width) + (var(--page-margin) * 2));
    --columns-gap: 36px;
    --rows-gap: 36px;
  }

  .blog-posts-container {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
    width: 100%;
    column-gap: var(--columns-gap);
    row-gap: var(--rows-gap);
  }

  /**
   * Blog post item grid positioning and scaling.
   * Layout is calculated in Liquid based on total article count.
   * Mobile overrides are applied per-item in inline styles for proper specificity.
   */
  .blog-post-item {
    grid-column: span var(--col-span);
  }

  /**
   * When there's no image, the blog post item has a border.
   */
  .blog-post-item {
    border: 1px solid rgb(var(--color-foreground-rgb) / var(--opacity-20));
    padding: 0 1rem 1rem;
  }

  .blog-post-item:has(.blog-post-card__image-container) {
    border: none;
    padding: 0;
  }
/* END_SECTION:main-blog */

/* START_SECTION:main-cart (INDEX:99) */
.cart-page {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0 var(--padding-5xl);
  }

  .cart-page--empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .cart-page--empty .cart-page__title,
  .cart-page--empty .cart-page__more-blocks {
    margin-top: var(--margin-6xl);
  }

  .cart-page__more-blocks {
    width: 100%;
  }

  .cart-page--empty .cart-title {
    text-align: center;
  }

  .cart-page__main {
    grid-column: 1;
  }

  .cart-page__summary {
    padding-top: var(--padding-xl);
  }

  .cart-page__title + .cart-page__items {
    margin-block-start: var(--margin-lg);
  }

  @media screen and (min-width: 750px) {
    .cart-page {
      grid-template-columns: 1fr min(50vw, var(--sidebar-width));
      grid-template-rows: min-content min-content 1fr;
    }

    .cart-page__summary {
      display: grid;
      height: 100%;
      grid-column: 2;
      grid-row: 1 / -1;
      align-self: stretch;
      grid-template-rows: subgrid;
      padding-top: 0;

      /* needed to support blurred effect from hero section */
      position: relative;
    }

    .section--page-width .cart-page:has(.cart-summary--extend) {
      grid-column: 2 / 4;
      grid-template-columns: 1fr minmax(
          var(--sidebar-width),
          calc((100vw - var(--page-width)) / 2 + var(--sidebar-width))
        );
    }
  }

  @media screen and (min-width: 1400px) {
    .cart-page {
      grid-template-columns: 1fr var(--sidebar-width);
    }
  }
/* END_SECTION:main-cart */

/* START_SECTION:marquee (INDEX:103) */
marquee-component {
    display: block;
    width: 100%;
    overflow: hidden;
  }

  .marquee__wrapper {
    display: flex;
    gap: var(--marquee-gap);
    width: fit-content;
    white-space: nowrap;
  }

  .marquee__content {
    min-width: max-content;
    display: flex;
    gap: var(--marquee-gap);
  }

  .marquee__content :is(p, h1, h2, h3, h4, h5, h6) {
    white-space: nowrap;
  }

  .marquee__content .marquee__repeated-items * {
    max-width: none;
  }

  .marquee__repeated-items {
    min-width: max-content;
    display: flex;
    gap: var(--marquee-gap);
    align-items: center;
    justify-content: center;
  }

  .marquee__repeated-items > * {
    align-content: center;
  }

  @media (prefers-reduced-motion: no-preference) {
    marquee-component:not([data-disabled]) .marquee__wrapper {
      animation: marquee-motion var(--marquee-speed) linear infinite var(--marquee-direction);
    }
  }

  @keyframes marquee-motion {
    to {
      transform: translate3d(calc(-50% - (var(--marquee-gap) / 2)), 0, 0);
    }
  }
/* END_SECTION:marquee */

/* START_SECTION:media-with-content (INDEX:104) */
.section--page-width {
    &.media-with-content {
      grid-template-areas: 'margin-left media margin-right' 'margin-left content margin-right';

      @media screen and (min-width: 750px) {
        /* Wide proportion is media 3.5 parts, content 2.5 parts. Which equals 7|5. So divide the central column by 7+5 and multiply accordingly */
        --media-with-content-grid-columns: var(--full-page-grid-margin)
          calc((var(--full-page-grid-central-column-width) / 12) * 7)
          calc((var(--full-page-grid-central-column-width) / 12) * 5) var(--full-page-grid-margin);

        grid-template-areas: 'margin-left media content margin-right';
      }
    }

    &.media-with-content--media-right {
      @media screen and (min-width: 750px) {
        --media-with-content-grid-columns: var(--full-page-grid-margin)
          calc((var(--full-page-grid-central-column-width) / 12) * 5)
          calc((var(--full-page-grid-central-column-width) / 12) * 7) var(--full-page-grid-margin);

        grid-template-areas: 'margin-left content media margin-right';
      }
    }

    &.media-with-content--medium {
      @media screen and (min-width: 750px) {
        --media-with-content-grid-columns: var(--full-page-grid-margin)
          repeat(2, calc(var(--full-page-grid-central-column-width) / 2)) var(--full-page-grid-margin);
      }
    }

    &.media-with-content--narrow.media-with-content--media-right {
      @media screen and (min-width: 750px) {
        --media-with-content-grid-columns: var(--full-page-grid-margin)
          calc((var(--full-page-grid-central-column-width) / 3) * 2)
          calc(var(--full-page-grid-central-column-width) / 3) var(--full-page-grid-margin);
      }
    }

    &.media-with-content--narrow {
      @media screen and (min-width: 750px) {
        --media-with-content-grid-columns: var(--full-page-grid-margin)
          calc(var(--full-page-grid-central-column-width) / 3)
          calc((var(--full-page-grid-central-column-width) / 3) * 2) var(--full-page-grid-margin);
      }
    }
  }

  .section--full-width {
    &.media-with-content--media-right {
      @media screen and (min-width: 750px) {
        --media-with-content-grid-columns: 2.5fr 3.5fr;

        grid-template-areas: 'content media';
      }
    }

    &.media-with-content--medium {
      @media screen and (min-width: 750px) {
        --media-with-content-grid-columns: 1fr 1fr;
      }
    }

    &.media-with-content--narrow {
      @media screen and (min-width: 750px) {
        --media-with-content-grid-columns: 2fr 4fr;
      }
    }

    &.media-with-content--narrow.media-with-content--media-right {
      @media screen and (min-width: 750px) {
        --media-with-content-grid-columns: 4fr 2fr;
      }
    }
  }

  /* Keep the CSS specificity lower assuming that liquid won't assign this class with a full width section */
  .media-with-content.media-with-content--media-extend {
    grid-template-columns: var(--media-with-content-grid-columns);
    grid-template-areas: 'media media media' 'margin-left content margin-right';

    @media screen and (min-width: 750px) {
      grid-template-areas: 'media media content margin-right';
    }
  }

  .media-with-content--media-extend.media-with-content--media-right {
    @media screen and (min-width: 750px) {
      grid-template-areas: 'margin-left content media media';
    }
  }

  .media-with-content--media-right {
    @media screen and (min-width: 750px) {
      grid-template-areas: 'margin-left content media media';
    }
  }

  .media-with-content {
    --media-with-content-grid-columns: var(--full-page-grid-with-margins);

    grid-template-columns: var(--media-with-content-grid-columns);
    grid-template-areas: 'media media media' 'content content content';

    @media screen and (min-width: 750px) {
      --media-with-content-grid-columns: 3.5fr 2.5fr;

      /* Default desktop layout is wide media, on the left, in full page section */
      grid-template-areas: 'media content';
    }

    .media-block {
      grid-area: media;
    }

    .media-with-content__content {
      grid-area: content;
    }

    /* Inner blocks spacing */
    .media-with-content__content > .group-block-content {
      padding-inline: var(--page-margin);
      padding-block: calc(2 * var(--page-margin));

      @media screen and (min-width: 750px) {
        padding-block: var(--page-margin);
      }
    }

    &.section--page-width .media-with-content__content > .group-block-content {
      padding-inline: 0;

      @media screen and (min-width: 750px) {
        padding-inline-start: var(--page-margin);
      }
    }

    &.section--page-width.media-with-content--media-right .media-with-content__content > .group-block-content {
      padding-inline-end: var(--page-margin);
      padding-inline-start: 0;
    }
  }

  .media-with-content[data-shopify-visual-preview] {
    --hero-min-height: 500px;

    min-height: 500px;
  }
/* END_SECTION:media-with-content */

/* START_SECTION:password-footer (INDEX:105) */
.password-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--gap-sm);
    padding-block: var(--padding-xl);
  }

  .password-footer__powered-by {
    margin: 0;
    display: flex;
    align-items: center;
    gap: var(--padding-xs);
    height: 1em;

    > a {
      display: flex;
    }

    .icon-shopify {
      display: inline;
      height: 1.3em;
      color: var(--color-foreground);
    }
  }

  .password-footer__links {
    display: flex;
    align-items: center;
    gap: var(--gap-2xl);

    @media screen and (max-width: 749px) {
      flex-direction: column;
      gap: var(--gap-sm);
    }
  }

  .password-footer__admin-link {
    margin: 0;
  }

  .password-footer__button {
    height: var(--minimum-touch-target);
    background-color: transparent;
    color: var(--color-primary);
    cursor: pointer;
    text-decoration: underline;

    &:hover {
      color: var(--color-primary-hover);
      text-decoration: none;
    }
  }
/* END_SECTION:password-footer */

/* START_SECTION:password (INDEX:106) */
.section-password {
    flex-grow: 1;
    display: flex;
  }

  .password-content {
    text-align: center;
  }
/* END_SECTION:password */

/* START_SECTION:product-hotspots (INDEX:109) */
/* Section layout */
  .section-product-hotspots {
    position: relative;
  }

  .section-product-hotspots__wrapper {
    display: flex;
    flex-direction: column;
    gap: var(--gap);
    width: 100%;
    height: 100%;
  }

  /* Image container */
  .section-product-hotspots__content {
    position: relative;
    aspect-ratio: var(--ratio, 21 / 9);
    overflow: hidden;
  }

  /* Hide hotspots without products on touch devices (tablets included) */
  @media (hover: none) {
    .hotspot.hotspot--hidden-touch {
      display: none;
    }
  }

  /* Responsive adjustments */
  @media screen and (max-width: 749px) {
    /* Hide dialog on mobile - hotspot opens quick-add modal instead */
    .hotspot .hotspot-dialog {
      display: none;
    }
  }

  /* Hotspot button - positioned element with clickable area */
  .hotspot {
    position: absolute;
    cursor: pointer;
    width: var(--button-size);
    height: var(--button-size);
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    padding: 0;
    font: inherit;
    color: inherit;
    outline: none;
    transition: border-color 0.2s ease-out, box-shadow 0.2s ease-out;
    z-index: var(--layer-flat);
  }

  .hotspot:has(.hotspot-dialog[open]) {
    z-index: var(--layer-raised);
  }

  .hotspot .hotspot-trigger {
    padding: 0;
    border: none;
  }

  .hotspot-dialog__product-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: var(--padding-xs);
    padding-inline-start: 0;
    overflow: hidden;
  }

  /* Visual target circle */
  .hotspot-trigger {
    width: var(--hotspot-size);
    height: var(--hotspot-size);
    background: var(--hotspot-bg, rgb(0 0 0 / 0.5));
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    transition: width 0.1s ease-out, height 0.1s ease-out;
  }

  /* On mobile, ensure trigger is tappable */
  @media screen and (max-width: 749px) {
    .hotspot-trigger {
      cursor: pointer;
      -webkit-tap-highlight-color: transparent;
    }
  }

  /* Bullseye using ::after pseudo-element */
  .hotspot-trigger::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: calc(var(--hotspot-size) * 0.4);
    height: calc(var(--hotspot-size) * 0.4);
    background: var(--hotspot-bullseye, #fff);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.1s ease-out, height 0.1s ease-out, background 0.1s ease-out;
  }

  /* Bullseye grows on hover or when dialog is open (desktop only) */
  @media screen and (min-width: 750px) {
    .hotspot:hover .hotspot-trigger::after,
    .hotspot:has(.hotspot-dialog[open]) .hotspot-trigger::after {
      width: calc(var(--hotspot-size) * 0.55);
      height: calc(var(--hotspot-size) * 0.55);
      transition: width 0.2s ease-out, height 0.2s ease-out, background 0.2s ease-out;
      transition-delay: 0.2s;
    }
  }

  .hotspots-container {
    position: absolute;
    inset: 0;
    z-index: var(--layer-flat);
    overflow: clip;
  }

  .hotspots__background-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  /* Dialog positioning */
  .hotspot .hotspot-dialog {
    position: absolute;
    padding: 0;
    border-radius: var(--style-border-radius-popover);
    border: var(--style-border-popover);
    width: max-content;
    min-width: var(--minimum-width-dialog);
    max-width: var(--maximum-width-dialog);
    box-shadow: var(--shadow-popover);

    &[data-placement*='bottom'] {
      --offset-y: 0px;
      --origin-y: calc(var(--hotspot-size) / 2);
      top: calc((var(--button-size) - var(--hotspot-size)) / 2 + var(--dialog-vertical-offset, 0px));
      bottom: unset;
    }
    &[data-placement*='top'] {
      --offset-y: 0px;
      --origin-y: calc(100% - (var(--hotspot-size) * 0.5));
      top: unset;
      bottom: calc((var(--button-size) - var(--hotspot-size)) * 0.5 - var(--dialog-vertical-offset, 0px));
    }
    &[data-placement*='left'] {
      --offset-x: calc((var(--button-size) - var(--hotspot-size)) * 0.5);
      --origin-x: calc(100% - (var(--hotspot-size) * 0.5));
      left: unset;
      right: 100%;
    }
    &[data-placement*='right'] {
      --offset-x: calc((var(--button-size) - var(--hotspot-size)) * -0.5);
      --origin-x: calc(var(--hotspot-size) * 0.5);
      left: 100%;
      right: unset;
    }
    &[data-placement*='center'] {
      left: 50%;
      translate: -50% 0;
      right: unset;
    }
    &[data-placement*='center'][data-placement*='bottom'] {
      --origin-y: calc(var(--hotspot-size) * 0.5);
      --origin-x: 50%;
      --offset-y: calc((var(--button-size) - var(--hotspot-size)) * -0.5);
      /* stylelint-disable-next-line declaration-property-value-disallowed-list */
      --offset-x: 0;
      top: 100%;
      bottom: unset;
      margin: 0;
    }
    &[data-placement*='center'][data-placement*='top'] {
      --origin-y: calc(100% - (var(--hotspot-size) * 0.5));
      --origin-x: 50%;
      --offset-y: calc((var(--button-size) - var(--hotspot-size)) * 0.5);
      /* stylelint-disable-next-line declaration-property-value-disallowed-list */
      --offset-x: 0;
      bottom: 100%;
    }
  }

  .hotspot .hotspot-dialog:is(:focus, :focus-visible),
  .hotspot .hotspot-dialog__link:is(:focus, :focus-visible) {
    outline: none;
  }

  .hotspot-dialog__product {
    display: grid;
    grid-template-columns: auto 1fr;
  }

  .hotspot-dialog__product-image,
  .hotspot-dialog svg.hotspot-dialog__placeholder-product-image {
    width: var(--width-product-image-dialog);
    height: var(--width-product-image-dialog);
    aspect-ratio: 1;
    padding: var(--padding-product-image-popover, var(--padding-xs));
    object-fit: cover;
    border-radius: var(--style-border-radius-popover);
  }

  .hotspot-dialog__link {
    position: absolute;
    inset: 0;
    z-index: var(--layer-flat);
  }

  .hotspot-dialog__product-title {
    margin-block-end: var(--product-title-gap);
    padding-inline-end: var(--padding-sm);
    min-width: 0;
  }

  .hotspot .hotspot-dialog .hotspot-dialog__sold-out-badge {
    display: flex;
    width: fit-content;
    justify-self: flex-end;
    align-self: flex-end;
    justify-content: center;
    align-items: center;
    font-size: var(--font-body--size);
    padding: var(--padding-2xs) var(--padding-sm);
    background: rgb(var(--color-foreground-rgb) / var(--opacity-10));
    border-radius: var(--border-radius-sm);
    text-transform: uppercase;
    letter-spacing: var(--letter-spacing-sm);
    opacity: var(--opacity-80);
  }

  /* Dialog transitions */
  .hotspot .hotspot-dialog {
    --hotspot-blur: 4px;
    --hotspot-scale: 0.8;
    --hotspot-entry-duration: 0.2s;
    --hotspot-exit-duration: 0.1s;

    /* Firefox doesn't have reverse transitions */
    /* in webkit/chromium we can set a closing attribute as we transition the exit and hook there */
    filter: blur(var(--hotspot-blur));
    opacity: 0;
    transform: scale(var(--hotspot-scale)) translate(0, 0);
    transition-property: display, opacity, filter, transform;
    transition-duration: var(--hotspot-entry-duration);
    transition-timing-function: ease;

    transform: scale(var(--hotspot-scale)) translate(var(--offset-x), var(--offset-y));
    transform-origin: var(--origin-x) var(--origin-y);
    transition-timing-function: cubic-bezier(0.65, -0.49, 0.35, 1.12);

    &[data-closing='true'] {
      transition-duration: var(--hotspot-exit-duration);
      transition-timing-function: ease-out;
      transform: scale(1) translate(0, calc(var(--hotspot-size) * 0.25));
    }

    /* We can only set transition-behavior once we've measured the dialog dimensions */
    &[data-showing='true'] {
      transition-behavior: allow-discrete;
    }
  }

  .hotspot .hotspot-dialog[open][data-showing='true'] {
    opacity: 1;
    transform: scale(1) translate(0, 0);
    filter: blur(0px);
  }

  @starting-style {
    .hotspot .hotspot-dialog[open][data-showing='true'] {
      opacity: 0;
      filter: blur(var(--hotspot-blur));
      transform: scale(var(--hotspot-scale)) translate(var(--offset-x), var(--offset-y));
      transform-origin: var(--origin-x) var(--origin-y);
    }
  }

  /* Safety triangles for dialogs */
  .hotspot .hotspot-dialog::after {
    content: '';
    position: absolute;
    opacity: 0;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: all;
    transition: opacity 0.22s ease-out, translate 0.22s 0.1s ease-out;
    scale: var(--scale-x, 1) var(--scale-y, 1);
    z-index: var(--layer-flat);
  }

  .hotspot-dialog[open]:is([data-placement*='left'], [data-placement*='right'])::after {
    /* stylelint-disable-next-line plugin/no-unsupported-browser-features */
    clip-path: polygon(0 0, 100% 0, 100% 100%);
    width: calc(var(--button-size) / 2 + var(--hotspot-size) * 0.5);
  }

  .hotspot-dialog[open][data-placement*='right']::after {
    right: 100%;
    left: unset;
  }

  .hotspot-dialog[open][data-placement*='left']::after {
    left: 100%;
    right: unset;
    --scale-x: -1;
  }

  .hotspot-dialog[open][data-placement*='top']::after {
    --scale-y: -1;
  }

  .hotspot-dialog[open][data-placement*='center']::after {
    height: calc(var(--button-size) / 2 + var(--hotspot-size) * 0.5);
    width: 100%;
    /* stylelint-disable-next-line plugin/no-unsupported-browser-features */
    clip-path: polygon(0 0, 100% 0, 50% calc(100% - var(--hotspot-size) * 0.25));
    --scale-x: 1;
    --scale-y: 1;
  }

  .hotspot-dialog[open][data-placement*='center'][data-placement*='bottom']::after {
    top: unset;
    bottom: 100%;
    --scale-y: -1;
  }

  .hotspot-dialog[open][data-placement*='center'][data-placement*='top']::after {
    top: 100%;
    bottom: unset;
  }

  /* Quick add button */
  .hotspot-dialog[open] {
    .quick-add {
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      width: auto;
      height: auto;
      position: relative;
      z-index: var(--layer-flat);
    }

    .quick-add__button {
      position: relative;
      padding-block: 0;
      box-shadow: none;
      align-items: center;
      justify-self: flex-end;
      height: fit-content;
      translate: var(--padding-2xs) 0;
      border: none;
      color: var(--color-foreground);
      background-color: var(--color-background);
      overflow: visible;
      pointer-events: all;
      opacity: 1;
      animation: elementSlideInTop var(--animation-speed) var(--animation-easing);
      transition-property: translate;
      transition-duration: var(--animation-speed);
      transition-timing-function: var(--ease-out-cubic);

      &::before {
        content: '';
        position: absolute;
        inset: -2px;
        border-radius: calc(50px + 2px);
        border: 2px solid transparent;
        pointer-events: none;
        transition-property: border-color;
        transition-duration: 0s;
        transition-timing-function: var(--ease-out-cubic);
      }

      &:is(:hover, :focus, :focus-visible, :active) {
        translate: 0 0;
        transition-delay: var(--animation-speed-slow);

        &::before {
          border-color: rgb(var(--color-foreground-rgb) / var(--opacity-15));
          transition-duration: var(--animation-speed);
          transition-delay: var(--animation-speed-slow);
        }
      }
    }
  }
/* END_SECTION:product-hotspots */

/* START_SECTION:product-information (INDEX:110) */
.sticky-add-to-cart__bar {
    position: fixed;
    bottom: 20px;
    left: 50%;
    opacity: 0;
    transform: translateX(-50%) translateY(calc(100% + 40px));
    z-index: calc(var(--layer-sticky) - 1); /* Below sticky header */
    display: block;
    width: 600px;
    border-radius: calc(
      var(--style-border-radius-buttons-primary) + min(var(--padding-sm), var(--style-border-radius-buttons-primary))
    );
    box-shadow: var(--shadow-popover);
    padding: var(--padding-sm);
    /* Layout styling */
    display: flex;
    align-items: center;
    gap: var(--gap-md);

    @starting-style {
      opacity: 0;
      transform: translateX(-50%) translateY(calc(100% + 40px));
    }

    &::before {
      --border: 2px;
      content: '';
      position: absolute;
      inset: calc(var(--border) * -1);
      background: linear-gradient(var(--color-background) 0 100%), linear-gradient(hsl(0 0% 0% / 0.15) 0 100%);
      background-clip: content-box, border-box;
      border: var(--border) solid #0000;
      border-radius: inherit;
      z-index: -1;
      backdrop-filter: blur(20px) saturate(180%) brightness(1.5);
    }
  }

  @media (prefers-reduced-motion: no-preference) {
    .sticky-add-to-cart__bar {
      transition-property: transform, opacity, display;
      transition-duration: 0.3s;
      transition-timing-function: var(--ease-out-quad);
      transition-behavior: allow-discrete;
    }
  }

  .sticky-add-to-cart__bar[data-stuck='true'] {
    transform: translateX(-50%) translateY(0%);
    opacity: 1;
  }

  sticky-add-to-cart:not([data-variant-available='true']) .sticky-add-to-cart__bar {
    opacity: 0;
    transform: translateX(-50%) translateY(calc(100% + 40px));
    display: none;
  }

  .sticky-add-to-cart__info[data-has-image='false'] {
    padding-left: var(--padding-lg);
  }

  .sticky-add-to-cart__image {
    flex-shrink: 0;
    aspect-ratio: 1;
    height: var(--height-buy-buttons);
    overflow: hidden;
    border-radius: var(--style-border-radius-buttons-primary);
    background: var(--color-background-secondary);
  }

  .sticky-add-to-cart__image-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .sticky-add-to-cart__info {
    flex: 1;
    min-width: 0; /* Allow text truncation */
  }

  .sticky-add-to-cart__title {
    font-size: var(--font-paragraph-medium--size);
    font-weight: var(--font-weight-semibold);
    line-height: var(--font-paragraph--line-height);
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .sticky-add-to-cart__variant {
    color: rgb(var(--color-foreground-rgb) / var(--opacity-subdued-text));
    font-size: var(--font-paragraph-small--size);
    margin-top: var(--margin-3xs);
  }

  .sticky-add-to-cart__price {
    font-weight: var(--font-weight-semibold);
  }

  .sticky-add-to-cart__button {
    height: var(--height-buy-buttons);
    position: relative;
  }

  /* Mobile adjustments */
  @media screen and (max-width: 749px) {
    .sticky-add-to-cart__bar {
      bottom: 0;
      width: 100%;
      max-width: none;
      border-radius: 0;

      &::before {
        --border: 1px;
      }
    }

    .sticky-add-to-cart__bar .add-to-cart-text__content {
      display: none;
    }

    .sticky-add-to-cart__info[data-has-image='false'] {
      padding-left: 0;
    }

    .sticky-add-to-cart__title {
      font-size: var(--font-paragraph--size);
    }

    .sticky-add-to-cart__button {
      padding: var(--padding-lg);
    }

    .sticky-add-to-cart__price {
      font-size: var(--font-paragraph-small--size);
    }

    .sticky-add-to-cart__button {
      width: var(--height-buy-buttons);
    }

    sticky-add-to-cart:not([data-variant-available='true']) .add-to-cart-text__content {
      display: initial;
    }

    sticky-add-to-cart:not([data-variant-available='true']) .sticky-add-to-cart__button {
      width: auto;
    }
  }

  /* Small mobile - hide text content and compare price */
  @media screen and (max-width: 389px) {
    .sticky-add-to-cart__bar {
      .compare-at-price {
        display: none;
      }
    }

    .sticky-add-to-cart__title {
      display: none;
    }

    /* For product with only default variant show title */
    .sticky-add-to-cart__info[data-singleton='true'] .sticky-add-to-cart__title {
      display: block;
    }

    /* For single variant show title and variant, truncate both. variant should be identifiable with truncation */
    .sticky-add-to-cart__info[data-single-option='true'] .sticky-add-to-cart__title {
      display: block;
    }

    .sticky-add-to-cart__info[data-single-option='true'] .sticky-add-to-cart__variant {
      display: block;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
    }
  }
/* END_SECTION:product-information */

/* START_SECTION:quick-order-list (INDEX:113) */
.quick-order-list {
    --quantity-selector-width: 124px;
    --image-size: 43px;
    --quantity-header-padding: calc(var(--minimum-touch-target) + var(--gap-sm));
    --quick-order-quantity-column-width: calc(
      var(--quantity-selector-width) + 2 * var(--gap-sm) + 2 * var(--minimum-touch-target)
    );
    --transform-offset-negative: calc(-1 * var(--icon-stroke-width));
    --quick-order-first-column-width: 2fr; /* Takes 2 fractions of available space */
    --quick-order-price-column-width: 1fr; /* Takes 1 fraction */
    --quick-order-total-column-width: 1fr; /* Takes 1 fraction */

    display: flex;
    flex-direction: column;
    gap: var(--gap-sm);
  }

  .quick-order-list__container {
    width: 100%;
  }

  /* Grid container setup */
  .quick-order-list__grid {
    width: 100%;
    display: block; /* Container is block, children use grid */
    contain: layout; /* Isolate layout calculations for performance */
  }

  .quick-order-list__grid-body {
    contain: layout; /* Isolate layout calculations for performance */
  }

  .quick-order-list__grid-header,
  .quick-order-list__grid-row {
    display: grid;
    grid-template-columns:
      var(--quick-order-first-column-width) /* Variant column - takes 2 parts of available space */
      var(--quick-order-quantity-column-width) /* Fixed pixel width for quantity */
      var(--quick-order-price-column-width) /* Price column - takes 1 part */
      var(--quick-order-total-column-width); /* Total column - takes 1 part */
    gap: var(--gap-md);
    align-items: center;
  }

  .quick-order-list__grid-header {
    border-block-end: var(--style-border-width) solid var(--color-border);
    padding-block-end: var(--padding-xl);
    margin-block-end: var(--padding-sm);
    opacity: var(--opacity-85);
    font-weight: normal;
    font-size: var(--font-size--xs);
    letter-spacing: var(--letter-spacing--body-loose);
  }

  /* Add padding to quantity column header to align with content */
  .quick-order-list__grid-header .quick-order-list__grid-cell--quantity {
    padding-inline-start: var(--quantity-header-padding);
  }

  .quick-order-list__grid-row {
    padding-block-start: var(--padding-sm);
    padding-block-end: var(--padding-sm);
    content-visibility: auto;
    contain-intrinsic-size: auto
      calc(2 * var(--padding-sm) + var(--image-size) + var(--minimum-touch-target) + var(--padding-2xl));
  }

  @media screen and (min-width: 750px) {
    .quick-order-list__grid-row {
      contain-intrinsic-size: auto calc(2 * var(--padding-sm) + var(--image-size));
    }
  }

  .quick-order-list__grid-cell--variant {
    text-align: start;
    justify-self: stretch;
  }

  .quick-order-list__grid-cell--quantity {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    justify-self: stretch;
  }

  .quick-order-list__grid-cell--quantity .variant-item__inner-container {
    width: 100%;
    justify-content: flex-start;
  }

  .quick-order-list__grid-cell--price {
    text-align: end;
    justify-self: stretch;
  }

  .quick-order-list__grid-cell--total {
    text-align: end;
    justify-self: stretch;
  }

  .variant-item__image-container,
  .quick-order-list__table-image {
    width: var(--image-size);
    height: auto;
  }

  .quick-order-list .pagination {
    margin-block-start: 0;
    padding-block-start: var(--padding-xl);
    padding-block-end: 0;
  }

  .variant-item__inner-container {
    display: flex;
    align-items: center;
    gap: var(--gap-sm);
  }

  .volume-pricing-info-placeholder {
    width: var(--minimum-touch-target);
    height: var(--minimum-touch-target);
  }

  .variant-item__quantity .quantity-selector {
    display: flex;
    flex: 0 0 var(--quantity-selector-width);
    min-width: var(--quantity-selector-width);
    font-size: var(--font-size--xs);
    height: auto;
  }

  .variant-item__remove {
    background-color: transparent;
    color: var(--color-foreground);
    width: var(--minimum-touch-target);
    height: var(--minimum-touch-target);
    justify-content: center;
    box-shadow: none;
    padding: 0;
  }

  .remove-icon-bottom,
  .remove-icon-top {
    transition: transform var(--animation-speed) var(--animation-easing);
  }

  .variant-item__remove:not(.variant-item__remove--hidden):hover .remove-icon-top {
    transform: translate(var(--transform-offset-negative), var(--icon-stroke-width)) rotate(-15deg);
  }

  .variant-item__remove:not(.variant-item__remove--hidden):is(:hover, :active) .remove-icon-bottom {
    transform: translateY(var(--icon-stroke-width));
  }

  /* Hide remove button with opacity to prevent layout shift */
  .variant-item__remove--hidden {
    opacity: 0;
    pointer-events: none;
    cursor: default;
  }

  .variant-item__name {
    font-weight: var(--font-weight-medium);
  }

  .variant-item__sku {
    font-size: var(--font-size--3xs);
    opacity: var(--opacity-85);
  }

  .variant-item__details {
    display: inline-flex;
    flex-direction: column;
  }

  .variant-item__totals {
    flex: 0 0 auto;
    padding-block-start: var(--padding-2xs);
  }

  /* Compare at price styles */
  .variant-item__discounted-prices {
    display: flex;
    gap: var(--gap-2xs);
    justify-content: flex-end;
  }

  .variant-item__discounted-prices dd {
    margin: 0;
  }

  /* Mobile layout */
  @media screen and (max-width: 749px) {
    .quick-order-list__grid-header,
    .quick-order-list__grid-row {
      grid-template-columns: 1fr auto; /* Variant column and total column on mobile */
      gap: var(--gap-sm);
      max-width: 100%;
      overflow: hidden;
      align-items: flex-start;
    }

    .quick-order-list__grid-header .quick-order-list__grid-cell--total {
      text-align: end;
    }

    .quick-order-list__grid-row {
      margin-block-end: var(--margin-2xl);
      padding-block-end: var(--padding-2xl);
      border-block-end: var(--style-border-width) solid var(--color-border);
    }

    .quick-order-list__grid-row:last-child {
      margin-block-end: 0;
      border-block-end: none;
    }

    .variant-item__inner {
      flex: 1 1 auto;
      padding-inline-end: var(--padding-lg);
    }

    .variant-item__inner-container {
      display: flex;
      gap: var(--gap-md);
      align-items: flex-start;
    }

    .variant-item__details {
      flex: 1;
      display: flex;
      flex-direction: column;
      min-width: 0; /* Allow text to shrink */
    }

    .variant-item__totals {
      flex: 0 0 auto;
      text-align: end;
      padding-block-start: var(--padding-2xs);
    }

    .variant-item__totals .variant-item__total-price {
      font-size: var(--font-size--sm);
      font-weight: var(--font-weight-medium);
    }

    .variant-item__title-container .variant-item__name {
      display: block;
      font-size: var(--font-size--sm);
      line-height: var(--line-height-tight);
      margin: 0;
    }

    .variant-item__mobile-price-container {
      margin-block-end: var(--margin-xs);
    }

    .variant-item__mobile-price {
      font-size: var(--font-size--sm);
      opacity: var(--opacity-85);
      white-space: nowrap;
    }

    /* Mobile compare at price styles */
    .variant-item__discounted-prices--mobile {
      display: flex;
      flex-direction: row;
      align-items: baseline;
      justify-content: flex-start;
      gap: var(--gap-xs);
      margin-block-start: var(--margin-2xs);
      margin-block-end: 0;
    }

    .variant-item__discounted-prices--mobile dd {
      display: inline;
    }

    .variant-item__mobile-quantity {
      display: flex;
      align-items: center;
      gap: 0;
    }

    /* Mobile-only content styles */
    .variant-item__mobile-info {
      display: flex;
      flex-direction: column;
      width: 100%;
    }

    .variant-item__image-container {
      flex: 0 0 var(--image-size);
      width: var(--image-size);
      height: var(--image-size);
    }

    .quick-order-list__table-image {
      width: 100%;
      height: 100%;
    }

    .variant-item__mobile-quantity .quantity-selector {
      display: flex;
      flex: 0 0 var(--quantity-selector-width);
      min-width: var(--quantity-selector-width);
      font-size: var(--font-size--xs);
      margin: 0;
      padding: 0;
    }

    /* Mobile remove button styling */
    .variant-item__remove--mobile {
      background-color: transparent;
      color: var(--color-foreground);
      width: var(--minimum-touch-target);
      height: var(--minimum-touch-target);
      min-width: var(--minimum-touch-target);
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: none;
      padding: 0;
      margin: 0;
      flex-shrink: 0;
      border: none;
      cursor: pointer;
    }

    .variant-item__remove--mobile svg {
      width: var(--icon-size-sm);
      height: var(--icon-size-sm);
    }

    .variant-item__remove--mobile:not(.variant-item__remove--hidden):hover {
      opacity: var(--opacity-70);
    }

    .quick-order-list .pagination {
      padding-block-start: var(--padding-2xl);
    }
  }

  .quick-order-list-disabled {
    pointer-events: none;
  }

  .quick-order-list-total {
    background: var(--color-background);
    border-block-start: var(--style-border-width) solid var(--color-border);
  }

  /* Tablet and Desktop styles - sticky footer */
  @media screen and (min-width: 750px) {
    .quick-order-list-total {
      position: sticky;
      inset-block-end: 0;
      z-index: var(--layer-raised);
    }
  }

  .quick-order-list-total__info,
  .quick-order-list-total__confirmation {
    min-height: 8rem;
    padding-block-start: var(--padding-4xl);
  }

  .quick-order-list-total__info {
    align-items: flex-start;
    gap: var(--gap-md);
  }

  .quick-order-list-total__confirmation {
    display: flex;
    gap: var(--gap-2xl);
    align-items: center;
    justify-content: center;
    padding: var(--padding-2xl) var(--padding-xl);
  }

  .quick-order-list-total__column {
    display: flex;
    flex-direction: column;
  }

  .quick-order-list-total__actions {
    display: flex;
  }

  /* Desktop layout - Use CSS Grid to match main table alignment */
  @media screen and (min-width: 750px) {
    .quick-order-list-total__info {
      display: grid;
      grid-template-columns:
        var(--quick-order-first-column-width) /* Variant column - takes 2 parts of available space */
        var(--quick-order-quantity-column-width) /* Fixed pixel width for quantity */
        var(--quick-order-price-column-width) /* Price column - takes 1 part */
        var(--quick-order-total-column-width); /* Total column - takes 1 part */
    }

    .quick-order-list-total__column {
      grid-column: 1;
      display: flex;
      flex-direction: column;
      gap: var(--gap-md);
    }

    .quick-order-list-total__summary {
      grid-column: 2 / 5;
      display: grid;
      grid-template-columns: var(--quick-order-quantity-column-width, 234px) auto;
    }

    .quick-order-list-total__items {
      grid-column: 1;
      justify-self: center;
      text-align: center;
    }

    .quick-order-list-total__price {
      grid-column: 3;
      justify-self: end;
      text-align: end;
    }
  }

  /* Tablet-specific overrides - 750px to 989px */
  @media screen and (min-width: 750px) and (max-width: 989px) {
    .quick-order-list-total__actions {
      flex-direction: column;
    }

    .quick-order-list-total__messages {
      align-items: stretch;
    }

    .quick-order-list__remove-all-button {
      padding-inline: 0;
    }
  }

  .quick-order-list__button.button--full-width {
    width: 100%;
  }

  .quick-order-list__button.button {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .quick-order-list-total .button--unstyled {
    border: none;
    box-shadow: none;
    background-color: transparent;
    color: var(--color-foreground);
    cursor: pointer;
  }

  .quick-order-list__remove-all-button svg {
    width: var(--icon-size-sm);
    height: var(--icon-size-sm);
    flex-shrink: 0;
  }

  .quick-order-list-total__items span {
    display: block;
    margin-block-end: var(--margin-xs);
  }

  .quick-order-list-total__items .h5 {
    margin: 0;
    letter-spacing: var(--letter-spacing--body-loose);
    opacity: var(--opacity-85);
  }

  .quick-order-list-total__subtotal-value {
    display: block;
    margin-block-end: var(--margin-xs);
    line-height: var(--font-paragraph--line-height);
  }

  /* Ensure text-component displays properly */
  .quick-order-list-total__subtotal-value text-component {
    display: block;
  }

  .quick-order-list-total__subtotal {
    margin: 0;
    letter-spacing: var(--letter-spacing--body-loose);
    opacity: var(--opacity-85);
  }

  .quick-order-list-total__tax-note {
    opacity: var(--opacity-subdued-text);
  }

  .quick-order-list-total__messages {
    display: flex;
    flex-direction: column;
    gap: var(--gap-xs);
  }

  .quick-order-list-total__success,
  .quick-order-list-total__error {
    display: flex;
    align-items: center;
    gap: var(--gap-xs);
  }

  .quick-order-list-total__success .icon-success,
  .quick-order-list-total__error .quick-order-list-total__icon--error {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: var(--icon-size-sm);
    height: var(--icon-size-sm);
    color: inherit;
  }

  .quick-order-list-total__success .icon-success svg,
  .quick-order-list-total__error .quick-order-list-total__icon--error svg {
    width: 100%;
    height: 100%;
  }

  .quick-order-list-total__error:empty,
  .quick-order-list-total__success:empty {
    display: none;
  }

  .quick-order-list-total__info.confirmation-visible {
    display: none;
  }

  .quick-order-list-total__confirmation-text {
    white-space: nowrap;
  }

  .quick-order-list-total__confirmation-buttons {
    display: flex;
    gap: var(--gap-md);
    align-items: center;
  }

  .quick-order-list-total__confirmation button {
    margin: 0;
    white-space: nowrap;
  }

  .quick-order-list__remove-all-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--gap-sm);
  }

  /* Mobile styles */
  @media screen and (max-width: 749px) {
    .quick-order-list-total__info {
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .quick-order-list-total__column {
      order: 3; /* Move column to the end on mobile */
      width: 100%;
      flex: 1 1 auto;
    }

    .quick-order-list-total__actions {
      flex-direction: column;
      width: 100%;
    }

    .quick-order-list-total__messages {
      width: 100%;
      align-items: center;
      margin-block-start: var(--margin-xs);
    }

    .quick-order-list-total__summary {
      order: 1; /* First on mobile */
      display: flex;
      flex-direction: column;
      align-items: center;
      width: 100%;
      gap: var(--gap-md);
    }

    .quick-order-list-total__items {
      text-align: center;
      width: auto;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: var(--gap-xs);
    }

    .quick-order-list-total__items span {
      display: inline;
      margin-block-end: 0;
    }

    .quick-order-list-total__items .h5 {
      display: inline;
    }

    .quick-order-list-total__price {
      text-align: center;
      width: 100%;
    }

    .quick-order-list-total__product-total {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: var(--gap-xs);
    }

    .quick-order-list-total__product-total .quick-order-list-total__subtotal-value {
      display: inline-block;
      margin-block-end: 0;
    }

    .quick-order-list-total__product-total .quick-order-list-total__subtotal {
      display: inline;
    }

    .quick-order-list__button,
    .quick-order-list__remove-all-button {
      width: 100%;
      justify-content: center;
    }

    .quick-order-list-total__confirmation {
      flex-direction: column;
    }

    .quick-order-list-total__tax-note {
      margin-block-start: var(--margin-xs);
    }
  }
/* END_SECTION:quick-order-list */

/* START_SECTION:slideshow (INDEX:119) */
.slideshow-section {
    slideshow-arrows .slideshow-control:first-of-type {
      margin-inline-start: var(--padding-xs);
    }

    slideshow-arrows .slideshow-control:last-of-type {
      margin-inline-end: var(--padding-xs);
    }

    .slideshow--with-hints--mobile-with-hints {
      gap: var(--slideshow-gap, 0);
      grid-column: 1 / -1;
    }

    /* Hide navigation arrows at boundaries for with-hints mode */
    .slideshow--with-hints--mobile-with-hints slideshow-arrows .slideshow-control {
      transition: opacity 0.3s ease;
    }

    /* Override animation for boundary arrows in with-hints mode on hover */
    slideshow-component.slideshow--with-hints--mobile-with-hints:has(
        slideshow-slide:first-child:not([aria-hidden='true'])
      )
      > slideshow-container
      > slideshow-arrows
      .slideshow-control--previous,
    slideshow-component.slideshow--with-hints--mobile-with-hints:has(
        slideshow-slide:last-child:not([aria-hidden='true'])
      )
      > slideshow-container
      > slideshow-arrows
      .slideshow-control--next {
      animation: none;
      opacity: 0;
      pointer-events: none;
    }

    @media screen and (max-width: 749px) {
      .slideshow--with-hints--mobile-with-hints slideshow-slides {
        padding-inline: var(--page-margin);
      }

      .slideshow--with-hints--mobile-with-hints slideshow-slide {
        width: 96%;
      }

      .slideshow--with-hints--mobile-with-hints slideshow-slides {
        gap: min(var(--slideshow-gap, 0), 10px);
      }
    }

    @media screen and (min-width: 750px) {
      .slideshow--with-hints {
        gap: var(--slideshow-gap, 0);
        grid-column: 1 / -1;
      }

      .slideshow--with-hints slideshow-slides {
        padding-inline: var(--page-margin);
        gap: var(--slideshow-gap, 0);
      }

      .slideshow--with-hints slideshow-slide {
        width: calc((100vw - var(--page-margin) * 2));
        overflow: hidden;
      }

      .slideshow--with-hints slideshow-arrows .slideshow-control {
        transition: opacity 0.3s ease;
      }

      slideshow-component.slideshow--with-hints:has(slideshow-slide:first-child:not([aria-hidden='true']))
        > slideshow-container
        > slideshow-arrows
        .slideshow-control--previous,
      slideshow-component.slideshow--with-hints:has(slideshow-slide:last-child:not([aria-hidden='true']))
        > slideshow-container
        > slideshow-arrows
        .slideshow-control--next {
        animation: none;
        opacity: 0;
        pointer-events: none;
      }
    }
  }
/* END_SECTION:slideshow */

/* START_SECTION:ugc-feed (INDEX:125) */
.ugc-feed__heading {
  margin: 0 0 8px 0;
  line-height: 1.2;
}

.ugc-feed__subtext {
  font-size: clamp(0.875rem, 2vw, 1rem);
  color: var(--color-foreground);
  opacity: 0.65;
  margin: 0;
}

/*
  Override Horizon's `.section > * { grid-column: 2 }` with higher specificity (0,2,0 vs 0,1,0).
  This spans the carousel full-width so it can bleed edge-to-edge without negative margins.
  overflow: hidden clips the scrollable track without extending past the viewport.
*/
.section .ugc-feed__track-wrapper {
  grid-column: 1 / -1;
  overflow: hidden;
}

.ugc-feed__track {
  display: flex;
  align-items: flex-start;
  gap: var(--ugc-gap, 12px);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  /*
    padding-left = page-margin aligns first card with section content (heading, footer).
    No negative margin tricks needed — wrapper already spans full viewport.
  */
  padding-left: var(--page-margin, 16px);
  /* Bottom padding prevents staggered cards from being clipped */
  padding-bottom: calc(var(--ugc-stagger, 24px) + 4px);
  cursor: grab;
}

.ugc-feed__track::-webkit-scrollbar {
  display: none;
}

.ugc-feed__track:active {
  cursor: grabbing;
}

.ugc-feed__item {
  flex: 0 0 var(--ugc-card-width, 80%);
  scroll-snap-align: start;
}

/* Alternate stagger: even cards drop down */
.ugc-feed__item:nth-child(even) {
  margin-top: var(--ugc-stagger, 24px);
}

@media screen and (min-width: 750px) {
  .ugc-feed__item {
    flex: 0 0 var(--ugc-card-width-desktop, 30%);
  }
}

.ugc-feed__frame {
  position: relative;
  border-radius: var(--ugc-border-radius, 14px);
  border: var(--ugc-border-width, 3px) solid var(--ugc-border-color, #f23440);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: rgba(var(--color-foreground-rgb, 0, 0, 0), 0.05);
}

.ugc-feed__link {
  display: block;
  width: 100%;
  height: 100%;
}

.ugc-feed__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.ugc-feed__frame:hover .ugc-feed__img {
  transform: scale(1.03);
}

.ugc-feed__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ugc-feed__placeholder-svg {
  width: 40%;
  height: 40%;
  opacity: 0.2;
}

.ugc-feed__badge {
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F23440;
  color: #FFF0F1;
  border: 2.5px solid #FFF0F1;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.22);
}

.ugc-feed__footer {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid rgba(var(--color-foreground-rgb, 0, 0, 0), 0.1);
}

.ugc-feed__footer-text {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  font-weight: 600;
  color: var(--color-foreground);
  margin: 0;
}
/* END_SECTION:ugc-feed */

/* CSS from block stylesheet tags */
/* START_BLOCK:_accordion-row (INDEX:127) */
.details__icon {
    height: auto;
    margin-inline-end: var(--margin-xs);
  }
/* END_BLOCK:_accordion-row */

/* START_BLOCK:_announcement (INDEX:128) */
.text-block:not(.text-block--full-width).rte,
  .text-block:not(.text-block--full-width).paragraph {
    /* Safari doesn't support pretty, so fallback to balance */
    text-wrap: balance;
    text-wrap: pretty;
  }

  .text-block:not(.text-block--full-width).h1,
  .text-block:not(.text-block--full-width).h2,
  .text-block:not(.text-block--full-width).h3,
  .text-block:not(.text-block--full-width).h4,
  .text-block:not(.text-block--full-width).h5,
  .text-block:not(.text-block--full-width).h6 {
    text-wrap: balance;
  }

  /* Hide underline unless text is using paragraph styles. */
  .text-block:is(.h1, .h2, .h3, .h4, .h5, .h6) a {
    text-decoration-color: transparent;
  }

  .text-block h1,
  .text-block.h1 > * {
    margin-block: var(--font-h1--spacing);
  }

  .text-block h2,
  .text-block.h2 > * {
    margin-block: var(--font-h2--spacing);
  }

  .text-block h3,
  .text-block.h3 > * {
    margin-block: var(--font-h3--spacing);
  }

  .text-block h4,
  .text-block.h4 > * {
    margin-block: var(--font-h4--spacing);
  }

  .text-block h5,
  .text-block.h5 > * {
    margin-block: var(--font-h5--spacing);
  }

  .text-block h6,
  .text-block.h6 > * {
    margin-block: var(--font-h6--spacing);
  }

  .text-block > *:first-child {
    margin-block-start: 0;
  }

  .text-block > *:last-child {
    margin-block-end: 0;
  }

  .text-block--align-center,
  .text-block--align-center > * {
    margin-inline: auto;
  }

  .text-block--align-right,
  .text-block--align-right > * {
    margin-inline-start: auto;
  }
/* END_BLOCK:_announcement */

/* START_BLOCK:_blog-post-card (INDEX:129) */
.blog-post-card {
    display: flex;
    flex-direction: column;
    text-align: var(--text-align);
    column-gap: var(--columns-gap);
  }

  .blog-post-item--horizontal:has(.blog-post-card__image-container) .blog-post-card {
    & > *:first-child {
      flex-basis: 70%;
    }

    & > *:last-child {
      flex-basis: 30%;
    }
  }

  .blog-post-card__content {
    padding-block-start: 0.4rem;
    display: flex;
    flex-direction: column;
  }

  .blog-post-item .blog-post-card__image-container,
  .blog-post-item .blog-post-card__content {
    width: 100%;
  }

  /**
   * Horizontal layout (image left, content right)
   * Applied to hero posts based on total article count
   * Only applies the split layout when an image is actually present
   */
  .blog-post-item--horizontal .blog-post-card {
    flex-direction: row;

    @media screen and (max-width: 749px) {
      flex-direction: column;
    }
  }

  .blog-post-card__content a {
    display: block;
    text-wrap: pretty;
    text-decoration: none;
    padding-block-start: 0.75rem;
  }

  .blog-post-card__content a:hover,
  .blog-post-card__content a:hover [style*='--color: var(--color-primary)'] {
    color: var(--color-primary-hover);
  }

  .blog-post-card__content a:hover [style*='--color: var(--color-foreground-heading)'] {
    color: rgb(var(--color-foreground-heading-rgb) / var(--opacity-subdued-text));
  }

  .blog-post-card__content a:hover [style*='--color: var(--color-foreground)'] {
    color: rgb(var(--color-foreground-rgb) / var(--opacity-subdued-text));
  }
/* END_BLOCK:_blog-post-card */

/* START_BLOCK:_blog-post-content (INDEX:130) */
.blog-post-content {
    max-width: var(--normal-content-width);
    margin: 0 auto;
  }
/* END_BLOCK:_blog-post-content */

/* START_BLOCK:_blog-post-description (INDEX:131) */
.blog-post-card__content-text a {
    color: var(--color-primary);
  }

  .custom-color,
  .custom-color > :is(h1, h2, h3, h4, h5, h6, p, *) {
    color: var(--color);
  }
/* END_BLOCK:_blog-post-description */

/* START_BLOCK:_blog-post-featured-image (INDEX:132) */
.blog-post-featured-image {
    --width: 100%;
    --custom-width: 100%;

    display: block;
    position: relative;
    width: var(--width);
  }

  .blog-post-featured-image.size-style {
    --width: var(--size-style-width, 100%);
  }

  .blog-post-featured-image--height-fit {
    height: fit-content;
  }

  .blog-post-featured-image--height-fill {
    height: 100%;
  }

  .blog-post-featured-image__image {
    aspect-ratio: var(--ratio);
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
  }

  @media screen and (max-width: 749px) {
    .blog-post-featured-image {
      --width: var(--width-mobile, var(--width));
      --custom-width: var(--custom-width-mobile, var(--custom-width));
    }

    .blog-post-featured-image.size-style {
      --width: var(--size-style-width-mobile, var(--size-style-width, 100%));
    }
  }
/* END_BLOCK:_blog-post-featured-image */

/* START_BLOCK:_blog-post-image (INDEX:133) */
.blog-post-card__image {
    width: 100%;
    object-fit: cover;
    object-position: center center;
    height: calc(var(--blog-post-card-img-height) * var(--blog-post-card-scale));
  }

  .blog-post-card__image--small {
    --blog-post-card-img-height: 280px;
  }

  .blog-post-card__image--medium {
    --blog-post-card-img-height: 340px;
  }

  .blog-post-card__image--large {
    --blog-post-card-img-height: 400px;
  }
/* END_BLOCK:_blog-post-image */

/* START_BLOCK:_blog-post-info-text (INDEX:134) */
.blog-post-details {
    display: flex;
    gap: var(--gap-sm);
    font-size: var(--font-paragraph-size);
    color: rgb(var(--color-foreground-rgb) / var(--opacity-subdued-text));
    white-space: nowrap;
    flex-wrap: wrap;
  }

  .blog-post-details > span {
    text-overflow: clip;
    overflow: hidden;
  }
/* END_BLOCK:_blog-post-info-text */

/* START_BLOCK:_card (INDEX:135) */
.card {
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    width: 100%;
    height: 100%;
    border-radius: var(--border-radius, 0);
    border-width: var(--border-width, 0);
    border-style: var(--border-style, none);
    border-color: var(--border-color);
    container-type: inline-size;
  }

  .card__content {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: var(--layer-flat);
    display: flex;
    flex-direction: column;
    aspect-ratio: var(--card-ratio, 1);
  }

  .card__content.background-transparent {
    background-color: transparent;
  }

  /* When card has both image and content, use min-height from container query */
  .card__content--has-min-height {
    min-height: calc(100cqw / var(--card-ratio-numeric));
  }

  .card__inner {
    flex: 1;
  }

  .card__media-wrapper {
    display: flex;
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
  }

  .card__media-wrapper video {
    z-index: var(--layer-raised);
  }

  .card__link {
    position: absolute;
    inset: 0;
    z-index: var(--layer-raised);
  }

  .card__link ~ :is(.card__content, .card__media-wrapper) {
    pointer-events: none;

    :is(a, button, input, textarea, select) {
      pointer-events: auto;
    }
  }

  /* Needs the .card__link ~ to be specific enough to take effect. */
  .card__link ~ .card__content--design-mode {
    pointer-events: auto;
  }
/* END_BLOCK:_card */

/* START_BLOCK:_carousel-content (INDEX:136) */
.carousel-content slideshow-slides {
    --slideshow-gap: var(--carousel-gap);
  }

  .carousel-content slideshow-slides > .card {
    flex: 0 0 auto;
    width: calc(
      (100% - (var(--carousel-gap, 8px) * (var(--carousel-mobile-columns, 2) - 1)) - var(--peek-next-slide-size, 0px)) /
        var(--carousel-mobile-columns, 2)
    );
  }

  @media screen and (min-width: 750px) {
    .carousel-content slideshow-slides > .card {
      width: calc(
        (100% - (var(--carousel-gap, 8px) * (var(--carousel-columns, 4) - 1)) - var(--peek-next-slide-size, 0px)) /
          var(--carousel-columns, 4)
      );
    }
  }

  .carousel-content .slideshow-control[disabled] {
    display: none;
  }

  .carousel-content slideshow-arrows {
    padding-inline: var(--util-page-margin-offset);
  }

  .carousel-content .slideshow-control--next {
    margin-inline-start: auto;
  }
/* END_BLOCK:_carousel-content */

/* START_BLOCK:_cart-products (INDEX:137) */
.cart-page__title + .cart-page__items {
    margin-block-start: var(--margin-lg);
  }
/* END_BLOCK:_cart-products */

/* START_BLOCK:_cart-summary (INDEX:138) */
.cart-summary__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--gap-2xl);
    container-type: inline-size;
    padding: 0;
    position: sticky;
    top: 0;
    align-self: start;

    @media screen and (min-width: 750px) {
      padding: var(--padding-5xl);
      grid-row: 1 / -1;
    }
  }

  body:has(> #header-group header-component[sticky]) .cart-summary__inner {
    top: var(--header-height, 0);
  }

  .cart-summary {
    @media screen and (max-width: 749px) {
      border: none;
    }

    @media screen and (min-width: 750px) {
      display: grid;
      grid-template-rows: subgrid;
      grid-row: 1 / -1;
    }
  }

  .cart-summary--extend {
    height: 100%;

    @media screen and (min-width: 750px) {
      border-right: none;
      border-top-right-radius: 0;
      border-bottom-right-radius: 0;
    }
  }

  /* If extend is on, only include top and bottom borders when the border radius is 0. */
  .cart-summary--extend:not(.has-border-radius) {
    @media screen and (min-width: 750px) {
      border-top: none;
      border-bottom: none;
    }
  }

  .cart-summary--extend .cart-summary__inner {
    height: 100%;
    padding: var(--padding-md) 0 var(--padding-4xl);

    @media screen and (min-width: 750px) {
      grid-row: 2 / -1;
      padding-inline: var(--page-margin);
      width: var(--sidebar-width);
    }
  }

  /* If extend is off, apply the border radius to the inner summary container */
  .cart-summary__inner.has-border-radius {
    border-radius: var(--border-radius);
  }

  @media screen and (max-width: 749px) {
    .inherit-parent-scheme--mobile {
      --color-background: inherit;
      --color-background-rgb: inherit;
      --color-foreground: inherit;
      --color-foreground-rgb: inherit;
      --color-primary: inherit;
      --color-primary-rgb: inherit;
      --color-primary-hover: inherit;
      --color-primary-hover-rgb: inherit;
      --color-border: inherit;
      --color-border-rgb: inherit;
      --color-shadow: inherit;
      --color-shadow-rgb: inherit;
      --color-foreground-heading: inherit;
      --color-primary-button-text: inherit;
      --color-primary-button-background: inherit;
      --color-primary-button-border: inherit;
      --color-primary-button-hover-text: inherit;
      --color-primary-button-hover-background: inherit;
      --color-primary-button-hover-border: inherit;
      --color-secondary-button-text: inherit;
      --color-secondary-button-background: inherit;
      --color-secondary-button-border: inherit;
      --color-secondary-button-hover-text: inherit;
      --color-secondary-button-hover-background: inherit;
      --color-secondary-button-hover-border: inherit;
      --color-input-text: inherit;
      --color-input-text-rgb: inherit;
      --color-input-background: inherit;
    }
  }
/* END_BLOCK:_cart-summary */

/* START_BLOCK:_cart-title (INDEX:139) */
.cart-title h1 {
    margin-block-end: 0;
    display: inline-flex;
    align-items: center;
    gap: var(--gap-sm);
  }

  .cart-title .cart-bubble {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--style-border-radius-buttons-primary);
    aspect-ratio: auto;
    padding: var(--cart-padding);
  }

  .cart-title .cart-bubble[data-maintain-ratio] {
    width: min(1lh, 26px);
    height: min(1lh, 26px);
  }

  .cart-title .cart-bubble .cart-bubble__background {
    background-color: rgb(var(--color-foreground-rgb) / var(--opacity-10-25));
  }

  .cart-title .cart-bubble__text {
    color: var(--color-foreground);
    font-family: var(--font-paragraph--family);
    font-weight: var(--font-paragraph--weight);
    font-size: clamp(var(--font-size--3xs), 0.75em, var(--font-size--xs));
  }
/* END_BLOCK:_cart-title */

/* START_BLOCK:_collection-image (INDEX:142) */
.collection-image {
    width: var(--image-width);
  }

  .collection-image .collection-image__featured-image {
    aspect-ratio: var(--ratio);
    object-fit: cover;
  }
/* END_BLOCK:_collection-image */

/* START_BLOCK:_collection-link (INDEX:144) */
.collection-links__link {
    --min-font-size: var(--font-size--4xl);
    --max-font-size: var(--font-size--6xl);

    display: flex;
    color: inherit;
    text-decoration: none;
    text-wrap: pretty;
    font-size: clamp(var(--min-font-size), 4.5vw, var(--max-font-size));

    /* When hovering over container, dim non-current links (text layout only) */
    @media (hover: hover) {
      collection-links-component:not([layout='spotlight']) .collection-links__container:hover & {
        opacity: var(--opacity-subdued-text);
      }

      collection-links-component:not([layout='spotlight']) .collection-links__container:hover &[aria-current='true'] {
        opacity: 1;
      }
    }

    [layout='spotlight'] & {
      /* Spotlight layout: dimmed by default */
      opacity: var(--disabled-opacity);

      &[aria-current='true'] {
        opacity: 1;
      }
    }

    .text-block {
      display: inline-block;
    }

    @media screen and (max-width: 749px) {
      --min-font-size: var(--font-size--3xl);
      --max-font-size: var(--font-size--5xl);

      [layout='spotlight'] & {
        white-space: normal;
        scroll-snap-align: start;
        text-wrap: pretty;

        span {
          text-wrap: pretty;
        }
      }
    }
  }

  .collection-links__count {
    font-size: 0.5em;
    opacity: var(--disabled-opacity);
    font-weight: var(--font-paragraph--weight);
  }

  .collection-links__image {
    align-items: center;
    justify-content: center;

    &:not([hidden]) {
      display: flex;
    }

    &[reveal] {
      --offset: 15px;

      position: fixed;
      top: 0;
      left: 0;
      z-index: var(--layer-temporary);
      display: block;
      translate: calc(var(--x) + var(--offset)) calc(var(--y) + var(--offset));
      pointer-events: none;
      width: auto;

      image-block {
        --image-height-basis: 5rem;

        height: var(--image-height);
      }
    }
  }
/* END_BLOCK:_collection-link */

/* START_BLOCK:_featured-blog-posts-card (INDEX:148) */
.featured-blog-posts-card {
    text-align: var(--text-align);
  }

  .featured-blog-posts-card__inner {
    gap: var(--gap);
  }

  .resource-list--grid .resource-list__item {
    min-width: 0;
  }

  /* Editorial layout */
  .resource-list:not(.hidden--desktop) .blog-post-card--flexible-aspect-ratio {
    .featured-blog-posts-card__content {
      --flex-wrap: nowrap;
    }
  }

  @media screen and (max-width: 749px) {
    .resource-list:not(.hidden--desktop) .blog-post-card--flexible-aspect-ratio {
      .featured-blog-posts-card__image,
      .blog-placeholder-svg {
        aspect-ratio: unset;
      }
    }
  }

  .featured-blog-posts-card__inner a,
  .featured-blog-posts-card__inner button {
    pointer-events: auto;
  }

  /* allow all blocks to be selectable in editor preview */
  .shopify-design-mode .featured-blog-posts-card__content * {
    pointer-events: auto;
  }

  .featured-blog-posts-card__content {
    --flex-wrap: wrap;
  }

  .featured-blog-posts-card__content h4 {
    margin: 0;
  }
/* END_BLOCK:_featured-blog-posts-card */

/* START_BLOCK:_featured-blog-posts-image (INDEX:149) */
.featured-blog-posts-card__image {
    width: 100%;
  }

  .featured-blog-posts-card__image .blog-placeholder-svg {
    object-fit: cover;
    width: 100%;
    height: 100%;
  }
/* END_BLOCK:_featured-blog-posts-image */

/* START_BLOCK:_featured-product-gallery (INDEX:151) */
.featured-product-section .card-gallery .quick-add__button {
    position: absolute;
    right: var(--quick-add-offset, var(--padding-sm));
    bottom: var(--quick-add-offset, var(--padding-sm));
  }
/* END_BLOCK:_featured-product-gallery */

/* START_BLOCK:_featured-product (INDEX:154) */
.featured-product-content-top {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: var(--gap-sm);
  }
/* END_BLOCK:_featured-product */

/* START_BLOCK:_footer-social-icons (INDEX:155) */
.social-icons__wrapper {
    display: flex;
    gap: var(--gap-sm);
    flex-wrap: wrap;
    justify-content: center;

    @media screen and (min-width: 750px) {
      flex-wrap: nowrap;
      justify-content: flex-start;
    }
  }
/* END_BLOCK:_footer-social-icons */

/* START_BLOCK:_header-logo (INDEX:167) */
.header-logo {
    display: flex;
    height: 100%;
    font-size: var(--font-size--md);
    font-family: var(--font-family);
    font-weight: var(--font-weight);
    font-style: var(--font-style);
    color: var(--color-foreground);
    justify-content: center;
    align-items: center;
    text-decoration: none;

    &[data-hidden-on-home-page] {
      display: none;

      #header-component:is(
          [sticky='always']:not([data-scroll-direction='none']),
          [sticky='scroll-up'][data-scroll-direction='up']
        )
        & {
        display: flex;
      }
    }

    @media screen and (max-width: 749px) {
      padding: 0;
    }

    @media screen and (min-width: 750px) {
      flex-shrink: 0;
    }

    &:hover {
      text-decoration: none;
    }
  }

  .header-logo__image {
    object-fit: contain;
    height: var(--header-logo-image-height-mobile);
    width: var(--header-logo-image-width-mobile);

    @media screen and (min-width: 750px) {
      height: var(--header-logo-image-height);
      width: var(--header-logo-image-width);
    }
  }

  .header-logo:has(.header-logo__image-container--inverse) .header-logo__image-container--original {
    display: var(--header-logo-display, block);
  }

  .header-logo__image-container--inverse {
    display: var(--header-logo-inverse-display, none);
  }
/* END_BLOCK:_header-logo */

/* START_BLOCK:_header-menu (INDEX:168) */
.header__drawer {
    --header-drawer-min-height: 60px;
    display: flex;
    min-height: var(--header-drawer-min-height);
    align-items: center;
  }

  #header-component[data-menu-style='drawer'] .header__drawer {
    display: flex;
    min-height: var(--header-drawer-min-height);
  }

  @media screen and (min-width: 750px) {
    #header-component[data-menu-style='menu'] .header__drawer {
      display: none;
      min-height: 0;
    }
  }

  .header--compact .header__drawer {
    min-height: var(--minimum-touch-target);
  }

  .menu-list--mobile {
    &.menu-list {
      display: grid;
    }

    & .menu-list__list {
      width: max-content;
      margin-inline: auto;
      gap: var(--menu-horizontal-gap);
    }

    & li {
      width: max-content;
      padding-block: var(--padding-sm);
    }

    & li:first-of-type {
      padding-inline-start: var(--menu-horizontal-gap);
    }

    & li:last-of-type {
      padding-inline-end: var(--menu-horizontal-gap);
    }

    & a {
      color: var(--color-foreground);
    }
  }

  .menu-list__scroll-container {
    position: relative;
    overflow-x: auto;
    mask-image: linear-gradient(to right, transparent, #000 20px, #000 calc(100% - 20px), transparent);
    padding-block: var(--padding-2xs);
  }

  .menu-list {
    --menu-horizontal-gap: var(--gap-xl);
    --menu-vertical-gap: var(--gap-xl);

    display: flex;
    height: 100%;
  }

  .menu-list__list {
    display: flex;
    justify-content: var(--grid-area-alignment);
  }

  .menu-list__list-item {
    flex-shrink: 0;
    white-space: nowrap;
    display: flex;
    align-items: center;
    height: 100%;
  }

  .menu-list__list-item[aria-hidden='true'] {
    visibility: hidden;
  }

  .menu-list__link {
    font-family: var(--menu-top-level-font-family);
    font-style: var(--menu-top-level-font-style);
    font-weight: var(--menu-top-level-font-weight);
    font-size: var(--menu-top-level-font-size);
    line-height: var(--menu-top-level-font-line-height);
    text-transform: var(--menu-top-level-font-case);
    color: var(--menu-top-level-font-color);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    cursor: pointer;
    height: 100%;
    margin-block: 0;

    &::after {
      content: '';
      position: absolute;
      display: none;
      top: var(--header-padding);
      height: var(--box-height);
      left: 0;
      right: 0;
    }

    &[data-safety-box='true']::after {
      display: block;
    }

    &:hover,
    &:focus {
      color: var(--menu-top-level-font-color);
    }

    @media screen and (min-width: 750px) {
      font-size: var(--menu-top-level-font-size-desktop);
    }
  }

  .menu-list__link-title {
    padding-inline: calc(var(--gap-xl) / 2);
  }
  [slot='overflow'] .menu-list__link-title {
    padding-inline: 0;
  }

  .menu-list__list-item:not([slot='overflow']) {
    flex-direction: column;
  }
  .menu-list__list-item:not([slot='overflow'])::after {
    content: '';
    width: 100%;
    height: var(--header-padding);
    margin-bottom: calc(-1 * var(--header-padding));
  }

  [slot='overflow'] > .menu-list__link::after {
    content: none;
  }

  /*
    High specificity selectors to subdue non-hovered links without javascript.
    If the need for js-generated `hovered` and `focused` classes arises for another reason we can simplify these.
  */
  .menu-list:where(:has(.menu-list__list-item:hover)),
  .menu-list:where(:has(.menu-list__list-item:focus-within)),
  .menu-list:where(:has(.menu-list__list-item:not([aria-hidden='true']) .menu-list__link--active)) {
    .menu-list__link {
      color: rgb(var(--menu-top-level-font-color-rgb) / var(--opacity-subdued-text));
    }
  }

  /* stylelint-disable-next-line selector-max-specificity */
  .menu-list:not(:has(.menu-list__list-item:hover)) .menu-list__link--active,
  .menu-list .menu-list__list-item:where(:hover, :focus-within) .menu-list__link,
  .menu-list .menu-list__list-item[slot='overflow'] .menu-list__link[aria-expanded='true'] {
    color: var(--menu-top-level-font-color);
  }

  .overflow-menu::part(list) {
    /* Make sure focus outline is not cut off by overflow hidden */
    --focus-outline-size: calc(var(--focus-outline-offset) + var(--focus-outline-width));

    gap: 0;
    margin-inline: calc(-1 * var(--menu-horizontal-gap) / 2);
  }

  .overflow-menu {
    background-color: transparent;
    padding: var(--focus-outline-size);
    margin: calc(-1 * var(--focus-outline-size));
  }

  /** mega menu **/
  .menu-list__submenu,
  .overflow-menu::part(overflow) {
    --submenu-padding-block-start: var(--padding-3xl);
    --submenu-padding-block-end: var(--padding-3xl);

    background-color: transparent;
  }

  .header__row[style*='--border-bottom-width: 0px'] {
    .menu-list__submenu.color-scheme-matches-parent,
    .overflow-menu.color-scheme-matches-parent::part(overflow) {
      --submenu-padding-block-start: 0px;
    }
  }

  .menu-list__list-item:where(:not([slot='overflow'])) > .menu-list__submenu,
  .overflow-menu::part(overflow) {
    --submenu-content-opacity: 0;
    --submenu-content-animation: opacity calc(var(--submenu-animation-speed) * 0.75) var(--animation-easing);

    visibility: hidden;
    position: absolute;
    width: 100%;
    left: 0;
    top: calc(100% - 1px + var(--border-bottom-width) - (var(--full-open-header-height) - var(--submenu-height)));
    z-index: var(--layer-header-menu);
    padding-inline: var(--padding-inline);
    /* Clip path starts at header height so it doesn't mess with the pointer events in the header */
    clip-path: rect(var(--header-height) 100% var(--full-open-header-height) 0); /* stylelint-disable-line */
    transition: clip-path var(--submenu-animation-speed) var(--ease-out-cubic); /* stylelint-disable-line */
  }

  [data-submenu-overlap-bottom-row] {
    .menu-list__list-item:where(:not([slot='overflow'])) > .menu-list__submenu,
    .overflow-menu::part(overflow) {
      clip-path: rect(var(--top-row-height) 100% var(--full-open-header-height) 0); /* stylelint-disable-line */
    }
  }

  /* Show the submenus on hover */
  .menu-list__list-item:has([aria-expanded='true']) > .menu-list__submenu,
  /* Show the overflow menu when a menu item is hovered */
  .overflow-menu:has([slot="overflow"] [aria-expanded='true'])::part(overflow-list),
  /* Keep the submenus open when they are hovered */
  .menu-list__submenu:is(:hover),
  .overflow-menu::part(overflow):hover {
    --submenu-content-opacity: 1;

    visibility: visible;
  }

  .overflow-menu::part(overflow) {
    --menu-top-level-font-size: var(--font-size--xlarge);

    display: grid;
    grid-template-columns: var(--full-page-grid-with-margins);
  }

  .overflow-menu::part(overflow-list) {
    position: relative;
    display: grid;
    grid-template-columns: minmax(auto, 200px) 1fr;
    grid-template-areas: 'left right';
    grid-template-rows: max-content;
    grid-gap: 0;
    grid-column: 2;
  }

  .menu-list__list-item:is([slot='overflow']) {
    --menu-top-level-font-color: var(--color-foreground);
    --menu-top-level-font-color-rgb: var(--color-foreground-rgb);

    display: contents;
    white-space: normal;

    .menu-list__link {
      grid-area: left;
      grid-row: auto;
      height: min-content;
      font-size: var(--font-size--xl);
      transition: var(--submenu-content-animation);
    }

    .menu-list__submenu {
      visibility: hidden;
      grid-row: 1;
      grid-area: right;
      grid-row-end: span calc(var(--overflow-count) + 1);
      padding-inline-start: var(--menu-horizontal-gap);
    }

    .menu-list__submenu-inner {
      transform: none;
      grid-column: unset;
      padding-block: 0;
    }

    .menu-list__link[aria-expanded='true'] + .menu-list__submenu {
      visibility: visible;
    }
  }

  .header-menu {
    height: 100%;
  }

  .menu-list__submenu-inner {
    position: relative;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .menu-list__submenu-inner,
  .overflow-menu::part(overflow-list) {
    padding-block-start: var(--submenu-padding-block-start);
    padding-block-end: var(--submenu-padding-block-end);
    padding-inline: var(--section-padding-inline);
    opacity: var(--submenu-content-opacity);
    transition: var(--submenu-content-animation);
    transform: translateY(calc(var(--full-open-header-height) - var(--submenu-height)));

    /* Make overflow menu scrollable when content exceeds viewport */
    max-height: calc(80vh - var(--header-height));
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: thin;
    scrollbar-color: rgb(var(--color-foreground-rgb) / var(--opacity-40)) transparent;
  }

  .mega-menu__link {
    font-family: var(--menu-child-font-family);
    font-style: var(--menu-child-font-style);
    font-weight: var(--menu-child-font-weight);
    font-size: var(--menu-child-font-size);
    line-height: var(--menu-child-font-line-height);
    text-transform: var(--menu-child-font-case);
    color: var(--menu-child-font-color);
    white-space: normal;
    text-decoration: none;
    display: inline-flex;
    padding: var(--padding-2xs) 0;

    &:hover {
      color: var(--menu-child-active-font-color);
    }
  }

  .mega-menu__link--parent {
    font-family: var(--menu-parent-font-family);
    font-style: var(--menu-parent-font-style);
    font-weight: var(--menu-parent-font-weight);
    font-size: var(--menu-parent-font-size);
    line-height: var(--menu-parent-font-line-height);
    text-transform: var(--menu-parent-font-case);
    color: var(--menu-parent-font-color);

    &:hover {
      color: var(--menu-parent-active-font-color);
    }
  }

  @media screen and (max-width: 989px) {
    .mega-menu__content-list-item--hidden-tablet {
      display: none;
    }
  }

  .mega-menu__link:has(.mega-menu__link-image) {
    display: flex;
    flex-direction: column;
    padding-inline: 0;
    padding-block: var(--padding-sm) 0;
  }

  .mega-menu__link-image {
    width: 100%;
    position: relative;
    aspect-ratio: 16 / 9;
    margin-bottom: var(--padding-sm);
    object-fit: cover;
    border-radius: var(--menu-image-border-radius);
  }

  /* Fix alignment for collection image mode links without images */

  /* Target only top-level links (direct children of column > div) in collection image mode */
  .mega-menu__grid:has(.mega-menu__link-image)
    .mega-menu__column
    > div
    > .mega-menu__link:not(:has(.mega-menu__link-image)) {
    display: flex;
    flex-direction: column;
    padding-inline: 0;
    padding-block: var(--padding-sm) 0;
  }

  .mega-menu__grid:has(.mega-menu__link-image)
    .mega-menu__column
    > div
    > .mega-menu__link:not(:has(.mega-menu__link-image))::before {
    content: '';
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    margin-bottom: var(--padding-sm);
    background-color: var(--color-foreground-muted);
    opacity: 0.1;
    border-radius: var(--menu-image-border-radius);
  }

  .mega-menu__grid {
    display: grid;
    grid-template-columns: repeat(var(--menu-columns-tablet), minmax(0, 1fr));
    gap: var(--menu-vertical-gap) var(--menu-horizontal-gap);
    width: 100%;

    @media screen and (min-width: 990px) {
      grid-template-columns: repeat(var(--menu-columns-desktop), minmax(0, 1fr));
    }
  }

  .mega-menu__column {
    grid-column: span 1;
  }

  .mega-menu__column--span-2 {
    grid-column: span 2;
  }

  .mega-menu__column--span-3 {
    grid-column: span 3;
  }

  .mega-menu__column--span-4 {
    grid-column: span 4;
  }

  .mega-menu__column--wide-collection-image {
    grid-column: span 1;

    @media screen and (min-width: 990px) {
      grid-column: span 2;
    }
  }

  .mega-menu__submenu .mega-menu__column--wide-collection-image {
    grid-column: span 1;
  }

  .mega-menu__content-list {
    display: grid;
    justify-content: end;
    gap: var(--menu-vertical-gap) var(--menu-horizontal-gap);
  }

  .mega-menu__content-list--products {
    grid-template-columns: repeat(var(--menu-content-columns-tablet), minmax(0, 1fr));

    @media screen and (min-width: 990px) {
      grid-template-columns: repeat(var(--menu-content-columns-desktop), minmax(0, 1fr));
    }
  }

  .mega-menu__content-list--collections {
    grid-template-columns: repeat(var(--menu-content-columns-tablet), minmax(0, 300px));

    @media screen and (min-width: 990px) {
      grid-template-columns: repeat(var(--menu-content-columns-desktop), minmax(0, 300px));
    }
  }

  .mega-menu__list {
    display: grid;
    grid-template-columns: subgrid;
    grid-column: span var(--menu-columns-tablet);
    gap: var(--menu-vertical-gap) var(--menu-horizontal-gap);

    @media screen and (min-width: 990px) {
      grid-column: span var(--menu-columns-desktop);
    }
  }

  .mega-menu__content {
    grid-column: span var(--menu-content-columns-tablet) / -1;

    @media screen and (min-width: 990px) {
      grid-column: span var(--menu-content-columns-desktop) / -1;
    }
  }

  .menu-list__list-item[slot='overflow'] .section {
    grid-template-columns: 1fr;
  }

  .menu-list__list-item[slot='overflow'] .section .mega-menu__grid {
    grid-column: 1;
  }

  .mega-menu__content-list li {
    white-space: normal;
  }

  /* mega more menu */
  .mega-menu__more-list {
    --menu-child-font-size: var(--font-size--xl);

    width: 200px;
  }

  .mega-menu__submenu {
    /* preserves the inherited grid layout when this submenu wrapper is used */
    display: contents;
  }
/* END_BLOCK:_header-menu */

/* START_BLOCK:_image (INDEX:171) */
.image-block__placeholder {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center center;
    overflow: hidden;
    position: relative;
  }

  image-block {
    --image-height-basis: 10rem;
    --image-height-small: calc(var(--image-height-basis) * 2);
    --image-height-medium: calc(var(--image-height-basis) * 3);
    --image-height-large: calc(var(--image-height-basis) * 4);

    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: var(--ratio);
    width: 100%;
    max-width: calc(var(--image-height) * var(--ratio));
    height: var(--image-height);
    overflow: hidden;

    @media screen and (min-width: 750px) {
      --image-height-small: calc(var(--image-height-basis) * 2.5);
      --image-height-medium: calc(var(--image-height-basis) * 3.5);
      --image-height-large: calc(var(--image-height-basis) * 4.5);
    }

    @media screen and (max-width: 749px) {
      height: auto;
    }

    &[height='small'] {
      --image-height: var(--image-height-small);
    }

    &[height='medium'] {
      --image-height: var(--image-height-medium);
    }

    &[height='large'] {
      --image-height: var(--image-height-large);
    }

    &[ratio='portrait'] {
      --ratio: 4 / 5;
    }

    &[ratio='square'] {
      --ratio: 1 / 1;

      @media screen and (min-width: 750px) {
        max-width: var(--image-height);
      }
    }

    &[ratio='landscape'] {
      --ratio: 16 / 9;
    }

    img {
      object-fit: cover;
      width: 100%;
      height: auto;
      aspect-ratio: var(--ratio);
      border-radius: var(--border-radius);
    }
  }
/* END_BLOCK:_image */

/* START_BLOCK:_marquee (INDEX:175) */
marquee-component {
    display: block;
    width: 100%;
    overflow: hidden;
    background-color: var(--color-background);
  }

  .marquee__wrapper {
    display: flex;
    gap: var(--marquee-gap);
    width: fit-content;
    white-space: nowrap;
  }

  .marquee__content {
    min-width: max-content;
    display: flex;
    gap: var(--marquee-gap);
  }

  .marquee__content :is(p, h1, h2, h3, h4, h5, h6) {
    white-space: nowrap;
  }

  .marquee__content .marquee__repeated-items * {
    max-width: none;
  }

  .marquee__repeated-items {
    min-width: max-content;
    display: flex;
    gap: var(--marquee-gap);
    align-items: center;
    justify-content: center;
  }

  .marquee__repeated-items > * {
    align-content: center;
  }

  .hero__content-wrapper.layout-panel-flex--column marquee-component {
    --margin-inline: var(--full-page-margin-inline-offset);

    width: -webkit-fill-available;
    min-height: max-content;
  }

  @media (prefers-reduced-motion: no-preference) {
    marquee-component:not([data-disabled]) .marquee__wrapper {
      animation: marquee-motion var(--marquee-speed) linear infinite var(--marquee-direction);
    }
  }

  @keyframes marquee-motion {
    to {
      transform: translate3d(calc(-50% - (var(--marquee-gap) / 2)), 0, 0);
    }
  }
/* END_BLOCK:_marquee */

/* START_BLOCK:_product-details (INDEX:180) */
/* Clear padding on mobile, if not full-width */
  @media screen and (max-width: 749px) {
    .product-information.section--page-width .product-details > .group-block {
      padding-inline: 0;
    }
  }

  .view-product-title {
    display: none;
  }

  /* Container styles */
  .product-details {
    display: flex;
    align-self: start;
    justify-content: center;
  }

  @media screen and (min-width: 750px) {
    .product-details > .group-block {
      height: min-content;
    }

    .full-height--desktop {
      height: 100%;
      max-height: calc(100vh - var(--header-group-height, 0));
      min-height: fit-content;
    }

    .full-height--desktop .group-block {
      align-self: var(--details-position, 'flex-start');
    }
  }
/* END_BLOCK:_product-details */

/* START_BLOCK:_search-input (INDEX:185) */
.search-page-input {
    width: 100%;
    color: var(--color-input-text);
    background-color: var(--color-input-background);
    padding-block: var(--padding-lg);
    padding-inline: calc(var(--icon-size-lg) + var(--margin-xl) * 1.5);
    text-overflow: ellipsis;
    overflow: hidden;
    border-radius: var(--style-border-radius-inputs);
    border: var(--style-border-width-inputs) solid var(--color-input-border);

    @media screen and (max-width: 749px) {
      padding-inline: calc(var(--margin-xs) + var(--icon-size-lg) + var(--padding-md));
    }
  }

  .search-page-input::placeholder {
    color: rgb(var(--color-input-text-rgb) / var(--opacity-subdued-text));
  }

  .search-page-input__parent {
    display: flex;
    flex-direction: column;
    align-items: var(--horizontal-alignment);
  }

  .search-results__no-results {
    opacity: var(--opacity-subdued-text);
  }

  search-page-input-component {
    position: relative;
    width: 100%;
    display: flex;
    top: 0;
    max-width: var(--size-style-width);
    align-items: center;
    background-color: var(--color-background);
    margin: var(--margin-2xl) 0 var(--margin-md);

    @media screen and (max-width: 749px) {
      max-width: 100%;
    }
  }

  search-page-input-component .search__icon,
  search-page-input-component .search__icon:hover,
  search-page-input-component .search__reset-button,
  search-page-input-component .search__reset-button:hover {
    background: transparent;
    position: absolute;
    top: auto;
    width: var(--icon-size-lg);
    height: var(--icon-size-lg);
  }

  search-page-input-component .search__icon svg,
  search-page-input-component .search__reset-button svg {
    width: var(--icon-size-md);
    height: var(--icon-size-md);
  }

  search-page-input-component .search__icon svg {
    color: var(--color-input-text);
  }

  search-page-input-component .search__icon {
    left: var(--margin-lg);

    @media screen and (max-width: 749px) {
      left: var(--margin-md);
    }
  }

  search-page-input-component .search__reset-button {
    border-radius: 100%;
    color: var(--color-input-text);
    right: var(--margin-lg);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity var(--animation-speed) var(--animation-easing),
      visibility var(--animation-speed) var(--animation-easing);

    @media screen and (max-width: 749px) {
      right: var(--margin-md);
    }
  }

  search-page-input-component:has(.search-page-input:not(:placeholder-shown)) .search__reset-button {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  search-page-input-component .search__reset-button-icon {
    vertical-align: middle;
    display: flex;
    align-items: center;
    justify-content: center;
    width: var(--icon-size-lg);
    height: var(--icon-size-lg);
    transition: transform var(--animation-speed) var(--animation-easing);
  }

  search-page-input-component .search__reset-button:active .search__reset-button-icon {
    transform: scale(0.9);
  }

  search-page-input-component .search__reset-button-icon svg {
    width: var(--icon-size-md);
    height: var(--icon-size-md);
  }

  search-page-input-component .search__reset-button--hidden {
    cursor: default;
    opacity: 0;
    transition: opacity var(--animation-speed) var(--animation-easing);
    pointer-events: none;
    visibility: hidden;
  }

  search-page-input-component .search__reset-button-text {
    display: none;
  }
/* END_BLOCK:_search-input */

/* START_BLOCK:_slide (INDEX:186) */
.slide__content {
    height: 100%;
    position: relative;
    z-index: var(--layer-flat);

    @supports (animation-timeline: auto) {
      opacity: 0;
      animation: slide-reveal both linear;
      animation-timeline: var(--slideshow-timeline);
    }

    @media (prefers-reduced-motion) {
      opacity: 1;
      animation: none;
    }
  }

  .slide__content > * {
    margin: auto;
  }

  .slide__content.background-transparent {
    background-color: transparent;
  }

  slideshow-slide > .slide__image-container {
    display: flex;
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: absolute;
  }

  .slide__image-container > .slide__image,
  .slide__image-container > .slide__video,
  .slide__image-container > .slide__video-poster {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
  }

  .slide__image-container > .slide__video-poster {
    position: absolute;
  }

  /*
   * Force Safari to recalculate the timeline state on timeline refresh (after loop)
   */
  slideshow-component[refreshing-timeline] .slide__content {
    animation: none;
  }

  slideshow-slide .slide__image-container--rounded {
    border-radius: var(--corner-radius, 0);
  }
/* END_BLOCK:_slide */

/* START_BLOCK:_social-link (INDEX:187) */
.social-icons__icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    height: var(--icon-size-lg);
  }

  .social-icons__icon {
    display: flex;
    flex-shrink: 0;
    width: var(--icon-size-lg);
    height: var(--icon-size-lg);
  }

  .social-icons__icon {
    display: none;
  }

  .social-icons__icon-wrapper:has(.social-icons__icon path) {
    width: var(--icon-size-lg);

    .social-icons__icon {
      display: block;
    }

    .social-icons__icon-label {
      display: none;
    }
  }

  /* Disabled state for editor */
  .shopify-design-mode .social-icons__icon-wrapper--disabled {
    opacity: var(--disabled-opacity, 0.5);
    cursor: not-allowed;
  }

  .shopify-design-mode .social-icons__icon-wrapper--disabled a {
    pointer-events: none;
  }
/* END_BLOCK:_social-link */

/* START_BLOCK:accordion (INDEX:189) */
.accordion {
    flex: 1;
    width: 100%;
  }

  .accordion--dividers accordion-custom:not(:first-child) .details {
    border-block-start: var(--style-border-width) solid var(--color-border);
  }

  /* When accordion borders are not set, show fallback borders */
  .accordion--dividers {
    /* stylelint-disable-next-line declaration-property-value-disallowed-list */
    --show-fallback-borders: 0;
  }

  .accordion--dividers:not([class*='color-'])[style*='--border-width: 0'],
  .accordion--dividers:not([class*='color-'])[style*='--border-style: none'] {
    --show-fallback-borders: 1;
  }

  .accordion--dividers accordion-custom:first-child .details {
    border-block-start: calc(var(--style-border-width) * var(--show-fallback-borders)) solid var(--color-border);
  }

  .accordion--dividers accordion-custom:last-child .details {
    border-block-end: calc(var(--style-border-width) * var(--show-fallback-borders)) solid var(--color-border);
  }

  .accordion--dividers .details-content {
    padding-block-end: var(--padding-sm);
  }

  .accordion--caret .icon-plus,
  .accordion--plus .icon-caret {
    display: none;
  }

  /* because we can't pass apply a specific class on a block based on its parent block setting */
  .accordion .details__header {
    font-family: var(--summary-font-family);
    font-style: var(--summary-font-style);
    font-weight: var(--summary-font-weight);
    font-size: var(--summary-font-size);
    line-height: var(--summary-font-line-height);
    text-transform: var(--summary-font-case);
    min-height: var(--minimum-touch-target);
  }
/* END_BLOCK:accordion */

/* START_BLOCK:comparison-slider (INDEX:195) */
comparison-slider-component {
    display: block;
  }

  .comparison-slider {
    position: relative;
    overflow: hidden;
    aspect-ratio: var(--ratio);
  }

  .comparison-slider:not(:has(img)) {
    min-width: 25dvh;
  }

  .comparison-slider__container {
    position: relative;
    width: 100%;
    height: 100%;
  }

  /* Container and Layout */
  .comparison-slider__media-wrapper {
    --compare: 50;

    position: relative;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template: 1fr / 1fr;
    overflow: hidden;
  }

  /* Layer Containers */
  .comparison-slider__layer {
    grid-area: 1 / 1;
    position: relative;
    width: 100%;
    height: 100%;
    transition: clip-path var(--transition-duration, 0s) ease-in-out;
  }

  .comparison-slider__layer--after {
    z-index: var(--layer-base);
  }

  /* Before Layer Clipping (inverse of after layer) */
  [data-orientation='horizontal'] .comparison-slider__layer--before {
    /* stylelint-disable-next-line plugin/no-unsupported-browser-features */
    clip-path: inset(0 calc((100 - var(--compare)) * 1%) 0 0);
  }

  [data-orientation='vertical'] .comparison-slider__layer--before {
    /* stylelint-disable-next-line plugin/no-unsupported-browser-features */
    clip-path: inset(0 0 calc(var(--compare) * 1%) 0);
  }

  /* After Layer Clipping */
  [data-orientation='horizontal'] .comparison-slider__layer--after {
    /* stylelint-disable-next-line plugin/no-unsupported-browser-features */
    clip-path: inset(0 0 0 calc(var(--compare) * 1%));
  }

  [data-orientation='vertical'] .comparison-slider__layer--after {
    /* stylelint-disable-next-line plugin/no-unsupported-browser-features */
    clip-path: inset(calc((100 - var(--compare)) * 1%) 0 0 0);
  }

  /* Images and Placeholders */
  .before-image,
  .after-image,
  .comparison-slider__placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: var(--ratio);
  }

  .comparison-slider__placeholder {
    position: absolute;
    inset: 0;
  }

  .comparison-slider__placeholder svg {
    width: 100%;
    height: 100%;
    background-color: var(--color-background);
    fill: var(--color-foreground);
  }

  /* Range Input (Hidden but Functional) */
  .cs-slider {
    position: absolute;
    inset: 0;
    z-index: var(--layer-heightened);
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    opacity: 0;
    cursor: inherit;
    appearance: none;
  }

  [data-orientation='horizontal'] .cs-slider {
    cursor: ew-resize;
  }

  [data-orientation='vertical'] .cs-slider {
    cursor: ns-resize;
    writing-mode: vertical-lr;
    direction: rtl;
  }

  /* Range Input Thumb */
  .cs-slider::-webkit-slider-thumb,
  .cs-slider::-moz-range-thumb {
    width: var(--button-size);
    height: var(--button-size);
    border: 0;
    background: transparent;
    cursor: inherit;
    appearance: none;
  }

  /* Range Input Track */
  .cs-slider::-webkit-slider-track,
  .cs-slider::-moz-range-track {
    background: transparent;
    border: 0;
    appearance: none;
  }

  /* Visual Slider Elements */
  .comparison-slider__media-wrapper::before,
  .comparison-slider__media-wrapper::after {
    content: '';
    position: absolute;
    pointer-events: none;
    transition: left var(--transition-duration, 0s) ease-in-out, top var(--transition-duration, 0s) ease-in-out;
    z-index: var(--layer-raised);
  }

  /* Slider Track Line */
  .comparison-slider__media-wrapper::after {
    background: var(--color-background);
    box-shadow: 0 0 12px 0 rgb(0 0 0 / 0.1);
  }

  .comparison-slider__media-wrapper::before {
    background: var(--color-background);
  }

  .comparison-slider__media-wrapper[data-orientation='horizontal']::after {
    inset: 0 auto;
    left: calc(var(--compare) * 1%);
    width: 4px;
    transform: translateX(-50%);
  }

  .comparison-slider__media-wrapper[data-orientation='vertical']::after {
    inset: auto 0;
    top: calc((100 - var(--compare)) * 1%);
    height: 4px;
    transform: translateY(-50%);
  }

  /* Slider Handle */
  .cs-slider__handle {
    position: absolute;
    z-index: var(--layer-heightened);
    pointer-events: none;
    width: var(--button-size);
    height: var(--button-size);
    background: var(--color-background);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 12px 0 rgb(0 0 0 / 0.1);
    transition: left var(--transition-duration, 0s) ease-in-out, top var(--transition-duration, 0s) ease-in-out,
      gap 0.2s ease-in-out;
    gap: var(--gap-sm);
    padding: var(--padding-xs);
  }

  .comparison-slider__media-wrapper:hover .cs-slider__handle {
    gap: var(--gap-2xs);
  }

  .cs-slider__chevron {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  [data-orientation='horizontal'] .cs-slider__handle {
    top: 50%;
    left: calc(var(--compare) * 1%);
    transform: translate(-50%, -50%);
    flex-direction: row;
  }

  [data-orientation='vertical'] .cs-slider__handle {
    left: 50%;
    top: calc((100 - var(--compare)) * 1%);
    transform: translate(-50%, -50%) rotate(90deg);
  }

  /* Text Labels */
  .comparison-slider__text {
    position: absolute;
    padding: var(--padding-xs);
    pointer-events: none;
  }

  .comparison-slider__text--with-bg {
    background: var(--text-background-color);
    border-radius: var(--text-corner-radius);
  }

  /* Horizontal: before/after control inline (left/right), position controls block (top/bottom) */
  [data-orientation='horizontal'] .comparison-slider__text--before {
    inset-inline-start: var(--padding-sm);
  }

  [data-orientation='horizontal'] .comparison-slider__text--after {
    inset-inline-end: var(--padding-sm);
  }

  [data-orientation='horizontal'][data-text-position='start'] .comparison-slider__text {
    inset-block-start: var(--padding-sm);
  }

  [data-orientation='horizontal'][data-text-position='end'] .comparison-slider__text {
    inset-block-end: var(--padding-sm);
  }

  /* Vertical: before/after control block (top/bottom), position controls inline (left/right) */
  [data-orientation='vertical'] .comparison-slider__text--before {
    inset-block-start: var(--padding-sm);
  }

  [data-orientation='vertical'] .comparison-slider__text--after {
    inset-block-end: var(--padding-sm);
  }

  [data-orientation='vertical'][data-text-position='start'] .comparison-slider__text {
    inset-inline-start: var(--padding-sm);
  }

  [data-orientation='vertical'][data-text-position='end'] .comparison-slider__text {
    inset-inline-end: var(--padding-sm);
  }
/* END_BLOCK:comparison-slider */

/* START_BLOCK:contact-form-submit-button (INDEX:196) */
.submit-button {
    min-width: max-content;
  }
/* END_BLOCK:contact-form-submit-button */

/* START_BLOCK:contact-form (INDEX:197) */
.contact-form__form {
    display: flex;
    flex-direction: column;
    gap: var(--gap-md);
  }

  .contact-form__form-row {
    display: flex;
    flex-direction: column;
    gap: var(--gap-md);

    @media screen and (min-width: 750px) {
      flex-direction: row;
      align-items: center;
    }
  }

  .contact-form__input {
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    color: var(--color-input-text);
    background-color: var(--color-input-background);
    padding: var(--padding-lg) var(--padding-xl);
    border-radius: var(--style-border-radius-inputs);
    border: var(--style-border-width-inputs) solid var(--color-input-border);
    -webkit-font-smoothing: antialiased;
  }

  .contact-form__input--textarea {
    resize: vertical;
    min-height: var(--input-textarea-min-height);
  }

  .contact-form__error,
  .contact-form__success {
    display: flex;
    align-items: center;
    gap: var(--gap-xs);
  }
/* END_BLOCK:contact-form */

/* START_BLOCK:email-signup (INDEX:199) */
.email-signup-block {
    --arrow-button-size: 58px;
    --arrow-button-size-integrated: 42px;
    --arrow-button-size-small: 20px;
    --arrow-icon-size: 32px;
    --arrow-icon-size-small: 24px;

    min-width: fit-content;

    @media screen and (max-width: 749px) {
      width: 100%;
      min-width: unset;
    }
  }

  .email-signup__heading {
    padding-block: var(--padding-sm);
  }

  .email-signup__form {
    display: flex;
    flex-direction: column;
  }

  .email-signup__input-group {
    display: flex;
    align-items: stretch;
    background-color: transparent;
  }

  .email-signup__input-group:not(.email-signup__input-group--integrated):not(.email-signup__input-group--underline) {
    gap: var(--gap-xs);
    align-items: center;
  }

  .email-signup__input-group:not(.email-signup__input-group--arrow):not(.email-signup__input-group--underline):not(
      .email-signup__input-group--integrated
    ) {
    @media screen and (max-width: 749px) {
      flex-direction: column;
    }
  }

  .email-signup__input-group--integrated {
    border-width: var(--border-width);
    border-radius: var(--border-radius);
    border-style: solid;
    border-color: var(--color-input-border);
    background-color: var(--color-input-background);
  }

  .email-signup__input-group--integrated.email-signup__input-group--no-border {
    border: none;
  }

  .email-signup__input {
    flex: 1;
    min-width: 0;
    border-width: var(--border-width);
    border-radius: var(--border-radius);
    border-style: solid;
    border-color: var(--color-input-border);

    @media screen and (max-width: 749px) {
      width: 100%;
    }
  }

  .email-signup__input-group--integrated .email-signup__input {
    background-color: transparent;
    border: none;
    border-radius: 0;
  }

  .email-signup__input.paragraph {
    color: var(--color-input-text);
    outline-color: var(--color-input-background);
  }

  .email-signup__button {
    white-space: nowrap;
    padding: 0;

    @media screen and (max-width: 749px) {
      width: 100%;
    }
  }

  .email-signup__input,
  .email-signup__button--text {
    padding: var(--padding-lg) var(--padding-3xl);
  }

  .email-signup__input-group--underline {
    --box-shadow-color: var(--color-input-border);
    --box-shadow-multiplier: 1;
    --box-shadow-focused-multiplier: 1.75;

    box-shadow: 0 calc(var(--border-width) * var(--box-shadow-multiplier)) 0 var(--box-shadow-color);
    transition: box-shadow var(--animation-values);
    margin-block-end: calc(var(--border-width) * var(--box-shadow-focused-multiplier));

    &:focus-within {
      --box-shadow-multiplier: var(--box-shadow-focused-multiplier);
      --box-shadow-color: var(--color-input-text);
    }
  }

  .email-signup__input-group .email-signup__input--underline {
    color: var(--color-input-text);
    background-color: transparent;
    padding: 12px 0;
    border: none;
    border-radius: 0;

    &:focus-visible {
      outline: none;
    }
  }

  .email-signup__input::placeholder {
    color: rgb(var(--color-input-text-rgb) / var(--opacity-70));
  }

  .email-signup__input-group .email-signup__input--none {
    color: var(--color-input-text);
    background-color: var(--color-input-background);
    border: none;
  }

  .email-signup__button-icon {
    color: currentcolor;
    padding: 5px;

    @media screen and (max-width: 749px) {
      padding: 0;
      align-self: center;
      justify-self: center;
      width: var(--icon-size-lg);
      height: var(--icon-size-lg);
    }
  }

  .email-signup__button--arrow {
    width: var(--arrow-button-size-small);
    height: var(--arrow-button-size-small);
    padding: 0;

    &:not(.email-signup__button--integrated) {
      width: var(--arrow-button-size);
      height: var(--arrow-button-size);
      display: flex;
      align-items: center;
      justify-content: center;

      > .email-signup__button-icon {
        width: var(--arrow-icon-size);
        height: var(--arrow-icon-size);
        padding: 0;
      }
    }
  }

  .email-signup__button--integrated {
    --button-offset: var(--margin-xs);
    align-self: stretch;
    margin: var(--button-offset);
    flex-shrink: 0;

    @media screen and (max-width: 749px) {
      width: fit-content;
    }

    &.email-signup__button--text {
      padding: 0 var(--padding-3xl);
    }

    &.email-signup__button--text.button-unstyled {
      padding: 0 var(--padding-xl);
    }

    &.button-unstyled {
      border-radius: var(--border-radius);
    }

    > .email-signup__button-icon {
      padding: 0;
    }

    &.email-signup__button--arrow {
      width: var(--arrow-button-size-integrated);
      height: var(--arrow-button-size-integrated);
      align-self: center;
      display: flex;
      align-items: center;
      justify-content: center;

      > .email-signup__button-icon {
        width: var(--arrow-icon-size-small);
        height: var(--arrow-icon-size-small);
      }
    }
  }

  .email-signup__input--underline + .email-signup__button--integrated {
    margin: 0;
    align-self: center;

    &.email-signup__button--text {
      padding-block: 9px;
    }

    &.email-signup__button--text.button-unstyled {
      padding-inline: 0;
      min-width: 44px;
      min-height: 44px;
    }

    &.button-unstyled {
      border-radius: 0;
    }

    &.email-signup__button--arrow {
      width: var(--arrow-button-size-integrated);
      height: var(--arrow-button-size-integrated);
      display: flex;
      align-items: center;
      justify-content: center;

      > .email-signup__button-icon {
        width: var(--arrow-icon-size-small);
        height: var(--arrow-icon-size-small);
      }
    }
  }

  .email-signup__button:not(.button-unstyled) {
    background-color: var(--button-background-color);
    color: var(--button-color);
    text-transform: var(--button-text-case-primary);
  }

  .email-signup__button.button-secondary {
    text-transform: var(--button-text-case-secondary);
  }

  .email-signup__button.button-unstyled {
    background-color: transparent;
    color: var(--color-input-text);
  }

  .email-signup__button.button-unstyled:hover {
    color: rgb(var(--color-input-text-rgb) / var(--opacity-70));
    cursor: pointer;
  }

  .email-signup__message {
    display: flex;
    align-items: center;
    gap: var(--gap-xs);
  }

  .email-signup__message-text {
    margin: 0;
  }
/* END_BLOCK:email-signup */

/* START_BLOCK:fail-card (INDEX:200) */
.he-fail-card {
    width: 100%;
    box-sizing: border-box;
    background: var(--fc-bg, #181818);
    border: var(--fc-border-width, 1px) solid var(--fc-border-color, #252525);
    border-radius: 14px;
    padding: 16px 16px 14px;
    display: flex;
    gap: 13px;
    align-items: flex-start;
  }

  .he-fail-card__icon {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    border-radius: 10px;
    background: rgba(242, 52, 64, 0.1);
    border: 1px solid rgba(242, 52, 64, 0.22);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading--family);
    font-size: 16px;
    font-weight: 700;
    color: #F23440;
  }

  .he-fail-card__body {
    flex: 1;
    min-width: 0;
  }

  .he-fail-card__cat {
    font-family: var(--font-accent--family), monospace;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #444;
    margin-bottom: 4px;
  }

  .he-fail-card__heading {
    font-family: var(--font-heading--family);
    font-size: var(--fc-heading-size, 15px);
    font-weight: 700;
    color: var(--fc-heading-color, #EEEEEE);
    margin-bottom: 6px;
    line-height: 1.25;
  }

  .he-fail-card__text {
    font-family: var(--font-body--family);
    font-size: var(--fc-body-size, 14px);
    color: var(--fc-body-color, #5A5A5A);
    line-height: 1.55;
    margin-bottom: 9px;
  }

  .he-fail-card__tag {
    display: inline-block;
    font-family: var(--font-accent--family), monospace;
    font-size: var(--fc-tag-size, 9px);
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 20px;
    background: rgba(242, 52, 64, 0.12);
    color: var(--fc-tag-color, #FF7070);
    border: 1px solid rgba(242, 52, 64, 0.2);
  }
/* END_BLOCK:fail-card */

/* START_BLOCK:filters (INDEX:202) */
.facets-block-wrapper {
    @media screen and (min-width: 750px) {
      margin: var(--facets-margin);
      grid-column: var(--grid-column--desktop);
    }
  }

  .facets-block-wrapper--vertical {
    @media screen and (min-width: 750px) {
      grid-column: var(--grid-column--desktop);
    }
  }

  .facets-toggle {
    --icon-offset: -3px;

    display: flex;
    justify-content: space-between;
    align-items: center;
    height: var(--minimum-touch-target);
    margin: var(--facets-margin);
    padding-block: var(--facets-inner-padding-block);
    padding-inline: var(--facets-inner-padding-inline);

    @media screen and (min-width: 750px) {
      display: none;
    }
  }

  .facets-toggle__wrapper {
    margin-left: var(--icon-offset);
  }

  .facets-toggle__button {
    box-shadow: none;

    @media screen and (min-width: 750px) {
      display: none;
    }
  }

  .filter-count-bubble {
    position: relative;
    width: 20px;
    aspect-ratio: 1;
    border-radius: 50%;
    display: grid;
    line-height: normal;
    place-content: center;
    color: var(--color-foreground);
    border: var(--icon-stroke-width) solid var(--color-background);
  }

  .facets-mobile__title-wrapper .h3 {
    margin-block-end: 0;
    display: inline-flex;
    align-items: center;
    gap: var(--gap-xs);
  }

  .facets-mobile__title-wrapper .filter-count-bubble {
    width: 22px;
    height: 22px;
  }

  .facets-mobile__title-wrapper .filter-count-bubble__text {
    font-size: var(--font-size--xs);
  }

  .filter-count-bubble__background {
    position: absolute;
    inset: 0;
    background-color: rgb(var(--color-foreground-rgb) / var(--opacity-10-25));
    border-radius: var(--style-border-radius-50);
  }

  .filter-count-bubble__text {
    font-size: 11px;
    font-weight: var(--font-paragraph--weight);
    aspect-ratio: 1 / 1;
  }

  .facets-toggle--no-filters {
    @media screen and (max-width: 749px) {
      /* stylelint-disable-next-line declaration-no-important */
      justify-content: unset !important;

      & > .facets-mobile-wrapper {
        width: 100%;
      }
    }
  }

  .facets-block-wrapper--vertical + .facets-toggle {
    @media screen and (max-width: 749px) {
      margin: 0;
    }
  }

  .facets-mobile-wrapper {
    display: flex;
    align-items: center;
    gap: var(--gap-sm);
    justify-content: flex-end;
  }

  .facets-mobile-wrapper--multiple-controls {
    justify-content: space-between;
  }

  @media screen and (min-width: 750px) {
    dialog-component.facets-block-wrapper {
      position: absolute;
      width: 0;
      height: 0;
    }
  }

  .facets {
    --facets-form-horizontal-gap: 20px;
    --facets-horizontal-max-input-wrapper-height: 230px;
    --facets-upper-z-index: var(--layer-raised);
    --facets-open-z-index: var(--layer-heightened);
    --facets-sticky-z-index: var(--layer-sticky);
    --facets-panel-min-width: 120px;
    --facets-panel-height: 300px;
    --facets-grid-panel-width: 300px;
    --facets-clear-padding: var(--padding-md);
    --facets-clear-shadow: 0 -4px 14px 0 rgb(var(--color-foreground-rgb) / var(--facets-low-opacity));
    --facets-input-label-color: rgb(var(--color-input-text-rgb) / var(--opacity-60));
    --facets-clear-all-min-width: 120px;
    --facets-see-results-min-width: 55%;
    --facets-mobile-gap: 22px;
    --facets-low-opacity: 10%;
    --facets-hover-opacity: 75%;

    top: auto;
    bottom: 0;
    height: var(--drawer-height);
    max-height: var(--drawer-height);
    width: var(--drawer-width);
    max-width: var(--drawer-max-width);
    box-shadow: none;
    padding-block: 0;

    &:not(.facets--drawer) {
      @media screen and (min-width: 750px) {
        padding-inline: var(--padding-inline-start) var(--padding-inline-end);
        width: 100%;
        max-width: 100%;
      }
    }
  }

  .facets--horizontal {
    display: none;

    @media screen and (min-width: 750px) {
      padding-block: var(--padding-block-start) var(--padding-block-end);
      display: flex;
      align-items: center;
      position: relative;
      z-index: var(--facets-upper-z-index);
      border: none;
      height: auto;
      top: initial;
      bottom: initial;
      max-height: none;
      width: auto;
      overflow: visible;
    }
  }

  .facets--vertical {
    display: none;

    @media screen and (min-width: 750px) {
      padding-block: 0 var(--padding-block-end);
      display: block;
      position: static;
      top: auto;
      bottom: auto;
      height: auto;
      max-height: none;
      width: auto;
      overflow: visible;
    }
  }

  .facets--drawer {
    border-radius: 0;
    border-right: var(--style-border-drawer);
    box-shadow: var(--shadow-drawer);
    padding-inline: 0;
  }

  .facets--drawer[open] {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
  }

  .facets-drawer__form-wrapper {
    flex: 1 1 auto;
    min-height: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }

  .facets-drawer__form-wrapper .facets__form {
    flex: 1 1 auto;
    min-height: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }

  .facets-drawer__filters {
    flex: 1 1 auto;
    min-height: 0;
    overflow-y: auto;
    overflow-x: hidden;
    position: relative;
  }

  .facets-drawer__filters .facets__filters-wrapper,
  .facets-drawer__filters .filter-remove-buttons,
  .facets-drawer__filters .sorting-filter-component {
    overflow: visible;
  }

  .facets.facets-controls-wrapper {
    @media screen and (min-width: 750px) {
      grid-column: column-1 / column-12;
      color: rgb(var(--color-foreground-rgb) / var(--opacity-70));
      gap: 0 var(--facets-form-horizontal-gap);
      padding-bottom: var(--padding-xs);
    }
  }

  .facets__inputs {
    display: flex;
    flex-direction: column;
    gap: var(--padding-lg);
    width: 100%;
  }

  :is(.facets--drawer, .facets--vertical) .facets__inputs:not(:has(.show-more)) {
    padding-block-end: var(--padding-sm);
  }

  /* Facets - Form */
  .facets__form-wrapper {
    display: flex;
    flex-direction: column;
    color: var(--color-foreground-muted);
    width: 100%;
  }

  .facets--horizontal .facets__form-wrapper {
    @media screen and (min-width: 750px) {
      flex-direction: row;
      height: auto;
    }
  }

  .facets__form {
    display: flex;
    flex-flow: column;
    width: 100%;
    height: 100%;
  }

  .facets--horizontal .facets__form {
    @media screen and (min-width: 750px) {
      flex-flow: row nowrap;
      height: auto;
    }
  }

  .facets:not(.facets--drawer) .facets__filters-wrapper {
    @media screen and (min-width: 750px) {
      margin-inline-end: var(--margin-md);
    }
  }

  .facets--horizontal .facets__filters-wrapper {
    @media screen and (min-width: 750px) {
      max-width: 60%;
      display: flex;
      flex-wrap: wrap;
      column-gap: var(--gap-xl);
      margin-inline-end: 0;
    }
  }

  /* Facets - Summary */
  .facets__summary {
    --variant-picker-swatch-width: 32px;
    --variant-picker-swatch-height: 32px;
    --icon-opacity: 0.5;

    @media screen and (min-width: 750px) {
      --variant-picker-swatch-width: 26px;
      --variant-picker-swatch-height: 26px;
    }

    font-size: var(--font-h5--size);
    display: flex;
    justify-content: space-between;

    &:hover {
      --icon-opacity: 1;
    }
  }

  .facets__filters-wrapper:hover .facets__summary,
  .facets__filters-wrapper:has(.facets__panel[open]) .facets__summary {
    opacity: var(--facets-hover-opacity);
  }

  .facets__filters-wrapper .facets__summary:hover,
  .facets__filters-wrapper .facets__panel[open] .facets__summary {
    opacity: 1;
  }

  .facets--horizontal .facets__summary {
    @media screen and (min-width: 750px) {
      font-size: var(--font-paragraph--size);
      justify-content: flex-start;
      height: var(--minimum-touch-target);
    }
  }

  .facets__summary .icon-caret {
    height: var(--icon-size-xs);
    width: var(--icon-size-xs);
    color: rgb(var(--color-foreground-rgb) / var(--icon-opacity));
    margin-block: var(--margin-2xs);
    transition: color var(--animation-speed) var(--animation-easing);
  }

  .facets--drawer .facets__summary .icon-caret {
    margin-inline-start: var(--margin-2xs);
  }

  /* Facets - Bubble */
  .facets__bubble {
    display: inline-flex;
    font-family: var(--font-paragraph--family);
    font-weight: var(--font-paragraph--weight);
    aspect-ratio: 1 / 1;
  }

  /* Facets - Inputs */
  .facets__inputs-wrapper {
    margin-block: var(--padding-xs) var(--padding-xs);
  }

  .facets__inputs .show-more {
    display: flex;
    flex-direction: column;
    gap: var(--gap-xl);
    margin-block-end: var(--padding-xl);
  }

  .facets:not(.facets--drawer) .facets__inputs-wrapper {
    @media screen and (min-width: 750px) {
      gap: var(--gap-sm);
    }
  }

  .facets--horizontal .facets__inputs .show-more {
    @media screen and (min-width: 750px) {
      display: contents;
    }
  }

  .facets--horizontal .facets__inputs-wrapper {
    @media screen and (min-width: 750px) {
      max-height: var(--facets-horizontal-max-input-wrapper-height);
      scrollbar-width: none;
      -ms-overflow-style: none;
      overflow-x: auto;
      padding: var(--padding-md);
      margin-block: 0;
    }
  }

  .facets--vertical .facets__inputs:has(.show-more) .facets__inputs-wrapper {
    padding-block: var(--padding-sm);
    padding-inline: var(--padding-sm);
    margin-block: calc(var(--padding-sm) * -1);
    margin-inline: calc(var(--padding-sm) * -1);
  }

  @media screen and (max-width: 749px) {
    .facets__inputs:has(.show-more) .facets__inputs-wrapper {
      padding-block: var(--padding-sm);
      padding-inline: var(--padding-sm);
      margin-block: calc(var(--padding-sm) * -1);
      margin-inline: calc(var(--padding-sm) * -1);
    }
  }

  .facets__inputs-wrapper:not(:has(.facets__inputs-list)),
  .facets__inputs-wrapper .facets__inputs-list {
    display: flex;
    gap: var(--facets-mobile-gap);
    flex-direction: column;

    @media screen and (min-width: 750px) {
      gap: var(--gap-sm);
    }
  }

  @media screen and (min-width: 750px) {
    .facets--vertical .facets__inputs-wrapper .facets__inputs-list--swatches {
      gap: var(--gap-sm);
    }

    .facets--horizontal
      .facets__inputs-wrapper
      .facets__inputs-list--swatches:not(.facets__inputs-list--swatches-grid) {
      display: grid;
      grid-template-columns: repeat(var(--swatch-columns, 4), 1fr);
    }
  }

  .facets__inputs-wrapper .facets__inputs-list--swatches {
    --facets-mobile-gap: var(--gap-sm);
  }

  .facets__inputs-wrapper .facets__inputs-list--grid {
    --min-column-width: 20%;

    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(var(--min-column-width), 1fr));
    gap: var(--gap-sm);

    @media screen and (min-width: 750px) {
      --min-column-width: 50px;
    }
  }

  .facets-block-wrapper:not(.facets-block-wrapper--vertical) .facets__inputs-list--grid {
    @media screen and (min-width: 750px) {
      width: var(--facets-grid-panel-width);
    }
  }

  .facets__inputs-wrapper--row:not(:has(.facets__inputs-list)),
  .facets__inputs-wrapper--row .facets__inputs-list {
    flex-wrap: wrap;
    flex-direction: row;
  }

  .facets__inputs .show-more__button {
    --show-more-icon-size: 22px;
    --show-more-gap: 8px;

    gap: var(--show-more-gap);

    @media screen and (min-width: 750px) {
      --show-more-icon-size: 16px;
      --show-more-gap: 6px;
    }
  }

  .facets__inputs .show-more__button .icon-plus {
    width: var(--show-more-icon-size);
    height: var(--show-more-icon-size);

    svg {
      width: var(--icon-size-xs);
      height: var(--icon-size-xs);
    }
  }

  /* Facets - Panel */
  .facets__panel {
    padding: 0 var(--drawer-padding);
  }

  .facets:not(.facets--drawer) .facets__panel,
  .facets-controls-wrapper .facets__panel {
    @media screen and (min-width: 750px) {
      padding: 0;
    }
  }

  .facets--horizontal .facets__panel {
    @media screen and (min-width: 750px) {
      position: relative;
    }
  }

  .facets-mobile-wrapper .facets__panel-content {
    border-radius: var(--style-border-radius-popover);
  }

  .facets-mobile-wrapper {
    --facets-upper-z-index: var(--layer-raised);
    --facets-panel-min-width: 120px;
    --facets-panel-height: 300px;
  }

  .facets--horizontal .facets__panel-content {
    @media screen and (min-width: 750px) {
      border-radius: var(--style-border-radius-popover);
      position: absolute;
      top: 100%;
      width: max-content;
      min-width: var(--facets-panel-min-width);
      max-width: var(--facets-panel-width);
      max-height: var(--facets-panel-height);
      z-index: var(--facets-upper-z-index);
      box-shadow: var(--shadow-popover);
      border: var(--style-border-popover);
      background-color: var(--color-background);
      overflow-y: hidden;
      gap: 0;
    }
  }

  :is(.facets--drawer, .facets--vertical) :is(.facets__item, .sorting-filter)::before {
    content: '';
    display: block;
    height: 0;
    width: calc(100% - var(--drawer-padding) * 2);
    border-top: var(--style-border-width) solid var(--color-border);
    margin: 0 auto;
  }

  @media screen and (min-width: 750px) {
    .facets:not(.facets--drawer) :is(.facets__item, .sorting-filter)::before {
      width: 100%;
    }

    .facets--horizontal .facets__item:not(:first-of-type)::before,
    .facets--horizontal .sorting-filter::before {
      content: none;
    }
  }

  @media screen and (min-width: 750px) {
    .facets--vertical .facets__item:not(:first-of-type)::before,
    .facets--vertical .sorting-filter::before {
      content: '';
    }
  }

  /* Facets - Text */
  .facets__label,
  .facets__clear-all-link,
  .clear-filter {
    text-decoration-color: transparent;
    text-decoration-thickness: 0.075em;
    text-underline-offset: 0.125em;
    transition: text-decoration-color var(--animation-speed) var(--animation-easing);
  }

  .facets__clear-all-link {
    display: none;
    cursor: pointer;
    padding: var(--padding-xs);
    color: var(--button-color);
    transition: text-decoration-color var(--animation-speed) var(--animation-easing),
      color var(--animation-speed) var(--animation-easing);
  }

  .facets__clear-all-link:hover {
    --button-color: var(--color-primary-hover);

    text-decoration: underline;
    text-decoration-color: var(--button-color);
  }

  .facets__clear-all-link--horizontal {
    height: var(--minimum-touch-target);
    padding-inline: var(--facets-form-horizontal-gap);
    min-width: var(--facets-clear-all-min-width);
  }

  .facets__clear-all-link--active {
    display: block;
  }

  .facets__label,
  .products-count-wrapper {
    text-transform: var(--facet-label-transform);
  }

  .clear-filter {
    background-color: transparent;
    box-shadow: none;
    padding: 0;
  }

  .clear-filter:hover {
    text-decoration: underline;
  }

  /* Clear button */
  .facets__clear {
    display: none;
  }

  .facets--horizontal .facets__clear {
    @media screen and (min-width: 750px) {
      width: 100%;
      justify-content: flex-end;
      padding: 0 var(--facets-clear-padding) var(--facets-clear-padding) 0;
      cursor: pointer;
    }
  }

  .facets__clear--active {
    @media screen and (min-width: 750px) {
      display: flex;
    }
  }

  /* Facets - Label */
  .facets__label {
    color: var(--color-foreground);
    cursor: pointer;
    white-space: nowrap;

    @media screen and (min-width: 750px) {
      margin-inline-end: var(--margin-2xs);
    }
  }

  /* Products count */
  .products-count-wrapper {
    display: none;
  }

  .facets--horizontal .products-count-wrapper {
    @media screen and (min-width: 750px) {
      display: flex;
      margin-left: auto;
      flex-shrink: 0;
      align-items: center;
      height: var(--minimum-touch-target);
    }
  }

  /* Mobile specific components */
  .facets__title-wrapper {
    background-color: var(--color-background);
    color: var(--color-foreground);
    position: sticky;
    top: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-block: var(--padding-xs);
    padding-inline-start: var(--drawer-padding);
    padding-inline-end: var(--padding-2xs);
    z-index: var(--facets-sticky-z-index);
  }

  :is(.facets--horizontal, .facets--vertical) .facets__title-wrapper {
    @media screen and (min-width: 750px) {
      display: none;
    }
  }

  .facets-drawer__title {
    --variant-picker-swatch-width: 32px;
    --variant-picker-swatch-height: 32px;

    margin: 0;
    display: flex;
    align-items: center;
    gap: var(--gap-xs);

    @media screen and (min-width: 750px) {
      --variant-picker-swatch-width: 26px;
      --variant-picker-swatch-height: 26px;
    }
  }

  .facets-drawer__close {
    position: relative;
    top: 0;
    right: 0;
    padding: 0;
    cursor: pointer;
  }

  /* Status */
  .facets__status:not(:empty) {
    width: max-content;
    display: flex;
    margin-inline-start: auto;
    font-weight: 500;
    color: var(--color-foreground);
  }

  .facets__panel[open] .facets__status {
    display: none;
  }

  .facets--filters-title {
    margin-block-end: 0;
    color: var(--color-foreground);
    height: fit-content;

    @media screen and (max-width: 749px) {
      display: none;
    }
  }

  .facets--horizontal .facets__panel .facets__status:has(:not(:empty)) {
    @media screen and (min-width: 750px) {
      display: flex;
      margin-inline-start: var(--margin-xs);
      margin-inline-end: var(--margin-xs);
    }
  }

  /* Horizontal filter style */
  .facets--horizontal .facets__form {
    @media screen and (min-width: 750px) {
      gap: 0 var(--facets-form-horizontal-gap);
    }
  }

  /* Facets - Actions */
  .facets__drawer-actions {
    --to-top-gradient-background: linear-gradient(
      to top,
      rgb(var(--color-background-rgb) / var(--opacity-90)),
      rgb(var(--color-background-rgb) / var(--opacity-80)),
      rgb(var(--color-background-rgb) / var(--opacity-40)),
      transparent
    );

    position: sticky;
    bottom: 0;
    z-index: var(--facets-sticky-z-index);
    order: 1;
    display: flex;
    flex-shrink: 0;
    justify-content: space-between;
    align-items: stretch;
    gap: var(--gap-sm);
    padding-block-start: var(--padding-xs);
    padding-block-end: var(--padding-md);
    padding-inline: var(--padding-lg);
    margin-top: auto;
    background-image: var(--to-top-gradient-background);
    background-color: var(--color-background);
  }

  /* Clear all button */
  .facets__clear-all {
    display: none;
    cursor: pointer;
    min-width: var(--facets-clear-all-min-width);
    flex-grow: 1;
    padding-block: var(--padding-lg);
    color: var(--button-color, inherit);
  }

  .facets__clear-all--active {
    display: block;
    opacity: 1;
    transform: translateY(0);
    transition: transform var(--animation-values), opacity var(--animation-values);
  }

  @starting-style {
    .facets__clear-all--active {
      opacity: 0;
      transform: translateY(100%);
    }
  }

  .facets__see-results {
    min-width: var(--facets-see-results-min-width);
    flex-grow: 1;
    padding-block: var(--padding-lg);
  }

  .facets-horizontal-remove {
    display: flex;
    align-items: center;
  }

  .facets-horizontal-remove--active::before {
    content: '';
    border-inline-start: var(--style-border-width) solid var(--color-border);
    height: var(--font-paragraph--size);
    position: absolute;
  }
/* END_BLOCK:filters */

/* START_BLOCK:footer-policy-list (INDEX:205) */
.policy-list-trigger {
    anchor-name: --terms-policies-trigger;
    cursor: pointer;
    font-size: var(--font-size, 0.75rem);
    text-transform: var(--text-transform, none);
  }

  .policy_list {
    li {
      border-radius: calc(var(--style-border-radius-popover) - 8px);

      a {
        color: var(--color-foreground);
        display: inline-block;
        padding: 8px;
        text-align: start;
        width: 100%;
        outline-color: #0000;
        font-size: var(--font-size, 0.75rem);
        text-transform: var(--text-transform, none);
      }

      &:is(:hover, :focus-within) {
        background: rgb(var(--color-foreground-rgb) / 0.15);
      }
    }
  }

  .terms-policies-popover {
    position-anchor: --terms-policies-trigger;
    inset: unset;
    bottom: calc(anchor(top) + 1rem);
    left: anchor(left);
    border-radius: var(--style-border-radius-popover);
    background: linear-gradient(var(--color-background) 0 100%),
      linear-gradient(rgb(var(--color-background-rgb) / 0.15) 0 100%);
    background-clip: padding-box, border-box;
    border: 1px solid #0000;
    box-shadow: var(--shadow-popover);
    padding: 8px;
    margin: 0;
    opacity: 0;
    scale: 0.94;
    translate: 0 6px;
    transform-origin: 3.9em 100%;
  }

  .terms-policies-popover.\:popover-open,
  .terms-policies-popover:popover-open {
    opacity: 1;
    translate: 0 0;
    scale: 1;
  }

  @media screen and (max-width: 749px) {
    .terms-policies-popover {
      left: anchor(center);
      transform: translate(-50%, 0);
      transform-origin: 0% 100%;
    }
  }

  @supports not (position-anchor: --account-button-trigger) {
    .terms-policies-popover {
      bottom: unset;
      top: calc(var(--anchor-top) * 1px);
      left: calc(var(--anchor-left) * 1px);
      transform: translate(0, calc(-100% - 1.25rem));
    }

    @media screen and (max-width: 749px) {
      .terms-policies-popover {
        left: calc((var(--anchor-left) + (var(--anchor-width) / 2)) * 1px);
        transform: translate(-50%, calc(-100% - 1.25rem));
      }
    }
  }

  @media (prefers-reduced-motion: no-preference) {
    .terms-policies-popover {
      transition-property: display, overlay, opacity, scale, translate;
      transition-behavior: allow-discrete;
      transition-duration: 0.3s;
      transition-timing-function: var(--ease-out-quad);
    }

    @starting-style {
      .terms-policies-popover.\:popover-open,
      .terms-policies-popover:popover-open {
        opacity: 0.7;
        translate: 0 6px;
        scale: 0.94;
      }
    }
  }
/* END_BLOCK:footer-policy-list */

/* START_BLOCK:he-buybox-accordion-group (INDEX:209) */
.accordion {
    flex: 1;
    width: 100%;
  }
  .accordion--dividers accordion-custom:not(:first-child) .details {
    border-block-start: var(--style-border-width) solid var(--color-border);
  }
  .accordion--dividers {
    --show-fallback-borders: 0;
  }
  .accordion--dividers:not([class*='color-'])[style*='--border-width: 0'],
  .accordion--dividers:not([class*='color-'])[style*='--border-style: none'] {
    --show-fallback-borders: 1;
  }
  .accordion--dividers accordion-custom:first-child .details {
    border-block-start: calc(var(--style-border-width) * var(--show-fallback-borders)) solid var(--color-border);
  }
  .accordion--dividers accordion-custom:last-child .details {
    border-block-end: calc(var(--style-border-width) * var(--show-fallback-borders)) solid var(--color-border);
  }
  .accordion--dividers .details-content {
    padding-block-end: var(--padding-sm);
  }
  .accordion--caret .icon-plus,
  .accordion--plus .icon-caret {
    display: none;
  }
  .accordion .details__header {
    font-family: var(--summary-font-family);
    font-style: var(--summary-font-style);
    font-weight: var(--summary-font-weight);
    font-size: var(--summary-font-size);
    line-height: var(--summary-font-line-height);
    text-transform: var(--summary-font-case);
    min-height: var(--minimum-touch-target);
  }
/* END_BLOCK:he-buybox-accordion-group */

/* START_BLOCK:he-checklist (INDEX:210) */
.he-checklist__headline {
  font-weight: 700;
  color: var(--he-cl-headline-color, #000000);
  font-size: var(--he-cl-headline-size, 16px);
  margin: 0 0 var(--he-cl-headline-gap, 14px) 0;
  line-height: 1.3;
}

.he-checklist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(var(--he-cl-columns, 1), 1fr);
  column-gap: var(--he-cl-col-gap, 32px);
  row-gap: var(--he-cl-gap, 12px);
}

.he-checklist__item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  min-width: 0;
}

.he-checklist__icon-wrap {
  flex-shrink: 0;
  width: var(--he-cl-icon-size, 16px);
  height: var(--he-cl-icon-size, 16px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 3px;
}
.he-checklist__icon-wrap--filled {
  width: var(--he-cl-icon-wrap-size, 22px);
  height: var(--he-cl-icon-wrap-size, 22px);
  border-radius: 50%;
  background: var(--he-cl-icon-bg, #F6F3FD);
  margin-top: 0;
}
.he-checklist__icon-wrap--filled .he-checklist__icon {
  width: 55%;
  height: 55%;
}

.he-checklist__icon {
  width: 100%;
  height: 100%;
  color: var(--he-cl-icon-color, #2e7d32);
  display: block;
}

.he-checklist__text {
  font-size: var(--he-cl-font-size, 16px);
  line-height: 1.5;
  color: currentColor;
}
/* END_BLOCK:he-checklist */

/* START_BLOCK:he-lp-quantity-cards (INDEX:218) */
[class*='buy_buttons_eYQEYi'] .quantity-selector-wrapper {
    display: none !important;
  }

  .he-qc__row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 12px;
  }

  .he-qc__card {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1 1 0;
    min-width: 84px;
    border: 1px solid rgba(0, 0, 0, 0.55);
    border-radius: 12px;
    padding: 10px 8px;
    cursor: pointer;
    background: #fff;
    text-align: center;
    transition: border-color 0.1s ease, background-color 0.1s ease, box-shadow 0.1s ease;
  }

  .he-qc__card input {
    position: absolute;
    inset: 0;
    opacity: 0;
    margin: 0;
    cursor: pointer;
  }

  .he-qc__card:has(input:checked) {
    border-color: #000;
    border-width: 2px;
    background-color: var(--color-primary-button-background, #ffda36);
    box-shadow: 2px 2px 0 0 #000;
  }

  .he-qc__card:has(input:focus-visible) {
    outline: 2px solid #000;
    outline-offset: 2px;
  }

  .he-qc__card-label {
    font-size: 1.2rem;
    font-weight: 600;
  }

  .he-qc__badge {
    position: absolute;
    top: -11px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-primary-button-background, #ffda36);
    border: 1px solid #000;
    border-radius: 56px;
    padding: 1px 6px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    white-space: nowrap;
    z-index: 1;
  }
/* END_BLOCK:he-lp-quantity-cards */

/* START_BLOCK:he-lp-stock-row (INDEX:220) */
.he-stock-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: -18px;
    padding: 4px 0 4px;
    flex-wrap: wrap;
  }
  .he-stock-item {
    display: flex;
    align-items: center;
    gap: 6px;
  }
  .he-stock-sep {
    display: block;
    width: 1.5px;
    height: 11px;
    background: #000000;
    margin: 0 2px;
    flex-shrink: 0;
  }
  .he-stock-break {
    flex-basis: 100%;
    height: 0;
    margin: 0;
    padding: 0;
  }
  .he-stock-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    flex-shrink: 0;
    display: block;
    line-height: 0;
    margin: 0;
    padding: 0;
    align-self: center;
  }
  .he-stock-check {
    display: block;
    flex-shrink: 0;
    align-self: center;
  }
  .he-stock-text {
    font-family: var(--font-body--family);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    line-height: 1;
  }
  @media (min-width: 750px) {
    .he-stock-text {
      font-size: 11px;
    }
    .he-stock-sep {
      height: 12px;
    }
  }
/* END_BLOCK:he-lp-stock-row */

/* START_BLOCK:he-lp-variant-picker-cards (INDEX:221) */
.he-vpc__fieldset {
    border: 0;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .he-vpc__legend {
    font-weight: 700;
    text-transform: uppercase;
    font-size: 1.2rem;
    letter-spacing: 0.02em;
    padding: 0;
  }

  .he-vpc__row {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
  }

  .he-vpc__card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex: 1 1 0;
    min-width: 74px;
    border: 1px solid rgba(0, 0, 0, 0.55);
    border-radius: 12px;
    padding: 8px 10px;
    cursor: pointer;
    background: #fff;
    text-align: center;
    transition: border-color 0.1s ease, background-color 0.1s ease, box-shadow 0.1s ease;
  }

  .he-vpc__card input {
    position: absolute;
    inset: 0;
    opacity: 0;
    margin: 0;
    cursor: pointer;
  }

  .he-vpc__card:has(input:checked) {
    border-color: #000;
    border-width: 2px;
    background-color: var(--color-primary-button-background, #ffda36);
    box-shadow: 2px 2px 0 0 #000;
  }

  .he-vpc__card:has(input:focus-visible) {
    outline: 2px solid #000;
    outline-offset: 2px;
  }

  .he-vpc__card--soldout {
    opacity: 0.4;
  }

  .he-vpc__card-image {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .he-vpc__card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .he-vpc__card-label {
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.2;
  }
/* END_BLOCK:he-lp-variant-picker-cards */

/* START_BLOCK:icon (INDEX:230) */
.icon-block {
    display: flex;
    flex-shrink: 0;
  }

  .icon-block__media {
    height: auto;
  }
/* END_BLOCK:icon */

/* START_BLOCK:image (INDEX:231) */
.image-block__placeholder {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center center;
    overflow: hidden;
    position: relative;
  }

  .placeholder-image {
    position: relative;
    aspect-ratio: var(--ratio);
    overflow: hidden;
  }

  .image-block {
    display: flex;

    /* When the image is nested in a group, section, etc, respect the parent's horizontal alignment */
    justify-content: var(--horizontal-alignment, 'inline-start');
  }

  .image-block--height-fill .image-block__image {
    height: 100%;
  }

  .image-block__image {
    object-fit: cover;
    aspect-ratio: var(--ratio);
  }
/* END_BLOCK:image */

/* START_BLOCK:logo (INDEX:233) */
.logo-block {
    width: calc(var(--logo-width) + var(--padding-inline-start) + var(--padding-inline-end));
    max-width: 100%;
    max-height: calc(var(--logo-height, 100%) + var(--padding-block-start) + var(--padding-block-end));
    font-size: var(--logo-height);
    display: flex;

    @media screen and (max-width: 749px) {
      max-height: calc(
        var(--logo-height-mobile, var(--logo-height, 100%)) + var(--padding-block-start) + var(--padding-block-end)
      );
      font-size: var(--logo-height-mobile, var(--logo-height));
      width: calc(
        var(--logo-width-mobile, var(--logo-width)) + var(--padding-inline-start) + var(--padding-inline-end)
      );
    }
  }

  .logo-block__image-wrapper {
    display: flex;
    width: 100%;
    max-width: 100%;
    max-height: 100%;
  }

  .logo-block__image {
    object-fit: contain;
    width: 100%;
  }
/* END_BLOCK:logo */

/* START_BLOCK:menu (INDEX:234) */
.menu {
    width: 100%;
  }

  .menu:not(:has(.menu__heading--empty)) .details-content {
    margin-block-start: var(--spacing--size);
  }

  .menu__item + .menu__item {
    margin-block-start: var(--spacing--size);
  }

  .menu .menu__heading--empty {
    display: none;
  }

  .menu__heading__default {
    display: contents;
  }

  .menu__heading__accordion {
    display: none;
  }

  @media screen and (max-width: 749px) {
    /* Always show the fallback heading on mobile when accordion is enabled */
    .menu--accordion .menu__heading--empty {
      display: flex;
    }

    .menu--accordion .menu__heading__accordion {
      display: contents;
    }

    .menu--accordion .menu__heading__default {
      display: none;
    }

    .menu--accordion .details-content {
      margin-block-start: var(--spacing--size);
    }

    .menu--accordion .menu__details {
      padding-inline: 0;
    }

    .menu--dividers .menu__details {
      border-block-end: var(--style-border-width) solid var(--color-border);
    }

    .menu--dividers .details-content {
      padding-block-end: var(--padding-sm);
    }
  }
/* END_BLOCK:menu */

/* START_BLOCK:page (INDEX:236) */
.page-block {
    display: flex;
    flex-direction: column;
    max-width: 100%;
    max-height: 100%;
    width: 100%;
    height: auto;
    align-items: flex-start;
  }

  .page-title {
    margin-bottom: var(--margin-xl);
  }
/* END_BLOCK:page */

/* START_BLOCK:payment-icons (INDEX:237) */
.payment-icons {
    width: 100%;
  }

  .payment-icons__list {
    display: flex;
    align-items: center;
    justify-content: var(--alignment);
    flex-wrap: wrap;
    gap: var(--icon-gap);
    margin: 0;
    padding: 0;
  }

  .payment-icons__item {
    display: flex;
    align-items: center;
  }
/* END_BLOCK:payment-icons */

/* START_BLOCK:penetration-compare (INDEX:238) */
.he-pen {
    width: 100%;
    box-sizing: border-box;
    background: var(--pen-bg, #161010);
    border: var(--pen-border-width, 1px) solid var(--pen-border-color, #2A1A1A);
    border-radius: 16px;
    overflow: hidden;
  }

  .he-pen__header {
    background: #1a1414;
    border-bottom: var(--pen-border-width, 1px) solid var(--pen-border-color, #2A1A1A);
    padding: 11px 16px;
    font-family: var(--font-accent--family), monospace;
    font-size: var(--pen-label-size, 9px);
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--pen-text-color, #444);
    text-align: center;
  }

  .he-pen__cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .he-pen__col {
    padding: 18px 12px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .he-pen__col--right {
    border-left: 1px solid #1e1e1e;
  }

  .he-pen__col-label {
    font-family: var(--font-accent--family), monospace;
    font-size: var(--pen-label-size, 9px);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--pen-text-color, #555);
    margin-bottom: 14px;
    text-align: center;
  }

  .he-pen__col-label--active {
    color: var(--he-pen-accent, #F23440);
  }

  .he-pen__visual {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 12px;
    min-height: 76px;
    justify-content: flex-end;
  }

  .he-pen__blob {
    width: 44px;
    height: 12px;
    background: #3a3a3a;
    border-radius: 999px;
    margin-bottom: 8px;
  }

  .he-pen__beams {
    display: flex;
    gap: 5px;
    align-items: flex-end;
    height: 68px;
  }

  .he-pen__beam {
    width: 6px;
    border-radius: 3px 3px 0 0;
    background: linear-gradient(to bottom, var(--he-pen-accent, #F23440), rgba(242, 52, 64, 0.18));
  }

  .he-pen__beam:nth-child(1) { height: 68px; }
  .he-pen__beam:nth-child(2) { height: 56px; }
  .he-pen__beam:nth-child(3) { height: 68px; }

  .he-pen__layers {
    width: 100%;
  }

  .he-pen__layer {
    padding: 5px 8px;
    font-family: var(--font-accent--family), monospace;
    font-size: var(--pen-text-size, 9px);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #2e2e2e;
    border-top: 1px solid #1a1a1a;
  }

  .he-pen__layer--blocked {
    color: var(--pen-text-color, #555);
    border-color: #222;
  }

  .he-pen__layer--active {
    color: var(--he-pen-accent, #F23440);
    border-color: rgba(242, 52, 64, 0.18);
  }

  .he-pen__verdict {
    font-family: var(--font-accent--family), monospace;
    font-size: var(--pen-text-size, 9px);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-align: center;
    color: var(--pen-text-color, #333);
    padding-top: 10px;
    border-top: 1px solid #1a1a1a;
    width: 100%;
    margin-top: 4px;
  }

  .he-pen__verdict--win {
    color: var(--he-pen-accent, #F23440);
    border-top-color: rgba(242, 52, 64, 0.15);
  }
/* END_BLOCK:penetration-compare */

/* START_BLOCK:popup-link (INDEX:239) */
.popup-link__button svg {
    display: inline-block;
    position: relative;
    top: var(--margin-2xs);
  }

  .popup-link__content {
    box-shadow: var(--shadow-popover);
    border: var(--style-border-popover);
    border-radius: var(--style-border-radius-popover);
    background-color: var(--color-background);
    padding: var(--padding-4xl) var(--padding-xl) var(--padding-xl);
    max-width: var(--normal-content-width);
    max-height: var(--modal-max-height);

    @media screen and (min-width: 750px) {
      padding: var(--padding-5xl);
    }
  }

  .popup-link__content[open] {
    animation: modalSlideInTop var(--animation-speed) var(--animation-easing) forwards;
  }

  .popup-link__content.dialog-closing {
    animation: modalSlideOutTop var(--animation-speed) var(--animation-easing) forwards;
  }

  .popup-link__content--drawer {
    position: fixed;
    border-radius: 0;
    width: var(--sidebar-width);
    max-width: 95vw;
    height: 100%;
    margin: 0 0 0 auto;
  }

  /* Needed to ensure the drawer is full height */
  .popup-link__content--drawer:modal {
    max-height: 100dvh;
  }

  .popup-link__close {
    top: var(--margin-2xs);
    right: var(--margin-2xs);
    opacity: 0.8;
    animation: none;
  }
/* END_BLOCK:popup-link */

/* START_BLOCK:product-custom-property (INDEX:242) */
product-custom-property-component {
    display: block;
    width: 100%;
  }

  product-custom-property-component .__heading {
    margin-inline: 0;
    margin-block: 0 var(--padding-sm);
  }

  product-custom-property-component .__heading:has(+ .__description) {
    margin-block-end: var(--padding-2xs);
  }

  product-custom-property-component .__description {
    font-size: min(0.85em, var(--font-paragraph--size));
    color: rgb(var(--color-foreground-rgb) / var(--opacity-subdued-text));
    margin-inline: 0;
    margin-block: 0 var(--padding-md);
  }

  product-custom-property-component .__field {
    position: relative;
  }

  product-custom-property-component .__input-wrapper {
    position: relative;
  }

  product-custom-property-component input,
  product-custom-property-component textarea {
    width: 100%;
    /* stylelint-disable-next-line declaration-no-important */
    color: var(--color-input-text) !important;
  }

  /* Add padding for inputs with counter inside */
  product-custom-property-component .__input-wrapper input {
    padding-bottom: calc(var(--padding-sm) * 3);
  }

  product-custom-property-component .__input-wrapper textarea {
    padding-bottom: calc(var(--padding-sm) * 3);
    scroll-padding-bottom: calc(var(--padding-sm) * 3);
  }

  product-custom-property-component textarea {
    min-height: 80px;
  }

  @supports (resize: vertical) {
    @media (hover: hover) and (pointer: fine) {
      product-custom-property-component textarea {
        resize: vertical; /* stylelint-disable-line */
      }
    }
  }

  product-custom-property-component .__character-label {
    position: absolute;
    left: var(--input-padding-x);
    bottom: var(--padding-sm);
    pointer-events: none;
  }

  product-custom-property-component .__character-count {
    font-style: italic;
    /* stylelint-disable-next-line declaration-no-important */
    color: var(--color-input-text) !important;
  }

  /* We should consolidate input styles that share the same behavior */
  .custom-property__input {
    border: var(--style-border-width-inputs) solid var(--color-input-border);
    border-radius: var(--style-border-radius-inputs);

    /* this is needed to override the styles from field__input */
    box-shadow: none;

    &:is(:hover, :focus) {
      /* this is needed to override the styles from field__input */
      box-shadow: none;
    }

    &:focus {
      /* this is needed to override the styles from field__input */
      outline: var(--focus-outline-width) solid var(--color-input-background);
    }
  }
/* END_BLOCK:product-custom-property */

/* START_BLOCK:product-inventory (INDEX:244) */
.product-inventory__status {
    display: flex;
    align-items: center;
    font-size: var(--font-paragraph--size);
    line-height: var(--font-paragraph--line-height);
    gap: var(--padding-xs);
  }

  .product-inventory__icon,
  .product-inventory__icon svg {
    width: var(--icon-size-sm);
    height: var(--icon-size-sm);
  }

  .product-inventory__icon-low {
    color: var(--color-lowstock);
  }

  .product-inventory__icon-in_stock {
    color: var(--color-instock);
  }

  .product-inventory__icon-out_of_stock {
    color: var(--color-outofstock);
  }

  .product-inventory__icon circle:first-of-type {
    opacity: 0.3;
  }
/* END_BLOCK:product-inventory */

/* START_BLOCK:product-recommendations (INDEX:245) */
.block-resource-list {
    display: flex;
    flex-direction: column;
    row-gap: var(--gap);
    min-width: 0;
    min-height: 0;
    container-type: inline-size;
    container-name: resource-list;
    border-radius: var(--border-radius, 0);
  }

  .product-recommendations-wrapper {
    width: 100%;
  }

  .product-recommendations-wrapper:has(product-recommendations[data-shopify-editor-preview]) {
    width: 100vw;
  }
/* END_BLOCK:product-recommendations */

/* START_BLOCK:review (INDEX:248) */
.rating-wrapper {
    gap: var(--gap-xs);
    min-width: fit-content;
  }

  .rating-color--primary {
    --star-fill-color: var(--color-primary);
    --star-fill-color-rgb: var(--color-primary-rgb);
    --color: var(--color-primary);
  }

  .rating-color--foreground {
    --star-fill-color: var(--color-foreground);
    --star-fill-color-rgb: var(--color-foreground-rgb);
    --color: var(--color-foreground);
  }

  .rating-wrapper,
  .rating {
    display: flex;
    align-items: center;
  }

  .rating-wrapper.justify-right {
    flex-direction: row-reverse;
  }

  .rating {
    gap: var(--gap-3xs);
  }

  .rating-wrapper .rating-count,
  .rating-wrapper .rating-count-separator {
    color: var(--star-fill-color);
    margin: 0;
    white-space: nowrap;
  }

  .rating-count-separator {
    opacity: var(--opacity-20);
    padding-left: calc(var(--padding-xs) / 2);
    padding-right: var(--padding-xs);
  }

  .stars {
    height: var(--star-size);
    fill: var(--empty-star-fill-color);
  }

  .filled-star {
    fill: var(--star-fill-color);
  }
/* END_BLOCK:review */

/* START_BLOCK:section-label (INDEX:249) */
.he-label {
    font-family: var(--font-accent--family), monospace;
    line-height: 1.4;
    display: block;
    width: 100%;
    box-sizing: border-box;
  }
/* END_BLOCK:section-label */

/* START_BLOCK:social-links (INDEX:251) */
.social-icons__wrapper {
    display: flex;
    gap: var(--gap-sm);
    flex-wrap: wrap;
    justify-content: center;

    @media screen and (min-width: 750px) {
      flex-wrap: nowrap;
      justify-content: flex-start;
    }
  }

  .social-icons__icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    height: var(--icon-size-lg);
  }

  .social-icons__icon {
    display: flex;
    flex-shrink: 0;
    width: var(--icon-size-lg);
    height: var(--icon-size-lg);
  }

  .social-icons__icon {
    display: none;
  }

  .social-icons__icon-wrapper:has(.social-icons__icon path) {
    width: var(--icon-size-lg);

    .social-icons__icon {
      display: block;
    }

    .social-icons__icon-label {
      display: none;
    }
  }

  /* Disabled state for editor */
  .shopify-design-mode .social-icons__icon-wrapper--disabled {
    opacity: var(--disabled-opacity, 0.5);
    cursor: not-allowed;
  }

  .shopify-design-mode .social-icons__icon-wrapper--disabled a {
    pointer-events: none;
  }
/* END_BLOCK:social-links */

/* START_BLOCK:solution-card (INDEX:252) */
.fs-block-wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
  }

  .fs-card-heading {
    margin-top: 0;
  }

  .fs-card {
    position: relative;
    overflow: hidden;
    min-height: 175px;
    width: 100%;
    display: flex;
    align-items: flex-end;
    background-color: #1a1a1a;
  }

  .fs-card__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none;
  }

  .fs-card__bg--mobile {
    display: block;
  }

  @media (min-width: 750px) {
    .fs-card__bg--mobile {
      display: none;
    }
    .fs-card__bg--desktop {
      display: block;
    }
  }

  .fs-card__overlay {
    position: absolute;
    inset: 0;
  }

  .fs-card__content {
    position: relative;
    z-index: 1;
    padding: 20px;
    width: 100%;
    display: flex;
    align-items: flex-start;
    gap: 14px;
  }

  .fs-card__icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(242,52,64,0.12);
    border: 1px solid #F23440;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
  }

  .fs-card__text {
    flex: 1;
  }

  .fs-card__title {
    margin: 0 0 5px;
    font-family: var(--font-body--family);
    color: #ffffff;
    line-height: 1.3;
  }

  .fs-card__body {
    margin: 0;
    font-family: var(--font-body--family);
    line-height: 1.5;
  }
/* END_BLOCK:solution-card */

/* START_BLOCK:spacer (INDEX:253) */
/* Fill opposite direction */
  .layout-panel-flex--column > .spacer-block {
    width: 100%;
  }

  .layout-panel-flex--row > .spacer-block {
    height: 100%;
  }

  /* Flex - Percent */
  :is(.layout-panel-flex--row, .layout-panel-flex--column) > .spacer-block--size-percent {
    flex: var(--spacer-size);
  }

  /* Flex - Pixel */
  .layout-panel-flex--row > .spacer-block--size-pixel {
    width: var(--spacer-size);
  }

  .layout-panel-flex--column > .spacer-block--size-pixel {
    height: var(--spacer-size);
  }

  /* Mobile */
  @media screen and (max-width: 749px) {
    /* Percent */
    .layout-panel-flex--row:not(.mobile-column) > .spacer-block--size-mobile-percent {
      flex: var(--spacer-size-mobile);
      height: 100%;
    }

    .layout-panel-flex--column > .spacer-block--size-mobile-percent,
    .mobile-column > .spacer-block--size-percent:not(.spacer-block--size-mobile-pixel) {
      width: 100%;
      flex: var(--spacer-size-mobile);
    }

    /* Pixel */
    .layout-panel-flex--row:not(.mobile-column) > .spacer-block--size-mobile-pixel {
      width: var(--spacer-size-mobile);
      height: 100%;
    }

    .layout-panel-flex--column > .spacer-block--size-mobile-pixel,
    .mobile-column > .spacer-block--size-mobile-pixel {
      width: 100%;
      flex: 0;
      height: var(--spacer-size-mobile);
    }
  }
/* END_BLOCK:spacer */

/* START_BLOCK:stat-hero (INDEX:254) */
.he-stat-hero {
    text-align: center;
  }

  .he-stat-hero__num-wrap {
    margin-bottom: 18px;
  }

  .he-stat-hero__num {
    font-family: var(--font-heading--family);
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 0.88;
    display: inline;
  }

  .he-stat-hero__suffix {
    font-family: var(--font-heading--family);
    font-weight: 700;
    letter-spacing: -0.02em;
    display: inline;
    vertical-align: top;
    margin-top: 14px;
  }

  .he-stat-hero__body {
    font-family: var(--font-body--family);
    font-size: 1rem;
    line-height: 1.55;
    margin-bottom: 10px;
  }

  .he-stat-hero__citation {
    font-family: var(--font-accent--family), monospace;
    font-size: 0.625rem;
    letter-spacing: 0.06em;
    display: block;
    opacity: 0.55;
    margin-bottom: 36px;
  }
/* END_BLOCK:stat-hero */

/* START_BLOCK:swatches (INDEX:255) */
product-swatches {
    width: 100%;
    display: flex;
    position: relative;
    overflow: hidden;
    gap: 0;
    flex-shrink: 0;
  }
/* END_BLOCK:swatches */

/* START_BLOCK:video (INDEX:258) */
.placeholder-video {
    aspect-ratio: 5 / 3;
  }
/* END_BLOCK:video */

/* START_BLOCK:why-it-works (INDEX:259) */
.why-it-works {
    width: 100%;
    background-color: var(--color-background);
    border: var(--style-border-width) solid var(--color-border);
    border-radius: var(--style-border-radius-sm);
    overflow: hidden;
  }

  .why-it-works__header {
    padding: var(--padding-4xl);
    border-bottom: var(--style-border-width) solid var(--color-border);
    text-align: center;
  }

  .why-it-works__title {
    font-family: var(--font-h2--family);
    font-size: var(--font-h2--size);
    font-weight: var(--font-h2--weight);
    font-style: var(--font-h2--style);
    letter-spacing: var(--font-h2--letter-spacing);
    line-height: var(--font-h2--line-height);
    text-transform: var(--font-h2--case);
    color: var(--font-h2--color);
    margin: 0;
  }

  .why-it-works__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;

    @media screen and (max-width: 749px) {
      grid-template-columns: 1fr;
    }
  }

  .why-it-works__card {
    padding: var(--padding-4xl);

    @media screen and (max-width: 749px) {
      padding: var(--padding-3xl);
    }
  }

  .why-it-works__card:first-child {
    border-right: var(--style-border-width) solid var(--color-border);

    @media screen and (max-width: 749px) {
      border-right: none;
      border-bottom: var(--style-border-width) solid var(--color-border);
    }
  }

  .why-it-works__icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 1.5px solid var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    margin-bottom: var(--margin-2xl);
  }

  .why-it-works__label {
    font-family: var(--font-body--family);
    font-size: var(--font-size--2xs);
    font-weight: 600;
    letter-spacing: var(--letter-spacing-md);
    text-transform: uppercase;
    color: var(--color-primary);
    margin: 0 0 var(--margin-xs) 0;
  }

  .why-it-works__card-title {
    font-family: var(--font-h3--family);
    font-size: var(--font-h3--size);
    font-weight: var(--font-h3--weight);
    font-style: var(--font-h3--style);
    letter-spacing: var(--font-h3--letter-spacing);
    line-height: var(--font-h3--line-height);
    text-transform: var(--font-h3--case);
    color: var(--font-h3--color);
    margin: 0 0 var(--margin-lg) 0;
  }

  .why-it-works__bullets {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: var(--gap-md);
  }

  .why-it-works__bullets li {
    font-family: var(--font-paragraph--family);
    font-size: var(--font-paragraph--size);
    font-weight: var(--font-paragraph--weight);
    line-height: var(--font-paragraph--line-height);
    color: var(--color-foreground);
    padding-left: 1.25em;
    position: relative;
  }

  .why-it-works__bullets li::before {
    content: '\2022';
    position: absolute;
    left: 0;
    color: var(--color-primary);
    line-height: var(--font-paragraph--line-height);
  }

  .why-it-works__footer {
    border-top: var(--style-border-width) solid var(--color-border);
    padding: var(--padding-3xl) var(--padding-4xl);
    text-align: center;

    @media screen and (max-width: 749px) {
      padding: var(--padding-3xl);
    }
  }

  .why-it-works__footer p {
    font-family: var(--font-paragraph--family);
    font-size: var(--font-paragraph--size);
    line-height: var(--font-paragraph--line-height);
    color: rgb(var(--color-foreground-rgb) / var(--opacity-subdued-text));
    margin: 0;
  }

  .why-it-works__footer strong {
    color: var(--color-foreground);
    font-weight: 600;
  }
/* END_BLOCK:why-it-works */

/* CSS from snippet stylesheet tags */
/* START_SNIPPET:accordion-custom-component (INDEX:260) */
accordion-custom {
    details {
      &::details-content,
      .details-content {
        block-size: 0;
        overflow-y: clip;
        opacity: 0;
        interpolate-size: allow-keywords;
        transition: content-visibility var(--animation-speed-slow) allow-discrete,
          padding-block var(--animation-speed-slow) var(--animation-easing),
          opacity var(--animation-speed-slow) var(--animation-easing),
          block-size var(--animation-speed-slow) var(--animation-easing);
      }

      /* Disable transitions when the content toggle is not caused by the direct user interaction, e.g. opening the filters on mobile. */
      &:not(:focus-within)::details-content,
      &:not(:focus-within) .details-content {
        transition: none;
      }

      &:not([open]) {
        &::details-content,
        .details-content {
          padding-block: 0;
        }
      }

      &[open] {
        &::details-content,
        .details-content {
          opacity: 1;
          block-size: auto;

          @starting-style {
            block-size: 0;
            opacity: 0;
            overflow-y: clip;
          }

          &:focus-within {
            overflow-y: visible;
          }
        }
      }
    }
  }

  accordion-custom[data-disable-on-mobile='true'] summary {
    @media screen and (max-width: 749px) {
      cursor: auto;
    }
  }

  accordion-custom[data-disable-on-desktop='true'] summary {
    @media screen and (min-width: 750px) {
      cursor: auto;
    }
  }
/* END_SNIPPET:accordion-custom-component */

/* START_SNIPPET:background-media (INDEX:262) */
@media (prefers-reduced-motion: reduce) {
    video-background-component video {
      display: none;
    }
  }
/* END_SNIPPET:background-media */

/* START_SNIPPET:bento-grid (INDEX:263) */
.bento-box {
    display: grid;
    column-gap: var(--bento-gap);
    row-gap: calc(var(--bento-gap) * 1.5);
    width: 100%;
  }

  .bento-box:has(.collection-card--image-bg) {
    row-gap: var(--bento-gap);
  }

  .bento-box ~ .bento-box {
    padding-block-start: var(--bento-gap);
  }

  @media screen and (max-width: 900px) {
    .bento-box {
      grid-template-columns: repeat(2, 1fr);
    }

    .bento-box__item {
      /* Prevent grid items from overflowing their cells when children have aspect-ratio */
      min-width: 0;
      overflow: hidden;
    }

    .bento-box__item:nth-child(3n + 1) {
      grid-column: span 1;
    }

    .bento-box__item:nth-child(3n + 2) {
      grid-column: span 1;
    }

    .bento-box__item:nth-child(3n + 3) {
      grid-column: span 2;
    }

    /* Ensure last items create a full row */
    .bento-box__item:last-child:nth-child(3n + 5) {
      grid-column: span 1;
    }

    .bento-box__item:last-child:nth-child(3n + 4) {
      grid-column: span 2;
    }
  }

  @media screen and (min-width: 901px) {
    .bento-box {
      grid-template-columns: repeat(12, 1fr);
      grid-template-areas:
        'A A A B B B B B B C C C'
        'D D D D D D E E E F F F'
        'G G G H H H I I I I I I'
        'J J J J K K K K L L L L';
    }

    .bento-box__item:nth-child(1) {
      grid-area: A;
    }

    .bento-box__item:nth-child(2) {
      grid-area: B;
    }

    .bento-box__item:nth-child(3) {
      grid-area: C;
    }

    .bento-box__item:nth-child(4) {
      grid-area: D;
    }

    .bento-box__item:nth-child(5) {
      grid-area: E;
    }

    .bento-box__item:nth-child(6) {
      grid-area: F;
    }

    .bento-box__item:nth-child(7) {
      grid-area: G;
    }

    .bento-box__item:nth-child(8) {
      grid-area: H;
    }

    .bento-box__item:nth-child(9) {
      grid-area: I;
    }

    .bento-box__item:nth-child(10) {
      grid-area: J;
    }

    .bento-box__item:nth-child(11) {
      grid-area: K;
    }

    .bento-box__item:nth-child(12) {
      grid-area: L;
    }

    /* === Overrides for specific item counts === */

    /* Exactly 1 item */
    .bento-box--items-1 {
      grid-template-areas: 'A A A A A A A A A A A A';
    }

    /* Exactly 2 items */
    .bento-box--items-2 {
      grid-template-areas: 'A A A A A A B B B B B B';
    }

    /* Exactly 4 items */
    .bento-box--items-4 {
      grid-template-areas:
        'A A A A B B B B B B B B'
        'C C C C C C C C D D D D';
    }

    /* Exactly 5 items */
    .bento-box--items-5 {
      grid-template-areas:
        'A A A B B B B B B C C C'
        'D D D D D D E E E E E E';
    }

    /* Exactly 7 items */
    .bento-box--items-7 {
      grid-template-areas:
        'A A A B B B B B B C C C'
        'D D D D D D D D D E E E'
        'F F F F F F G G G G G G';
    }

    /* Exactly 8 items */
    .bento-box--items-8 {
      grid-template-areas:
        'A A A B B B B B B C C C'
        'D D D D D D E E E F F F'
        'G G G H H H H H H H H H';
    }

    /* Exactly 10 items */
    .bento-box--items-10 {
      grid-template-areas:
        'A A A B B B B B B C C C'
        'D D D D D D E E E F F F'
        'G G G G G G G G G H H H'
        'I I I J J J J J J J J J';
    }

    /* Exactly 11 items */
    .bento-box--items-11 {
      grid-template-areas:
        'A A A B B B B B B C C C'
        'D D D D D D E E E F F F'
        'G G G H H H I I I I I I'
        'J J J J K K K K K K K K';
    }
  }
/* END_SNIPPET:bento-grid */

/* START_SNIPPET:blog-comment-form (INDEX:264) */
.blog-post-comments__form-container {
    --comment-form-gap: var(--gap-md);

    width: 100%;
    max-width: var(--normal-content-width);
    margin: var(--margin-4xl) auto 0;
  }

  .blog-post-comments__form {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--comment-form-gap);

    @media screen and (min-width: 750px) {
      grid-template-columns: 1fr 1fr;
    }
  }

  .blog-post-comments__form-input {
    padding: var(--padding-lg) var(--padding-xl);
    border: var(--style-border-width-inputs) solid var(--color-input-border);
  }

  .blog-post-comments__form-input--textarea {
    resize: vertical;
    min-height: var(--input-textarea-min-height);
  }

  .blog-post-comments__form-message {
    display: flex;
    align-items: center;
    gap: var(--gap-xs);
  }

  .blog-post-comments__form-body {
    grid-column: 1 / -1;
  }

  .blog-post-comments__form-input:focus-visible {
    outline: var(--focus-outline-width) solid currentcolor;
    outline-offset: var(--focus-outline-offset);
  }

  .blog-post-comments__form-moderated {
    font-size: var(--font-size--xs);
  }

  .blog-post-comments__form-submit {
    margin-block-start: var(--comment-form-gap);
  }
/* END_SNIPPET:blog-comment-form */

/* START_SNIPPET:button (INDEX:266) */
.link {
    text-decoration: none;
    text-decoration-color: currentcolor;

    &:hover {
      color: var(--color-primary-hover);
      text-decoration-color: transparent;
    }
  }
/* END_SNIPPET:button */

/* START_SNIPPET:buy-buttons-styles (INDEX:267) */
.buy-buttons-block {
    --buy-button-preferred-width: 185px;

    width: 100%;
  }

  .product-form-buttons {
    display: flex;
    flex-wrap: wrap;
  }

  .product-form-buttons:not(:has(.quantity-rules)) {
    gap: calc(var(--gap-sm) / 2);

    @media screen and (min-width: 750px) {
      gap: var(--gap-sm);
    }
  }

  .product-form-buttons
    > *:not(.quantity-selector-wrapper, .quantity-rules, .quantity-label, .volume-pricing, .product-form-text__error) {
    flex: 1 1 var(--buy-button-preferred-width, 0);
    min-width: fit-content;
  }

  .product-form-buttons--stacked
    > *:not(.quantity-selector-wrapper, .quantity-rules, .quantity-label, .volume-pricing, .product-form-text__error) {
    flex-basis: 51%;
  }

  .product-form-buttons button {
    width: 100%;
    padding-block: var(--padding-lg);
  }

  .quantity-selector {
    flex-grow: 0;
    flex-shrink: 0;
    height: var(--height-buy-buttons);
  }

  .quantity-label {
    flex: 1 0 100%;
    width: 100%;
    font-size: var(--font-size--sm);
    margin-block-end: var(--gap-xs);
  }

  .quantity-label__cart-count {
    color: var(--color-foreground-secondary);
  }

  .quantity-rules {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    row-gap: calc(var(--gap-xs) / 2);
    flex: 1 0 100%;
    width: 100%;
    font-size: var(--font-size--xs);
    color: var(--color-foreground-secondary);
    margin-block-start: var(--gap-xs);
    margin-block-end: var(--gap);
  }

  .product-form-buttons:has(~ .volume-pricing .volume-pricing__title) .quantity-rules {
    margin-block-end: var(--gap-md);
  }

  .quantity-rules__item {
    position: relative;
    display: inline-block;
    color: rgb(var(--color-foreground-rgb) / var(--opacity-subdued-text));
  }

  .quantity-rules__item:not(:last-child) {
    padding-right: var(--padding-xl);
    margin-right: var(--margin-2xs);
  }

  .quantity-rules__item:not(:last-child)::after {
    content: '•';
    position: absolute;
    inset-inline-end: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.5em;
    line-height: 0;
  }

  .add-to-cart-button {
    height: var(--height-buy-buttons);
    text-transform: var(--button-text-case-primary);
  }

  .add-to-cart-button.button-secondary {
    text-transform: var(--button-text-case-secondary);
  }

  .product-form-text__error {
    display: flex;
    flex: 1 0 100%;
    align-items: flex-start;
    gap: var(--gap-xs);
    margin-block-end: var(--gap-xs);
  }

  .product__pickup-availabilities {
    width: 100%;
  }

  .pickup-availability__column {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }

  .pickup-availability__row {
    display: flex;
    gap: var(--padding-xs);
  }

  .pickup-availability__dialog-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }

  .pickup-availability__header-container {
    padding-block-end: var(--padding-2xl);
  }

  .pickup-location__wrapper {
    display: flex;
    flex-direction: column;
    padding-block: var(--padding-2xl);
    border-top: 1px solid var(--color-border);
    gap: var(--padding-xs);
  }

  .pickup-location__address-wrapper {
    display: flex;
    flex-direction: column;
    gap: var(--padding-md);
  }

  .pickup-location__dialog {
    padding: var(--padding-2xl);
    position: fixed;
    border-radius: 0;
    width: var(--sidebar-width);
    max-width: 95vw;
    height: 100%;
    margin: 0 0 0 auto;
    border: var(--style-border-drawer);
    box-shadow: var(--shadow-drawer);
    background-color: var(--color-background);
  }

  .pickup-location__dialog:modal {
    max-height: 100dvh;
  }

  .pickup-location__text-sm {
    font-size: var(--font-size--sm);
    margin: 0;
  }

  .pickup-location__text-xs {
    font-size: var(--font-size--xs);
    margin: 0;
  }

  .pickup-location__button {
    width: fit-content;
    color: var(--color-primary);
    font-size: var(--font-size--xs);
    font-family: var(--font-body--family);
    padding: 0;
    cursor: pointer;
    margin-block: var(--margin-xs);
  }

  .pickup-location__button:hover {
    color: var(--color-primary-hover);
  }

  .pickup-location__h4 {
    margin: 0;
  }

  .pickup-location__text-bold {
    font-size: var(--font-size--md);
    font-weight: 600;
    margin: 0;
  }

  .pickup-location__availability-wrapper {
    display: flex;
    align-items: center;
    gap: var(--gap-xs);
    font-family: var(--font-paragraph--family);
  }

  .pickup-location__address {
    font-style: normal;
  }

  .pickup-location__close-button {
    top: calc(var(--padding-2xl) - (var(--icon-size-xs) / 2));
    right: calc(var(--padding-2xl) - var(--icon-size-xs));
  }

  .volume-pricing {
    display: block;
    width: 100%;
    margin-bottom: var(--gap);
  }

  .volume-pricing:not(:has(.volume-pricing__title)) {
    margin-top: 0;
    margin-bottom: 0;
  }

  .volume-pricing__title {
    display: block;
    margin-block-end: var(--gap-sm);
    font-size: var(--font-size--sm);
    font-weight: var(--font-body--weight);
    color: var(--color-foreground);
  }

  .volume-pricing__table {
    width: 100%;
  }

  .volume-pricing__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-block: var(--padding-sm);
    padding-inline: var(--padding-md);
    font-size: var(--font-size--sm);
  }

  .volume-pricing__row--even {
    background: rgb(var(--color-foreground-rgb) / var(--opacity-5));
  }

  .volume-pricing__row--odd {
    background: var(--color-background);
  }

  .volume-pricing__collapsible-wrapper {
    block-size: 0;
    overflow-y: clip;
    opacity: 0;
    interpolate-size: allow-keywords;
    transition: opacity var(--animation-speed-slow) var(--animation-easing),
      block-size var(--animation-speed-slow) var(--animation-easing);
  }

  .volume-pricing__toggle {
    width: 100%;
    padding-bottom: 0;
    padding-inline: 0;
    text-align: left;
    color: var(--color-foreground-secondary);
    font-size: var(--font-size--xs);
    cursor: default;
    margin-block-start: 0;
    pointer-events: none;
  }

  button.volume-pricing__toggle {
    /* Need the extra specificity to override .product-form-buttons button */
    padding-block: var(--padding-sm);
  }

  .volume-pricing__toggle-text {
    cursor: pointer;
    display: inline-block;
    pointer-events: auto;
  }

  .volume-pricing__show-less {
    display: none;
  }

  .volume-pricing--expanded .volume-pricing__collapsible-wrapper {
    opacity: 1;
    block-size: auto;

    @starting-style {
      block-size: 0;
      opacity: 0;
      overflow-y: clip;
    }
  }

  .volume-pricing--expanded .volume-pricing__show-more {
    display: none;
  }

  .volume-pricing--expanded .volume-pricing__show-less {
    display: inline;
  }

  /* Accelerated checkout styles — co-located here so they compile on pages
     where the quick-add modal can display buy buttons (e.g. collection pages). */
  .accelerated-checkout-block[data-shopify-visual-preview] {
    width: 300px;
  }

  more-payment-options-link {
    font-size: smaller;
  }

  more-payment-options-link a {
    --button-color: var(--color-primary);
  }

  more-payment-options-link a:hover {
    --button-color: var(--color-primary-hover);
  }

  .shopify-payment-button__more-options[aria-hidden='true'] {
    display: none;
  }
/* END_SNIPPET:buy-buttons-styles */

/* START_SNIPPET:card-gallery (INDEX:268) */
.card-gallery {
    overflow: hidden;
    container-type: inline-size; /* Make card-gallery a container */
    container-name: card-gallery-container; /* Optional: name the container */
  }

  .card-gallery__placeholder svg {
    height: 100%;
    width: 100%;
  }

  .card-gallery svg {
    aspect-ratio: var(--gallery-aspect-ratio, var(--ratio));
  }

  .product-card-gallery__title-placeholder {
    padding: var(--padding-md);
    font-size: var(--font-size--2xl);
    line-height: var(--line-height--display-loose);
    word-break: break-word;
    color: var(--color-foreground);
    background-color: rgb(var(--color-foreground-rgb) / var(--opacity-5));
    aspect-ratio: var(--gallery-aspect-ratio);
    border-radius: var(--product-corner-radius);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .product-card-gallery__title-placeholder a {
    color: var(--color-foreground);
  }

  @media screen and (min-width: 750px) {
    .product-grid[data-product-card-size='extra-large'] .product-card-gallery__title-placeholder {
      padding: var(--padding-3xl);
      font-size: var(--font-size--3xl);
    }

    .product-grid[data-product-card-size='large'] .product-card-gallery__title-placeholder {
      padding: var(--padding-2xl);
      font-size: var(--font-size--2xl);
    }

    .product-grid[data-product-card-size='medium'] .product-card-gallery__title-placeholder {
      padding: var(--padding-xl);
      font-size: var(--font-size--xl);
    }

    .product-grid[data-product-card-size='small'] .product-card-gallery__title-placeholder {
      padding: var(--padding-sm);
      font-size: var(--font-size--lg);
    }

    .product-grid[data-product-card-size='extra-large']
      .card-gallery.card-gallery--badge-top-right
      .product-card-gallery__title-placeholder {
      padding-right: calc(var(--padding-3xl) + 50px);
    }

    .product-grid[data-product-card-size='large']
      .card-gallery.card-gallery--badge-top-right
      .product-card-gallery__title-placeholder {
      padding-right: calc(var(--padding-2xl) + 50px);
    }

    .product-grid[data-product-card-size='medium']
      .card-gallery.card-gallery--badge-top-right
      .product-card-gallery__title-placeholder {
      padding-right: calc(var(--padding-xl) + 50px);
    }

    .product-grid[data-product-card-size='small']
      .card-gallery.card-gallery--badge-top-right
      .product-card-gallery__title-placeholder {
      padding-right: calc(var(--padding-sm) + 50px);
    }

    .product-grid[data-product-card-size='extra-large']
      .card-gallery.card-gallery--badge-top-left
      .product-card-gallery__title-placeholder {
      padding-top: calc(var(--padding-3xl) + 40px);
    }

    .product-grid[data-product-card-size='large']
      .card-gallery.card-gallery--badge-top-left
      .product-card-gallery__title-placeholder {
      padding-top: calc(var(--padding-2xl) + 40px);
    }

    .product-grid[data-product-card-size='medium']
      .card-gallery.card-gallery--badge-top-left
      .product-card-gallery__title-placeholder {
      padding-top: calc(var(--padding-xl) + 40px);
    }

    .product-grid[data-product-card-size='small']
      .card-gallery.card-gallery--badge-top-left
      .product-card-gallery__title-placeholder {
      padding-top: calc(var(--padding-sm) + 40px);
    }

    .product-grid[data-product-card-size='extra-large']
      .card-gallery.card-gallery--badge-bottom-left
      .product-card-gallery__title-placeholder {
      padding-bottom: calc(var(--padding-3xl) + 40px);
    }

    .product-grid[data-product-card-size='large']
      .card-gallery.card-gallery--badge-bottom-left
      .product-card-gallery__title-placeholder {
      padding-bottom: calc(var(--padding-2xl) + 40px);
    }

    .product-grid[data-product-card-size='medium']
      .card-gallery.card-gallery--badge-bottom-left
      .product-card-gallery__title-placeholder {
      padding-bottom: calc(var(--padding-xl) + 40px);
    }

    .product-grid[data-product-card-size='small']
      .card-gallery.card-gallery--badge-bottom-left
      .product-card-gallery__title-placeholder {
      padding-bottom: calc(var(--padding-sm) + 40px);
    }
  }

  @media screen and (max-width: 749px) {
    .product-card-gallery__title-placeholder {
      font-size: var(--font-size--xl);
      padding: var(--padding-md);
    }

    .product-grid[data-product-card-size]
      .card-gallery.card-gallery--badge-top-right
      .product-card-gallery__title-placeholder {
      padding-right: calc(var(--padding-sm) + 50px);
    }

    .product-grid[data-product-card-size]
      .card-gallery.card-gallery--badge-top-left
      .product-card-gallery__title-placeholder {
      padding-top: calc(var(--padding-sm) + 40px);
    }

    .product-grid[data-product-card-size]
      .card-gallery.card-gallery--badge-bottom-left
      .product-card-gallery__title-placeholder {
      padding-bottom: calc(var(--padding-sm) + 40px);
    }
  }

  [product-grid-view='zoom-out'] .card-gallery .product-card-gallery__title-placeholder {
    /* stylelint-disable-next-line declaration-no-important */
    padding: var(--padding-xs) !important;
    font-size: var(--font-size--xs);
  }

  [product-grid-view='zoom-out'] .card-gallery .slideshow-control {
    min-width: auto;
  }

  ul[product-grid-view='zoom-out'] .product-grid__card .card-gallery {
    display: block;
  }

  [product-grid-view='zoom-out']
    .card-gallery
    > :is(quick-add-component, .product-badges, slideshow-component > slideshow-controls) {
    display: none;
  }

  ul[product-grid-view='zoom-out'] .card-gallery > img {
    display: block;
  }

  .card-gallery slideshow-arrows .slideshow-control {
    /* Align icons with quick-add button */
    padding-inline: var(--padding-xl);

    @container (max-width: 249px) {
      padding-inline: 0 var(--padding-sm);
    }
  }

  /*
   * Card galleries preview the next or previous images on 'pointerenter', so we
   * try to kick load them beforehand (they are lazy loaded otherwise).
   */
  .card-gallery
    :is(
      slideshow-slide:has(+ slideshow-slide[aria-hidden='false']),
      slideshow-slide[aria-hidden='false'] + slideshow-slide
    ) {
    content-visibility: auto;

    slideshow-component[actioned] & {
      content-visibility: visible;
    }
  }
/* END_SNIPPET:card-gallery */

/* START_SNIPPET:cart-bubble (INDEX:269) */
.cart-bubble {
    --cart-padding: 0.2em;

    position: relative;
    width: 20px;
    aspect-ratio: 1;
    border-radius: 50%;
    border-width: 0;
    display: flex;
    line-height: normal;
    align-items: center;
    justify-content: center;
    color: #b61e82;
    padding-inline: var(--cart-padding);
  }

  .cart-bubble[data-maintain-ratio] {
    aspect-ratio: 1;
  }

  .cart-bubble[data-maintain-ratio] .cart-bubble__background {
    border-radius: var(--style-border-radius-50);
  }

  .cart-bubble__background {
    position: absolute;
    inset: 0;
    box-sizing: border-box;
    background-color: #FFDA36;
    border: 1px solid #b61e82;
    border-radius: var(--style-border-radius-lg);
  }

  .cart-bubble__text {
    font-size: var(--font-size--3xs);
    z-index: var(--layer-flat);
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
  }
/* END_SNIPPET:cart-bubble */

/* START_SNIPPET:cart-items-component (INDEX:270) */
.cart-items-component {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
  }

  @media screen and (prefers-reduced-motion: no-preference) {
    html:active-view-transition-type(empty-cart-drawer) {
      .cart-items-component {
        view-transition-name: cart-drawer-content;
      }
    }

    html:active-view-transition-type(empty-cart-page) {
      .cart-items-component {
        view-transition-name: cart-page-content;
      }
    }
  }

  ::view-transition-old(cart-page-content) {
    animation: cart-page-content-old var(--animation-speed-fast) var(--animation-easing) forwards;
  }

  @keyframes cart-page-content-old {
    from {
      opacity: 1;
    }
    to {
      opacity: 0;
      filter: blur(4px);
    }
  }

  ::view-transition-old(cart-drawer-content) {
    transform-origin: 50% 33%;
    animation: cart-contents-old var(--spring-d280-b0-duration) var(--spring-d280-b0-easing) forwards;
  }

  ::view-transition-new(cart-drawer-content) {
    transform-origin: top center;
    animation: cart-contents-new var(--spring-d280-b0-duration) var(--spring-d280-b0-easing) forwards;
  }

  @keyframes cart-contents-old {
    to {
      scale: 0.92;
      opacity: 0;
    }
  }

  @keyframes cart-contents-new {
    from {
      scale: 1.05;
      translate: 0 128px;
      filter: blur(1px);
      opacity: 0;
    }
  }
/* END_SNIPPET:cart-items-component */

/* START_SNIPPET:cart-products (INDEX:271) */
.cart-items {
    --cart-item-media-width-min: 2.5rem;
    --cart-item-media-width-max: 7.5rem;

    container-name: cart-items;
    container-type: inline-size;
    width: 100%;
  }

  .cart-items-disabled {
    pointer-events: none;
  }

  .cart-page--empty .cart-items__wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-block-start: 0;
    text-align: center;
  }

  .cart-drawer:not(:has(.cart-form)) .cart-items__wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .cart-items__table {
    width: 100%;
    border-spacing: 0;
  }

  .cart-items__table * {
    margin: 0;
  }

  .cart-items__table-row {
    --cart-item-price-width: 6rem;

    display: grid;
    grid-template-columns: clamp(2.5rem, 15cqi, 7.5rem) minmax(0, 1fr) minmax(var(--cart-item-price-width), auto);
    grid-template-areas:
      'media details price'
      'media quantity price'
      'media error error';
    column-gap: var(--gap-md);
    align-items: start;
    padding-bottom: var(--cart-items-gap);
    margin-bottom: var(--margin-lg);
  }

  /* Cart drawer: separate grid areas for variants and unit price */
  .cart-drawer .cart-items__table-row--full-width-variants {
    grid-template-columns: clamp(2.5rem, 15cqi, 7.5rem) minmax(0, 1fr) auto;
    grid-template-rows: repeat(4, min-content) 1fr;
    grid-template-areas:
      'media details price'
      'media variants variants'
      'media unit_price unit_price'
      'media quantity quantity'
      'media error error';

    .cart-items__details {
      display: contents;
    }

    .cart-items__product-info {
      grid-area: details;
    }

    .cart-items__variants-wrapper {
      grid-area: variants;

      &:empty {
        display: none;
      }

      p {
        margin: 0;
      }
    }

    .cart-items__unit-price-wrapper {
      grid-area: unit_price;
      font-size: var(--font-size--sm);
    }

    .cart-items__price {
      min-width: auto;
      width: max-content;
    }
  }

  .cart-items__table-row.cart-items__nested-line td:first-child {
    width: 60%;
    justify-self: right;
  }

  html:active-view-transition-type(page-navigation) .cart-items__table-row {
    /* stylelint-disable-next-line declaration-no-important */
    view-transition-name: none !important;
  }

  .cart-items__table-row.removing {
    overflow: hidden;
    animation: removeRow calc(var(--animation-speed) * 2) var(--animation-easing) forwards;
    animation-delay: var(--animation-speed);
  }

  @keyframes removeRow {
    0% {
      height: var(--row-height);
    }

    100% {
      opacity: 0;
      height: 0;
      padding-bottom: 0;
      margin-bottom: 0;
      border-color: transparent;
    }
  }

  .cart-items__table-row:last-child {
    padding-bottom: 0;
  }

  .cart-items--dividers .cart-items__table-row {
    border-bottom: 1px solid var(--color-border);
    margin-bottom: var(--cart-items-gap);
  }

  .cart-items--dividers .cart-items__table-row:has(+ .cart-items__nested-line) {
    border-bottom: none;
    margin-bottom: 0;
  }

  .cart-items--dividers .cart-items__table-row:last-of-type {
    border-block-end: none;
    padding-block-end: 0;
    margin-bottom: 0;
  }

  .cart-items__details {
    grid-area: details;
    color: rgb(var(--color-foreground-rgb) / var(--opacity-70));
  }

  .cart-items__details > * + *,
  .cart-items__bundle li {
    margin-block-start: var(--margin-3xs);
  }

  .cart-items__details * {
    font-size: var(--font-size--sm);
  }

  .cart-items__details a {
    text-decoration: none;
  }

  .cart-items__title {
    font-size: var(--font-size--md);
    color: var(--color-foreground);
    text-transform: var(--product-title-case);
    display: block;
    margin-block-start: calc((var(--font-size--md) - 1lh) / 2);
  }

  .cart-items__variants {
    display: block;
  }


  .cart-items__variant {
    display: inline;
  }

  .cart-items__variant dt,
  .cart-items__variant dd {
    display: inline;
    margin: 0;
  }

  .cart-items__quantity {
    grid-area: quantity;
    margin-block-start: var(--margin-xs);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: var(--gap-xs);
    width: fit-content;
  }

  .cart-items__quantity-controls {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: var(--gap-xs);
    width: fit-content;
  }

  .cart-items__quantity-controls > .volume-pricing-info {
    margin-inline-start: calc(-1 * var(--minimum-touch-target) - var(--gap-xs));
  }

  .cart-items__quantity .quantity-selector {
    display: inline-flex;
    font-size: var(--font-size--sm);
    height: auto;
  }

  .cart-items__remove {
    background-color: transparent;
    color: var(--color-foreground);
    width: var(--minimum-touch-target);
    height: var(--minimum-touch-target);
    justify-content: center;
    box-shadow: none;
    padding: 0;
  }

  .cart-items__media {
    grid-area: media;
    padding: 0;
  }

  .cart-items__price {
    grid-area: price;
    min-height: unset;
    min-width: var(--cart-item-price-width);
    text-align: end;
    display: block;
    font-size: var(--font-size--sm);
    line-height: var(--line-height);
  }


  .cart-items__price-unit {
    font-size: var(--font-size--xs);
    padding-block-start: var(--padding-2xs);
  }

  .cart-items__media-container {
    display: flex;
    aspect-ratio: var(--ratio);
    position: relative;
    width: 100%;
    overflow: hidden;
  }

  .cart-items__media-image {
    aspect-ratio: inherit;
    object-fit: cover;
    object-position: center center;
    width: 100%;
    height: auto;
  }

  .cart-items__empty-button {
    margin-top: var(--margin-md);
    padding-inline: var(--padding-4xl);
    padding-block: var(--padding-lg);
  }

  /* Error message */
  .cart-items__error {
    display: flex;
    align-items: flex-start;
    width: 100%;
    grid-area: error;
    margin-block-start: var(--margin-xs);
    opacity: 1;
    overflow: hidden;
    transform: translateY(0);
    transition: opacity var(--drawer-animation-speed) var(--animation-easing),
      transform var(--drawer-animation-speed) var(--animation-easing);

    @starting-style {
      opacity: 0;
      transform: translateY(-0.5rem);
    }
  }

  .cart-item__error {
    display: flex;
    align-items: flex-start;
    width: 100%;
    font-size: var(--font-size--sm);
    padding-block: var(--padding-2xs);
  }

  .cart-item__error .svg-wrapper {
    flex-shrink: 0;
    width: var(--icon-size-xs);
    height: var(--icon-size-xs);
    margin-inline: var(--margin-3xs) var(--margin-xs);
    margin-block-start: var(--margin-3xs);
  }

  @container cart-items (min-width: 720px) {
    /* Cart page: original layout */
    .cart-items__table-row {
      --cart-item-price-width: 6rem;

      grid-template-columns: 7.5rem 1fr 1fr minmax(var(--cart-item-price-width), auto);
      grid-template-rows: min-content 1fr;
      grid-template-areas:
        'media details quantity price'
        'media details error error';
    }

    .cart-items__quantity,
    .cart-items__price {
      grid-area: initial;
    }

    .cart-items__quantity {
      margin-top: 0;
    }

    .cart-items__price {
      min-height: var(--minimum-touch-target);
      display: flex;
      flex-direction: column;
      align-items: flex-end;
    }

    /* Cart drawer: separate areas for variants and unit price */
    .cart-drawer .cart-items__table-row--full-width-variants {
      grid-template-rows: min-content min-content min-content 1fr;
      grid-template-areas:
        'media details quantity price'
        'media variants variants variants'
        'media unit_price unit_price unit_price'
        'media error error error';

      .cart-items__quantity,
      .cart-items__price {
        grid-area: initial;
      }
    }
  }

  .cart__subtotal-container,
  .cart__total-container {
    display: flex;
    flex-direction: column;
  }

  .cart__total-container {
    row-gap: var(--gap-2xs);

    &.cart__total-container--has-installments {
      row-gap: var(--gap-xs);
    }
  }

  .cart__subtotal-container:empty {
    display: none;
  }

  .cart__summary-totals {
    display: flex;
    flex-direction: column;
    gap: var(--gap-xl);
    width: 100%;
    border-block-start: none;

    &:has(> :first-child:not(.cart__subtotal-container, .cart__total-container)) {
      padding-block-start: 0;
      border-block-start: none;
    }

    @media screen and (min-width: 750px) {
      padding-block-start: 0;
    }
  }

  .cart__subtotal-container,
  .cart__subtotal-container * {
    font-size: var(--font-size--sm);
  }

  .cart__total {
    font-weight: var(--font-weight-bold);
  }

  .cart__total-label {
    font-size: var(--font-size--sm);
  }

  .cart__total-value {
    font-size: var(--font-size--xl);

    @media screen and (max-width: 749px) {
      font-size: var(--font-size--lg);
    }
  }

  .cart-primary-typography {
    font-family: var(--cart-primary-font-family);
    font-style: var(--cart-primary-font-style);
    font-weight: var(--cart-primary-font-weight);
  }

  .cart-secondary-typography {
    font-family: var(--cart-secondary-font-family);
    font-style: var(--cart-secondary-font-style);
    font-weight: var(--cart-secondary-font-weight);
  }

  .cart__ctas {
    width: 100%;
    display: grid;
    gap: var(--checkout-button-gap);
    grid-auto-flow: row;
    grid-template-columns: 1fr;
  }

  .cart__additional-checkout-buttons {
    width: 100%;
  }

  shopify-accelerated-checkout-cart {
    --shopify-accelerated-checkout-inline-alignment: center;
    --shopify-accelerated-checkout-button-border-radius: var(--style-border-radius-buttons-primary);
    --shopify-accelerated-checkout-row-gap: var(--checkout-button-gap, 10px);
  }

  /* Remove animation */
  .remove-icon-bottom,
  .remove-icon-top {
    transition: transform var(--animation-speed) var(--animation-easing);
  }

  .cart-items__remove:hover .remove-icon-top {
    transform: translate(calc(-1 * var(--icon-stroke-width)), var(--icon-stroke-width)) rotate(-15deg);
  }

  .cart-items__remove:is(:hover, :active) .remove-icon-bottom {
    transform: translateY(var(--icon-stroke-width));
  }

  .cart-items__table-row.removing .remove-icon-bottom {
    transform: translateY(0);
  }

  .cart-items__table-row.removing .remove-icon-top {
    animation: removeButtonClickedIconTop var(--animation-speed) var(--animation-easing) forwards;
  }

  @keyframes removeButtonClickedIconTop {
    50% {
      transform: translate(0, calc(-1 * var(--icon-stroke-width)));
    }

    100% {
      transform: translate(0, 0);
    }
  }

  .cart-items__properties {
    display: block;
    margin-block-start: var(--margin-2xs);
  }

  .cart-items__property {
    display: block;
  }

  .cart-items__properties dt,
  .cart-items__properties dd {
    display: inline;
    margin: 0;
    overflow-wrap: break-word;
  }

  @media screen and (min-width: 750px) {
    .cart-items .quantity-selector {
      --quantity-selector-width: 105px;
      height: var(--button-size-md);
      width: var(--quantity-selector-width);
    }

    .cart-items .quantity-selector button {
      width: var(--button-size-md);
      height: var(--button-size-md);
    }

    .cart-items .quantity-selector input {
      max-width: calc(var(--quantity-selector-width) - var(--button-size-md) * 2);
    }
  }

  @media screen and (prefers-reduced-motion: no-preference) {
    html:active-view-transition-type(empty-cart-drawer) {
      .cart-items__empty-button,
      .cart__checkout-button {
        view-transition-name: cart-drawer-primary-action;

        & > .button-text {
          view-transition-name: cart-drawer-primary-action-text;
        }
      }
    }
  }

  ::view-transition-old(cart-drawer-primary-action-text),
  ::view-transition-new(cart-drawer-primary-action-text) {
    height: 100%;
    object-fit: none;
    overflow: clip;
    overflow-clip-margin: 1em;
  }

  ::view-transition-old(cart-drawer-primary-action-text) {
    animation: cart-drawer-primary-action-text var(--animation-speed) var(--animation-easing) reverse forwards;
  }
  ::view-transition-new(cart-drawer-primary-action-text) {
    animation: cart-drawer-primary-action-text var(--animation-speed) var(--animation-easing) forwards;
  }

  ::view-transition-old(cart-drawer-primary-action),
  ::view-transition-new(cart-drawer-primary-action) {
    height: 100%;
  }

  ::view-transition-group(cart-drawer-primary-action-text),
  ::view-transition-group(cart-drawer-primary-action) {
    animation-duration: var(--spring-d300-b0-duration);
    animation-timing-function: var(--spring-d300-b0-easing);
  }

  @keyframes cart-drawer-primary-action-text {
    from {
      filter: blur(3px);
      opacity: 0;
    }
    to {
      filter: none;
      opacity: 1;
    }
  }
/* END_SNIPPET:cart-products */

/* START_SNIPPET:cart-summary (INDEX:272) */
.cart-actions {
    display: flex;
    flex-direction: column;
    gap: 0;
    border-block: 1px solid var(--color-border);
    padding-block: 0;
    margin-block-start: var(--margin-3xs);
  }

  .cart-actions__divider {
    border-block-start: 1px solid var(--color-border);
  }

  .cart-totals:not(:has(.cart-actions)) {
    margin-block-start: var(--margin-3xs);
    border-block-start: 1px solid var(--color-border);
    padding-block-start: var(--margin-xl);
  }

  .cart-totals__item {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .cart-totals__tax-note {
    color: rgb(var(--color-foreground-rgb) / var(--opacity-subdued-text));
  }

  .cart-totals__tax-note small {
    font-size: var(--font-size--2xs);
  }

  .cart-discounts {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .cart-discounts__item {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .cart-discounts__label {
    display: flex;
    align-items: center;
    gap: var(--gap-2xs);
  }

  .cart-discounts__label svg {
    width: var(--icon-size-sm);
    height: var(--icon-size-sm);
    display: inline-block;
  }

  .cart-totals__original-container,
  .cart-totals__container {
    display: flex;
    flex-direction: column;
  }

  .cart-totals__container {
    row-gap: var(--gap-2xs);

    &.cart-totals__container--has-installments {
      row-gap: var(--gap-xs);
    }
  }

  .cart-totals__original-container:empty {
    display: none;
  }

  .cart-totals {
    display: flex;
    flex-direction: column;
    gap: var(--gap-xl);
    width: 100%;
    border-block-start: none;

    &:has(> :first-child:not(.cart-totals__original-container, .cart-totals__container)) {
      padding-block-start: 0;
      border-block-start: none;
    }

    @media screen and (min-width: 750px) {
      padding-block-start: 0;
    }
  }

  .cart-totals__original-container,
  .cart-totals__original-container * {
    font-size: var(--cart-font-size--sm);
  }

  .cart-totals__total {
    align-items: baseline;
    font-weight: var(--font-weight-bold);
  }

  .cart-totals__total-label {
    font-size: var(--cart-font-size--sm);
  }

  .cart-totals__total-value {
    font-size: var(--cart-font-size--xl);

    @media screen and (max-width: 749px) {
      font-size: var(--font-size--lg);
    }
  }

  .cart-totals__installments {
    color: var(--color-foreground);
    font-size: var(--font-size--2xs);
  }

  .cart-note {
    width: 100%;
  }

  @starting-style {
    .cart-note[open-by-default-on-desktop][open-by-default-on-mobile] .details-content {
      block-size: auto;
      opacity: 1;
      overflow-y: visible;
    }
  }

  .cart-note__inner {
    padding-block: var(--padding-2xs) var(--padding-sm);
  }

  .cart-note__summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .cart-note__summary:hover {
    color: rgb(var(--color-foreground-rgb) / var(--opacity-subdued-text));
  }

  .cart-note__label {
    display: flex;
    align-items: flex-start;
    gap: var(--gap-2xs);
    font-size: var(--font-size--2xs);
    font-weight: 500;
  }

  .cart-note__instructions {
    color: var(--color-input-text);
    background-color: var(--color-input-background);
    border-width: var(--style-border-width-inputs);
    border-color: var(--color-input-border);
    transition: box-shadow var(--animation-speed) ease;
    box-shadow: var(--input-box-shadow);
    min-height: 5.5rem;
    min-width: 100%;
    max-width: 100%;
    font-size: var(--font-size--sm);
    padding: max(4px, calc(var(--style-border-radius-inputs) * (1 - cos(45deg))));
  }

  .cart-totals__icon {
    height: var(--icon-size-xs);
    width: var(--icon-size-xs);
    margin: 0;
  }

  .cart__ctas {
    width: 100%;
    display: grid;
    gap: var(--checkout-button-gap);
    grid-auto-flow: row;
    grid-template-columns: 1fr;
  }

  .cart__ctas .cart__checkout-button {
    width: 100%;
    height: clamp(25px, var(--height-buy-buttons), 55px);
    padding-inline: var(--padding-4xl);
  }

  .cart-drawer__summary .cart-totals:not(:has(.cart-totals__original-container:empty)) {
    border-block-start: var(--style-border-width) solid var(--color-border);
    padding-block-start: var(--padding-2xl);
  }

  .cart-drawer__summary .cart-note {
    @media screen and (min-width: 750px) {
      margin-block-start: var(--margin-3xs);
    }
  }

  .cart-discount__input {
    background-color: var(--color-input-background);
    color: var(--color-input-text);
    border-width: var(--style-border-width-inputs);
    border-color: var(--color-input-border);
    border-style: solid;
    border-radius: var(--style-border-radius-inputs);
    padding: var(--padding-sm) var(--padding-md);
    height: 100%;
    flex-grow: 1;
    min-width: 0;
    font-size: var(--font-size--sm);
  }

  .cart-discount__input::placeholder {
    color: rgb(var(--color-input-text-rgb) / var(--opacity-subdued-text));
  }

  .cart-discount__pill-code {
    overflow: hidden;
    max-width: 100px;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin: 0;
  }

  .cart-discount {
    width: 100%;
  }

  .cart-discount__codes {
    display: none;
    gap: var(--padding-xs);
    flex-wrap: wrap;
    list-style: none;
    padding-inline: 0;
    margin: 0;
  }

  .cart-discount__codes:has(.cart-discount__pill) {
    display: flex;
  }

  .cart-discount__button {
    height: 100%;
  }

  .cart-discount__content {
    height: calc(var(--button-size) + var(--padding-2xs) + var(--padding-sm));
  }

  .cart-discount__pill {
    display: flex;
    color: var(--color-foreground);
    gap: var(--padding-xs);
    align-items: center;
    padding: var(--padding-xs) var(--padding-sm);
    border-radius: var(--style-border-radius-pills);
    background-color: var(--color-input-background);
    text-transform: uppercase;
  }

  .cart-discount__form {
    display: flex;
    gap: var(--padding-md);
    align-items: center;
    height: 100%;
    padding-block: var(--padding-2xs) var(--padding-sm);
  }

  :is(.cart-discount__pill-remove, .cart-discount__pill-remove:hover) {
    --close-icon-opacity: 0.4;

    color: var(--color-foreground);
    background-color: transparent;
    pointer-events: all;
    cursor: pointer;
    height: 100%;
  }

  .cart-discount__error {
    display: flex;
    align-items: center;
    width: 100%;
    padding-block: var(--padding-2xs) var(--padding-sm);
  }

  .cart-discount__error .svg-wrapper {
    flex-shrink: 0;
    width: var(--icon-size-xs);
    height: var(--icon-size-xs);
    margin-inline: var(--margin-3xs) var(--margin-xs);
  }

  .cart-discount__error-text {
    margin-block-start: var(--margin-3xs);
  }

  .cart-discount__summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .cart-discount__summary:hover {
    color: rgb(var(--color-foreground-rgb) / var(--opacity-subdued-text));
  }

  .cart-discount__label {
    display: flex;
    align-items: flex-start;
    gap: var(--gap-2xs);
    font-size: var(--font-size--2xs);
    font-weight: 500;
  }

  @media screen and (min-width: 750px) {
    .cart-summary--extend {
      height: 100%;
    }
  }
/* END_SNIPPET:cart-summary */

/* START_SNIPPET:collection-card (INDEX:274) */
.collection-card {
    --fixed-card-height: var(--height-small);

    flex: 1 1 var(--card-width-small);
  }

  .collection-card > svg {
    height: 100%;
    width: 100%;
    aspect-ratio: var(--ratio);
  }

  .collection-card--image-bg .collection-card__inner {
    height: 100%;
  }

  .collection-card__inner {
    gap: var(--gap);

    a,
    button {
      pointer-events: auto;
    }
  }

  /* allow all blocks to be selectable in editor preview */
  .shopify-design-mode .collection-card__content * {
    pointer-events: auto;
  }

  .collection-card__content {
    max-width: 100%;
    --flex-wrap: wrap;
  }

  /* Nested image block rules */

  .collection-card.collection-card--image-bg {
    aspect-ratio: var(--ratio);
  }

  .collection-card.collection-card--image-bg .collection-card__content {
    padding: var(--padding-lg);
  }

  .collection-card--image-height-fixed {
    height: 100%;
  }

  /* Bento layout rules */
  .collection-card--image-height-fixed .collection-card__image {
    height: var(--fixed-card-height);
    width: 100%;
  }

  .collection-card--image-height-fixed.collection-card--image-bg {
    height: var(--fixed-card-height);
    aspect-ratio: unset;
  }

  .collection-card__image .resource-image__image {
    object-fit: cover;
    width: 100%;
    height: 100%;
    max-width: 100%;
  }

  .collection-card--image-bg .collection-card__image {
    position: absolute;
    width: 100%;
    height: 100%;
  }

  .collection-card__image svg {
    height: 100%;
    width: 100%;
  }

  .resource-list:not(.hidden--desktop) .collection-card--flexible-aspect-ratio {
    &.collection-card.collection-card--image-bg,
    &.collection-card .placeholder-svg {
      aspect-ratio: 99;
    }
  }
/* END_SNIPPET:collection-card */

/* START_SNIPPET:divider (INDEX:276) */
.divider {
    align-self: stretch;
    display: flex;
    align-items: center;
    justify-content: var(--divider-justify-content);
  }

  .divider__line {
    border-bottom: var(--divider-border-thickness) solid var(--color-border);
    border-right: var(--divider-border-thickness) solid var(--color-border);
    border-radius: calc(var(--style-border-radius-sm) * var(--divider-border-rounded));
    flex-basis: var(--divider-flex-basis);
    min-height: var(--divider-flex-basis);
  }
/* END_SNIPPET:divider */

/* START_SNIPPET:editorial-blog-grid (INDEX:277) */
.editorial-blog__grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 1fr;
    gap: var(--gap-xl);

    .shopify-block {
      height: 100%;
    }
  }

  .editorial-blog__spacer {
    aspect-ratio: 1;
  }

  @media screen and (max-width: 749px) {
    .editorial-blog__grid {
      display: flex;
      flex-direction: column;
      gap: var(--gap-2xl);
    }

    .editorial-blog__spacer {
      display: none;
    }

    /* Mobile layout - also horizontally mirrored from collection grid */
    .editorial-blog__item-0 {
      width: 66%;
      align-self: flex-end; /* Originally flex-start, now flex-end */
    }

    .editorial-blog__item-1 {
      width: 83%;
      align-self: flex-start; /* Originally flex-end, now flex-start */
    }

    .editorial-blog__item-2 {
      width: 83%;
      align-self: flex-end; /* Originally flex-start, now flex-end */
    }

    .editorial-blog__item-3 {
      width: 100%;
      align-self: center; /* Stays centered */
    }
  }
/* END_SNIPPET:editorial-blog-grid */

/* START_SNIPPET:editorial-collection-grid (INDEX:278) */
.editorial-collection__grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 1fr;
    gap: var(--gap-xl);

    .resource-list__item,
    .collection-card {
      height: 100%;
    }
  }

  .editorial-collection__spacer {
    aspect-ratio: 1;
  }

  @media screen and (max-width: 749px) {
    .editorial-collection__grid {
      display: flex;
      flex-direction: column;
      gap: var(--gap-2xl);
    }

    .editorial-collection__spacer {
      display: none;
    }

    .editorial-collection__item-0 {
      width: 66%;
      align-self: flex-start;
      aspect-ratio: 4 / 5;
    }

    .editorial-collection__item-1 {
      width: 83%;
      align-self: flex-end;
      aspect-ratio: 5 / 5;
    }

    .editorial-collection__item-2 {
      width: 83%;
      align-self: flex-start;
      aspect-ratio: 8 / 6;
    }

    .editorial-collection__item-3 {
      width: 100%;
      align-self: center;
      aspect-ratio: 8 / 6;
    }
  }
/* END_SNIPPET:editorial-collection-grid */

/* START_SNIPPET:editorial-product-grid (INDEX:279) */
.editorial-product__grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 1fr;
    gap: var(--gap-xl);

    /* Make the aspect ratio super high on width, then increase the height of
     * slideshow containers until they fill all the available space */
    .card-gallery {
      /* stylelint-disable-next-line declaration-no-important */
      --gallery-aspect-ratio: 99 !important;
    }

    .card-gallery,
    slideshow-component,
    slideshow-container,
    slideshow-slides,
    .product-media__image {
      height: 100%;
    }
  }

  .editorial-product__spacer {
    aspect-ratio: 1;
  }

  @media screen and (max-width: 749px) {
    .editorial-product__grid {
      display: flex;
      flex-direction: column;
      gap: var(--gap-2xl);
    }

    .editorial-product__spacer {
      display: none;
    }

    .editorial-product__item-0 {
      width: 83%;
      align-self: flex-start;
      aspect-ratio: 7 / 6;
    }

    .editorial-product__item-1 {
      width: 83%;
      align-self: flex-end;
      aspect-ratio: 4 / 5;
    }

    .editorial-product__item-2 {
      width: 66%;
      align-self: flex-start;
      aspect-ratio: 5 / 5;
    }

    .editorial-product__item-3 {
      width: 100%;
      aspect-ratio: 8 / 6;
    }
  }
/* END_SNIPPET:editorial-product-grid */

/* START_SNIPPET:filter-remove-buttons (INDEX:280) */
/* Facets - Remove buttons */
  .facets-remove {
    --variant-picker-swatch-width: 20px;
    --variant-picker-swatch-height: 20px;

    display: none;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--gap-xs);
    padding: 0 var(--drawer-padding);
    margin: 0;

    @media screen and (min-width: 750px) {
      --variant-picker-swatch-width: 16px;
      --variant-picker-swatch-height: 16px;

      gap: var(--gap-2xs);
    }
  }

  .facets-remove:has(facet-remove-component) {
    display: flex;
    margin-block-start: var(--margin-2xs);
    margin-block-end: var(--margin-md);
  }

  .facets:not(.facets--drawer) .facets-remove--mobile-and-vertical {
    @media screen and (min-width: 750px) {
      padding: 0;
    }
  }

  .facets--horizontal .facets-remove--mobile-and-vertical {
    @media screen and (min-width: 750px) {
      display: none;
    }
  }

  .facets-remove__pill {
    .svg-wrapper,
    .swatch {
      flex-shrink: 0;
    }
  }

  .facets--horizontal .facets-remove {
    @media screen and (min-width: 750px) {
      display: none;
    }
  }
/* END_SNIPPET:filter-remove-buttons */

/* START_SNIPPET:gift-card-recipient-form-styles (INDEX:284) */
.recipient-form {
    --options-border-radius: var(--variant-picker-button-radius);
    --options-border-width: var(--variant-picker-button-border-width);

    display: flex;
    flex-direction: column;
    padding-bottom: var(--padding-2xl);
  }

  .recipient-form__send-to {
    padding: 0;
    margin-block-end: var(--margin-xs);
  }

  .gift-card-form-option {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--gap-sm);
    padding: 0;
    border: none;
  }

  .gift-card-form-option__button-label {
    display: flex;
    align-items: center;
    position: relative;
    padding-block: var(--padding-sm);
    padding-inline: var(--padding-lg);
    border: var(--style-border-width) solid var(--color-variant-border);
    border-radius: var(--options-border-radius);
    border-width: var(--options-border-width);
    overflow: clip;
    justify-content: center;
    min-width: auto;
    background-color: var(--color-variant-background);
    color: var(--color-variant-text);
    transition: background-color var(--animation-speed) var(--animation-easing),
      border-color var(--animation-speed) var(--animation-easing);

    &:hover {
      background-color: var(--color-variant-hover-background);
      border-color: var(--color-variant-hover-border);
      color: var(--color-variant-hover-text);
    }
  }

  .gift-card-form-option__button-label:has(:focus-visible) {
    --variant-picker-stroke-color: var(--color-foreground);

    border-color: var(--color-foreground);
    outline: var(--focus-outline-width) solid var(--color-foreground);
    outline-offset: var(--focus-outline-offset);
  }

  .gift-card-form-option__button-label:has(:checked) {
    color: var(--color-selected-variant-text);
    background-color: var(--color-selected-variant-background);
    border-color: var(--color-selected-variant-border);
    transition: background-color var(--animation-speed) var(--animation-easing),
      border-color var(--animation-speed) var(--animation-easing);

    &:hover {
      background-color: var(--color-selected-variant-hover-background);
      border-color: var(--color-selected-variant-hover-border);
      color: var(--color-selected-variant-hover-text);
    }
  }

  .gift-card-form-option__button-label input {
    position: absolute;
    inset: 0;
    opacity: 0;
    margin: 0;
    cursor: pointer;
    width: 100%;
    height: 100%;
  }

  .recipient-fields {
    display: flex;
    flex-direction: column;
    gap: var(--gap-sm);
    transition: opacity 0.3s var(--animation-easing);
    padding-block-start: var(--padding-xl);
  }

  .recipient-fields[hidden] {
    display: none;
  }

  .field--send-on {
    display: flex;
    flex-direction: column;
  }

  .recipient-form__message {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: var(--gap-sm);
    margin-top: var(--margin-sm);
  }

  .recipient-form-field-label {
    position: absolute;
    left: var(--padding-sm);
    bottom: var(--padding-sm);
    font-style: italic;
    color: var(--color-input-text);
  }

  .recipient-fields__textarea {
    min-height: 5.5rem;
    overflow-y: auto;

    /* Space for the character count */
    padding-bottom: calc(var(--padding-sm) * 3);
    scroll-padding-bottom: calc(var(--padding-sm) * 3);
  }

  .recipient-fields__input {
    flex-grow: 1;
    transition: background-color var(--animation-speed) ease, border-color var(--animation-speed) ease;
    padding: var(--input-padding);
    background-color: var(--color-input-background);
    color: var(--color-input-text);
    text-align: left;
    font-size: var(--font-paragraph--size);
    border: var(--style-border-width-inputs) solid var(--color-input-border);
    border-radius: var(--style-border-radius-inputs);

    &:autofill {
      background-color: var(--color-input-background);
      color: var(--color-input-text);
    }

    &:is(:focus, :hover) {
      background-color: var(--color-input-hover-background);
    }

    &:is(:focus) {
      outline-color: var(--color-input-background);
    }
  }

  /* Date picker calendar icon
   * Safari doesn't show the icon and Firefox correctly applies the color from the input field.
   * Webkit browsers need the mask-image trick to use the correct icon color.
   */
  .field--send-on .recipient-fields__input::-webkit-calendar-picker-indicator {
    cursor: pointer;
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='currentColor' viewBox='0 0 24 24' %3E%3Cg%3E%3Cpath d='M9 11H7v2h2v-2zm4 0h-2v2h2v-2zm4 0h-2v2h2v-2zm2-7h-1V2h-2v2H8V2H6v2H5c-1.11 0-1.99.9-1.99 2L3 20c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 16H5V9h14v11z'%3E%3C/path%3E%3C/g%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-image: none;
    background-color: currentColor;
    mask-type: match-source;
  }

  /* For Webkit browsers - text cursor for input area */
  .field--send-on .recipient-fields__input::-webkit-datetime-edit {
    cursor: text;
  }

  .field--send-on .recipient-fields__input::-webkit-datetime-edit-year-field,
  .field--send-on .recipient-fields__input::-webkit-datetime-edit-month-field,
  .field--send-on .recipient-fields__input::-webkit-datetime-edit-day-field {
    /* Override the disabled color */
    color: var(--color-input-text);
  }

  /* Fallback for other browsers */
  .field--send-on .recipient-fields__input {
    cursor: text;
  }

  /* For Firefox - entire field is clickable, so show pointer */
  @supports (-moz-appearance: none) {
    .field--send-on .recipient-fields__input {
      cursor: pointer;
    }
  }
/* END_SNIPPET:gift-card-recipient-form-styles */

/* START_SNIPPET:grid-density-controls (INDEX:286) */
.column-options-wrapper {
    --icon-offset: -3px;

    display: flex;
    gap: var(--gap-sm);
    min-width: fit-content;
    justify-content: flex-end;
    height: var(--minimum-touch-target);
    align-items: center;
    margin-right: var(--icon-offset);
  }

  .column-options-wrapper:only-child {
    margin-left: auto;
  }

  .facets__form-wrapper > .column-options-wrapper:first-child {
    margin-left: auto;
  }

  .facets .column-options-wrapper {
    display: none;

    @media screen and (min-width: 750px) {
      display: flex;
    }
  }

  .column-options {
    display: flex;
    flex-wrap: wrap;
    gap: var(--gap-xs);
    margin: 0;
    padding: 0;
    border: none;

    @media screen and (min-width: 750px) {
      gap: var(--gap-2xs);
    }
  }

  .column-options__option {
    display: none;
    position: relative;
  }

  .column-options__option:has(.column-picker-mobile--single),
  .column-options__option:has(.column-picker-mobile--double) {
    @media screen and (max-width: 749px) {
      display: flex;
    }
  }

  .column-options__option:has(.column-picker--default),
  .column-options__option:has(.column-picker--zoom-out) {
    @media screen and (min-width: 750px) {
      display: flex;
    }
  }

  /* Override base rule for grid density controls - only when visible */
  .column-options-wrapper .column-options__option:has(input[type="radio"]):has(.column-picker-mobile--single),
  .column-options-wrapper .column-options__option:has(input[type="radio"]):has(.column-picker-mobile--double) {
    @media screen and (max-width: 749px) {
      display: flex;
    }
  }

  .column-options-wrapper .column-options__option:has(input[type="radio"]):has(.column-picker--default),
  .column-options-wrapper .column-options__option:has(input[type="radio"]):has(.column-picker--zoom-out) {
    @media screen and (min-width: 750px) {
      display: flex;
    }
  }

  .column-options__legend {
    padding: 0;
    margin: 0;
  }

  .column-options__option-input {
    /* this is a repeating pattern a bit with the variant picker buttons */

    /* remove the checkbox from the page flow */
    position: absolute;

    /* set the dimensions to match those of the label */
    inset: 0;

    /* hide it */
    opacity: 0;
    margin: 0;
    padding: 0;
    width: auto;
    height: auto;
    aspect-ratio: unset;
    border: none;
    border-radius: 0;
    background: transparent;
    appearance: auto;
    display: block;
    cursor: pointer;
  }

  .column-picker {
    color: rgb(var(--color-foreground-rgb) / var(--opacity-50));
    padding: var(--padding-2xs);
    border-radius: var(--style-border-radius-xs);
    transition: background-color var(--animation-speed) ease, color var(--animation-speed) ease;
  }

  .column-options__option:hover .column-picker {
    background-color: rgb(var(--color-foreground-rgb) / var(--opacity-5));
  }

  .column-options__option-input:checked ~ .column-picker {
    color: rgb(var(--color-foreground-rgb));
    background-color: rgb(var(--color-foreground-rgb) / var(--opacity-5));
  }
/* END_SNIPPET:grid-density-controls */

/* START_SNIPPET:group (INDEX:287) */
.group-block__link {
    position: absolute;
    inset: 0;
  }

  .group-block__link ~ :is(.group-block-content, .group-block__media-wrapper) {
    pointer-events: none;

    :is(a, button, input, textarea, select) {
      pointer-events: auto;
    }
  }

  /* Needs the .group-block__link ~ to be specific enough to take effect. */
  .group-block__link ~ .group-block-content--design-mode {
    pointer-events: auto;
  }
/* END_SNIPPET:group */

/* START_SNIPPET:he-variant-main-picker-copy (INDEX:294) */
/* Scoped to this copy only — square swatches instead of round, everywhere
     else (native variant-picker) keeps the sitewide round --variant-picker-swatch-radius. */
  .he-vp-copy {
    --variant-picker-swatch-radius: 8px;
  }

  /* Swatches grow to fill the full row width, evenly split, staying square. */
  .he-vp-copy .variant-option--swatches {
    flex-wrap: nowrap;
  }

  .he-vp-copy .variant-option__button-label--has-swatch {
    flex: 1 1 0;
    min-width: 0;
  }

  /* Selected-state outline matches the unselected border width exactly
     (native uses a wider, offset focus outline for the checked state). */
  .he-vp-copy .variant-option__button-label--has-swatch:has(:checked),
  .he-vp-copy .variant-option__button-label--has-swatch:hover {
    outline-width: var(--style-border-swatch-width);
    outline-offset: 0;
  }

  .he-vp-copy .variant-option__button-label--has-swatch .swatch {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
  }

  /* Push the selected value ("Red") all the way to the right of "Color". */
  .he-vp-copy legend {
    display: flex;
    width: 100%;
    justify-content: space-between;
  }

  .he-vpc-legend-label {
    font-weight: 700;
    color: #000000;
  }

  /* Variant picker container styles - unique to main variant picker */
  .variant-picker {
    width: 100%;
  }

  .variant-picker__form {
    width: 100%;
  }

  .variant-picker[data-shopify-visual-preview] {
    min-width: 300px;
    padding-inline-start: max(4px, var(--padding-inline-start));
  }

  /* Dropdown variant option styles */
  .variant-option__select-wrapper {
    display: flex;
    position: relative;
    border: var(--style-border-width-inputs) solid var(--color-border);
    border-radius: var(--style-border-radius-inputs);
    align-items: center;
    margin-top: var(--margin-2xs);
    overflow: clip;
  }

  .variant-option__select-wrapper:has(.swatch) {
    --variant-picker-swatch-width: 20px;
    --variant-picker-swatch-height: 20px;
  }

  .variant-option__select-wrapper:hover {
    border-color: var(--color-variant-hover-border);
  }

  .variant-option__select:focus-visible {
    outline: var(--focus-outline-width) solid currentcolor;
    outline-offset: var(--focus-outline-offset);
  }

  .variant-option__select {
    padding-block: var(--padding-md);
    padding-inline: var(--padding-lg) calc(var(--padding-lg) + var(--icon-size-2xs));
    appearance: none;
    border: 0;
    width: 100%;
    margin: 0;
    cursor: pointer;
  }

  .variant-option__select-wrapper .icon {
    position: absolute;
    right: var(--padding-md);
    top: 50%;
    transform: translateY(-50%);
    width: var(--icon-size-2xs);
    height: var(--icon-size-2xs);
    pointer-events: none;
  }

  .variant-option__select--has-swatch {
    padding-inline-start: calc((2 * var(--padding-sm)) + var(--variant-picker-swatch-width));
  }

  .variant-option__select-wrapper .swatch {
    position: absolute;
    top: 50%;
    left: var(--padding-md);
    transform: translateY(-50%);
  }

  /* Variant picker alignment modifiers */
  .variant-picker--center,
  .variant-picker--center .variant-option {
    text-align: center;
    align-items: center;
    justify-content: center;
    width: 100%;
  }

  .variant-picker--right,
  .variant-picker--right .variant-option {
    text-align: right;
    justify-content: right;
  }
/* END_SNIPPET:he-variant-main-picker-copy */

/* START_SNIPPET:header-actions (INDEX:295) */
.header {
    --account-offset-top: calc(
      var(--header-group-height) + (var(--header-height) * var(--transparent-header-offset-boolean))
    );

    &[data-sticky-state='active'] {
      --account-offset-top: calc(var(--header-height) - 1px);
    }
  }

  .account-button {
    /* Remove the background color from the color scheme, we want to inherit the color of the header */
    background: transparent;
  }

  .account-button__icon,
  .account-button__text {
    color: var(--color-account-icon);
    transition: color var(--header-content-transition-timing);
    -webkit-font-smoothing: antialiased;
  }

  shopify-account {
    --shopify-account-font-heading: var(--font-heading--family);
    --shopify-account-font-heading-weight: var(--font-heading--weight);
    --shopify-account-font-body: var(--font-body--family);
    --shopify-account-font-body-weight: var(--font-body--weight);
    --shopify-account-radius-base: var(--style-border-radius-popover);
    --shopify-account-radius-button: var(--style-border-radius-buttons-primary);
    --shopify-account-radius-button-small: var(--style-border-radius-buttons-primary);
    --shopify-account-radius-input: var(--style-border-radius-buttons-primary);
    --shopify-account-color-background: var(--color-background);
    --shopify-account-color-text: var(--color-foreground);
    --shopify-account-color-accent: var(--color-primary-button-background);
    --shopify-account-color-accent-text: var(--color-primary-button-text);
    --shopify-account-dialog-position-top: var(--account-offset-top);

    &:not(:defined) {
      min-width: 44px;
      height: 44px;
      display: flex;
      justify-content: center;
      align-items: center;
      /* Match the line height of the other buttons */
      line-height: normal;
    }
  }

  .account-button__fallback {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: var(--shopify-account-color-accent, #0a142f);
  }

  .account-button--text shopify-account {
    color: inherit;
  }

  .cart-drawer {
    --cart-drawer-padding: var(--padding-xl) var(--padding-xl);
    --cart-drawer-padding-desktop: var(--padding-xl) var(--padding-2xl);

    @media screen and (min-width: 750px) {
      margin-inline-end: calc(var(--gap-xs) * -1);
    }
  }

  @media screen and (min-width: 750px) {
    .cart-drawer--text {
      display: flex;
      align-items: center;
    }
  }

  .cart-drawer__dialog {
    position: fixed;
    overflow: hidden;
    border-radius: 0;
    width: 100%;
    height: 100%;
    margin: 0 0 0 auto;
    padding: 0;
    border-left: var(--style-border-drawer);
    box-shadow: var(--shadow-drawer);
    background-color: var(--color-background);

    @media screen and (min-width: 750px) {
      width: var(--sidebar-width);
      max-width: 95vw;
    }
  }

  /* Needed to ensure the drawer is full height */
  .cart-drawer__dialog:modal {
    max-height: 100dvh;
    overflow-y: hidden;
  }

  .cart-drawer__inner {
    height: 100%;
    overflow: hidden;
  }

  .cart-drawer__content {
    height: calc(100% - var(--header-height));
    display: flex;
    flex-direction: column;
    padding: 0;
    background-color: var(--color-background);
    flex-grow: 1;
    overflow-y: auto;
  }

  .cart-drawer__heading {
    display: flex;
    align-items: center;
    gap: var(--gap-xs);
    margin-bottom: 0;
  }

  .cart-drawer__close-button {
    margin-right: calc(var(--padding-sm) * -1);
    top: var(--margin-sm);

    @media screen and (max-width: 749px) {
      top: var(--margin-2xs);
    }
  }

  .cart-drawer--empty .cart-drawer__content {
    text-align: center;
    min-height: auto;
  }

  .cart-drawer--empty .cart-drawer__heading {
    margin-bottom: var(--margin-md);
  }

  .cart-drawer__items .cart-items__table-row {
    padding-bottom: var(--gap-xl);
    border-bottom: var(--style-border-width) solid var(--color-border);
    margin-bottom: var(--gap-xl);
  }

  .cart-drawer__items .cart-items__table-row:has(+ .cart-items__nested-line) {
    border-bottom: none;
    margin-bottom: 0;
  }

  .cart-drawer__items .cart-items__table-row:last-child {
    border-bottom: none;
  }

  .cart-drawer__summary {
    --cart-drawer-summary-padding: var(--padding-lg);

    position: sticky;
    bottom: 0;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--gap-xl);
    padding: var(--cart-drawer-summary-padding);
    margin-top: auto;
    background-color: var(--color-background);
    /* stylelint-disable-next-line color-named */
    mask-image: linear-gradient(to bottom, transparent, black var(--cart-drawer-summary-padding));

    @media screen and (min-width: 750px) {
      --cart-drawer-summary-padding: var(--padding-2xl);
    }
  }

  .cart-drawer__dialog[cart-summary-sticky='false'] .cart-drawer__summary {
    position: static;
    mask-image: none;
  }

  .cart-drawer__dialog[cart-summary-sticky='false'] .cart-drawer__items {
    overflow: unset;
  }

  .cart-actions summary {
    padding-inline: 0;
    padding-block: var(--padding-sm);
    line-height: 1.2;
    min-height: var(--minimum-touch-target);
  }

  .cart-drawer__summary .cart__summary-totals:not(:has(.cart__subtotal-container:empty)) {
    border-block-start: var(--style-border-width) solid var(--color-border);
    padding-block-start: var(--padding-2xl);
  }

  .cart-drawer__summary .cart-note {
    @media screen and (min-width: 750px) {
      margin-block-start: var(--margin-3xs);
    }
  }

  .cart-drawer__heading--empty {
    display: flex;
    justify-content: center;
  }

  .cart-drawer__items {
    display: flex;
    flex-direction: column;
    padding-inline: var(--cart-drawer-padding);
    overflow-y: auto;

    @media screen and (min-width: 750px) {
      padding-inline: var(--cart-drawer-padding-desktop);
    }
  }

  .cart-drawer__items .cart-items__table-row {
    padding-bottom: var(--gap-xl);
    border-bottom: var(--style-border-width) solid var(--color-border);
    margin-bottom: var(--gap-xl);
  }

  .cart-drawer__items .cart-items__table-row:last-child {
    border-bottom: none;
    padding-block-end: 0;
    margin-block-end: 0;
  }

  .cart-drawer--empty .cart-drawer__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100dvh;
    margin-top: 0;
  }

  .cart-drawer:not(:has(.cart-form)) .cart-drawer__content {
    justify-content: center;
  }

  .cart-drawer__header {
    background-color: var(--color-background);
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: var(--cart-drawer-padding);
    border-bottom: var(--style-border-width) solid none;
    position: sticky;
    top: 0;
    z-index: 1;

    @media screen and (min-width: 750px) {
      padding-inline: var(--cart-drawer-padding-desktop);
    }
  }

  .cart-drawer--empty .cart-drawer__header {
    justify-content: right;
    border-bottom: none;
    padding-bottom: 0;
  }

  .cart-drawer--empty .cart-drawer__heading {
    text-align: center;
  }

  header-actions {
    display: flex;

    @media screen and (max-width: 749px) {
      justify-self: flex-end;
    }
  }

  @media screen and (min-width: 750px) {
    .header-actions--text {
      gap: var(--gap-xl);
    }

    .header-actions__text-style {
      font-size: var(--header-actions-font-size);
      font-family: var(--header-actions-font-family);
      font-weight: var(--header-actions-font-weight);
      text-transform: var(--header-actions-text-case);
    }
  }

  #header-component[data-menu-style='drawer'] header-actions {
    justify-self: flex-end;
  }

  .header__column--right header-actions {
    margin-inline-start: calc(var(--gap-md) * -1);
  }

  .header-actions__cart-icon {
    --cart-bubble-size: 16px;
    /* icon-cart.svg's glyph sits inset ~3-3.5 units within its own 20x20
       viewBox (it doesn't fill its box) — top/right are pushed in by
       that same amount so the badge overlaps the visible bag lines
       instead of just the icon's invisible wrapper corner. */
    --cart-bubble-top: 6px;
    --cart-bubble-right: 4px;

    position: relative;
  }

  .header-actions__cart-icon .cart-bubble {
    position: absolute;
    width: var(--cart-bubble-size, 20px);
    top: var(--cart-bubble-top);
    right: var(--cart-bubble-right);
  }

  @media screen and (min-width: 750px) {
    .header-actions__cart-icon--text.header-actions__cart-icon .cart-bubble {
      position: relative;
      top: 0;
    }
  }

  .cart-drawer__heading .cart-bubble {
    width: fit-content;
    border-radius: var(--style-border-radius-buttons-primary);
    aspect-ratio: auto;
    padding: var(--cart-padding);
  }

  .cart-drawer__heading .cart-bubble[data-maintain-ratio] {
    width: min(1lh, 22px);
    height: min(1lh, 22px);
  }

  .header-actions__cart-icon .cart-bubble__text,
  .cart-drawer__heading .cart-bubble__text {
    font-family: var(--font-paragraph--family);
    font-weight: var(--font-paragraph--weight);
  }


  .cart-drawer__heading .cart-bubble .cart-bubble__background {
    background-color: rgb(var(--color-foreground-rgb) / var(--opacity-10-25));
  }

  .cart-drawer__heading .cart-bubble__text {
    color: var(--color-foreground);
    font-size: clamp(var(--font-size--3xs), 0.75em, var(--font-size--xs));
  }

  .cart-bubble.cart-bubble--animating .cart-bubble__background {
    animation: grow var(--animation-speed) var(--animation-easing);
  }

  .cart-bubble--animating .cart-bubble__text {
    --start-y: -1em;
    --start-opacity: 1;
    /* Set initial transform state before animation starts */
    transform: translate(0, var(--start-y, -1em));
    opacity: var(--start-opacity, 1);
    animation: move-and-fade var(--animation-speed) var(--animation-easing);
  }

  cart-icon:has(.cart-bubble__text-count:empty) {
    --cart-bubble-size: 10px;
    --cart-bubble-top: 9px;
    --cart-bubble-right: 9px;

    .svg-wrapper {
      --cart-bubble-top: 4px;
      --cart-bubble-right: 4px;
    }
  }

  @media screen and (min-width: 750px) {
    cart-icon.header-actions__cart-icon--text:has(.cart-bubble__text-count:empty) {
      --cart-bubble-right: 2.5px;
    }
  }

  @media screen and (prefers-reduced-motion: no-preference) {
    html:active-view-transition-type(empty-cart-drawer) {
      .cart-drawer__close-button {
        view-transition-name: cart-drawer-close-button;
      }
    }
  }

  :active-view-transition {
    .cart-drawer__header,
    .cart-drawer__content {
      background: transparent;
    }
  }

  ::view-transition-old(cart-drawer-content) {
    transform-origin: 50% 33%;
    animation: cart-contents-old var(--spring-d280-b0-duration) var(--spring-d280-b0-easing) forwards;
  }

  ::view-transition-new(cart-drawer-content) {
    transform-origin: top center;
    animation: cart-contents-new var(--spring-d280-b0-duration) var(--spring-d280-b0-easing) forwards;
  }

  @keyframes cart-contents-old {
    to {
      scale: 0.92;
      opacity: 0;
    }
  }

  @keyframes cart-contents-new {
    from {
      scale: 1.05;
      translate: 0 128px;
      filter: blur(1px);
      opacity: 0;
    }
  }
  .header-actions__text {
    display: flex;
    align-items: center;
  }

  @media screen and (min-width: 750px) {
    .header-actions__cart-icon--text {
      display: flex;
      align-items: center;
      gap: var(--gap-xs);
    }

    .header__column--right .header-actions--text {
      margin-inline-start: 0;
    }
  }
/* END_SNIPPET:header-actions */

/* START_SNIPPET:header-drawer (INDEX:296) */
.header__icon--menu {
    position: initial;
  }

  .menu-drawer-container .header__icon--summary {
    color: var(--color-foreground);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: var(--padding-lg);
  }

  .header__icon--summary .header-drawer-icon {
    margin: auto;
    width: var(--icon-size-xs);
    height: var(--icon-size-xs);
  }

  .menu-drawer__featured-content {
    z-index: var(--layer-base);
    container-type: inline-size;
  }

  .menu-drawer__featured-content--childlist {
    z-index: var(--layer-flat);
  }

  .menu-drawer__featured-content-list {
    display: flex;
    gap: 1em;
    overflow-x: auto;
    padding-block-end: var(--padding-lg);
  }

  .menu-drawer__featured-content-list-item {
    flex: 0 0 auto;
  }

  .menu-drawer__featured-content-list-item--product {
    width: 35cqi;
  }

  .menu-drawer__featured-content-list-item--collection img.resource-card__image {
    width: 80cqi;
  }

  .menu-drawer__featured-content-list-item:first-child {
    margin-inline-start: var(--margin-xl);
  }

  .menu-drawer__featured-content-list-item:last-child {
    margin-inline-end: var(--margin-xl);
  }

  .menu-drawer__navigation {
    padding: 0;

    @media screen and (min-width: 750px) {
      margin-top: var(--drawer-header-desktop-top);
    }
  }

  details:not(.menu-open) .header__icon--menu .header-drawer-icon--close {
    display: none;
  }

  details.menu-open .header__icon--menu .header-drawer-icon--close {
    @media screen and (min-width: 750px) {
      display: none;
    }
  }

  details.menu-open .header__icon--menu .header-drawer-icon--open {
    display: none;

    @media screen and (min-width: 750px) {
      display: flex;
    }
  }

  .menu-drawer {
    position: fixed;
    transform: translateX(-100%);
    visibility: hidden;
    height: var(--drawer-height);
    width: var(--drawer-width);
    max-width: var(--drawer-max-width);
    z-index: var(--layer-menu-drawer);
    left: 0;
    top: 0;
    padding: 0;
    background-color: var(--color-background);
    overflow: auto;
    display: flex;
    border-right: var(--style-border-drawer);
    box-shadow: var(--shadow-drawer);
    flex-direction: column;

    @media screen and (min-width: 750px) {
      width: 25rem;
    }
  }

  /* When opening a submenu we don't want the first-level menu to be scrollable, so we reset the overflow  */
  .menu-drawer.menu-drawer--has-submenu-opened {
    overflow: initial;
  }

  .menu-drawer__backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100dvh;
    backdrop-filter: brightness(0.75);
    z-index: var(--layer-heightened);
    opacity: 0;
    transition: opacity var(--drawer-animation-speed) ease;

    .menu-open & {
      opacity: 1;
    }
  }

  .menu-drawer,
  details[open] > .menu-drawer__submenu {
    transition: transform var(--drawer-animation-speed) ease, visibility var(--drawer-animation-speed) ease,
      opacity var(--drawer-animation-speed) ease;
  }

  .menu-open > .menu-drawer,
  .menu-open > .menu-drawer__submenu:not(.menu-drawer__menu--childlist) {
    transform: translateX(0);
    visibility: visible;
    opacity: 1;
    display: flex;
    flex-direction: column;
  }

  .menu-drawer__inner-container {
    position: relative;
    height: 100%;
  }

  .menu-drawer__navigation-container {
    display: grid;
    grid-template-rows: 1fr auto;
    align-content: space-between;
    overflow-y: auto;
    height: 100%;
  }

  .menu-drawer__inner-submenu {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow-y: auto;

    @media screen and (min-width: 750px) {
      margin-top: var(--drawer-header-desktop-top);
    }
  }

  .menu-drawer__nav-buttons {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .menu-drawer__menu {
    --menu-drawer-inline-padding: calc(var(--padding-sm) + 7px);

    list-style: none;
    padding-inline: var(--drawer-padding);
    margin-inline: 0;
    margin-block-start: 0;
  }

  .menu-drawer__menu--grid {
    display: grid;
    width: 100%;
    grid-template-columns: 1fr 1fr;
    gap: var(--padding-sm);
    padding-inline-end: var(--menu-drawer-inline-padding);
    padding-block-start: var(--padding-xs);
  }

  .menu-drawer__menu--childlist:not(.menu-drawer__menu--grid) {
    flex-grow: 1;
  }

  .menu-drawer__menu.has-submenu,
  .menu-drawer__menu--childlist:not(:has(.menu-drawer__animated-element)) {
    margin-block-end: var(--margin-xs);

    @media screen and (min-width: 750px) {
      margin-block-end: 2.5rem;
    }
  }

  .menu-drawer__list-item--divider {
    border-block-end: 1px solid var(--color-border);
  }

  .menu-drawer__list-item--deep:not(.menu-drawer__list-item--divider) .menu-drawer__menu {
    margin-block-start: -0.3rem;
  }

  .menu-drawer__list-item--flat.menu-drawer__list-item--divider .menu-drawer__menu {
    margin-block-start: -0.4rem;
  }

  .menu-drawer__menu-container--divider {
    border-block-end: 1px solid var(--color-border);
  }

  .menu-drawer__menu > .menu-drawer__list-item {
    display: flex;
    min-height: calc(2 * var(--padding-lg) + var(--icon-size-xs));
  }

  .menu-drawer__list-item--deep .menu-drawer__list-item,
  .menu-drawer__list-item--flat .menu-drawer__list-item {
    min-height: auto;
  }

  .menu-drawer__menu .menu-drawer__list-item--flat {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-block-end: var(--margin-md);
  }

  .menu-drawer__menu--childlist .menu-drawer__list-item--flat {
    margin-block-end: var(--margin-sm);

    @media screen and (min-width: 750px) {
      margin-block-end: var(--margin-lg);
    }
  }

  .menu-drawer__menu--childlist .menu-drawer__list-item--flat.menu-drawer__list-item--divider {
    margin-block-end: 0;
  }

  .menu-drawer__list-item--flat .menu-drawer__menu--childlist {
    width: 100%;
    padding-inline: 0;
  }

  .menu-drawer-container[open] .menu-drawer__animated-element {
    animation: menu-drawer-nav-open var(--drawer-animation-speed) ease-in-out;
    animation-delay: calc(var(--drawer-animation-speed) + (var(--menu-drawer-animation-index) - 1) * 0.1s);
    animation-fill-mode: backwards;
  }

  .menu-drawer__menu accordion-custom .details-content--no-animation {
    animation: none;
    visibility: visible;
    opacity: 1;
    transform: translateX(0);
    transition: none;
  }

  .menu-drawer__menu details,
  .menu-drawer__menu-item,
  .menu-drawer__menu accordion-custom {
    width: 100%;
  }

  .menu-drawer__list-item--divider .menu-drawer__menu-item:not(.menu-drawer__menu-item--child) {
    min-height: calc(2 * var(--padding-lg) + var(--icon-size-xs));
  }

  .menu-drawer__menu-item--mainlist {
    min-height: calc(2 * var(--padding-lg) + var(--icon-size-xs));
    font-family: var(--menu-top-level-font-family);
    font-style: var(--menu-top-level-font-style);
    font-weight: var(--menu-top-level-font-weight);
    font-size: var(--menu-top-level-font-size);
    line-height: var(--menu-top-level-font-line-height);
    text-transform: var(--menu-top-level-font-case);
    color: var(--menu-top-level-font-color);
    justify-content: space-between;

    &:hover {
      color: var(--menu-top-level-font-color);
    }
  }

  .menu-drawer__menu-item--parent {
    font-family: var(--menu-parent-font-family);
    font-style: var(--menu-parent-font-style);
    font-weight: var(--menu-parent-font-weight);
    font-size: var(--menu-parent-font-size);
    line-height: var(--menu-parent-font-line-height);
    text-transform: var(--menu-parent-font-case);
    color: var(--menu-parent-font-color);

    &:hover {
      color: var(--menu-parent-font-color);
    }
  }

  .menu-drawer__menu-item--child {
    font-family: var(--menu-child-font-family);
    font-style: var(--menu-child-font-style);
    font-weight: var(--menu-child-font-weight);
    font-size: var(--menu-child-font-size);
    line-height: var(--menu-child-font-line-height);
    text-transform: var(--menu-child-font-case);
    color: var(--menu-child-font-color);

    &:hover {
      color: var(--menu-child-font-color);
    }
  }

  .menu-drawer__menu--childlist summary.menu-drawer__menu-item {
    display: flex;
    width: 100%;
    padding-inline-end: 0;
  }

  .menu-drawer__list-item--deep .menu-drawer__menu,
  .menu-drawer__menu--grandchildlist {
    padding-inline: 0;
  }

  .menu-drawer__list-item--deep .menu-drawer__menu {
    padding-block-end: 0.5rem;
  }

  .menu-drawer__list-item--deep.menu-drawer__list-item--divider .menu-drawer__menu {
    padding-block-end: 0.3rem;
  }

  .menu-drawer__list-item--flat.menu-drawer__list-item--divider .menu-drawer__menu--grandchildlist {
    padding-block-end: 0.5rem;
  }

  .menu-drawer__menu-item {
    display: flex;
    padding: var(--padding-2xs) 0;
    position: relative;
    text-decoration: none;
    justify-content: space-between;
    align-items: center;
  }

  .menu-drawer__menu-item:has(> .menu-drawer__link-image) {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    row-gap: var(--padding-3xs);
    padding: 0;
  }

  .menu-drawer__link-image {
    width: 100%;
    position: relative;
    aspect-ratio: 16 / 9;
    object-fit: cover;
  }

  /* Fix alignment for collection image mode links without images in drawer */

  /* Target menu items in grids that have images */
  .menu-drawer__menu--grid:has(.menu-drawer__link-image) .menu-drawer__menu-item:not(:has(> .menu-drawer__link-image)) {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    row-gap: var(--padding-3xs);
    padding: 0;
  }

  .menu-drawer__menu--grid:has(.menu-drawer__link-image)
    .menu-drawer__menu-item:not(:has(> .menu-drawer__link-image))::before {
    content: '';
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    background-color: var(--color-foreground-muted);
    opacity: 0.1;
    border-radius: var(--menu-image-border-radius);
  }

  .menu-drawer__close-button {
    position: relative;
    right: auto;
    top: auto;
    width: fit-content;
    height: fit-content;
    color: inherit;
    padding: var(--padding-lg);
  }

  .menu-drawer__back-button {
    display: flex;
    width: 100%;
    padding: var(--padding-md) var(--padding-xl);
    border: none;
    align-items: center;
    color: var(--color-foreground);
    background-color: transparent;
    text-align: left;
    text-decoration: none;
    white-space: nowrap;
    overflow-x: hidden;
    line-height: 1.2;
    box-shadow: none;
  }

  .menu-drawer__menu-item-text {
    overflow: hidden;
    text-overflow: ellipsis;
  }

  /** Styles when the country selector is hidden */
  .menu-drawer .language-selector:not(.menu-drawer__submenu *) {
    width: fit-content;
    padding-inline-start: 0;

    .localization-form__select {
      text-align: left;
    }
  }

  .menu-drawer__menu-item > .svg-wrapper {
    width: fit-content;
    height: fit-content;
    margin: 0;
    padding-block: var(--padding-lg);
    padding-inline-start: var(--padding-xl);
    flex-shrink: 0;
  }

  .menu-drawer__list-item--divider .menu-drawer__menu-item > .svg-wrapper {
    padding-block: var(--padding-md);
  }

  .menu-drawer svg {
    width: var(--icon-size-xs);
    height: var(--icon-size-xs);
  }

  .menu-drawer__submenu {
    position: absolute;
    width: 100%;
    top: 0;
    height: 100dvh;
    left: 0;
    background-color: var(--color-background);
    z-index: var(--layer-flat);
    transform: translateX(-5%);
    visibility: hidden;
    overflow-y: auto;
    opacity: 0;
  }

  .menu-drawer__back-button > .svg-wrapper {
    margin-right: var(--padding-md);
    width: var(--icon-size-xs);
    height: var(--icon-size-xs);
  }

  .menu-drawer__utility-links {
    display: flex;
    flex-direction: column;
    padding: 0;
    margin-block: auto var(--padding-sm);
    margin-inline-start: var(--padding-xl);
    background-color: rgb(var(--color-foreground) 0.03);
  }

  .menu-drawer__account {
    display: inline-flex;
    align-items: center;
    gap: var(--gap-xs);
    text-decoration: none;
    height: 44px;
    font-size: 1.4rem;
    color: rgb(var(--color-foreground));
  }

  .menu-drawer__account svg {
    height: var(--icon-size-sm);
    width: var(--icon-size-sm);
  }

  .menu-drawer__account shop-user-avatar {
    --shop-avatar-size: 2.4rem;

    margin-right: 0.55rem;
    margin-left: -0.45rem;
  }

  .menu-drawer__link-image,
  .menu-drawer__featured-product-image,
  .menu-drawer__featured-collection-image,
  .menu-drawer__featured-collection-link::before {
    border-radius: var(--menu-image-border-radius);
  }

  @keyframes menu-drawer-nav-open {
    0% {
      visibility: hidden;
      opacity: 0;
      transform: translateX(-0.5rem);
    }

    100% {
      visibility: visible;
      opacity: 1;
      transform: translateX(0);
    }
  }

  @keyframes menu-drawer-subnav-open {
    0% {
      visibility: visible;
      opacity: 1;
      transform: translateX(0);
    }

    100% {
      visibility: hidden;
      opacity: 0;
      transform: translateX(-1rem);
    }
  }

  /* Drawer Localization Styles */
  .drawer-localization__button .icon-flag {
    width: var(--menu-localization-font-size, var(--icon-size-sm));
    height: var(--menu-localization-font-size, var(--icon-size-sm));
    clip-path: circle(50%); /* stylelint-disable-line */
    background-position: center;
    background-size: cover;
    margin-inline-end: 4px;
    position: relative;
  }

  .drawer-localization__button .icon-flag::after {
    content: '';
    position: absolute;
    inset: 0;
    box-shadow: inset 0 0 var(--size-shadow) var(--color-shadow);
    border-radius: 50%;
  }

  .drawer-localization .country-filter {
    padding-block: 8px;
  }

  .drawer-localization .drawer-localization__button {
    display: flex;
    padding: 0;
    position: relative;
    text-decoration: none;
    height: 44px;

    &:hover {
      color: var(--color-foreground);
    }
  }

  .drawer-localization .drawer-localization__button .icon-caret {
    width: fit-content;
    height: fit-content;
    margin: 0;
    padding: var(--padding-xl) var(--padding-xl) var(--padding-xl) var(--padding-xs);
  }

  .menu-drawer__localization:not(drawer-localization-component) .language-selector {
    font-family: var(--menu-localization-font);
    font-size: var(--menu-localization-font-size);
  }

  .menu-drawer__localization .language-selector.h5 {
    padding-inline-start: 0;
  }

  .drawer-localization {
    display: contents;
    color: var(--color-foreground);
  }

  .drawer-localization localization-form-component {
    position: relative;
    height: 100%;
  }

  .drawer-localization .mobile-localization,
  .drawer-localization .drawer-localization__button--label {
    display: flex;
    gap: var(--gap-xs);
    margin-block: 0;
    align-items: center;
  }

  .drawer-localization__button--label.h6 {
    font-family: var(--menu-localization-font);
  }

  .drawer-localization img {
    width: var(--icon-size-sm);
  }

  .drawer-localization .localization-button__icon,
  .drawer-localization .localization-button__icon svg {
    width: var(--icon-size-xs);
    height: var(--icon-size-xs);
  }

  .drawer-localization summary.is-disabled {
    pointer-events: none;
  }

  .drawer-localization .localization-wrapper {
    width: 100%;
  }

  .drawer-localization .localization-form {
    display: flex;
    flex-direction: column;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }

  .drawer-localization .localization-form > * {
    padding-inline: var(--padding-xl);
  }

  .drawer-localization .language-selector .svg-wrapper.icon-caret {
    transform: translateY(-50%) rotate(0deg);
  }

  .drawer-localization .language-selector .svg-wrapper.icon-caret svg {
    transform: none;
  }
/* END_SNIPPET:header-drawer */

/* START_SNIPPET:jumbo-text (INDEX:301) */
.jumbo-text__container {
    width: 100%;
  }

  footer .jumbo-text__container {
    pointer-events: none;
  }

  jumbo-text {
    display: block;
    font-family: var(--font-family, inherit);
    font-style: var(--font-style, normal);
    color: var(--color, inherit);
    font-weight: var(--font-weight, inherit);
    letter-spacing: var(--letter-spacing, -0.02em);
    line-height: var(--line-height, 1);
    opacity: 0;
    visibility: hidden;
    text-align: var(--text-align);
    text-box: var(--text-trim, trim-end cap text);
    text-transform: var(--text-transform, none);
    transition: opacity 0.3s ease;
    width: 100%;
    margin-left: var(--margin-left-nudge, 0);
    margin-right: var(--margin-right-nudge, 0);
    overflow: visible;
  }

  jumbo-text.ready {
    opacity: 1;
    visibility: visible;
  }

  jumbo-text[data-cap-text='true'] {
    /* stylelint-disable-next-line plugin/no-unsupported-browser-features */
    text-box-edge: cap text;
  }

  .jumbo-text-line {
    display: inline-flex;
    white-space: pre;
  }

  @media (prefers-reduced-motion: no-preference) {
    /* Blur effect */
    .ready[data-text-effect='blur'] {
      filter: blur(20px);
      opacity: 0.5;
      scale: 1.05;
      transition: filter 1.6s var(--animation-timing-fade-in), opacity 1.3s var(--animation-timing-fade-in),
        scale 1.6s var(--animation-timing-fade-in);
    }

    .jumbo-text-visible[data-text-effect='blur'] {
      filter: blur(0);
      opacity: 1;
      scale: 1;
    }

    /* Reveal effect */
    .ready[data-text-effect='reveal'] {
      overflow: hidden;
    }

    .ready[data-text-effect='reveal'] .jumbo-text-line {
      transform: translateY(100%);
    }

    .jumbo-text-visible[data-text-effect='reveal'] .jumbo-text-line {
      transition: transform 0.5s var(--animation-timing-fade-in) calc(var(--line-index) * 0.05s);
      transform: translateY(0);
    }

    .jumbo-text-visible[data-text-effect='reveal'] {
      overflow: visible;
      transition: overflow 0s linear 0.75s;
    }
  }
/* END_SNIPPET:jumbo-text */

/* START_SNIPPET:list-filter (INDEX:304) */
.facets input:checked + label {
    font-weight: 500;
  }

  .facets .checkbox .icon-checkmark {
    transition: border-color 0.2s ease, background-color 0.2s ease;
  }

  .facets .checkbox:not(.checkbox--disabled):hover .icon-checkmark {
    border-color: rgb(var(--color-foreground-rgb) / var(--opacity-40-60));
    background-color: rgb(var(--color-foreground-rgb) / var(--opacity-5));
  }

  /* Hover state for checked checkboxes - targeting via adjacent sibling */
  .facets .checkbox:not(.checkbox--disabled):hover .checkbox__input:checked + .checkbox__label .icon-checkmark {
    background-color: rgb(var(--color-foreground-rgb) / var(--opacity-85));
  }

  .facets .checkbox:not(.checkbox--disabled):hover .checkbox__label-text {
    color: rgb(var(--color-foreground-rgb) / var(--opacity-90));
  }

  .facets .checkbox .checkbox__label-text {
    transition: color 0.2s ease, font-weight 0.2s ease;
  }

  /* Pill style */
  .facets__pill-label {
    --pill-label-padding-inline: var(--padding-xs);
    --pill-label-border-radius: var(--style-border-radius-md);
    --pill-label-border-width: var(--variant-picker-button-border-width);
    --pill-label-height: var(--button-size-md);
    --pill-label-focus-outline-color: var(--color-foreground);
    --pill-label-color: var(--color-foreground);
    --pill-label-color-rgb: var(--color-foreground-rgb);
    --pill-label-background-color: var(--color-background);
    --pill-label-background-color-rgb: var(--color-background-rgb);
    --pill-label-border-opacity: var(--facets-low-opacity);

    display: inline-flex;
    position: relative;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 0 0 var(--pill-label-border-width) rgb(var(--pill-label-color-rgb) / var(--opacity-10-25));
    border-radius: var(--pill-label-border-radius);
    height: var(--pill-label-height);
    width: 100%;
    padding-inline: var(--pill-label-padding-inline);
    color: rgb(var(--pill-label-color-rgb));
    background-color: rgb(var(--pill-label-background-color-rgb));
    cursor: pointer;
    transition: color var(--animation-speed) var(--animation-easing),
      background-color var(--animation-speed) var(--animation-easing);
    outline-color: var(--pill-label-focus-outline-color);

    &:hover {
      --pill-label-border-opacity: 100%;
    }
  }

  .facets__pill-input {
    &:checked + .facets__pill-label {
      --pill-label-color-rgb: var(--color-background-rgb);
      --pill-label-background-color-rgb: var(--color-foreground-rgb);
      --pill-label-border-opacity: 0;

      font-weight: 500;
    }

    &:disabled + .facets__pill-label {
      opacity: var(--disabled-opacity);
      cursor: not-allowed;

      &:hover {
        --pill-label-border-opacity: var(--facets-low-opacity);
      }
    }
  }

  .facets__status-wrapper {
    display: flex;
    align-items: center;
  }

  .facets--drawer .facets__status-wrapper {
    @media screen and (max-width: 749px) {
      gap: var(--gap-3xs);
    }
  }

  .facets--vertical .facets__status-wrapper {
    gap: var(--gap-xs);
  }

  .facets--horizontal .facets__status-wrapper {
    gap: 0;
  }

  .facets__pill-input:disabled + .facets__pill-label svg {
    position: absolute;
    top: 0;
    left: 0;
    border-radius: var(--style-border-radius-md);
  }

  .facets__pill-label svg line {
    stroke-width: 1.5px;
    stroke: rgb(var(--color-foreground-rgb) / var(--facets-low-opacity));
  }

  .facets__pill-wrapper {
    position: relative;
  }

  .facets__pill-input {
    position: absolute;
    inset: 0;
    margin: 0;
    padding: 0;
    width: auto;
    height: auto;
    aspect-ratio: unset;
    border: none;
    border-radius: 0;
    background: transparent;
    appearance: auto;
    display: block;
    opacity: 0;
    cursor: pointer;
  }

  /* Swatches */
  .facets__status--swatches {
    display: none;
  }

  .facets__swatch-wrapper {
    display: flex;
  }

  .variant-option__swatch-wrapper {
    position: relative;
    overflow: visible;
    border-radius: var(--options-border-radius);
  }

  .variant-option--swatches-disabled {
    pointer-events: none;
    cursor: not-allowed;
  }

  .variant-option--swatches-disabled .variant-option__swatch-wrapper {
    overflow: hidden;
  }

  .facets--horizontal .facets__status--swatches {
    @media screen and (min-width: 750px) {
      display: flex;
    }
  }

  .facets--horizontal .sorting-filter .facets__status {
    @media screen and (min-width: 750px) {
      display: none;
    }
  }

  .facets__status--swatches .swatch {
    width: calc(var(--variant-picker-swatch-width) / 1.5);
    height: calc(var(--variant-picker-swatch-height) / 1.5);
  }

  .facets__status--swatches .swatch + .swatch {
    margin-left: calc(var(--variant-picker-swatch-width) / -3);
    outline: 1px solid rgb(var(--color-background-rgb));
  }

  .facets__inputs-wrapper .facets__inputs-list--images {
    display: grid;
    grid-template-columns: repeat(var(--image-columns), 125px);
    gap: var(--gap-sm);
  }

  .facets--drawer .facets__inputs-wrapper .facets__inputs-list--images {
    grid-template-columns: repeat(3, 1fr);

    @media screen and (min-width: 750px) {
      grid-template-columns: repeat(4, 1fr);
    }
  }

  .facets--vertical .facets__inputs-wrapper .facets__inputs-list--images {
    grid-template-columns: repeat(2, 1fr);
  }

  .facets--drawer .facets__inputs-list--images {
    padding-top: var(--padding-xs);
  }

  .facets__image-wrapper {
    aspect-ratio: 1/1;
    width: 100%;
    padding: var(--padding-xs);
    position: relative;
    overflow: hidden;
  }

  .facets__image-wrapper img {
    height: 100%;
    width: 100%;
    object-fit: contain;
    border-radius: calc(var(--border-radius) / 2);
  }

  .facets__image-label {
    width: 100%;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding-block-end: var(--padding-xs);
    cursor: pointer;
  }

  .facets__inputs-list-item--disabled .facets__image-label {
    cursor: not-allowed;
  }

  .facets__inputs-list-item:not(.facets__inputs-list-item--disabled) .facets__image-label:hover {
    font-weight: 500;
  }

  /* Filter-specific variant-option styles */
  .facets__inputs-list--swatches-grid .variant-option__button-label--has-swatch:hover .swatch {
    --focus-outline: var(--focus-outline-width) solid rgb(var(--color-foreground-rgb) / var(--opacity-35-55));

    outline: var(--focus-outline);
    outline-offset: var(--focus-outline-offset);
  }

  .facets__inputs-list--swatches-grid .variant-option__button-label:has(:focus-visible) .swatch {
    --focus-outline: var(--focus-outline-width) solid currentcolor;

    outline: var(--focus-outline);
    outline-offset: var(--focus-outline-offset);
  }

  .facets__inputs-list--swatches-grid .variant-option__button-label:has(:focus-visible) {
    outline: none;
  }

  .facets__inputs-list--swatches-grid .variant-option__button-label--has-swatch:hover {
    outline: none;
  }

  .facets__inputs-list--swatches-grid .variant-option__button-label--has-swatch:has(:checked) {
    --focus-outline: none;
  }

  .facets__inputs-list--swatches-grid .variant-option__button-label--has-swatch:has(:checked) .swatch {
    outline: var(--focus-outline);
    outline-offset: var(--focus-outline-offset);
  }

  .facets__inputs-list--swatches .variant-option__button-label {
    --color-variant-text: var(--color-foreground);
  }

  .facets__inputs-list--swatches {
    --variant-picker-swatch-width: 32px;
    --variant-picker-swatch-height: 32px;

    @media screen and (min-width: 750px) {
      --variant-picker-swatch-width: 26px;
      --variant-picker-swatch-height: 26px;
    }
  }

  .facets--vertical .facets__inputs-wrapper .facets__inputs-list--swatches-grid {
    gap: var(--gap-sm);
  }

  .facets--vertical .facets__inputs-list--swatches .facets__inputs-list-item {
    display: flex;
  }

  .facets__inputs-wrapper .facets__inputs-list--swatches-grid {
    --columns: 2;

    display: grid;
    grid-template-columns: repeat(var(--columns), 1fr);
  }

  .facets__inputs-wrapper .facets__inputs-list--swatches-grid .variant-option--swatches {
    cursor: pointer;
    overflow: visible;
  }

  .facets__inputs-list-item--disabled .variant-option--swatches {
    cursor: not-allowed;
  }

  .facets__inputs-wrapper .facets__inputs-list--swatches-grid label {
    cursor: pointer;
    word-break: break-word;
    white-space: normal;
  }

  .facets__inputs-list--swatches-grid .facets__inputs-list-item--disabled label {
    cursor: not-allowed;
  }

  .facets__inputs-list-item--disabled .variant-option__button-label {
    cursor: not-allowed;
  }

  .facets__inputs-wrapper
    .facets__inputs-list--swatches-grid
    .variant-option__button-label--has-swatch:has(input[type='checkbox']) {
    align-items: center;
    overflow: visible;
    justify-content: flex-start;
    display: flex;
    width: 100%;
    flex-basis: unset;
    gap: var(--gap-sm);
  }

  .facets__inputs-wrapper .facets__inputs-list--swatches-grid .variant-option__button-label:has(:checked) {
    color: rgb(var(--color-foreground-rgb));
    background-color: rgb(var(--color-background-rgb));
    font-weight: 500;
    transition: font-weight 0.2s ease;
  }

  .facets .variant-option--swatches {
    --options-border-radius: var(--variant-picker-swatch-radius);

    width: auto;
  }

  .facets__inputs-list-item:not(.facets__inputs-list-item--disabled) .variant-option__button-label:hover {
    font-weight: 500;
  }

  /* Variant option images (filters) */
  .variant-option--images {
    --image-facet-border-width: var(--variant-picker-button-border-width);
    --image-facet-border-opacity: var(--facets-low-opacity);
    --image-facet-border-radius: var(--style-border-radius-xs);

    position: relative;
    border-radius: var(--image-facet-border-radius);
    box-shadow: inset 0 0 0 var(--image-facet-border-width)
      rgb(var(--color-foreground-rgb) / var(--image-facet-border-opacity));

    &:hover {
      --image-facet-border-opacity: 100%;
    }

    &:has(input:checked) {
      font-weight: 500;
      transition: font-weight 0.2s ease;
    }

    &:has(input:checked):hover {
      --image-facet-border-width: calc(var(--variant-picker-button-border-width) + 0.5px);
    }

    &:has(input:focus-visible) {
      outline: var(--focus-outline-width) solid currentcolor;
      outline-offset: var(--focus-outline-offset);
    }
  }

  .variant-option--images input {
    /* remove the checkbox from the page flow */
    position: absolute;

    /* set the dimensions to match those of the label */
    inset: 0;

    /* hide it */
    opacity: 0;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    aspect-ratio: unset;
    border: none;
    border-radius: 0;
    background: transparent;
    appearance: auto;
    display: block;
    cursor: pointer;
  }

  .facets__inputs-list-item--disabled .variant-option--images {
    --image-facet-border-opacity: 0;

    opacity: var(--disabled-opacity);
    cursor: not-allowed;

    &:hover {
      --image-facet-border-opacity: 0;
    }

    img {
      opacity: var(--disabled-opacity);
    }

    input,
    label,
    .facets__image-label {
      cursor: not-allowed;
    }

    .facets__image-wrapper {
      border: var(--style-border-width) solid rgb(var(--color-foreground-rgb) / var(--opacity-30));
      border-radius: var(--image-facet-border-radius);
    }
  }

  /* Position disabled-svg */
  .variant-option--images svg {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    stroke-width: var(--border-width);
    stroke: rgb(var(--color-foreground-rgb) / var(--opacity-5));
  }

  /* Position label text and handle overflow */
  .facets__inputs-list-item,
  .variant-option--images {
    min-width: 0;
  }

  /* Safari < 16.4 outline border-radius workaround - filter-specific */
  @supports not (background-color: rgb(from red 150 g b / alpha)) {
    .facets__inputs-list--swatches-grid .variant-option__button-label--has-swatch:hover .swatch {
      outline: none;
      position: relative;
      overflow: visible;
    }

    .facets__inputs-list--swatches-grid .variant-option__button-label--has-swatch:hover .swatch::after {
      content: '';
      position: absolute;
      inset: calc(-1 * var(--focus-outline-offset));
      border: var(--focus-outline);
      border-radius: var(--focus-outline-radius, 50%);
      background-color: transparent;
      display: inherit;
    }
  }
/* END_SNIPPET:list-filter */

/* START_SNIPPET:localization-form (INDEX:305) */
/* Localization */
  localization-form-component {
    display: flex;
    width: var(--width, auto);

    @media screen and (min-width: 750px) {
      position: relative;
    }
  }

  localization-form-component[data-show-filter='false'] .country-selector-form__wrapper {
    padding-block-start: var(--padding-xs);
  }

  .localization-form {
    width: 100%;
  }

  localization-form-component .button:is(:not(.country-filter__reset-button)) {
    --button-color: var(--color-primary);
    --button-background-color: var(--language-button-background-color, var(--color-background));
    --button-border-color: var(--language-button-border-color, var(--color-border));

    text-decoration-color: transparent;
    text-decoration-thickness: 0.075em;
    text-underline-offset: 0.125em;
    transition: text-decoration-color var(--animation-speed) var(--animation-easing);
  }

  localization-form-component .button:is(:not(.country-filter__reset-button)):hover,
  .localization-form__list-item:hover,
  .localization-form__list-item:focus {
    --button-color: var(--color-primary-hover);

    background-color: rgb(var(--color-primary-hover-rgb) / var(--opacity-8));
  }

  .localization-form__list-item[aria-current='true'] {
    --button-color: var(--color-primary-active);

    background-color: rgb(var(--color-primary-hover-rgb) / var(--opacity-10));
  }

  .localization-form__list-item-disabled {
    pointer-events: none;
  }

  .localization-form__list-item:focus-visible {
    outline: none;
  }

  localization-form-component .localization-selector {
    display: flex;
    align-items: center;
    gap: var(--margin-2xs);
  }

  localization-form-component .country-filter__search-icon {
    left: 8px;
    right: auto;
    color: var(--color-foreground-muted);
    pointer-events: none;
  }

  .country-filter__search-icon .svg-wrapper svg {
    width: var(--icon-size-sm);
    height: var(--icon-size-sm);
  }

  .disclosure {
    width: 100%;
  }

  .localization-form__list {
    position: relative;
    width: 100%;
    padding-block: 0 var(--padding-xs);
    font-size: var(--font-size-lg);
    scroll-padding: var(--padding-xs) 0;
    overflow-y: auto;
    white-space: nowrap;

    /* Hide scrollbar which would cause extra right padding in Safari */
    scrollbar-width: none;

    &::-webkit-scrollbar {
      display: none;
    }
  }

  .localization-form__list-item:not([hidden]) {
    margin-block-end: var(--margin-3xs);
    display: flex;
    gap: var(--margin-sm);
    padding: 8px;
    border-radius: 8px;
    line-height: var(--font-line-height-md);
    align-items: center;
    text-align: start;
    cursor: pointer;
    transition: background-color var(--animation-speed) var(--animation-easing);

    .country {
      flex: 1;
      color: var(--color-foreground);
    }

    &:hover {
      background-color: rgb(var(--color-foreground-rgb) / var(--opacity-8));
    }

    &[aria-current='true'] {
      .country {
        font-weight: 500;
      }
    }
  }

  .localization-form__list-item#no-results-message {
    grid-template-columns: 1fr;
    text-align: center;
    color: rgb(var(--color-foreground-rgb) / var(--opacity-subdued-text));
  }

  .is-searching .localization-form__list-item .country {
    color: rgb(var(--color-foreground-rgb) / var(--opacity-80));
  }

  .localization-form__list-item .country mark {
    font-weight: 500;
    background: none;
    color: var(--color-foreground);
  }

  .country-filter {
    position: relative;
    padding: var(--padding-xs);
    border-bottom: var(--style-border-width) solid transparent;
    transition: border-color var(--animation-values);
  }

  .country-filter.is-scrolled {
    border-color: var(--color-border);
  }

  .country-selector-form__wrapper {
    overflow-y: auto;
    max-height: 100%;
    flex-grow: 1;
  }

  .language-selector {
    display: flex;
    gap: var(--gap-xs);
    padding: var(--padding-md) var(--padding-lg);
    position: relative;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }

  .language-selector__label {
    flex-shrink: 0;
    color: rgb(var(--color-foreground-rgb) / var(--opacity-subdued-text));
  }

  .localization-form__select {
    border: none;
    color: var(--color-foreground);
    appearance: none;
    background-color: var(--color-input-background);
    padding-block: var(--padding-3xs);
    padding-inline: var(--padding-xs) calc(var(--icon-size-xs) + var(--padding-xs));
    text-align: right;
    cursor: pointer;
    max-width: 40vw;
    text-overflow: ellipsis;
    field-sizing: content;

    &:focus-visible {
      outline: var(--focus-outline-width) solid currentcolor;
    }

    &:focus {
      outline: none;
    }
  }

  #header-component[transparent] localization-form-component .localization-form .localization-form__select {
    background-color: transparent;
  }

  .localization-form__select option {
    background-color: var(--color-input-background);
    color: var(--color-input-text);
  }

  .language-selector .svg-wrapper.icon-caret {
    width: var(--icon-size-xs);
    height: var(--icon-size-xs);
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
  }

  .language-selector--collapse-space {
    padding-inline-end: var(--padding-2xs);
  }

  .language-selector--collapse-space .localization-form__select {
    padding-inline-end: var(--icon-size-xs);
  }

  .language-selector--collapse-space .svg-wrapper.icon-caret {
    right: 0;
  }

  .localization-form .icon-checkmark {
    width: var(--icon-size-xs);
    height: var(--icon-size-xs);
  }

  .localization-form .svg-wrapper.icon-checkmark {
    visibility: hidden;
  }

  .localization-form__list-item[aria-current='true'] .svg-wrapper.icon-checkmark {
    visibility: visible;
  }

  .country-filter__input {
    width: 100%;
    height: 44px;
    font-size: var(--font-size-lg);
    padding: var(--padding-md) var(--padding-lg) var(--padding-md) calc(var(--margin-md) + var(--padding-xl));
    border: 1px solid var(--color-foreground);
    color: var(--color-input-text);
    background-color: var(--color-input-background);
    outline-offset: -1px;

    @media screen and (min-width: 750px) {
      height: 36px;
    }
  }

  .country-filter__input::placeholder {
    color: inherit;
  }

  .country-filter .field {
    position: relative;
  }

  .country-filter .field__label {
    font-size: var(--font-size-lg);
    left: var(--margin-2xl);
    top: var(--margin-xl);
    pointer-events: none;
    position: absolute;
  }

  .country-filter__input:focus ~ .field__label,
  .country-filter__input:not(:placeholder-shown) ~ .field__label,
  .country-filter__input:-webkit-autofill ~ .field__label {
    font-size: var(--font-size-xs);
    top: var(--margin-xs);
  }

  .country-filter .field__button:not([hidden]) {
    display: flex;
    height: fit-content;
    position: absolute;
    padding: 0;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    align-items: center;
    background-color: transparent;
    color: var(--color-input-text);
    border: 0;
  }

  input[type='search']::-webkit-search-cancel-button {
    appearance: none;
  }

  .country-selector__close-button {
    display: none;
  }
/* END_SNIPPET:localization-form */

/* START_SNIPPET:media (INDEX:306) */
.media-block {
    overflow: hidden;
    position: relative;

    @media screen and (min-width: 750px) {
      min-height: var(--media-height);
    }
  }

  .media-block__media {
    height: var(--media-height-mobile, auto);
    object-fit: var(--image-position, 'cover');
    object-position: center center;
    width: 100%;

    @media screen and (min-width: 750px) {
      height: 100%;
      position: absolute;
    }
  }

  deferred-media[class].media-block__media
    :is(.deferred-media__poster-button img, .deferred-media__poster-button ~ video) {
    object-fit: var(--video-position, 'cover');
  }

  /* This is to support corner radius on video and align the video to the center of the block */
  .media-block__placeholder {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center center;
    overflow: hidden;
    position: relative;
  }

  .media-block__media--video {
    display: flex;
    align-items: center;
    justify-content: center;

    @media screen and (max-width: 749px) {
      --media-height-mobile: auto;
    }
  }
/* END_SNIPPET:media */

/* START_SNIPPET:overlay (INDEX:311) */
.overlay {
    position: absolute;
    inset: 0;
    z-index: var(--overlay-layer);
    pointer-events: none;
    border-radius: var(--overlay-border-radius, 0);
  }

  .overlay--solid {
    background: var(--overlay-color);
  }

  .overlay--gradient {
    background: linear-gradient(var(--overlay-direction), var(--overlay-color), var(--overlay-color--end));
  }
/* END_SNIPPET:overlay */

/* START_SNIPPET:pagination-controls (INDEX:312) */
.pagination {
    --pagination-size: 36px;
    --pagination-inset: 2px;
    --pagination-radius: 6;

    display: flex;
    justify-content: center;
    padding: var(--padding-xl) var(--padding-sm);
    margin-top: var(--padding-xl);
    position: relative;
  }

  .pagination__list {
    display: flex;
    gap: 0;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
  }

  .pagination__item {
    width: var(--pagination-size);
    aspect-ratio: 1;
    display: grid;
    place-items: center;
  }

  .pagination__link {
    display: grid;
    place-items: center;
    color: var(--color-foreground);
    text-decoration: none;
    width: 100%;
    height: 100%;
    user-select: none;
    position: relative;
    outline-color: var(--color-foreground);
    -webkit-tap-highlight-color: transparent;
    font-size: var(--font-size--md);
    font-weight: var(--font-weight-normal);
    border-radius: calc(var(--pagination-radius) * 1px);
    transition: color var(--hover-transition-duration) var(--hover-transition-timing),
      opacity var(--hover-transition-duration) var(--hover-transition-timing);
  }

  .pagination__link:focus-visible {
    outline: 2px solid var(--color-foreground);
    outline-offset: 2px;
  }

  .pagination__link--current {
    color: var(--color-background);
    font-weight: var(--font-weight-medium);
    cursor: default;
  }

  .pagination__link--gap {
    cursor: default;
    pointer-events: none;
  }

  .pagination__link--arrow {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .pagination__link--disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
  }

  .pagination__link svg {
    width: 0.5rem;
    height: 0.75rem;
    flex-shrink: 0;
  }

  .pagination__item--mobile-only {
    display: none;
  }

  /* Fallback for browsers without anchor positioning support */
  @supports not (anchor-name: --pagination-active) {
    .pagination__link:not(.pagination__link--gap)::before {
      content: '';
      position: absolute;
      inset: var(--pagination-inset);
      border-radius: calc(var(--pagination-radius) * 1px);
      background: rgb(var(--color-foreground-rgb) / var(--opacity-10));
      z-index: -1;
      opacity: 0;
      transition: background var(--hover-transition-duration) var(--hover-transition-timing),
        opacity var(--hover-transition-duration) var(--hover-transition-timing);
    }

    .pagination__link[aria-current='page']::before {
      background: var(--color-foreground);
      opacity: 1;
    }

    .pagination__link:hover:not([aria-current='page'], .pagination__link--gap, .pagination__link--disabled)::before {
      opacity: 1;
    }
  }

  /* Modern approach with anchor positioning */
  @supports (anchor-name: --pagination-active) {
    .pagination__list::before {
      content: '';
      z-index: -1;
      position: absolute;
      width: calc(var(--pagination-size) - (2 * var(--pagination-inset)));
      aspect-ratio: 1;
      pointer-events: none;
      opacity: 0;
      border-radius: calc(var(--pagination-radius) * 1px);
      background: rgb(var(--color-foreground-rgb) / var(--opacity-10));
      transition: left var(--hover-transition-duration) var(--hover-transition-timing),
        top var(--hover-transition-duration) var(--hover-transition-timing);
    }

    /* Hide hover indicator on touch devices */
    @media (hover: none) and (pointer: coarse) {
      .pagination__list::before {
        content: unset;
      }
    }

    .pagination__list:has(
        .pagination__link:is(:hover, :focus-visible):not(.pagination__link--gap, .pagination__link--disabled))::before {
      opacity: 1;
    }

    /* Style current page directly */
    .pagination__link[aria-current='page']::before {
      content: '';
      position: absolute;
      inset: var(--pagination-inset);
      border-radius: calc(var(--pagination-radius) * 1px);
      background: var(--color-foreground);
      z-index: -1;
    }

    .pagination__list
      .pagination__item:has(
        .pagination__link:is(:hover, :focus-visible):not(.pagination__link--gap, .pagination__link--disabled)) {
      anchor-name: --pagination-hover;
    }

    /* Position hover indicator using anchor */
    .pagination__list::before {
      position-anchor: --pagination-hover;
      left: calc(anchor(left) + var(--pagination-inset));
      top: calc(anchor(top) + var(--pagination-inset));
    }

    .pagination__item:has(+ .pagination__item--gap) .pagination__link::after,
    .pagination__item--gap + .pagination__item .pagination__link::after {
      position: absolute;
      content: '';
      pointer-events: auto;
    }

    .pagination__item:has(+ .pagination__item--gap) .pagination__link::after {
      inset: 0 -50% 0 100%;
    }

    .pagination__item--gap + .pagination__item .pagination__link::after {
      inset: 0 100% 0 -50%;
    }
  }

  @media screen and (max-width: 749px) {
    .pagination {
      --pagination-size: 44px;
      --pagination-inset: 5px;

      padding: var(--padding-lg) var(--padding-sm);
    }

    .pagination__link {
      font-size: var(--font-size--sm);
    }

    .pagination__item--mobile-hide {
      display: none;
    }

    .pagination__item--mobile-only {
      display: grid;
    }

    .pagination__item:has(.pagination__link--gap) {
      width: calc(var(--pagination-size) * 0.5);
    }
  }
/* END_SNIPPET:pagination-controls */

/* START_SNIPPET:password-layout-styles (INDEX:313) */
.password-main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
  }

  .password-dialog {
    max-width: 100vw;
    max-height: 100svh;
    width: 100vw;
    height: 100svh;
    border: none;
    transition: opacity var(--animation-values), display var(--animation-speed) allow-discrete,
      overlay var(--animation-speed) allow-discrete;

    &::backdrop {
      display: none;
    }
  }

  .password-dialog[open] {
    opacity: 1;
    top: 0;
    left: 0;
  }

  @starting-style {
    .password-dialog[open] {
      opacity: 0;
    }
  }

  .password-dialog:not([open]) {
    opacity: 0;
  }

  @starting-style {
    .password-dialog:not([open]) {
      opacity: 1;
    }
  }

  .password-dialog__close-button {
    cursor: pointer;
  }

  .password-dialog__header {
    position: absolute;
    top: 0;
    right: 0;
    padding: var(--padding-lg);
    z-index: var(--layer-raised);
  }

  .password-dialog__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: var(--padding-lg);
    height: 100%;
    transition: transform var(--animation-values);
  }

  .password-dialog__content .email-signup__message {
    padding-block-start: var(--padding-xl);
  }

  .password-dialog[open] .password-dialog__content {
    transform: translateY(0);
  }

  @starting-style {
    .password-dialog[open] .password-dialog__content {
      transform: translateY(1em);
    }
  }

  .password-dialog:not([open]) .password-dialog__content {
    transform: translateY(1em);
  }

  @starting-style {
    .password-dialog:not([open]) .password-dialog__content {
      transform: translateY(0);
    }
  }

  .storefront-password-form {
    max-width: 400px;
    width: 100%;
  }

  .email-signup__input-group,
  .password-dialog__submit-button {
    width: 100%;

    @media screen and (min-width: 750px) {
      width: auto;
    }
  }
/* END_SNIPPET:password-layout-styles */

/* START_SNIPPET:predictive-search-styles (INDEX:317) */
/* Shared predictive search styles (used by both predictive-search and predictive-search-empty sections) */
  .predictive-search-dropdown {
    display: flex;
    flex-direction: column;
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--layer-base);
  }

  .predictive-search-results__title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: var(--font-size--body-md);
    font-weight: 500;
    margin-block: var(--margin-sm) var(--margin-xs);
    width: 100%;
    text-transform: var(--title-case);

    &:first-of-type {
      margin-block-start: 0;
    }

    @media screen and (max-width: 749px) {
      margin-block: var(--margin-lg) var(--margin-sm);
    }
  }

  .predictive-search-results__no-results {
    animation-delay: 100ms;
    transition: opacity var(--animation-speed-medium) var(--animation-timing-fade-in);
  }

  .predictive-search-results__no-results:last-child {
    margin-block: var(--margin-lg);
    text-align: center;
  }

  /* Predictive search section styles */
  input[type='search']::-webkit-search-decoration {
    -webkit-appearance: none; /* stylelint-disable-line */
  }

  .search-action .predictive-search {
    z-index: calc(var(--layer-header-menu) + 2);
  }

  .search-action .search-modal .predictive-search {
    z-index: var(--layer-window-overlay);
  }

  .header__column--right .predictive-search-form__content-wrapper {
    right: 0;
    left: unset;
  }

  .search-modal .predictive-search-form__content-wrapper {
    width: 100%;

    @media screen and (min-width: 750px) {
      height: fit-content;
    }
  }
  .dialog-modal .predictive-search-form__header-inner {
    @media screen and (min-width: 750px) {
      border: 0;
    }
  }

  .search-modal__content .predictive-search-form__content {
    max-height: var(--modal-max-height);
  }

  .predictive-search:has(.predictive-search-dropdown) .search-input {
    outline-color: transparent;
  }

  .predictive-search:has(.predictive-search-dropdown) .predictive-search-form__header-inner:focus-within {
    border-top-color: transparent;
    border-right-color: transparent;
    border-left-color: transparent;

    @media screen and (max-width: 749px) {
      border-bottom-color: transparent;
    }
  }

  .predictive-search:has(.predictive-search-dropdown[aria-expanded='true'])
    .predictive-search-form__header-inner:focus-within {
    border-top-color: transparent;
    border-right-color: transparent;
    border-left-color: transparent;
    border-radius: var(--search-border-radius);

    @media screen and (max-width: 749px) {
      border-radius: var(--style-border-radius-inputs);
    }
  }

  .dialog-modal .predictive-search-form__header {
    border: 0;
    border-radius: 0;
    background-color: var(--color-background);
    border-bottom: var(--style-border-width) solid var(--color-border);

    @media screen and (min-width: 750px) {
      padding: var(--padding-2xs) var(--padding-2xs) 0;
      border-bottom: var(--search-border-width) solid var(--color-border);
    }

    @media screen and (max-width: 749px) {
      transition: box-shadow 0.2s ease;
      box-shadow: none;
    }
  }

  .search-action .predictive-search:has(.predictive-search-dropdown) .predictive-search-form__header:focus-within {
    border-radius: var(--search-border-radius) var(--search-border-radius) 0 0;
    transition: box-shadow var(--animation-speed) var(--animation-easing);
    background-color: var(--color-background);

    @media screen and (max-width: 749px) {
      border-radius: var(--style-border-radius-inputs) var(--style-border-radius-inputs) 0 0;
    }
  }

  @media screen and (max-width: 749px) {
    .dialog-modal .predictive-search__close-modal-button {
      padding-inline-start: var(--margin-xs);
      margin-inline-start: 0;
    }
  }

  .dialog-modal[open] {
    @media screen and (max-width: 749px) {
      border-radius: 0;
    }
  }

  .dialog-modal .predictive-search-form__header:has(.predictive-search-form__header-inner:focus-within) {
    @media screen and (min-width: 750px) {
      border-bottom-color: transparent;
    }
  }

  @media screen and (max-width: 749px) {
    .dialog-modal {
      .predictive-search__reset-button-icon {
        display: none;
      }

      .predictive-search__reset-button-text {
        display: block;
      }

      .predictive-search-form__content {
        /* The parent has overflow auto, we want to prevent a double scrollbar during animation */
        max-height: 100%;
      }

      .predictive-search-form__content-wrapper {
        box-shadow: none;
      }

      .predictive-search-form__header {
        box-shadow: none;
      }

      .predictive-search-form__footer {
        padding-block: var(--padding-2xl);
      }
    }
  }

  .predictive-search-results__pill {
    font-weight: 500;
    white-space: nowrap;
    color: var(--color-foreground);
    transition: background-color var(--animation-speed-medium) var(--animation-timing-hover),
      box-shadow var(--animation-speed-medium) var(--animation-timing-bounce),
      transform var(--animation-speed-medium) var(--animation-timing-bounce);
    margin: 2px;

    &:hover {
      transform: scale(1.03);
      box-shadow: 0 2px 5px rgb(0 0 0 / var(--opacity-8));
    }
  }

  .predictive-search-results__pill mark {
    background-color: transparent;
    font-weight: 200;
    color: rgb(var(--color-foreground-rgb) / var(--opacity-80));
  }

  .predictive-search-results__pill:focus,
  .predictive-search-results__pill:hover,
  .predictive-search-results__card--query:is([aria-selected='true'], :focus-within) .predictive-search-results__pill {
    --pill-background-color: rgb(var(--color-foreground-rgb) / var(--opacity-8));

    background-color: var(--pill-background-color);
    outline: var(--border-width-sm) solid var(--color-border);
    border: var(--border-width-sm);
    text-decoration: none;
  }

  .predictive-search-results__wrapper.predictive-search-results__wrapper-queries {
    margin-bottom: var(--margin-lg);
    padding-inline: var(--padding-xl);
    gap: var(--gap-2xs);
  }

  .predictive-search-results__card {
    --title-font-size: var(--font-size--md);
    --title-margin-block: var(--margin-xs);

    flex: 0 0 auto;
    scroll-snap-align: start;
    scroll-margin-block: calc(var(--title-font-size) + var(--title-margin-block) + var(--padding-sm))
      calc(var(--padding-xl) + var(--button-padding-block) * 2);
    transition: transform var(--animation-speed-medium) var(--animation-timing-default),
      background-color var(--animation-speed-medium) var(--animation-timing-hover),
      border-color var(--animation-speed-medium) var(--animation-timing-hover);

    &:nth-last-child(3) {
      scroll-snap-align: end;
    }

    &:active {
      transform: scale(0.97);
      transition: transform 100ms var(--animation-timing-active);
    }
  }

  .recently-viewed-wrapper .predictive-search-results__card {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.25s cubic-bezier(0.4, 0, 0.2, 1), transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .recently-viewed-wrapper.removing .predictive-search-results__card {
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
  }

  .predictive-search-results__card--product,
  .recently-viewed-wrapper .predictive-search-results__card--product {
    &:active {
      transform: scale(0.97);
      transition: transform 100ms var(--animation-timing-active);
    }

    &:hover {
      background-color: var(--card-bg-hover);
      border-radius: var(--product-corner-radius);
      padding: calc(var(--padding-2xs) + 2px);
      margin: calc((var(--padding-2xs) + 2px) * -1);
    }

    &:is([aria-selected='true'].keyboard-focus, &:focus-visible, &:has(.resource-card:focus-visible)) {
      background-color: var(--card-bg-hover);
      padding: calc(var(--padding-2xs) + 1px);
      margin: calc((var(--padding-2xs) + 1px) * -1);
      outline: var(--border-width-sm) solid var(--color-border);
      border-radius: calc(var(--product-corner-radius) + 1px);
      border-color: var(--card-border-focus);
    }
  }

  .predictive-search-results__card:not(.predictive-search-results__card--product) {
    padding: var(--padding-sm);
    border: var(--border-width-sm) solid var(--color-border);
    border-radius: var(--card-corner-radius);
    width: 60cqi;
    content-visibility: visible;

    @media screen and (min-width: 750px) {
      width: 27.5cqi;
    }

    &:hover {
      border-color: var(--card-border-hover);
      background-color: var(--card-bg-hover);
    }

    &[aria-selected='true'].keyboard-focus {
      border-color: var(--card-border-hover);
      background-color: var(--card-bg-hover);
    }

    &:active {
      transform: scale(0.97);
      transition: transform var(--animation-speed-medium) var(--animation-timing-active);
    }
  }

  @keyframes search-element-scale-in {
    0% {
      transform: scale(0.95);
      opacity: 0;
    }

    40% {
      opacity: 1;
    }

    100% {
      transform: scale(1);
      opacity: 1;
    }
  }

  @keyframes search-element-scale-out {
    0% {
      transform: scale(1);
      opacity: 1;
    }

    100% {
      transform: scale(0.95);
      opacity: 0;
    }
  }

  @keyframes search-element-slide-in-top {
    from {
      margin-top: calc(var(--modal-top-margin) + var(--padding-sm));
      opacity: 0;
    }

    to {
      margin-top: var(--modal-top-margin);
      opacity: 1;
    }
  }

  @keyframes search-element-slide-out-top {
    from {
      margin-top: var(--modal-top-margin);
      opacity: 1;
    }

    to {
      margin-top: calc(var(--modal-top-margin) + var(--padding-sm));
      opacity: 0;
    }
  }

  @keyframes content-slide {
    from {
      transform: translateY(var(--slide-from, 0));
      opacity: var(--slide-opacity-from, 1);
    }

    to {
      transform: translateY(var(--slide-to, 0));
      opacity: var(--slide-opacity-to, 1);
    }
  }

  .predictive-search-results__list {
    --slide-width: 27.5%;
    --slideshow-gap: var(--gap-md);

    /* Make space for the outline to be visible */
    padding-block-start: var(--border-width-sm);
  }

  .predictive-search-results__list slideshow-arrows {
    @media screen and (max-width: 749px) {
      display: none;
    }
  }

  .predictive-search-results__no-results,
  .predictive-search-results__wrapper,
  .predictive-search-results__wrapper-products .predictive-search-results__card {
    animation: search-element-slide-up var(--animation-speed-medium) var(--animation-timing-bounce) backwards;
  }

  slideshow-slide .resource-card {
    /* stylelint-disable-next-line declaration-no-important */
    animation-delay: 0ms !important;
  }

  .predictive-search-results__list,
  .predictive-search-results__wrapper {
    animation-duration: var(--animation-speed-medium);
  }

  .predictive-search-results__wrapper-queries {
    animation-delay: 50ms;
  }

  .predictive-search-results__list:nth-of-type(2) {
    animation-delay: 150ms;
  }

  .predictive-search-results__list:nth-of-type(3) {
    animation-delay: 200ms;
  }

  .predictive-search-results__list:nth-of-type(4) {
    animation-delay: 250ms;
  }

  .predictive-search-results__list:last-child {
    margin-block-end: 0;
  }

  [data-resource-type] {
    /* stylelint-disable-next-line declaration-no-important */
    animation-delay: 0ms !important;
  }

  .predictive-search-results__no-results.removing,
  .predictive-search-results__wrapper.removing {
    animation: search-element-slide-down var(--animation-speed-medium) var(--animation-timing-fade-out) forwards;
  }

  .predictive-search-results__card.removing {
    animation: fadeOut var(--animation-speed-medium) var(--animation-timing-fade-out) forwards;
  }

  .predictive-search-results__wrapper {
    transition: opacity var(--animation-speed-medium) var(--animation-timing-fade-in);
  }

  @keyframes search-element-slide-up {
    from {
      opacity: 0;
      transform: translateY(8px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes search-element-slide-down {
    from {
      opacity: 1;
      transform: translateY(0);
    }

    to {
      opacity: 0;
      transform: translateY(8px);
    }
  }

  .predictive-search-results__card--query {
    transition: transform var(--animation-speed-medium) var(--animation-timing-bounce);
    transform-origin: center;

    &:active {
      transform: scale(0.97);
    }
  }

  /* Products list styles */
  .predictive-search-results__products {
    padding-inline: var(--padding-xl);
  }

  .recently-viewed-wrapper {
    display: grid;
    grid-template-rows: auto auto;
    max-height: 1000px;
    opacity: 1;
    overflow: visible;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: top center;
    transform: translateY(0);
  }

  .recently-viewed-wrapper.removing {
    max-height: 0;
    opacity: 0;
    transform: translateY(-10px);
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s cubic-bezier(0.4, 0, 0.2, 1),
      transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
  }

  .predictive-search-results__clear.button-unstyled {
    color: var(--color-foreground);
    opacity: 0.68;
    transition: opacity var(--animation-speed-medium) var(--animation-easing);
    padding: 0;
    margin-left: var(--margin-sm);

    &:hover {
      opacity: 1;
    }
  }

  .recently-viewed-wrapper.removing .predictive-search-results__card {
    transition: none;
    transform: none;
    opacity: 1;
  }

  .recently-viewed-wrapper > * {
    transition: opacity 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .predictive-search-results__wrapper-products .predictive-search-results__card:nth-child(1) {
    animation-delay: 30ms;
  }

  .predictive-search-results__wrapper-products .predictive-search-results__card:nth-child(2) {
    animation-delay: 60ms;
  }

  .predictive-search-results__wrapper-products .predictive-search-results__card:nth-child(3) {
    animation-delay: 90ms;
  }

  .predictive-search-results__wrapper-products .predictive-search-results__card:nth-child(4) {
    animation-delay: 120ms;
  }

  .predictive-search-results__wrapper-products .predictive-search-results__card:nth-child(n + 5) {
    animation-delay: 150ms;
  }

  .predictive-search-results__wrapper-products {
    animation-delay: 50ms;
  }

  /* Resource carousel styles */
  .predictive-search-results__wrapper {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    padding-block-end: var(--padding-sm);
    padding-inline: 0;
    scroll-snap-type: x mandatory;
    scroll-padding: 0 var(--padding-xl);
    scrollbar-width: none;
    -ms-overflow-style: none;

    &::-webkit-scrollbar {
      display: none;
    }
  }

  .predictive-search-results__wrapper slideshow-slides {
    --gutter-slide-width: var(--padding-xl);

    /* Add padding to prevent hover animations from being clipped in slideshow
       15px accommodates:
       - Scale effect (9px on each side from 1.03 scale)
       - Lift effect (4px upward movement)
       - Shadow (15px spread with -5px offset)
       Using 16px for better alignment with our spacing scale */
    padding-block: var(--padding-xl);
    margin-block: calc(-1 * var(--padding-xl));
    gap: var(--gap-md);
  }

  .predictive-search-results__resource-header {
    display: flex;
    padding-inline: var(--padding-xl);
    justify-content: space-between;
    align-items: center;
    height: 32px;
  }

  .predictive-search-results__resource-header .svg-wrapper {
    width: var(--icon-size-xs);
  }

  .predictive-search-results__wrapper-products {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    padding-block-end: var(--padding-sm);
    gap: var(--gap-md);
    transition: height var(--animation-speed-medium) var(--animation-easing);

    @container (min-width: 550px) {
      grid-template-columns: repeat(4, 1fr);
    }
  }

  .predictive-search-results__wrapper-products:last-child {
    padding-block-end: var(--padding-lg);

    @media screen and (min-width: 750px) {
      padding-block-end: var(--padding-sm);
    }
  }

  .predictive-search-results__resource-header .predictive-search-results__title {
    margin-block-end: 0;
  }

  .predictive-search-results__resource-header:has(slideshow-controls) .predictive-search-results__title {
    margin-block-end: 0;
  }

  .predictive-search-results__resource-header slideshow-controls {
    @media screen and (max-width: 749px) {
      display: none;
    }
  }
/* END_SNIPPET:predictive-search-styles */

/* START_SNIPPET:price-filter (INDEX:318) */
/* Price filter */
  .price-facet {
    container-type: inline-size;
    display: flex;
    flex-direction: column;
  }
  .price-facet--horizontal {
    min-width: 360px;
  }

  .price-facet__inputs-wrapper {
    display: flex;
    flex-direction: row;
    padding: var(--style-border-width-inputs);
    gap: calc(var(--gap-sm) + (var(--style-border-width-inputs) * 2));
  }

  @container (max-width: 199px) {
    .price-facet__inputs-wrapper {
      flex-wrap: wrap;
    }
  }

  .price-facet__input {
    width: 100%;
    text-align: right;
    padding-left: calc(2.5 * var(--input-padding-x));
  }

  .price-facet__input::placeholder {
    color: var(--facets-input-label-color);
  }

  .price-facet__separator {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-paragraph--size);
  }

  .price-facet__highest-price {
    padding: var(--padding-xs) 0 var(--padding-sm);
  }

  .price-facet__highest-price--horizontal {
    padding: 0 var(--padding-md) var(--padding-xs);
  }

  .price-facet__label {
    top: 0;
    left: 0;
    color: var(--facets-input-label-color);
    padding: var(--input-padding-y) var(--input-padding-x);
    transform: none;
  }
/* END_SNIPPET:price-filter */

/* START_SNIPPET:product-badges-styles (INDEX:320) */
.product-badges {
    --badge-inset: max(var(--padding-xs), calc((var(--border-radius) + var(--padding-xs)) * (1 - cos(45deg))));

    position: absolute;
    z-index: var(--layer-flat);
  }

  .product-badges--bottom-left {
    bottom: calc(var(--badge-inset) + var(--padding-block-start));
    left: calc(var(--badge-inset) + var(--padding-inline-start));
  }

  .product-badges--top-left {
    top: calc(var(--badge-inset) + var(--padding-block-start));
    left: calc(var(--badge-inset) + var(--padding-inline-start));
  }

  .product-badges--top-right {
    top: calc(var(--badge-inset) + var(--padding-block-start));
    right: calc(var(--badge-inset) + var(--padding-inline-start));
  }

  .product-badges__badge {
    --badge-font-size: var(--font-size--xs);

    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--color-foreground);
    background: var(--color-background);
    font-size: var(--badge-font-size);
    font-family: var(--badge-font-family);
    font-weight: var(--badge-font-weight);
    text-transform: var(--badge-text-transform);
    border-radius: var(--badge-border-radius);
  }

  .product-badges__badge--rectangle {
    padding-block: var(--badge-rectangle-padding-block);
    padding-inline: var(--badge-rectangle-padding-inline);
  }
/* END_SNIPPET:product-badges-styles */

/* START_SNIPPET:product-card (INDEX:321) */
.product-card__placeholder-image svg {
    height: 100%;
  }

  .product-card__content slideshow-component {
    --cursor: pointer;
  }

  @media screen and (max-width: 749px) {
    .product-card slideshow-arrows .slideshow-control {
      display: none;
    }
  }
/* END_SNIPPET:product-card */

/* START_SNIPPET:product-grid (INDEX:322) */
.product-grid {
    --product-grid-gap: var(--product-grid-gap-mobile);
    --mobile-columns: 2; /* Default value */

    isolation: isolate;

    @media screen and (min-width: 750px) {
      --product-grid-gap: var(--product-grid-gap-desktop);
    }
  }

  .product-grid slideshow-arrows .slideshow-control {
    display: none;

    @media screen and (min-width: 750px) {
      display: grid;
    }
  }

  /* This triggers iOS < 16.4 */
  @supports not (background-color: rgb(from red 150 g b / alpha)) {
    /* Force aspect ratio to auto for iOS < 16.4 since it's not compatible with the infinite pagination */
    .product-grid .product-media,
    .product-grid .product-media-container {
      aspect-ratio: auto;
    }
  }

  .main-collection-grid {
    grid-column: var(--grid-column--mobile);
    padding: var(--grid--margin--mobile);

    @media screen and (min-width: 750px) {
      grid-column: var(--grid-column--desktop);
      padding: var(--padding-block-start) var(--padding-inline-end) var(--padding-block-end) var(--padding-inline-start);
    }
  }

  .main-collection-grid__empty {
    padding-block: var(--padding-6xl);
    padding-inline: var(--page-margin);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--padding-sm);
  }

  .main-collection-grid__empty-title {
    margin: 0;
  }
/* END_SNIPPET:product-grid */

/* START_SNIPPET:product-information-content (INDEX:323) */
.product-information {
    gap: var(--gap) 0;
  }

  /* Base grid layout */
  .product-information__grid {
    display: grid;
    grid-template-columns: subgrid;
    grid-column: 1 / -1;
  }

  /* Default column positions */
  .product-details {
    order: 1;
  }

  .product-information__media {
    order: 0;
    width: 0;
    min-width: 100%;
  }

  .product-information__media .product-media-gallery__placeholder-image {
    width: 100%;
    height: 100%;
  }

  /* Mobile styles */
  @media screen and (max-width: 749px) {
    .product-information__media {
      grid-column: 1 / -1;
    }

    .product-details {
      grid-column: 2 / 3;
    }
  }

  /* Desktop styles */
  @media screen and (min-width: 750px) {
    .product-information__grid {
      grid-column: 2;
    }

    /* Position when there is no media */
    .product-information__grid.product-information--media-none {
      .product-details {
        width: var(--narrow-content-width);
        margin: 0 auto;
      }
    }

    /* Position when there is media */
    .product-information__grid:not(.product-information--media-none) {
      /* Media on the left side */
      &.product-information--media-left {
        grid-template-columns: 1fr min(50vw, var(--sidebar-width));

        .product-information__media {
          padding-right: calc(var(--gap, 0) / 2);
        }

        .product-details {
          padding-left: calc(var(--gap, 0) / 2);
        }

        &:has(.media-gallery--extend) {
          grid-column: 1 / 3;
        }
      }

      /* Media on the right side */
      &.product-information--media-right {
        grid-template-columns: min(50vw, var(--sidebar-width)) 1fr;

        .product-information__media {
          padding-left: calc(var(--gap, 0) / 2);
          order: 1;
        }

        .product-details {
          padding-right: calc(var(--gap, 0) / 2);
          order: 0;
        }

        &:has(.media-gallery--extend) {
          grid-column: 2 / -1;
        }
      }

      /* Equal width columns */
      &.product-information__grid--half,
      &.product-information__grid--half:has(.media-gallery--extend) {
        grid-column: 1 / -1;
        grid-template-columns:
          var(--full-page-grid-margin) calc(var(--full-page-grid-central-column-width) / 2) calc(
            var(--full-page-grid-central-column-width) / 2
          )
          var(--full-page-grid-margin);

        &.product-information--media-left {
          .product-information__media {
            grid-column: 2 / 3;

            &:has(.media-gallery--extend) {
              grid-column: 1 / 3;
            }
          }

          .product-details {
            grid-column: 3 / 4;
          }
        }

        &.product-information--media-right {
          .product-information__media {
            grid-column: 3 / 4;

            &:has(.media-gallery--extend) {
              grid-column: 3 / -1;
            }
          }

          .product-details {
            grid-column: 2 / 3;
          }
        }
      }
    }

    /* Handle full width section */
    .section--full-width {
      .product-information__grid:not(.product-information--media-none) {
        &.product-information--media-left,
        &.product-information--media-right {
          grid-column: 1 / -1;
        }

        &.product-information--media-left .product-details {
          padding-inline-end: var(--padding-lg);
        }

        &.product-information--media-right .product-details {
          padding-inline-start: var(--padding-lg);
        }

        &.product-information__grid--half.product-information--media-left {
          .product-information__media {
            grid-column: 1 / 3;
          }

          .product-details {
            grid-column: 3 / -1;
          }
        }

        &.product-information__grid--half.product-information--media-right {
          .product-information__media {
            grid-column: 3 / -1;
          }

          .product-details {
            grid-column: 1 / 3;
          }
        }
      }
    }
  }

  /* Wider sidebar for large screens */
  @media screen and (min-width: 1200px) {
    .product-information__grid:not(
        .product-information__grid--half,
        .product-information--media-none
      ).product-information--media-left {
      grid-template-columns: 2fr 1fr;
    }

    .product-information__grid:not(
        .product-information__grid--half,
        .product-information--media-none
      ).product-information--media-right {
      grid-template-columns: 1fr 2fr;
    }
  }

  .product-information__grid--limit-details .product-details > .group-block {
    --details-max-width: var(--sidebar-width);
    max-width: var(--details-max-width);
  }

  @media screen and (min-width: 1600px) {
    .product-information__grid--limit-details .product-details > .group-block {
      --details-max-width: 32rem;
    }
  }

  /* If the header is sticky, make product details content stick underneath the header */
  body:has(#header-group #header-component[data-sticky-state='active']) .product-details.sticky-content--desktop {
    --sticky-header-offset: var(--header-height);
  }
/* END_SNIPPET:product-information-content */

/* START_SNIPPET:product-media-gallery-content-styles (INDEX:324) */
media-gallery:where(.media-gallery--grid) .media-gallery__grid {
    display: none;
  }

  media-gallery.media-gallery--grid .media-gallery__grid .product-media-container {
    /* Needed for safari to stretch to full grid height */
    height: 100%;
  }

  @media screen and (min-width: 750px) {
    .media-gallery--two-column .media-gallery__grid {
      grid-template-columns: repeat(2, 1fr);
    }

    /* Display grid view as a carousel on mobile, grid on desktop */
    media-gallery:is(.media-gallery--grid) slideshow-component {
      display: none;
    }

    media-gallery:where(.media-gallery--grid) .media-gallery__grid {
      display: grid;
    }
  }

  .product-media-container__zoom-button {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: var(--layer-flat);
    cursor: zoom-in;
    background-color: transparent;

    &:hover {
      background-color: transparent;
    }
  }

  slideshow-slide.product-media-container--tallest {
    content-visibility: visible;
  }

  .product-media__drag-zoom-wrapper {
    aspect-ratio: inherit;
    min-height: inherit;
    min-width: inherit;
    display: inherit;
    flex: inherit;
  }

  .media-gallery__mobile-controls {
    grid-area: auto;
  }

  .product-media-container--zoomable.product-media-container--image {
    cursor: zoom-in;
  }
/* END_SNIPPET:product-media-gallery-content-styles */

/* START_SNIPPET:product-media-gallery-content (INDEX:325) */
.dialog-thumbnails-list-container {
    position: fixed;
    width: 100%;
    bottom: 0;
    display: flex;
    z-index: var(--layer-raised);
  }

  .dialog-thumbnails-list {
    --active-thumbnail-border-color: rgb(var(--color-border-rgb) / var(--media-border-opacity));

    position: relative;
    display: inline-flex;
    flex-direction: row;
    gap: 8px;
    bottom: 0;
    overflow-x: auto;
    opacity: 0;
    padding: var(--padding-lg);
    margin-inline: auto;
    scrollbar-width: none;
    animation: thumbnailsSlideInBottom calc(var(--animation-speed) * 0.75) var(--animation-easing) forwards;
    animation-delay: calc(var(--animation-speed) * 1.5);
  }

  .dialog--closed .dialog-thumbnails-list {
    animation: thumbnailsSlideOutBottom var(--animation-speed) var(--animation-easing) forwards;
  }

  @media screen and (min-width: 750px) {
    .dialog-thumbnails-list {
      position: fixed;
      flex-direction: column;
      inset: 50% var(--margin-lg) auto auto;
      right: 0;
      max-height: calc(100vh - 200px);
      overflow-y: auto;
      animation: thumbnailsSlideInTop var(--spring-d220-b0-duration) var(--spring-d220-b0-easing) forwards;
      animation-delay: calc(var(--spring-d220-b0-duration) * 0.5);
    }

    .dialog--closed .dialog-thumbnails-list {
      animation: thumbnailsSlideOutTop var(--animation-speed) var(--animation-easing) forwards;
    }
  }

  .dialog-thumbnails-list__thumbnail {
    width: var(--thumbnail-width);
    height: auto;
    transition: transform var(--animation-speed) var(--animation-easing);
    flex-shrink: 0;
    border-radius: var(--media-radius);

    img {
      height: 100%;
      object-fit: cover;
      border-radius: var(--media-radius);
      aspect-ratio: var(--aspect-ratio);
    }

    &:is([aria-selected='true']) {
      outline: var(--focus-outline-width) solid currentcolor;
      outline-offset: calc(var(--focus-outline-offset) / 2);
      border: var(--style-border-width) solid var(--active-thumbnail-border-color);
    }
  }

  @supports (anchor-name: --test) {
    .dialog-thumbnails-list:has(.dialog-thumbnails-list__thumbnail:is([aria-selected='true']))::after {
      --inset-offset: calc(var(--focus-outline-offset) / 2);

      content: '';
      position: absolute;
      inset: anchor(top) anchor(right) anchor(bottom) anchor(left);
      position-anchor: --selected-thumbnail;
      outline: var(--focus-outline-width) solid currentcolor;
      outline-offset: calc(var(--focus-outline-offset) / 2);
      border: var(--style-border-width) solid var(--active-thumbnail-border-color);
      border-radius: var(--media-radius);
      z-index: var(--layer-raised);
    }

    @media (prefers-reduced-motion: no-preference) {
      .dialog-thumbnails-list:has(.dialog-thumbnails-list__thumbnail:is([aria-selected='true']))::after {
        transition-property: inset;
        transition-duration: var(--spring-d180-b0-duration);
        transition-timing-function: var(--spring-d180-b0-easing);
      }
    }

    .dialog-thumbnails-list__thumbnail:is([aria-selected='true']) {
      outline: none;
      border: none;
      anchor-name: --selected-thumbnail;
    }
  }

  .dialog-zoomed-gallery .shopify-model-viewer-ui__controls-area.shopify-model-viewer-ui__controls-area {
    /* Move the controls above the thumbnails. Need to calculate the height of the thumbnails list */
    bottom: calc(var(--thumbnail-width) / var(--media-preview-ratio) + var(--padding-lg) * 2);
    right: var(--padding-lg);
  }

  @media screen and (min-width: 750px) {
    .dialog-zoomed-gallery .shopify-model-viewer-ui__controls-area.shopify-model-viewer-ui__controls-area {
      /* Move the controls up to match the padding on the thumbnails */
      bottom: var(--padding-lg);

      /* Move the controls to the left of the thumbnails list on the right */
      right: calc(var(--thumbnail-width) + var(--padding-lg) * 2);
    }
  }

  @media screen and (max-width: 749px) {
    /* Media gallery has a peeking slide on the right side always, and on the left side when the current slide is the last one */
    .media-gallery--hint
      :is(
        slideshow-slide:has(+ slideshow-slide[aria-hidden='false']:last-of-type),
        slideshow-slide[aria-hidden='false'] + slideshow-slide
      ) {
      content-visibility: auto;

      slideshow-component[actioned] & {
        content-visibility: visible;
      }
    }
  }

  .dialog-zoomed-gallery__dialog {
    background-color: var(--color-background);
    view-transition-name: zoom-dialog-ui;
  }

  .dialog-zoomed-gallery {
    cursor: zoom-out;
  }

  .dialog--preloading {
    opacity: 0;
  }

  @media screen and (max-width: 749px) {
    .dialog-zoomed-gallery {
      /* Prevent scroll wheel or swipe scrolling */
      overscroll-behavior: none;
      scrollbar-width: none;
      display: flex;
      scroll-snap-type: x mandatory;
      overflow-x: hidden;
      scroll-behavior: smooth;
      height: 100%;

      &::-webkit-scrollbar {
        display: none;
      }
    }

    .dialog-zoomed-gallery .product-media-container {
      flex: 0 0 100%;
      scroll-snap-align: start;
      position: relative;
    }

    .dialog-zoomed-gallery .product-media-container--image .product-media {
      aspect-ratio: auto;
      height: 100%;
      width: 100%;
      overflow: hidden;
    }

    .dialog-zoomed-gallery .product-media-container--video,
    .dialog-zoomed-gallery .product-media-container--external_video {
      align-content: center;
    }

    .dialog-zoomed-gallery
      :is(.product-media-container--video, .product-media-container--external_video, .product-media-container--model)
      .product-media {
      aspect-ratio: auto;
      align-items: center;
      height: 100%;

      .product-media__image {
        height: 100%;
      }
    }

    .product-media__drag-zoom-wrapper {
      display: flex;
      aspect-ratio: auto;
      height: 100%;
      width: 100%;
      overflow: scroll;
      scrollbar-width: none;
      justify-content: center;

      &::-webkit-scrollbar {
        display: none;
      }
    }

    .product-media__drag-zoom-wrapper .product-media__image {
      --product-media-fit: contain;

      object-fit: var(--product-media-fit);
      overflow: hidden;
      transform: scale(var(--drag-zoom-scale))
        translate(var(--drag-zoom-translate-x, 0), var(--drag-zoom-translate-y, 0));
    }

    .media-gallery--hint {
      --slideshow-gap: var(--gap-2xs);

      :not(.dialog-zoomed-gallery) > .product-media-container:not(:only-child) {
        width: 90%;

        .product-media img {
          object-fit: cover;
        }
      }
    }
  }

  .dialog-zoomed-gallery__close-button {
    color: #fff;
    mix-blend-mode: difference;
    z-index: var(--layer-raised);
  }

  /* Mobile thumbnails styling */
  @media screen and (max-width: 749px) {
    .media-gallery__mobile-controls[thumbnails] {
      --thumbnail-width: 44px;
    }

    .media-gallery__mobile-controls[thumbnails] .slideshow-controls__thumbnail {
      width: var(--thumbnail-width);
      height: auto;
    }
  }

  .dialog-zoomed-gallery .product-media-container--zoomable.product-media-container--image {
    cursor: zoom-out;
  }

  .dialog-zoomed-gallery .product-media-container--video deferred-media,
  .dialog-zoomed-gallery .product-media-container--external_video deferred-media {
    height: auto;
    aspect-ratio: var(--ratio);
  }

  .dialog-zoomed-gallery .product-media-container--model .product-media__image {
    /* Make the height match the height of the model-viewer */
    height: 100vh;
  }

  :root:active-view-transition .dialog-zoomed-gallery__dialog {
    background-color: transparent;
  }

  ::view-transition-group(zoom-dialog-ui) {
    z-index: calc(var(--layer-overlay) + 1);
  }

  ::view-transition-old(gallery-item-open),
  ::view-transition-new(gallery-item-open) {
    animation-timing-function: step-start;
  }

  ::view-transition-old(gallery-item-close),
  ::view-transition-new(gallery-item-close) {
    animation-timing-function: step-end;
  }

  @media screen and (min-width: 750px) {
    :root:active-view-transition .product-media__image {
      background-color: transparent;
    }
  }

  ::view-transition-group(gallery-item-open),
  ::view-transition-group(gallery-item-close) {
    z-index: var(--layer-overlay);
    border-radius: var(--gallery-media-border-radius);
    overflow: clip;
  }

  ::view-transition-group(gallery-item-open) {
    animation-timing-function: var(--spring-d300-b0-easing);
    animation-duration: var(--spring-d300-b0-duration);
  }

  ::view-transition-group(gallery-item-close) {
    animation-timing-function: var(--spring-d220-b0-easing);
    animation-duration: var(--spring-d220-b0-duration);
  }

  @media screen and (max-width: 749px) {
    ::view-transition-group(gallery-item-open),
    ::view-transition-group(gallery-item-close) {
      animation-timing-function: step-start;
      animation-duration: 0.1s;
    }

    ::view-transition-new(gallery-item-open) {
      animation: fade-in var(--spring-d180-b0-duration) var(--spring-d180-b0-easing) forwards;
      animation-timing-function: var(--spring-d180-b0-easing);
      animation-duration: var(--spring-d180-b0-duration);
    }

    ::view-transition-old(gallery-item-close) {
      animation: fade-out 0.08s linear forwards;
    }
  }

  @keyframes fade-in {
    from {
      scale: 0.98;
      opacity: 0.8;
    }
  }

  @keyframes fade-out {
    to {
      opacity: 0;
    }
  }

  /*
   * Product media gallery slideshow context styles
   */
  .product-media-gallery__slideshow--single-media slideshow-container {
    @media screen and (max-width: 749px) {
      grid-area: unset;
    }
  }

  /* Display grid view as a carousel on mobile, grid on desktop */
  media-gallery:is(.media-gallery--grid) slideshow-component {
    @media screen and (min-width: 750px) {
      display: none;
    }
  }

  @media screen and (max-width: 749px) {
    /* Media gallery has a peeking slide on the right side always, and on the left side when the current slide is the last one */
    .media-gallery--hint
      :is(
        slideshow-slide:has(+ slideshow-slide[aria-hidden='false']:last-of-type),
        slideshow-slide[aria-hidden='false'] + slideshow-slide
      ) {
      content-visibility: auto;

      slideshow-component[actioned] & {
        content-visibility: visible;
      }
    }
  }

  @media screen and (min-width: 750px) {
    .media-gallery--carousel slideshow-component:has(slideshow-controls[thumbnails]) {
      &:has(slideshow-controls[pagination-position='right']) {
        display: grid;
        grid-template:
          'container controls' auto
          'arrows controls' min-content
          / 1fr auto;
      }

      &:has(slideshow-controls[pagination-position='left']) {
        display: grid;
        grid-template:
          'controls container' auto
          'controls arrows' min-content
          / auto 1fr;
      }

      slideshow-controls[pagination-position='left'] {
        order: -1;
      }
    }
  }

  .media-gallery--carousel slideshow-arrows .slideshow-control {
    padding-inline: 0 var(--padding-md);
    opacity: 1;
  }

  @media screen and (max-width: 749px) {
    slideshow-component:has(:not(.mobile\:hidden) :is(.slideshow-controls__dots, .slideshow-controls__counter))
      .shopify-model-viewer-ui__controls-area {
      /* Position the controls just above the counter */
      bottom: calc(var(--minimum-touch-target) + var(--padding-sm));
    }
  }

  @media screen and (min-width: 750px) {
    slideshow-component:has(:not(.desktop\:hidden) :is(.slideshow-controls__dots, .slideshow-controls__counter))
      .shopify-model-viewer-ui__controls-area {
      /* Position the controls just above the counter */
      bottom: calc(var(--minimum-touch-target) + var(--padding-sm));
    }
  }

  slideshow-slide.product-media-container--tallest {
    content-visibility: visible;
  }
/* END_SNIPPET:product-media-gallery-content */

/* START_SNIPPET:product-media (INDEX:326) */
.product-media {
    aspect-ratio: var(--gallery-aspect-ratio, var(--ratio));
    min-height: 0;
    min-width: 0;
  }

  .product-media__image {
    object-position: var(--focal-point, center center);
  }

  /*** Media border-radius feature ****/
  @media screen and (min-width: 750px) {
    .media-gallery--carousel slideshow-container,
    .media-gallery--grid .product-media > * {
      border-radius: var(--media-radius, 0);
      overflow: hidden;
    }

    /* When the CAROUSEL is on the LEFT side */
    .product-information:not(.product-information--media-right)
      .media-gallery--carousel.media-gallery--extend
      slideshow-container {
      border-top-left-radius: 0;
      border-bottom-left-radius: 0;
    }

    /* When the CAROUSEL is on the RIGHT side */
    .product-information.product-information--media-right
      .media-gallery--carousel.media-gallery--extend
      slideshow-container {
      border-top-right-radius: 0;
      border-bottom-right-radius: 0;
    }

    /* When the GRID is on the LEFT side */
    .product-information:not(.product-information--media-right) {
      /* One column */
      .media-gallery--grid.media-gallery--extend:not(.media-gallery--two-column) .product-media > *,
      /* Two column, small first image */
      .media-gallery--grid.media-gallery--extend.media-gallery--two-column:not(.media-gallery--large-first-image)
        .product-media-container:nth-of-type(odd)
        .product-media
        > *,
      /* Two column, large first image */
      .media-gallery--grid.media-gallery--extend.media-gallery--two-column.media-gallery--large-first-image
        .product-media-container:is(:first-of-type, :nth-of-type(even))
        .product-media
        > * {
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
      }
    }

    /* When the GRID is on the RIGHT side */
    .product-information.product-information--media-right {
      /* One column */
      .media-gallery--grid.media-gallery--extend:not(.media-gallery--two-column) .product-media > *,
      /* Two column, small first image */
      .media-gallery--grid.media-gallery--extend.media-gallery--two-column:not(.media-gallery--large-first-image)
        .product-media-container:nth-of-type(even)
        .product-media
        > *,
      /* Two column, large first image */
      .media-gallery--grid.media-gallery--extend.media-gallery--two-column.media-gallery--large-first-image
        .product-media-container:is(:first-of-type, :nth-of-type(odd))
        .product-media
        > * {
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
      }
    }
  }
/* END_SNIPPET:product-media */

/* START_SNIPPET:quantity-selector (INDEX:327) */
.quantity-selector-wrapper {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: calc(var(--gap-sm) / 2);

    @media screen and (min-width: 750px) {
      gap: var(--gap-sm);
    }
  }

  .price-per-item {
    display: block;
    color: var(--color-foreground);
    font-size: var(--font-size--sm);
    font-weight: normal;
  }
/* END_SNIPPET:quantity-selector */

/* START_SNIPPET:quick-add-modal-styles (INDEX:328) */
#quick-add-dialog {
    display: contents;
  }

  @media screen and (min-width: 750px) {
    .quick-add-modal {
      width: var(--quick-add-modal-width);
      height: var(--quick-add-modal-height);
      max-width: none;
    }
  }

  .quick-add-modal {
    padding: 0;
    border: var(--style-border-popover);
    overflow: hidden;
    box-shadow: 0 5px 30px rgb(0 0 0 / var(--opacity-15));

    @media screen and (max-width: 749px) {
      position: fixed;
      margin: auto 0 0 0;
      min-height: unset;
      max-width: 100%;
      border-radius: 0;
      overflow: clip;
      height: fit-content;
    }
  }

  .quick-add-modal[open] {
    @media screen and (max-width: 750px) {
      border-top-left-radius: var(--style-border-radius-popover);
      border-top-right-radius: var(--style-border-radius-popover);
    }
  }

  .quick-add-modal[open] {
    @media screen and (min-width: 750px) {
      display: flex;
    }
  }

  .quick-add-modal .view-more-details__wrapper {
    @media screen and (max-width: 749px) {
      display: none;
    }
  }

  .quick-add-modal[open] {
    animation: modalSlideInTop var(--animation-speed) var(--animation-easing) forwards;
  }

  .quick-add-modal.dialog-closing {
    animation: modalSlideOutTop var(--animation-speed) var(--animation-easing) forwards;
  }

  .quick-add-modal__close {
    position: absolute;
    top: var(--margin-2xs);
    right: var(--margin-2xs);
    transition: transform 0.15s var(--animation-timing-bounce);
    z-index: var(--layer-raised);
    overflow: visible;
    transform-origin: center;
  }

  .quick-add-modal__close:active {
    transform: scale(0.99) translateY(1px);
  }

  .quick-add-modal__close {
    &:focus-visible {
      outline: none;
    }

    &:focus-visible::after {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: calc(var(--style-border-radius-popover) - var(--margin-2xs));
      outline: var(--focus-outline-width) solid currentColor;
    }
  }

  .quick-add-modal__content {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    grid-template-rows: 100% 1fr;
    position: relative;
    overflow-y: auto;
    max-height: 100vh;
    flex-grow: 1;

    @media screen and (max-width: 749px) {
      grid-template-columns: repeat(4, 1fr);
      grid-template-rows: auto;
      padding-inline: var(--padding-xl);
      padding-block: var(--padding-xl);
      gap: var(--gap-lg);
      flex: 1;
      min-height: 0;
      overflow-y: auto;
      height: auto; /* Prevent a bug in Safari where height:fit-content is not respected */
      max-height: 100vh;
    }
  }

  .quick-add-modal__content .media-gallery--grid .media-gallery__grid {
    grid-template-columns: 1fr;
  }

  .quick-add-modal__content .media-gallery--grid.media-gallery--two-column .product-media-container:first-child {
    grid-column: auto;
  }

  .quick-add-modal__content {
    /* One column */
    .media-gallery--grid:not(.media-gallery--two-column) .product-media > *,
      /* Two column, small first image */
      .media-gallery--grid.media-gallery--two-column:not(.media-gallery--large-first-image)
      .product-media-container:nth-of-type(odd)
      .product-media > *,
      /* Two column, large first image */
      .media-gallery--grid.media-gallery--two-column.media-gallery--large-first-image
        .product-media-container:is(:first-of-type, :nth-of-type(even))
        .product-media > *,
        /* Carousel */
      .media-gallery--carousel slideshow-container {
      border-top-left-radius: 0;
      border-bottom-left-radius: 0;
    }
  }

  .quick-add-modal__content .view-more-details__wrapper {
    display: flex;
    justify-content: flex-start;
    width: 100%;
  }

  .view-more-details__wrapper .view-more-details {
    display: flex;
    align-items: center;
    width: fit-content;
  }

  .quick-add-modal__content .product-header {
    @media screen and (max-width: 749px) {
      display: flex;
      flex-direction: column;
      grid-column: 2 / -1;
      grid-row: 1;
      padding-right: var(--padding-2xl);
    }
  }

  .quick-add-modal__content .product-header a:not(product-price *) {
    @media screen and (max-width: 749px) {
      font-size: var(--font-size--md);
      font-weight: 500;
      color: inherit;
      width: fit-content;
    }
  }

  .quick-add-modal__content variant-picker,
  .quick-add-modal__content product-form-component {
    @media screen and (max-width: 749px) {
      grid-column: 1 / -1;
    }
  }

  .quick-add-modal__content .product-media-container__zoom-button {
    cursor: default;
  }

  .quick-add-modal__content .product-details {
    grid-column: 4 / -1;
    grid-row: 1 / span 2;
    display: flex;
    flex-direction: column;
    justify-content: stretch;
    height: 100%;
    min-height: 0;
    overflow-y: auto;
    position: relative;

    dialog[open] & {
      animation: fadeSlideIn 0.3s var(--animation-timing-fade-in) both;
      animation-delay: 0.1s;
    }

    @media screen and (max-width: 749px) {
      grid-column: 2 / span 2;
      grid-row: span 1;
      max-height: 100%;
      height: 100%;
    }
  }

  @property --quick-add-modal-mask-start {
    syntax: '<length>';
    initial-value: 0px;
    inherits: false;
  }

  @property --quick-add-modal-mask-end {
    syntax: '<length>';
    initial-value: 0px;
    inherits: true;
  }

  @keyframes detect-scroll {
    from,
    to {
      --can-scroll: ;
    }
  }

  @supports (animation-timeline: scroll(self)) {
    dialog[open] .quick-add-modal__content .product-details {
      mask-image: linear-gradient(to bottom, transparent 0%, #000 var(--quick-add-modal-mask-start), #000 100%);
      animation: 0.3s var(--animation-timing-fade-in) 0.1s both fadeSlideIn, scrollStart 1s linear both,
        scrollEnd 1s linear both, detect-scroll 1ms linear none;
      animation-timeline: auto, scroll(self), scroll(self), scroll(self);
      animation-range: normal, 0px 48px, calc(100% - 48px) 100%, 0% 100%;
    }
  }

  @keyframes scrollStart {
    from {
      --quick-add-modal-mask-start: 0px;
    }
    to {
      --quick-add-modal-mask-start: 48px;
    }
  }

  @keyframes scrollEnd {
    from {
      --quick-add-modal-mask-end: 0px;
    }
    to {
      --quick-add-modal-mask-end: 48px;
    }
  }

  .quick-add-modal__content .product-details > .group-block {
    flex-grow: 1;
    width: auto;
  }

  .quick-add-modal__content > * {
    min-height: 0;
  }

  .quick-add-modal__content .product-details :is(.view-product-title, .buy-buttons-block) {
    flex: 0 0 auto;
  }
  .quick-add-modal__content .product-details :is(.buy-buttons-block) {
    margin-top: auto;
    position: sticky;
    bottom: 0;
    padding-bottom: var(--padding-3xl);
    background-color: var(--color-background);
    z-index: var(--layer-raised);

    &::before {
      --quick-add-modal-mask-end-progressive-enhanced: 0px;

      position: absolute;
      content: '';
      display: block;
      inset: auto 0 100% 0;
      pointer-events: none;
      height: min(var(--gap-2xl), var(--gap));
      background-color: inherit;
      mask-image: linear-gradient(
        to top,
        #000 0%,
        #000 calc(var(--gap-2xs)),
        transparent calc(100% - var(--quick-add-modal-mask-end-progressive-enhanced)),
        transparent
      );
    }
  }

  .quick-add-modal__content .product-details .buy-buttons-block:has(gift-card-recipient-form) {
    position: static;
    padding-bottom: 0;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
  }

  .quick-add-modal__content .product-details .buy-buttons-block:has(gift-card-recipient-form) > product-form-component {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
  }

  .quick-add-modal__content .product-details .buy-buttons-block:has(gift-card-recipient-form) form {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
  }

  .quick-add-modal__content .product-details .buy-buttons-block:has(gift-card-recipient-form)::before {
    display: none;
  }

  .quick-add-modal__content .product-details .buy-buttons-block__bar {
    display: block;
    position: sticky;
    bottom: 0;
    margin-top: auto;
    padding-block: var(--gap-md) var(--padding-3xl);
    background-color: var(--color-background);
    z-index: var(--layer-raised);

    &::before {
      --quick-add-modal-mask-end-progressive-enhanced: 0px;

      position: absolute;
      content: '';
      display: block;
      inset: auto 0 100% 0;
      pointer-events: none;
      height: min(var(--gap-2xl), var(--gap));
      background-color: inherit;
      mask-image: linear-gradient(
        to top,
        #000 0%,
        #000 calc(var(--gap-2xs)),
        transparent calc(100% - var(--quick-add-modal-mask-end-progressive-enhanced)),
        transparent
      );
    }
  }

  @supports (animation-timeline: scroll(self)) {
    .quick-add-modal__content .product-details :is(.buy-buttons-block)::before,
    .quick-add-modal__content .product-details .buy-buttons-block__bar::before {
      --mask-if-scroll: var(--can-scroll) var(--quick-add-modal-mask-end);
      --mask-if-no-scroll: 48px;
      --quick-add-modal-mask-end-progressive-enhanced: var(--mask-if-scroll, var(--mask-if-no-scroll));
      height: calc(var(--gap-2xs) + 48px);
    }
  }

  .quick-add-modal__content .product-details .variant-picker {
    flex: 0 0 auto;

    padding-block: min(var(--gap-2xl), var(--gap));
    margin-block-end: calc(var(--focus-outline-offset) + var(--focus-outline-width));
  }

  .quick-add-modal__content .variant-option--swatches {
    padding-inline-start: var(--padding-2xs);
  }

  .quick-add-modal__content .variant-option--swatches legend {
    margin-inline-start: calc(-1 * var(--padding-2xs));
  }

  .quick-add-modal__content:not(:has(.product-information__media)) .product-details {
    grid-column: 1 / -1;
  }

  .quick-add-modal__content .view-product-title {
    display: flex;
    padding-block: 0;
    margin-block-end: 12px;

    /* Prevent overlap between title and close button */
    padding-inline-end: calc(var(--padding-2xl) + calc(var(--minimum-touch-target) / 2));
  }

  .quick-add-modal__content .view-product-title a {
    color: inherit;
    text-decoration: none;
    text-align: left;
    font-size: var(--font-size--2xl);
    font-weight: 600;
    line-height: 1.2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color 0.2s var(--animation-easing);
  }

  .quick-add-modal__content .product-details product-price {
    --text-align: left;
  }

  .quick-add-modal__content .product-details product-price.text-block--align-center {
    margin-inline: 0;
  }

  .quick-add-modal__content .product-details product-price.text-center {
    --text-align: left;
  }

  .quick-add-modal__content .product-details product-price > * {
    text-align: left;
  }

  .quick-add-modal__content
    .product-details
    *:not(
      .group-block,
      .group-block-content,
      .buy-buttons-block,
      .buy-buttons-block *,
      .view-product-title,
      .view-product-title *,
      variant-picker,
      variant-picker *,
      product-price,
      product-price *,
      product-inventory,
      product-inventory *,
      .view-more-details__wrapper,
      .view-more-details__wrapper *
    ) {
    @media screen and (min-width: 750px) {
      /* stylelint-disable-next-line declaration-no-important */
      display: none !important;
    }
  }

  .quick-add-modal__content
    .group-block:not(
      :has(
          .buy-buttons-block,
          .buy-buttons-block *,
          .view-product-title,
          .view-product-title *,
          variant-picker,
          variant-picker *,
          product-price,
          product-price *,
          product-inventory,
          product-inventory *,
          .view-more-details__wrapper,
          .view-more-details__wrapper *
        ),
      .buy-buttons-block
    ) {
    display: none;
  }

  @media screen and (min-width: 750px) {
    .quick-add-modal__content .group-block-content {
      gap: 0;
    }

    .quick-add-modal__content .media-gallery__grid {
      gap: min(var(--gap-2xs), var(--image-gap));
      border-radius: var(--style-border-radius-popover, 0);
    }

    .quick-add-modal__content .media-gallery--grid .product-media img {
      border-radius: 0;
    }
  }

  .quick-add-modal__content .product-details > .group-block {
    padding-block: var(--padding-3xl) 0;
  }

  .quick-add-modal__content :where(.product-details > .group-block > .group-block-content > *) {
    padding-inline: var(--padding-3xl);
  }

  .quick-add-modal__content slideshow-slide:not([aria-hidden='false']) {
    content-visibility: auto;
  }

  .quick-add-modal__content .product-information__media {
    width: 100%;
    grid-column: 1 / span 1;
    grid-row: 1;
    position: relative;
    top: 0;
    animation: fadeIn 0.4s var(--animation-timing-fade-in) both;

    @media screen and (min-width: 750px) {
      position: sticky;
      grid-column: 1 / 4;
      width: var(--quick-add-modal-gallery-width);
      overflow-y: auto;
      -ms-overflow-style: none;
      scrollbar-width: none;
    }

    &::-webkit-scrollbar {
      display: none;
    }
  }

  .quick-add-modal__content .product-information__media media-gallery {
    pointer-events: none;

    @media screen and (min-width: 750px) {
      position: absolute;
      inset: 0;
    }
  }

  .quick-add-modal media-gallery {
    padding: 0;
  }

  .quick-add-modal__content .product-information__media slideshow-arrows {
    display: none;
  }

  .quick-add-modal__content .product-information__media slideshow-container {
    display: block;
  }

  .quick-add-modal__content .product-information__media slideshow-slides {
    display: flex;
    flex-direction: column;
    gap: var(--gap-2xs);
    overflow: visible;
    scroll-snap-type: none;
  }

  .quick-add-modal__content .product-information__media slideshow-slide {
    width: 100%;
    flex: none;
    scroll-snap-align: unset;
    position: relative;
    transform: none;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s var(--animation-easing);
  }

  .quick-add-modal__content .product-information__media slideshow-slide[aria-hidden='true'] {
    @media screen and (max-width: 749px) {
      display: none;
    }
  }

  .quick-add-modal__content .product-information__media slideshow-slide:nth-child(1) {
    animation: fadeSlideIn 0.3s var(--animation-timing-fade-in) both;
  }

  .quick-add-modal__content .product-information__media slideshow-slide:nth-child(2) {
    animation: fadeSlideIn 0.3s var(--animation-timing-fade-in) both;
    animation-delay: 0.05s;
  }

  .quick-add-modal__content .product-information__media slideshow-slide:nth-child(3) {
    animation: fadeSlideIn 0.3s var(--animation-timing-fade-in) both;
    animation-delay: 0.1s;
  }

  .quick-add-modal__content .product-information__media :is(slideshow-controls, slideshow-controls[thumbnails]) {
    display: none;
  }

  .quick-add-modal__content .sticky-content,
  .quick-add-modal__content .sticky-content--desktop {
    top: 0;
  }

  .quick-add-modal__content .text-block.rte:not(product-price),
  .quick-add-modal__content .view-more-details__wrapper {
    display: none;
  }

  @keyframes fadeSlideIn {
    from {
      opacity: 0;
      transform: translateY(10px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
/* END_SNIPPET:quick-add-modal-styles */

/* START_SNIPPET:quick-add-styles (INDEX:330) */
/* Quick Add */
  .quick-add {
    --quick-add-offset: var(--padding-sm);
    --quick-add-right: calc(var(--quick-add-offset) + var(--padding-inline-end));
    --quick-add-bottom: calc(var(--quick-add-offset) + var(--padding-block-end));

    position: absolute;
    inset: 0;
    z-index: var(--layer-raised);
    pointer-events: none;

    @media screen and (min-width: 750px) {
      --quick-add-offset: var(--padding-md);
    }
  }

  .quick-add .variant-option__button-label input[data-option-available='false'] {
    cursor: not-allowed;
  }

  .quick-add[class*='color-scheme-'] {
    background-color: #0000;
  }

  product-card:is(:hover, :focus-within) .quick-add__button {
    opacity: 1;
  }

  .quick-add__button {
    display: var(--quick-add-mobile-display, none);
    align-items: center;
    background: linear-gradient(var(--color-background) 0 100%) padding-box;
    padding: 0;
    border-radius: 50px;
    border: 2px solid hsl(0 0% 0% / 0.15);
    height: var(--button-size-md);
    cursor: pointer;
    opacity: var(--quick-add-mobile-opacity, 0);
    overflow: hidden;
    color: var(--color-foreground);
    pointer-events: all;
    position: absolute;
    right: max(var(--quick-add-right), calc((var(--border-radius) + var(--quick-add-right)) * (1 - cos(45deg))));
    bottom: max(var(--quick-add-bottom), calc((var(--border-radius) + var(--quick-add-bottom)) * (1 - cos(45deg))));
    backdrop-filter: blur(20px) saturate(180%);

    &:hover {
      scale: 1.03;

      /* Hover stabilizer: extends hit area to maintain hover state */
      &::before {
        content: '';
        position: absolute;
        inset: -10px;
        z-index: -1;
      }
    }

    &:active {
      scale: 0.99;
    }

    .quick-add[stay-visible] & {
      display: grid;
    }

    @media screen and (min-width: 750px) {
      display: var(--quick-add-display, flex);
      opacity: 0;
    }
  }

  .quick-add__button.add-to-cart-button {
    height: var(--button-size-md);
  }

  .quick-add__button .add-to-cart-text {
    background: var(--color-background);
    overflow: hidden;
    border-radius: 50px;
    height: 100%;
    gap: 0;
  }

  .quick-add__button .svg-wrapper .checkmark-burst {
    width: 22px;
    height: 22px;
  }

  .quick-add__button .add-to-cart-icon {
    /* account for border width */
    height: 100%;
    width: calc(var(--button-size-md) - 4px);
  }

  .quick-add__button .add-to-cart-text__content {
    display: grid;
    grid-template-columns: 0fr;

    & > span {
      min-width: 0;

      span {
        padding-right: var(--padding-sm);
        opacity: 0;
        display: inline-block;
        filter: blur(2px);
        translate: 0.5ch 0;
      }
    }
  }

  .quick-add__button[data-added='true'] .add-to-cart-text {
    animation-name: atc-fade-out;
  }

  .quick-add__button[data-added='true'] .add-to-cart-text--added {
    translate: 0 0;
    animation-name: atc-fade-in;
  }

  .quick-add__product-form-component {
    height: 100%;
  }

  .quick-add__product-form-component .shopify-product-form {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    container-type: inline-size;
    height: 100%;
  }

  .quick-add-modal .product-media {
    width: 100%;
    height: 100%;
  }

  .quick-add-modal deferred-media {
    display: none;
  }

  .quick-add-modal .media-gallery--carousel slideshow-component {
    --cursor: default;
  }

  .quick-add__button:is(:hover, :focus-visible) {
    .add-to-cart-text__content {
      grid-template-columns: 1fr;

      span span {
        opacity: 1;
        translate: 0 0;
        filter: blur(0);
      }
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .quick-add__button .add-to-cart-text__content {
      grid-template-columns: 1fr;

      span span {
        opacity: 1;
        translate: 0 0;
        filter: blur(0);
      }
    }
  }

  @media (prefers-reduced-motion: no-preference) {
    .quick-add__button {
      transition-property: scale, translate, opacity;
      transition-duration: var(--animation-speed);
      transition-timing-function: var(--ease-out-cubic);
    }

    .quick-add__button:is(:hover, :focus-visible) {
      .add-to-cart-text__content,
      .add-to-cart-text__content span span {
        transition-delay: var(--animation-speed);
      }
    }

    .quick-add__button .add-to-cart-text__content {
      transition-property: grid-template-columns;
      transition-duration: var(--animation-speed);
      transition-timing-function: var(--ease-out-cubic);

      span span {
        transition-property: opacity, filter, translate;
        transition-duration: var(--animation-speed-slow);
        transition-timing-function: var(--ease-out-quad);
      }
    }
  }
/* END_SNIPPET:quick-add-styles */

/* START_SNIPPET:resource-card (INDEX:332) */
.resource-card {
    --resource-card-secondary-image-opacity: 0;
    --resource-card-primary-image-opacity: calc(1 - var(--resource-card-secondary-image-opacity));

    display: flex;
    flex-direction: column;
    row-gap: var(--padding-xs);
    position: relative;
    text-decoration: none;
    height: 100%;
    opacity: 0;
    animation: fadeIn var(--animation-speed-medium) var(--animation-timing-fade-in) forwards;
  }

  .resource-card__link {
    position: absolute;
    inset: 0;
    z-index: 1;
  }

  .resource-card__content {
    display: flex;
    flex-direction: column;
    color: var(--color-foreground);
    gap: var(--padding-3xs);

    .price {
      font-weight: 500;
    }

    .volume-pricing-note {
      display: block;
      margin-top: var(--padding-3xs);
      font-family: var(--font-body--family);
      font-weight: normal;
      font-size: min(0.85em, var(--font-paragraph--size));
      line-height: normal;
      letter-spacing: normal;
      text-transform: none;
      color: rgb(var(--color-foreground-rgb) / var(--opacity-subdued-text));
    }
  }

  .resource-card[data-resource-type='article'] .resource-card__content,
  .resource-card[data-resource-type='page'] .resource-card__content {
    gap: var(--padding-xs);
  }

  .resource-card__image {
    aspect-ratio: var(--resource-card-aspect-ratio, auto);
    object-fit: cover;
    border-radius: var(--resource-card-corner-radius);
    opacity: var(--resource-card-primary-image-opacity);
  }

  .resource-card__image--secondary {
    position: absolute;
    top: 0;
    opacity: var(--resource-card-secondary-image-opacity);
    border-radius: var(--resource-card-corner-radius);
  }

  .resource-card__media:empty {
    display: none;
  }

  .resource-card__image-placeholder {
    padding: var(--padding-sm);
    font-size: var(--font-size--lg);
    line-height: var(--line-height--display-loose);
    word-break: break-word;
    background-color: rgb(var(--color-foreground-rgb) / var(--opacity-5));
    aspect-ratio: var(--resource-card-aspect-ratio, auto);
    border-radius: var(--resource-card-corner-radius);
    color: var(--color-foreground);
  }

  .resource-card__title {
    margin-block: 0;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    line-height: 1.3;
    word-break: break-word;
    overflow-wrap: break-word;
  }

  .resource-card__title.paragraph {
    line-height: 1.3;
  }

  .resource-card--overlay {
    height: 100%;

    &::before {
      content: '';
      position: absolute;
      inset: 50% 0 0;
      background: var(--gradient-image-overlay);
      border-radius: var(--resource-card-corner-radius);
      pointer-events: none;
      z-index: var(--layer-flat);
    }
  }

  .resource-card--overlay .resource-card__image {
    height: 100%;
  }

  .resource-card--overlay .resource-card__content {
    position: absolute;
    inset: auto 0 0;
    padding: var(--padding-lg) var(--padding-lg) var(--padding-sm);
    z-index: var(--layer-raised);
  }

  .resource-card--overlay .resource-card__title {
    color: var(--color-white);
  }

  /* Collection images */
  .resource-card__image-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--gap-2xs);
  }

  .resource-card__collection-image {
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: calc(var(--card-corner-radius) - (var(--padding-xs) / 2));
  }

  .resource-card__subtext {
    color: rgb(var(--color-foreground-rgb) / var(--opacity-subdued-text));
    margin-block-start: 0;
  }

  .resource-card__subtext.paragraph {
    font-size: var(--font-size--body-sm);
    line-height: var(--line-height--body-tight);
    color: rgb(var(--color-foreground-rgb) / var(--opacity-subdued-text));
  }

  .resource-card:has(.resource-card__image--secondary) {
    &:hover,
    &:focus {
      --resource-card-secondary-image-opacity: 1;
    }
  }
/* END_SNIPPET:resource-card */

/* START_SNIPPET:resource-image (INDEX:333) */
.resource-image {
    position: relative;
    display: flex;
    width: 100%;
    height: 100%;
    z-index: var(--layer-base);
    overflow: hidden;
    max-width: 100%;
    max-height: 100%;
    aspect-ratio: var(--ratio);
  }

  .resource-image__image {
    object-fit: cover;
    aspect-ratio: var(--ratio);
    width: 100%;
    height: 100%;
  }

  .resource-image--placeholder {
    width: 100%;
    height: 100%;
  }
/* END_SNIPPET:resource-image */

/* START_SNIPPET:resource-list-carousel (INDEX:334) */
.resource-list__carousel {
    --slide-width: 60vw;
    width: 100%;
    position: relative;
    container-type: inline-size;
    container-name: resource-list-carousel;

    .slideshow-control[disabled] {
      display: none;
    }

    .slideshow-control--next {
      margin-inline-start: auto;
    }
  }

  @container resource-list-carousel (max-width: 749px) {
    .resource-list__carousel .resource-list__slide {
      --slide-width: clamp(150px, var(--mobile-card-size, 60cqw), var(--slide-width-max));
    }
  }

  @container resource-list-carousel (min-width: 750px) {
    .resource-list__carousel .resource-list__slide {
      --section-slide-width: calc(
        (100% - (var(--resource-list-column-gap) * (var(--column-count) - 1)) - var(--peek-next-slide-size)) /
          var(--column-count)
      );
      --fallback-slide-width: clamp(150px, var(--mobile-card-size, 60cqw), var(--slide-width-max));
      --slide-width: var(--section-slide-width, var(--fallback-slide-width));
    }
  }

  .resource-list__carousel slideshow-slides {
    gap: var(--resource-list-column-gap);

    /* Add padding to prevent hover animations from being clipped in slideshow
     15px accommodates:
     - Scale effect (9px on each side from 1.03 scale)
     - Lift effect (4px upward movement)
     - Shadow (15px spread with -5px offset)
     Using 16px for better alignment with our spacing scale */
    margin-block: -16px;
    padding-block: 16px;
  }

  .resource-list__carousel slideshow-arrows {
    padding-inline: var(--util-page-margin-offset);
  }

  .resource-list__carousel .resource-list__slide {
    width: var(--slide-width);
    flex: 0 0 auto;
    scroll-snap-align: start;
    min-width: 0;
  }

  /*
   * Resource list carousels have peeking slides on both sides.
   * We try to kick load them beforehand (they are lazy loaded otherwise).
   */
  .resource-list__carousel
    :is(
      slideshow-slide:has(+ slideshow-slide[aria-hidden='false']),
      slideshow-slide[aria-hidden='false'] + slideshow-slide
    ) {
    content-visibility: auto;

    slideshow-component[actioned] & {
      content-visibility: visible;
    }
  }
/* END_SNIPPET:resource-list-carousel */

/* START_SNIPPET:search-modal (INDEX:337) */
/* Search modal style */
  .search-modal {
    --search-border-radius: var(--style-border-radius-popover);
    --search-border-width: var(--style-border-width);
  }

  .search-modal__content {
    /* Approx set the top so when the content is at max height, the modal is centered */
    --modal-top-margin: calc(50dvh - var(--modal-max-height) / 2 - 2rem);
    --modal-width: 66dvw;

    padding: 0;
    border: var(--style-border-popover);

    @media screen and (min-width: 750px) {
      width: var(--modal-width);
      margin-block-start: var(--modal-top-margin);
      overflow: hidden;
    }
  }

  /* Hide the default dialog backdrop on small screens */
  @media screen and (max-width: 749px) {
    .search-modal__content::backdrop {
      display: none;
    }
  }

  .dialog-modal[open].search-modal__content {
    transform-origin: bottom center;
    animation: search-element-slide-in-bottom 300ms var(--ease-out-quad) forwards;
    border-radius: var(--search-border-radius);
    box-shadow: var(--shadow-popover);

    @media screen and (max-width: 749px) {
      border-radius: 0;
    }
  }

  .dialog-modal.search-modal__content.dialog-closing {
    animation: search-element-slide-out-bottom 200ms var(--ease-out-quad) forwards;
  }

  .search-modal__content[open] {
    display: flex;
  }

  .search-modal__content :is(.predictive-search-dropdown, .predictive-search-form__content-wrapper) {
    position: relative;
  }

  .dialog-modal
    .predictive-search-form__header:has(
      .predictive-search__reset-button:not(.predictive-search__reset-button[hidden])
    )::before {
    content: '';
    position: absolute;
    right: calc(var(--padding-sm) + var(--minimum-touch-target));
    top: 0;
    bottom: 0;
    width: var(--border-width-sm);
    background-color: var(--color-border);
  }

  .dialog-modal
    .predictive-search-form__header:has(.predictive-search__reset-button:not(.predictive-search__reset-button[hidden]))
    > .predictive-search__close-modal-button {
    &::before {
      content: none;
    }
  }

  @media screen and (min-width: 750px) {
    .dialog-modal
      .predictive-search-form__header:has(
        .predictive-search__reset-button:not(.predictive-search__reset-button[hidden])
      )::before {
      right: calc(var(--padding-2xl) * 2);
    }
  }

  predictive-search-component {
    --resource-card-corner-radius: var(--product-corner-radius);

    display: flex;
    width: 100%;
    position: relative;
    margin-inline: auto;
    align-items: center;
    background-color: var(--color-background);
    z-index: var(--layer-heightened);
  }

  .predictive-search-form__footer {
    display: none;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;

    @media screen and (min-width: 750px) {
      --to-top-gradient-background: linear-gradient(
        to top,
        rgb(var(--color-background-rgb) / var(--opacity-90)),
        rgb(var(--color-background-rgb) / var(--opacity-80)),
        rgb(var(--color-background-rgb) / var(--opacity-40)),
        transparent
      );

      padding-block: var(--padding-xs) var(--padding-lg);
      background-image: var(--to-top-gradient-background);
    }
  }

  predictive-search-component:has([data-search-results]):not(:has(.predictive-search-results__no-results))
    .predictive-search-form__footer {
    display: block;
  }

  .predictive-search-form {
    position: relative;
    width: 100%;
    align-self: flex-start;
  }

  .predictive-search-form__content {
    max-height: 50dvh;
    overflow-y: auto;
    background-color: var(--color-background);

    /* Firefox */
    scrollbar-width: none;

    /* Webkit browsers */
    &::-webkit-scrollbar {
      display: none;
    }
  }

  .predictive-search-form__content-wrapper {
    position: absolute;
    top: 100%;
    width: 100%;
    left: 0;
    z-index: var(--layer-raised);
    display: flex;
    flex-direction: column;
    border-radius: 0 0 var(--search-border-radius) var(--search-border-radius);
    transition: box-shadow var(--animation-speed) var(--animation-easing);
    transform: translateZ(0);
    will-change: transform, opacity;
    overflow: hidden;

    @media screen and (max-width: 749px) {
      border-radius: 0;
    }

    @media screen and (min-width: 750px) {
      max-height: var(--modal-max-height);
    }
  }

  /* Add new rule to apply bottom padding only when search button exists */
  .predictive-search-form__content-wrapper:has([data-search-results]):not(:has(.predictive-search-results__no-results))
    > .predictive-search-form__content {
    padding-block-end: var(--padding-6xl);
  }

  .predictive-search-form__header-inner {
    background: var(--color-background);
    border: var(--search-border-width) solid var(--color-border);
    color: var(--color-foreground);
    border-radius: var(--style-border-radius-popover);
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;

    @media screen and (max-width: 749px) {
      border-radius: var(--style-border-radius-inputs);
      border: none;
    }
  }

  .predictive-search-form__header-inner:focus-within {
    outline-offset: var(--focus-outline-offset);

    @media screen and (min-width: 750px) {
      outline: var(--focus-outline-width) solid var(--color-primary);
    }
  }

  .predictive-search-form__header {
    display: flex;
    position: sticky;
    top: 0;
    z-index: var(--layer-heightened);
    width: 100%;
    align-items: center;
    background-color: var(--color-input-background);
    border: var(--search-border-width) solid var(--color-border);
    border-radius: var(--style-border-radius-inputs);

    @media screen and (max-width: 749px) {
      padding: var(--padding-2xs) var(--padding-sm);
    }
  }

  .predictive-search-form__header:focus-within,
  .predictive-search-form__header-inner:focus-within,
  .predictive-search-form__header-inner:has(.search-input:is(:focus, :focus-visible)) {
    outline: none;
    box-shadow: none;
    /* stylelint-disable-next-line declaration-no-important */
    border-color: var(--color-border) !important;
  }

  input.search-input {
    border-radius: var(--style-border-radius-inputs);
    padding-block: var(--padding-sm);
    font-size: var(--font-size--md);
    width: 100%;
    color: var(--color-foreground);
    padding-inline: calc(var(--margin-lg) + var(--icon-size-lg)) 0;
    background: transparent;
    text-overflow: ellipsis;
    overflow: hidden;
    outline: none;
    border: 0;
  }

  .search-input::placeholder {
    color: rgb(var(--color-foreground-rgb) / var(--opacity-subdued-text));
  }

  .search-input,
  .search-input:is(:focus, :focus-visible, :focus-within),
  .predictive-search-form__header *:is(:focus, :focus-visible) {
    outline: none;
    box-shadow: none;
  }

  .search-input:hover {
    background-color: transparent;
  }

  .predictive-search__icon {
    position: absolute;
    left: var(--margin-xl);
    top: auto;
    width: var(--icon-size-lg);
    height: var(--icon-size-lg);
    color: rgb(var(--color-foreground-rgb) / var(--opacity-60));

    @media screen and (min-width: 750px) {
      left: var(--margin-md);
    }
  }

  .predictive-search__icon > svg {
    width: var(--icon-size-md);
    height: var(--icon-size-md);
  }

  .predictive-search__reset-button {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: var(--minimum-touch-target);
    height: var(--minimum-touch-target);
    padding: 0;
    margin-inline-end: var(--margin-md);
    background: transparent;
    color: var(--color-foreground);
    opacity: 0.68;
    transition: opacity var(--animation-speed-medium) var(--animation-timing-fade-out),
      visibility var(--animation-speed-medium) var(--animation-timing-fade-out);

    &:hover {
      color: var(--color-foreground);
    }

    &:active {
      transform: scale(0.9);
      transition: transform 100ms var(--animation-timing-active);
    }

    @media screen and (min-width: 750px) {
      margin-inline-end: var(--margin-2xs);
    }
  }

  .predictive-search__reset-button[hidden] {
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
  }

  .predictive-search__reset-button-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: var(--icon-size-lg);
    height: var(--icon-size-lg);
    transition: background-color var(--animation-speed-medium) ease-in-out,
      transform var(--animation-speed-medium) var(--animation-timing-bounce);
    border-radius: 50%;

    &:hover {
      background-color: rgb(var(--color-primary-hover-rgb) / var(--opacity-8));
    }
  }

  .predictive-search__reset-button:active .predictive-search__reset-button-icon {
    transform: scale(0.85);
    transition-timing-function: var(--animation-timing-active);
    transition-duration: 100ms;
  }

  .predictive-search__reset-button svg {
    width: var(--icon-size-md);
    height: var(--icon-size-md);
  }

  .predictive-search__reset-button-text {
    display: none;
  }

  .predictive-search__search-button {
    margin: auto;
    z-index: var(--layer-raised);
    transition: transform var(--animation-speed-medium) var(--animation-timing-bounce),
      box-shadow var(--animation-speed-medium) var(--animation-timing-hover);
    transform-origin: center;

    &:hover {
      transform: translateY(-2px);
      box-shadow: 0 4px 8px rgb(0 0 0 / var(--opacity-5));
    }

    &:active {
      transform: scale(0.97);
      transition: transform 100ms var(--animation-timing-active);
      box-shadow: none;
    }
  }

  .predictive-search__close-modal-button {
    --button-color: var(--color-foreground);
    --button-background-color: transparent;

    display: flex;
    justify-content: center;
    align-items: center;
    width: var(--minimum-touch-target);
    height: var(--minimum-touch-target);
    margin-inline-start: var(--margin-sm);
    padding: 0;
    box-shadow: none;

    &:active {
      transform: scale(0.8);
      transition: transform 100ms var(--animation-timing-active);
    }

    .svg-wrapper,
    svg {
      width: var(--icon-size-xs);
      height: var(--icon-size-xs);
    }
  }

  .predictive-search__close-modal-button:hover {
    --button-color: var(--color-foreground);
    --button-background-color: transparent;
  }
/* END_SNIPPET:search-modal */

/* START_SNIPPET:search (INDEX:338) */
.search-action {
    --search-border-radius: var(--style-border-radius-inputs);
    --search-border-width: var(--style-border-width-inputs);

    display: flex;
  }

  @media screen and (max-width: 749px) {
    .search-action--hidden-on-drawer {
      display: none;
    }
  }

  @media screen and (min-width: 750px) {
    [data-menu-style='drawer'] .search-action--hidden-on-drawer {
      display: none;
    }

    [data-menu-style='menu'] .search-action--hidden-on-menu {
      display: none;
    }
  }

  [data-menu-style='menu'] .header__column--left .search-action {
    @media screen and (min-width: 750px) {
      margin-inline: calc(var(--padding-lg) * -1);
    }
  }

  .header__column--right .search-action {
    @media screen and (min-width: 750px) {
      margin-inline: calc(var(--gap-md) * -1) calc(var(--gap-xs) * -1);
    }
  }

  @media screen and (min-width: 750px) {
    .header__column--right .search-action--text {
      margin-inline: 0;
    }

    [data-menu-style='menu'] .header__column--left .search-action--text {
      margin-inline: 0;
    }
  }
/* END_SNIPPET:search */

/* START_SNIPPET:section (INDEX:339) */
.section-wrapper {
    --section-height-offset: 0px;
  }

  .section[data-shopify-visual-preview] {
    min-height: var(--section-preview-height);
    padding-top: 0;
  }

  .section[data-shopify-visual-preview] .custom-section-background {
    display: none;
  }

  body:has(> #header-group > .header-section > #header-component[transparent]):not(
      :has(> #header-group > .header-section + .shopify-section)
    )
    > main
    > .section-wrapper:first-child {
    --section-height-offset: var(--header-group-height, 0);
  }

  .custom-section-background {
    grid-column: 1 / -1;
  }

  .custom-section-content {
    z-index: var(--layer-flat);
  }
/* END_SNIPPET:section */

/* START_SNIPPET:skip-to-content-link (INDEX:341) */
.skip-to-content-link {
    position: absolute;
    left: -99999px;
  }

  .skip-to-content-link:focus {
    z-index: var(--layer-temporary);
    overflow: auto;
    width: auto;
    height: auto;
    padding: var(--padding-lg) var(--padding-4xl);
    left: var(--margin-lg);
    top: var(--margin-lg);
    background-color: var(--color-background);
    box-shadow: 0 0 0 var(--focus-outline-offset) var(--color-background);
  }
/* END_SNIPPET:skip-to-content-link */

/* START_SNIPPET:slideshow-arrow (INDEX:343) */
.slideshow-control--large {
    .icon-caret {
      --icon-stroke-width: 1px;
    }

    .icon-caret {
      --icon-stroke-width: 1px;
    }

    .svg-wrapper,
    svg {
      width: var(--slideshow-controls-icon);
      height: var(--slideshow-controls-icon);
    }
  }

  /* Slideshow control shape styles */
  .slideshow-control.slideshow-control--shape-square,
  .slideshow-control.slideshow-control--shape-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1 / 1;
    background-color: var(--color-primary-button-background);
    color: var(--color-primary-button-text);
  }

  .slideshow-control.slideshow-control--shape-circle {
    border-radius: 50%;
  }

  .slideshow-control.slideshow-control--shape-square {
    border-radius: 0;
  }

  .slideshow-control .icon-caret {
    rotate: -90deg;
  }
/* END_SNIPPET:slideshow-arrow */

/* START_SNIPPET:slideshow-arrows (INDEX:344) */
slideshow-arrows {
    --cursor-previous: w-resize;
    --cursor-next: e-resize;

    position: absolute;
    inset: 0;
    display: flex;
    z-index: var(--layer-heightened);
    pointer-events: none;
    mix-blend-mode: difference;
    align-items: flex-end;

    &[position='left'] {
      justify-content: flex-start;
      padding-inline: var(--padding-xs);
    }

    &[position='right'] {
      justify-content: flex-end;
      padding-inline: var(--padding-xs);
    }

    &[position='center'] {
      justify-content: space-between;
      align-items: center;
    }
  }

  slideshow-arrows:has(.slideshow-control--shape-square),
  slideshow-arrows:has(.slideshow-control--shape-circle) {
    mix-blend-mode: normal;
  }

  slideshow-component[disabled='true'] slideshow-arrows {
    display: none;
  }

  slideshow-arrows .slideshow-control {
    pointer-events: auto;
    opacity: 0;
    min-height: var(--minimum-touch-target);
    min-width: var(--minimum-touch-target);
    padding: 0 var(--padding-xs);
    color: var(--color-white);
  }

  slideshow-arrows .slideshow-control.slideshow-control--style-none {
    display: none;
  }
/* END_SNIPPET:slideshow-arrows */

/* START_SNIPPET:slideshow-controls (INDEX:345) */
slideshow-controls {
    flex-shrink: 0;
    display: flex;
    justify-content: space-between;
    scrollbar-width: none;
    min-height: var(--minimum-touch-target);
    grid-area: controls;

    &[controls-on-media] {
      position: absolute;
      bottom: 0;
    }
  }

  slideshow-controls::-webkit-scrollbar {
    display: none;
  }

  slideshow-controls button {
    --color: rgb(var(--color-foreground-rgb) / var(--opacity-30));
    --color-active: var(--color-foreground);
    --color-hover: rgb(var(--color-foreground-rgb) / var(--opacity-50));

    display: inline-block;
    height: var(--minimum-touch-target);
    width: var(--minimum-touch-target);
    cursor: pointer;
  }

  slideshow-controls .icon {
    width: var(--icon-size-sm);
    height: var(--icon-size-xs);
  }

  slideshow-controls[pagination-position='center'] {
    align-items: center;
    justify-content: center;
  }

  slideshow-controls[pagination-position='center'][thumbnails] {
    width: 100%;
  }

  slideshow-controls[pagination-position='center']:not([controls-on-media], [thumbnails], [icons-on-media]) {
    justify-content: space-between;
  }

  @media screen and (min-width: 750px) {
    slideshow-controls[thumbnails]:is([pagination-position='right'], [pagination-position='left']) {
      display: flex;
      flex-direction: column;
      height: 0;
      min-height: 100%;

      .slideshow-controls__thumbnails-container {
        overflow: hidden auto;
      }

      &:not([controls-on-media]) {
        .slideshow-controls__thumbnails-container {
          position: sticky;
          top: var(--sticky-header-offset, 0);
        }

        .slideshow-controls__thumbnails {
          padding-block-start: var(--focus-outline-offset);
        }
      }
    }

    slideshow-controls:is([pagination-position='right'], [pagination-position='left']) .slideshow-controls__thumbnails {
      flex-direction: column;
    }

    slideshow-controls:not([controls-on-media]) {
      &:is([pagination-position='left'], [pagination-position='right']) .slideshow-controls__thumbnails {
        padding-block: var(--padding-2xs);
      }

      &[pagination-position='right'] .slideshow-controls__thumbnails {
        padding-inline-end: var(--slideshow-thumbnails-padding-inline, var(--focus-outline-offset));
      }

      &[pagination-position='left'] .slideshow-controls__thumbnails {
        padding-inline-start: var(--slideshow-thumbnails-padding-inline, var(--focus-outline-offset));
      }
    }
  }

  slideshow-controls:not([controls-on-media])[icons-on-media] {
    &[pagination-position='right'] {
      justify-content: flex-end;
    }

    &[pagination-position='left'] {
      justify-content: flex-start;
    }
  }

  slideshow-controls[controls-on-media] {
    z-index: var(--layer-raised);

    &:has(.slideshow-controls__dots, .slideshow-controls__counter) {
      --color-foreground: #fff;
      --color-foreground-rgb: var(--color-white-rgb);
    }

    &[pagination-position='right'] {
      right: 0;
    }

    &[pagination-position='left'] {
      left: 0;
    }

    &[pagination-position='center'] {
      width: 100%;
    }

    &:not([thumbnails])[pagination-position='left'] {
      width: fit-content;
      align-self: flex-start;
    }

    &:not([thumbnails])[pagination-position='right'] {
      width: fit-content;
      align-self: flex-end;
    }
  }

  .slideshow-controls__arrows {
    display: flex;
    justify-content: space-between;
    height: var(--minimum-touch-target);
    grid-area: arrows;

    button {
      padding: 0 var(--padding-xs);
    }
  }

  .slideshow-controls__dots,
  .slideshow-controls__counter {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    list-style: none;

    button {
      --color: rgb(var(--color-foreground-rgb) / var(--opacity-30));
      --color-active: var(--color-foreground);
      --color-hover: rgb(var(--color-foreground-rgb) / var(--opacity-50));
    }
  }

  slideshow-controls:has(.slideshow-controls__dots),
  slideshow-component[autoplay] slideshow-controls {
    mix-blend-mode: difference;
  }

  .slideshow-controls__dots {
    gap: 0.6rem;
    padding: var(--padding-sm) var(--padding-lg);
    border-radius: 3rem;
    overflow: hidden;

    button {
      --size: 0.56rem;

      display: flex;
      align-items: center;
      justify-content: center;
      width: calc(var(--size) * 2);
      height: calc(var(--size) * 2);
      margin: calc(var(--size) / -2);
      font-size: 0;
      border-radius: calc(var(--size));

      &::after {
        content: '';
        display: block;
        background-color: var(--color);
        height: var(--size);
        width: var(--size);
        border-radius: calc(var(--size) / 2);
        box-shadow: inset 0 0 0 1.5px hsl(0 0% 0% / 0.15);

        @supports not (view-timeline-axis: inline) {
          &[aria-selected='true'] {
            --color: var(--color-active);
          }
        }

        &:hover {
          --color: var(--color-hover);
        }
      }

      &[aria-selected='true'] {
        --color: var(--color-active);

        &::after {
          box-shadow: inset 0 0 0 1.5px hsl(0 0% 0% / 0.4);
        }
      }
    }
  }

  .slideshow-controls__dots,
  .slideshow-controls__counter {
    &:only-child {
      margin-inline: auto;
    }
  }

  .slideshow-controls__counter {
    color: var(--color-foreground);
    background-color: rgb(0 0 0 / 40%);
    width: auto;
    border-radius: 2rem;
    padding: 0.3rem var(--padding-sm);
    margin-inline: var(--margin-sm);
    backdrop-filter: blur(10px);
    font-variant-numeric: tabular-nums;
    font-size: var(--font-size--xs);

    .slash {
      color: rgb(var(--color-foreground-rgb) / var(--opacity-40));
      padding-inline: var(--padding-2xs);
      margin-block-start: -0.1rem;
    }
  }

  .slideshow-control[disabled] {
    opacity: 0.5;
    cursor: not-allowed;
  }

  /* Slideshow Thumbnails */
  .slideshow-controls__thumbnails-container {
    display: flex;
    width: 100%;
    max-height: 100%;
    overflow-x: scroll;
    scrollbar-width: none;
  }

  .slideshow-controls__thumbnails {
    display: inline-flex;
    padding-inline: var(--slideshow-thumbnails-padding-inline, var(--padding-sm));
    padding-block: var(--slideshow-thumbnails-padding-block, var(--padding-sm));
    gap: var(--gap-xs);
    margin-inline: auto;
    height: fit-content;

    .slideshow-control {
      border-radius: var(--thumbnail-radius, var(--media-radius));
      width: clamp(44px, 7vw, var(--thumbnail-width));
      height: auto;
      aspect-ratio: var(--aspect-ratio);

      img {
        height: 100%;
        object-fit: cover;
        border-radius: var(--thumbnail-radius, var(--media-radius));
      }

      &:is([aria-selected='true']) {
        outline: var(--focus-outline-width) solid currentcolor;
        outline-offset: calc(var(--focus-outline-offset) / 2);
        border: var(--style-border-width) solid rgb(var(--color-border-rgb) / var(--media-border-opacity));
      }
    }
  }

  .slideshow-controls__thumbnail {
    position: relative;
  }

  .slideshow-controls__thumbnail-badge {
    position: absolute;
    top: var(--padding-2xs);
    right: var(--padding-2xs);
    width: clamp(16px, 10%, 20px);
    height: clamp(16px, 10%, 20px);
    background-color: var(--color-background);
    border-radius: var(--style-border-radius-xs);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 1px rgb(var(--color-foreground-rgb) / var(--opacity-5));
  }

  .slideshow-controls__thumbnail-badge svg {
    width: 60%;
    height: 60%;
    fill: var(--color-foreground);
    opacity: 0.6;
  }

  /* Slideshow Play/Pause */
  .slideshow-control:is(.icon-pause, .icon-play) {
    color: var(--color-active);

    &:hover {
      color: var(--color-hover);
    }

    svg {
      display: none;
    }
  }

  slideshow-component:is([autoplay]) {
    &:is([paused]) {
      .icon-play > svg {
        display: block;
      }
    }

    &:not([paused]) {
      .icon-pause > svg {
        display: block;
      }
    }
  }
/* END_SNIPPET:slideshow-controls */

/* START_SNIPPET:slideshow-styles (INDEX:347) */
/*
   * Slideshow Component
   */
  slideshow-component {
    --cursor: grab;
    --slide-offset: 6px;

    position: relative;
    display: flex;
    flex-direction: column;
    timeline-scope: var(--slideshow-timeline);
  }

  .slideshow--single-media {
    --cursor: default;
  }

  a slideshow-component {
    --cursor: pointer;
  }

  slideshow-component [data-placeholder='true'] * {
    cursor: grab;
  }

  /*
   * Slideshow Slides
   */
  slideshow-slides {
    width: 100%;
    position: relative;
    display: flex;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-color: transparent transparent;
    scrollbar-width: none;
    gap: var(--slideshow-gap, 0);
    cursor: var(--cursor);
    min-height: var(--slide-min-height);
    align-items: var(--slideshow-align-items, normal);

    @media (prefers-reduced-motion) {
      scroll-behavior: auto;
    }

    &::-webkit-scrollbar {
      width: 0;
    }

    &::-webkit-scrollbar-track {
      background: transparent;
    }

    &::-webkit-scrollbar-thumb {
      background: transparent;
      border: none;
    }

    @media screen and (min-width: 750px) {
      min-height: var(--slide-min-height-desktop);
    }
  }

  .slideshow--stretch-content slideshow-slides > * {
    height: auto;
  }

  slideshow-component[disabled='true'] slideshow-slides {
    overflow: hidden;
  }

  /**
   * By default, slideshows have overflow: hidden (no compositor layer).
   * When the slideshow enters the viewport, JavaScript adds [in-viewport] which enables scrolling.
   */
  slideshow-component:not([in-viewport]) slideshow-slides {
    overflow: hidden;
  }

  slideshow-component[mobile-disabled] slideshow-slides {
    @media screen and (max-width: 749px) {
      overflow: hidden;
    }
  }

  slideshow-slides[gutters*='start'] {
    padding-inline-start: var(--gutter-slide-width, 0);
    scroll-padding-inline-start: var(--gutter-slide-width, 0);
  }

  slideshow-slides[gutters*='end'] {
    padding-inline-end: var(--gutter-slide-width, 0);
  }

  slideshow-component[dragging] {
    --cursor: grabbing;

    * {
      pointer-events: none;
    }
  }

  slideshow-component[dragging] slideshow-arrows {
    display: none;
  }

  slideshow-container {
    width: 100%;
    display: block;
    position: relative;
    grid-area: container;
    container-type: inline-size;
    background-color: var(--color-background);
  }

  /*
   * Be specific about HTML children structure to avoid targeting nested slideshows.
   * Ensure that the content is 'visible' while scrolling instead of 'auto' to avoid issues in Safari.
   */
  slideshow-component:is([dragging], [transitioning], :hover) > slideshow-container > slideshow-slides > slideshow-slide {
    content-visibility: visible;
  }

  @keyframes slide-reveal {
    0% {
      translate: calc(var(--slideshow-slide-offset, 6) * 1rem) 0;
      opacity: 0;
    }

    50% {
      opacity: 1;
    }

    100% {
      translate: calc(var(--slideshow-slide-offset, 6) * -1rem) 0;
      opacity: 0;
    }
  }

  /*
   * Slideshow Slide
   */
  slideshow-slide {
    position: relative;
    scroll-snap-align: center;
    width: var(--slide-width, 100%);
    max-height: 100%;
    flex-shrink: 0;
    view-timeline-name: var(--slideshow-timeline);
    view-timeline-axis: inline;
    content-visibility: auto;
    contain-intrinsic-size: auto none;
    border-radius: var(--corner-radius, 0);
    overflow: hidden;

    slideshow-component[actioned] &,
    &[aria-hidden='false'] {
      content-visibility: visible;
    }

    slideshow-component slideshow-slide:not([aria-hidden='false']) {
      content-visibility: hidden;
    }

    &[hidden]:not([reveal]) {
      display: none;
    }

    /* Make inactive slides appear clickable */
    &[aria-hidden='true'] {
      cursor: pointer;
    }
  }

  slideshow-slide .shopify-model-viewer-ui__controls-area.shopify-model-viewer-ui__controls-area {
    bottom: var(--padding-sm);
    right: var(--padding-sm);
  }

  slideshow-component.slideshow--content-below-media slideshow-slide {
    display: grid;
  }

  .slideshow--content-below-media slideshow-slide :is(.slide__image-container, .slide__content) {
    position: static;
  }

  .slideshow--content-below-media slideshow-slide {
    grid-template-rows: var(--grid-template-rows);

    @media screen and (min-width: 750px) {
      grid-template-rows: var(--grid-template-rows-desktop);
    }
  }
/* END_SNIPPET:slideshow-styles */

/* START_SNIPPET:sorting (INDEX:349) */
.sorting-filter__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-inline: var(--drawer-padding) 0;
    padding-block: var(--padding-sm);
    margin-inline-end: var(--margin-md);
    position: relative;
  }

  .sorting-filter__container .facets__label {
    font-size: var(--font-h4--size);
  }

  .sorting-filter__select-wrapper {
    display: flex;
    position: relative;
    border-radius: var(--variant-picker-button-radius);
    align-items: center;
    overflow: clip;
    padding: var(--padding-2xs) var(--padding-xs);
  }

  .sorting-filter__select-wrapper:has(:focus-visible) {
    outline: var(--focus-outline-width) solid currentcolor;
    outline-offset: var(--focus-outline-offset);
  }

  .sorting-filter__select-wrapper:has(:focus-visible) .sorting-filter__select {
    outline: none;
  }

  .sorting-filter__container .sorting-filter__select {
    appearance: none;
    border: 0;
    margin: 0;
    cursor: pointer;
    width: 100%;
    padding-inline-end: var(--icon-size-2xs);
    text-align: right;

    /* Needed for Safari */
    text-align-last: right;
  }

  .sorting-filter__select .icon {
    position: absolute;
    right: var(--padding-md);
    top: 50%;
    transform: translateY(-50%);
    width: var(--icon-size-2xs);
    height: var(--icon-size-2xs);
    pointer-events: none;
  }

  .sorting-filter {
    @media screen and (min-width: 750px) {
      z-index: var(--facets-upper-z-index);
    }
  }

  .sorting-filter__options {
    display: grid;
    grid-template-rows: 0fr;
    opacity: 0;
    position: absolute;
    top: 100%;
    right: 0;
    color: var(--color-foreground);
    z-index: var(--facets-upper-z-index);
    box-shadow: var(--shadow-popover);
    border: var(--style-border-popover);
    background-color: var(--color-background);
    border-radius: var(--style-border-radius-popover);
    width: max-content;
    min-width: var(--facets-panel-min-width);
    min-height: 0;

    transition: grid-template-rows var(--animation-speed-slow) var(--animation-easing),
      opacity var(--animation-speed-slow) var(--animation-easing);
  }

  details[open] .sorting-filter__options {
    opacity: 1;
    grid-template-rows: 1fr;
  }

  .sorting-filter__options-inner {
    display: flex;
    flex-direction: column;
    grid-row: 1 / span 2;
    gap: var(--gap-sm);
    padding: calc(var(--drawer-padding) / 2);
    color: var(--color-foreground);
    overflow: clip;
    scrollbar-width: none;
    -ms-overflow-style: none;

    &::-webkit-scrollbar {
      display: none;
    }

    @media screen and (min-width: 750px) {
      gap: 0;
    }
  }

  .sorting-filter__option {
    cursor: pointer;
    display: grid;
    grid-template-columns: var(--icon-size-sm) 1fr;
    gap: var(--margin-2xs);
    align-items: center;
    min-width: 180px;
    max-width: 16em;
    padding: var(--padding-2xs) calc(var(--drawer-padding) / 2) var(--padding-2xs) var(--padding-2xs);

    &:hover {
      border-radius: calc(var(--style-border-radius-popover) / 2);
      background-color: rgb(var(--color-foreground-rgb) / var(--opacity-8));
    }

    &:focus {
      border-radius: calc(var(--style-border-radius-popover) / 2);
    }
  }

  .sorting-filter__input {
    display: none;

    &:checked + .sorting-filter__checkmark + .sorting-filter__label {
      font-weight: 500;
    }
  }

  .sorting-filter__checkmark {
    visibility: hidden;
  }

  *:checked ~ .sorting-filter__checkmark {
    visibility: visible;
  }

  .sorting-filter__label {
    cursor: pointer;
    pointer-events: none;
  }

  .facets-toggle--no-filters .sorting-filter__select-wrapper {
    @media screen and (max-width: 749px) {
      padding-inline-start: 0;
    }
  }

  .facets-mobile-wrapper .sorting-filter .facets__panel {
    padding-inline: 0;
    position: relative;
  }

  .facets-mobile-wrapper .sorting-filter .facets__status {
    display: none;
  }

  .facets-mobile-wrapper:has(> :nth-child(2)) .sorting-filter .sorting-filter__options {
    left: 0;
    right: unset;
  }

  .facets-mobile-wrapper .sorting-filter .facets__label {
    margin-inline-end: var(--margin-2xs);
    font-size: var(--font-paragraph--size);
    color: var(--color-foreground-muted);
  }

  .facets-toggle .sorting-filter__container {
    @media screen and (max-width: 749px) {
      padding: 0;
    }
  }

  .facets-toggle .sorting-filter__container .facets__label {
    @media screen and (max-width: 749px) {
      display: none;
    }
  }

  .facets-toggle .sorting-filter::before {
    @media screen and (max-width: 749px) {
      display: none;
    }
  }

  .facets--drawer .sorting-filter {
    @media screen and (min-width: 750px) {
      display: none;
    }
  }
/* END_SNIPPET:sorting */

/* START_SNIPPET:text (INDEX:357) */
:root {
    --text-align-default: left;
  }

  [style*='--horizontal-alignment: center'] .text-block {
    --text-align-default: center;
  }

  [style*='--horizontal-alignment: flex-end'] .text-block {
    --text-align-default: right;
  }

  [style*='--horizontal-alignment: flex-start'] > .text-block {
    --text-align-default: left;
  }

  [style*='--horizontal-alignment: center'] > .text-block {
    --text-align-default: center;
  }

  [style*='--horizontal-alignment: flex-end'] > .text-block {
    --text-align-default: right;
  }

  .text-block {
    width: var(--width);
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: var(--horizontal-alignment);
  }

  .text-block > * {
    width: var(--width);
    max-inline-size: min(100%, var(--max-width, 100%));
    text-align: var(--text-align, var(--text-align-default));
    text-wrap: var(--text-wrap);
  }

  .text-block:not(.text-block--full-width).rte,
  .text-block:not(.text-block--full-width).paragraph {
    /* Safari doesn't support pretty, so fallback to balance */
    text-wrap: balance;
    text-wrap: pretty;
  }

  .text-block:not(.text-block--full-width):is(.h1, .h2, .h3, .h4, .h5, .h6) {
    text-wrap: balance;
  }

  /* Hide underline unless text is using paragraph styles. */
  .text-block:is(.h1, .h2, .h3, .h4, .h5, .h6) a {
    text-decoration-color: transparent;
  }

  .text-block h1,
  .text-block.h1 > * {
    margin-block: var(--font-h1--spacing);
  }

  .text-block h2,
  .text-block.h2 > * {
    margin-block: var(--font-h2--spacing);
  }

  .text-block h3,
  .text-block.h3 > * {
    margin-block: var(--font-h3--spacing);
  }

  .text-block h4,
  .text-block.h4 > * {
    margin-block: var(--font-h4--spacing);
  }

  .text-block h5,
  .text-block.h5 > * {
    margin-block: var(--font-h5--spacing);
  }

  .text-block h6,
  .text-block.h6 > * {
    margin-block: var(--font-h6--spacing);
  }

  .text-block p,
  .text-block.p > * {
    margin-block: var(--font-paragraph--spacing);
  }

  .text-block > *:first-child {
    margin-block-start: 0;
  }

  .text-block > *:last-child {
    margin-block-end: 0;
  }

  .text-block--align-center,
  .text-block--align-center > * {
    margin-inline: auto;
  }

  .text-block--align-right,
  .text-block--align-right > * {
    margin-inline-start: auto;
  }

  .text-block--background {
    background-color: var(--text-background-color);
    border-radius: var(--text-corner-radius);

    /* To avoid text being cropped when using a border radius we add a minimum padding. */
    padding-block-start: max(var(--text-padding), var(--padding-block-start, 0));
    padding-block-end: max(var(--text-padding), var(--padding-block-end, 0));
    padding-inline-start: max(var(--text-padding), var(--padding-inline-start, 0));
    padding-inline-end: max(var(--text-padding), var(--padding-inline-end, 0));
  }

  .custom-color,
  .custom-color > :is(h1, h2, h3, h4, h5, h6, p, *) {
    color: var(--color);
  }
/* END_SNIPPET:text */

/* START_SNIPPET:variant-main-picker (INDEX:366) */
/* Variant picker container styles - unique to main variant picker */
  .variant-picker {
    width: 100%;
  }

  .variant-picker__form {
    width: 100%;
  }

  .variant-picker[data-shopify-visual-preview] {
    min-width: 300px;
    padding-inline-start: max(4px, var(--padding-inline-start));
  }

  /* Dropdown variant option styles */
  .variant-option__select-wrapper {
    display: flex;
    position: relative;
    border: var(--style-border-width-inputs) solid var(--color-border);
    border-radius: var(--style-border-radius-inputs);
    align-items: center;
    margin-top: var(--margin-2xs);
    overflow: clip;
  }

  .variant-option__select-wrapper:has(.swatch) {
    --variant-picker-swatch-width: 20px;
    --variant-picker-swatch-height: 20px;
  }

  .variant-option__select-wrapper:hover {
    border-color: var(--color-variant-hover-border);
  }

  .variant-option__select:focus-visible {
    outline: var(--focus-outline-width) solid currentcolor;
    outline-offset: var(--focus-outline-offset);
  }

  .variant-option__select {
    padding-block: var(--padding-md);
    padding-inline: var(--padding-lg) calc(var(--padding-lg) + var(--icon-size-2xs));
    appearance: none;
    border: 0;
    width: 100%;
    margin: 0;
    cursor: pointer;
  }

  .variant-option__select-wrapper .icon {
    position: absolute;
    right: var(--padding-md);
    top: 50%;
    transform: translateY(-50%);
    width: var(--icon-size-2xs);
    height: var(--icon-size-2xs);
    pointer-events: none;
  }

  .variant-option__select--has-swatch {
    padding-inline-start: calc((2 * var(--padding-sm)) + var(--variant-picker-swatch-width));
  }

  .variant-option__select-wrapper .swatch {
    position: absolute;
    top: 50%;
    left: var(--padding-md);
    transform: translateY(-50%);
  }

  /* Variant picker alignment modifiers */
  .variant-picker--center,
  .variant-picker--center .variant-option {
    text-align: center;
    align-items: center;
    justify-content: center;
    width: 100%;
  }

  .variant-picker--right,
  .variant-picker--right .variant-option {
    text-align: right;
    justify-content: right;
  }
/* END_SNIPPET:variant-main-picker */

/* START_SNIPPET:variant-swatches (INDEX:367) */
swatches-variant-picker-component {
    display: flex;
    width: 100%;
    flex-direction: row;
    justify-content: var(--product-swatches-alignment-mobile);

    @media screen and (min-width: 750px) {
      justify-content: var(--product-swatches-alignment);
    }

    --overflow-list-padding-block: calc(
        var(--product-swatches-padding-block-start) + var(--focus-outline-offset) + var(--focus-outline-width)
      )
      calc(var(--product-swatches-padding-block-end) + var(--focus-outline-offset) + var(--focus-outline-width));
    --overflow-list-padding-inline: calc(
        var(--product-swatches-padding-inline-start) + var(--focus-outline-offset) + (1.5 * var(--focus-outline-width))
      )
      calc(var(--product-swatches-padding-inline-end) + var(--focus-outline-offset) + var(--focus-outline-width));

    overflow-list::part(list) {
      gap: var(--gap-sm);
    }
  }

  swatches-variant-picker-component overflow-list[disabled='true'] {
    --overflow-list-padding-block: 0px;
    margin-block-start: calc(
      var(--product-swatches-padding-block-start) + var(--focus-outline-offset) + var(--focus-outline-width)
    );
    margin-block-end: calc(
      var(--product-swatches-padding-block-end) + var(--focus-outline-offset) + var(--focus-outline-width)
    );
  }

  .hidden-swatches__count {
    display: flex;
    align-self: center;
    align-items: center;
    justify-content: center;
    color: rgb(var(--color-foreground-rgb) / var(--opacity-40-60));
    background-color: transparent;
    padding: 0;
    border: 0;
    border-radius: 0;

    &::before {
      /* This doesn't work in Safari without the counter-reset. https://stackoverflow.com/a/40179718 */
      counter-reset: overflow-count var(--overflow-count);
      content: '+' counter(overflow-count);
      line-height: 1;
      cursor: pointer;
    }
  }

  .hidden-swatches__count:hover {
    color: var(--color-foreground-rgb);
  }
/* END_SNIPPET:variant-swatches */

/* START_SNIPPET:video (INDEX:368) */
.video-interaction-hint {
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: var(--layer-flat);
  }

  .video-interaction-hint:hover {
    opacity: 1;
  }
/* END_SNIPPET:video */

/* START_SNIPPET:volume-pricing-info (INDEX:369) */
.volume-pricing-info {
    display: inline-flex;
  }

  .volume-pricing-info__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: var(--minimum-touch-target);
    height: var(--minimum-touch-target);
    color: var(--color-foreground-secondary);
    cursor: pointer;
    transition: color var(--animation-speed) var(--animation-easing);
    flex-shrink: 0;
  }

  .volume-pricing-info__button:hover {
    color: var(--color-foreground);
  }

  .volume-pricing-info__button .svg-wrapper {
    width: var(--icon-size-sm);
    height: var(--icon-size-sm);
  }

  .volume-pricing-info__button--with-label {
    width: auto;
    gap: var(--gap-sm);
  }

  .volume-pricing-info__popover {
    --volume-pricing-popover-max-width: 320px;
    --volume-pricing-popover-spacing: 8px;
    --volume-pricing-popover-viewport-margin: 16px;

    min-inline-size: 280px;
    max-inline-size: var(--volume-pricing-popover-max-width);
    background: var(--color-background);
    border: var(--style-border-popover);
    border-radius: var(--style-border-radius-popover, 0);
    box-shadow: var(--shadow-popover);
    overflow: hidden;
    padding: 0;
    margin: 0;
    transition-property: display, opacity, translate;
    transition-duration: 0.3s;
    transition-timing-function: var(--ease-out-quad);
    transition-behavior: allow-discrete;
    translate: 0 20px;
    opacity: 0;
  }

  /* Native anchor positioning for supported browsers */
  .volume-pricing-info__popover {
    inset: unset;
    top: calc(anchor(bottom) + var(--volume-pricing-popover-spacing));
    left: anchor(left);
  }

  @supports (position-try-fallbacks: --top-left) {
    .volume-pricing-info__popover {
      position-try-fallbacks: --top-left;
    }

    @position-try --top-left {
      top: calc(anchor(top) - var(--volume-pricing-popover-spacing));
      bottom: auto;
      transform: translateY(-100%);
    }
  }

  /* Fallback positioning using custom properties */
  @supports not (position-anchor: --volume-pricing-trigger) {
    .volume-pricing-info__popover {
      position: fixed;
      top: calc(var(--anchor-bottom) * 1px + var(--volume-pricing-popover-spacing));
      left: max(
        var(--volume-pricing-popover-viewport-margin),
        min(
          var(--anchor-left) * 1px,
          100vw - var(--volume-pricing-popover-max-width) - var(--volume-pricing-popover-viewport-margin)
        )
      );
    }
  }

  .volume-pricing-info__popover:popover-open {
    translate: 0 0;
    opacity: 1;
  }

  @starting-style {
    .volume-pricing-info__popover:popover-open {
      translate: 0 20px;
      opacity: 0;
    }
  }

  .volume-pricing-info__rules {
    display: flex;
    flex-direction: column;
    gap: var(--gap-2xs);
    padding: var(--padding-md);
    font-size: var(--font-size--xs);
  }

  .volume-pricing-info__rules,
  .volume-pricing-info__rules > span {
    color: rgb(var(--color-foreground-rgb) / var(--opacity-subdued-text));
  }

  .volume-pricing-info__table {
    display: flex;
    flex-direction: column;
  }

  .volume-pricing-info__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--padding-sm) var(--padding-md);
    font-size: var(--font-size--sm);
    background: var(--color-background);
    border-inline-start: 3px solid transparent;
    transition: border-color var(--animation-speed) var(--animation-easing);
  }

  .volume-pricing-info__row:nth-child(odd) {
    background: rgb(var(--color-foreground-rgb) / var(--opacity-5));
  }

  .volume-pricing-info__row--active {
    border-inline-start-color: var(--color-foreground);
    font-weight: var(--font-weight-medium);
  }

  .volume-pricing-info__quantity {
    color: var(--color-foreground);
  }

  .volume-pricing-info__price {
    display: flex;
    align-items: center;
    color: var(--color-foreground);
  }

  .volume-pricing-info__checkmark {
    display: none;
    width: var(--icon-size-sm);
    height: var(--icon-size-sm);
    color: var(--color-primary);
  }

  .volume-pricing-info__row--active .volume-pricing-info__checkmark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
/* END_SNIPPET:volume-pricing-info */