/** Shopify CDN: Minification failed

Line 20261:29 Expected ")" to end URL token
Line 20264:29 Expected ")" to end URL token
Line 20267:29 Expected ")" to end URL token
Line 20270:29 Expected ")" to end URL token
Line 20273:29 Expected ")" to end URL token

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:bcc-watermelon-band (INDEX:1) */
.bcc-band {
    width: 100%;
    background: var(--bcc-bg, #d23234);
    color: var(--bcc-color, #ffffff);
    font-family: var(--font-body--family, inherit);
  }

  .bcc-band__inner {
    max-width: 1100px;
    margin: 0 auto;
    padding-inline: clamp(1rem, 4vw, 2.5rem);
  }

  /* Editorial layout — homepage band, taller, two-column logo + content */
  .bcc-band--editorial .bcc-band__inner {
    padding-block: clamp(2rem, 5vw, 3rem);
    display: grid;
    grid-template-columns: minmax(120px, 200px) 1fr;
    gap: clamp(1.25rem, 4vw, 2.5rem);
    align-items: center;
  }

  /* Slim layout — collection page band, single-row strip */
  .bcc-band--slim .bcc-band__inner {
    padding-block: clamp(0.7rem, 1.6vw, 1rem);
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: clamp(0.75rem, 2vw, 1.5rem);
    align-items: center;
  }

  /* Mobile — both layouts collapse to centered single column */
  @media (max-width: 749px) {
    .bcc-band--editorial .bcc-band__inner,
    .bcc-band--slim .bcc-band__inner {
      grid-template-columns: 1fr;
      text-align: center;
      gap: 0.75rem;
    }

    .bcc-band__logo-wrap {
      justify-self: center;
    }

    .bcc-band--slim .bcc-band__inner {
      padding-block: 0.85rem;
    }
  }

  /* Logo */
  .bcc-band__logo-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .bcc-band__logo {
    display: block;
    width: 100%;
    height: auto;
    max-width: 200px;
    object-fit: contain;
    /* Black logo asset on light-pink band — no recolour filter needed. */
    filter: none;
  }

  .bcc-band--slim .bcc-band__logo {
    max-width: 70px;
  }

  @media (max-width: 749px) {
    .bcc-band--slim .bcc-band__logo {
      max-width: 90px;
    }
  }

  /* Body — vertical stack of eyebrow + heading + sub + ctas */
  .bcc-band__body {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    min-width: 0;
  }

  .bcc-band--slim .bcc-band__body {
    flex-direction: row;
    align-items: center;
    gap: 0.85rem;
    flex-wrap: wrap;
  }

  /* Eyebrow uses the band text colour at reduced opacity rather than a
     separate accent colour. The previous pink accent (#ffc1cd) sat on a
     pink-leaning red and didn't have enough contrast — white-at-72% gives
     the eyebrow a clear secondary tier under the heading while still
     reading on the brand-red background. */
  .bcc-band__eyebrow {
    margin: 0;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--bcc-color, #ffffff);
    opacity: 0.95;
  }

  .bcc-band--slim .bcc-band__eyebrow {
    display: none;
  }

  .bcc-band__heading {
    margin: 0;
    font-family: var(--font-primary--family, inherit);
    font-size: clamp(1.4rem, 3.4vw, 2rem);
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1.15;
    color: inherit;
  }

  .bcc-band--slim .bcc-band__heading {
    font-size: clamp(0.92rem, 1.6vw, 1.05rem);
    font-weight: 600;
    letter-spacing: 0.01em;
    line-height: 1.4;
  }

  /* Mobile-tailored heading swap. Default state hides the mobile-only
     string at all widths; the 749px breakpoint below flips visibility
     so each width gets the optimal length copy. Applies to both layouts
     so the slim collection-page band can run a shorter line on phones
     where the long campaign sentence wraps awkwardly. */
  .bcc-band__heading--mobile { display: none; }
  @media (max-width: 749px) {
    .bcc-band__heading--desktop { display: none; }
    .bcc-band__heading--mobile { display: block; }
  }

  .bcc-band__sub {
    margin: 0;
    font-size: 1rem;
    line-height: 1.55;
    opacity: 1;
    max-width: 60ch;
  }

  .bcc-band__sub p {
    margin: 0 0 0.5rem;
  }

  .bcc-band__sub p:last-child {
    margin-bottom: 0;
  }

  .bcc-band--slim .bcc-band__sub {
    display: none;
  }

  /* CTAs */
  .bcc-band__ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem 0.85rem;
    margin-top: 0.4rem;
  }

  .bcc-band--slim .bcc-band__ctas {
    margin-top: 0;
    margin-left: auto;
    flex-wrap: nowrap;
  }

  @media (max-width: 749px) {
    /* Slim body is flex-direction:row at desktop so headline + CTA sit
       on a single line. On mobile we collapse it to column so the
       heading and CTA each get their own centered line — matches the
       centered logo above and avoids the "headline centered, CTA
       left-aligned" wrap state. */
    .bcc-band--slim .bcc-band__body {
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 0.75rem;
    }

    .bcc-band--slim .bcc-band__ctas {
      margin-left: 0;
      justify-content: center;
    }

    /* Editorial layout collapses to a tighter, more decisive band on
       mobile: subhead and secondary CTA are dropped so the eyebrow +
       (mobile) heading + primary CTA carry the message. The full subhead
       is the kind of context shoppers want on desktop where there's
       horizontal room; on mobile the campaign page handles the long
       version, so the band acts more like a slim hero. */
    .bcc-band--editorial .bcc-band__sub,
    .bcc-band--editorial .bcc-band__btn--secondary {
      display: none;
    }

    .bcc-band--editorial .bcc-band__ctas {
      justify-content: center;
    }
  }

  /* Editorial system buttons — square, uppercase, letter-spaced.
     On the light-pink band: primary is black fill / white text;
     secondary is black outline / black text. */
  .bcc-band__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1.6rem;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-decoration: none;
    border-radius: 0;
    border: 2px solid #1a1a1a;
    transition: transform 200ms ease, background 200ms ease, color 200ms ease, border-color 200ms ease;
    white-space: nowrap;
    cursor: pointer;
  }

  .bcc-band--slim .bcc-band__btn {
    padding: 0.55rem 1.1rem;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
  }

  .bcc-band__btn--primary {
    background: #1a1a1a;
    color: #ffffff;
    border-color: #1a1a1a;
  }

  .bcc-band__btn--secondary {
    background: transparent;
    color: #1a1a1a;
    border-color: #1a1a1a;
  }

  @media (hover: hover) {
    .bcc-band__btn--primary:hover {
      background: transparent;
      color: #1a1a1a;
      border-color: #1a1a1a;
      transform: translateY(-2px);
    }
    .bcc-band__btn--secondary:hover {
      background: #1a1a1a;
      color: #ffffff;
      border-color: #1a1a1a;
      transform: translateY(-2px);
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .bcc-band__btn,
    .bcc-band__btn:hover {
      transition: none;
      transform: none;
    }
  }
/* END_SECTION:bcc-watermelon-band */

/* START_SECTION:blog-recipes-intro (INDEX:2) */
.recipes-shop {
    width: 100%;
  }

  .recipes-shop__inner {
    max-width: var(--page-width);
    margin: 0 auto;
    padding-inline: var(--page-margin);
  }

  .recipes-shop__head {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.75rem 1.5rem;
    margin-block-end: 1.25rem;
    padding-block-start: 1rem;
    border-block-start: 1px solid rgb(var(--color-foreground-rgb) / 0.1);
  }

  .recipes-shop__title {
    font-family: var(--font-primary--family);
    font-size: clamp(1.2rem, 1.8vw, 1.5rem);
    font-weight: 600;
    margin: 0;
    letter-spacing: -0.01em;
  }

  .recipes-shop__cta {
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    color: var(--color-primary, var(--color-foreground));
    transition: opacity 0.2s ease;
  }

  .recipes-shop__cta:hover {
    opacity: 0.7;
  }

  .recipes-shop__grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1rem;
  }

  @media (min-width: 1280px) {
    .recipes-shop__grid {
      grid-template-columns: repeat(6, minmax(0, 1fr));
    }
  }

  .recipes-shop__item {
    margin: 0;
  }

  .recipes-shop__card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    text-decoration: none;
    color: var(--color-foreground);
    padding: 0.75rem 0.5rem 1rem;
    border-radius: 12px;
    transition: transform 0.2s ease, background-color 0.2s ease;
  }

  .recipes-shop__card:hover {
    background-color: rgb(var(--color-foreground-rgb) / 0.03);
    transform: translateY(-2px);
  }

  .recipes-shop__card:focus-visible {
    outline: 2px solid var(--color-primary, currentColor);
    outline-offset: 2px;
  }

  .recipes-shop__img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    margin-block-end: 0.5rem;
  }

  .recipes-shop__name {
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.2;
  }

  .recipes-shop__price {
    margin-block-start: 0.15rem;
    font-size: 0.85rem;
    color: rgb(var(--color-foreground-rgb) / 0.65);
  }

  @media (prefers-reduced-motion: reduce) {
    .recipes-shop__card {
      transition: none;
    }

    .recipes-shop__card:hover {
      transform: none;
    }
  }
/* END_SECTION:blog-recipes-intro */

/* START_SECTION:collection-links (INDEX:7) */
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 (min-width: 749px) {
        &[reverse] {
          grid-template-areas: 'image text';
          grid-template-columns: var(--template-column-ratio) 1fr;
        }
      }

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

      @media (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 (max-width: 749px) {
      image-block {
        max-width: 100%;
      }
    }
  }
/* END_SECTION:collection-links */

/* START_SECTION:featured-blog-posts (INDEX:11) */
.featured-blog-posts h3 {
    text-transform: uppercase;
  }
/* END_SECTION:featured-blog-posts */

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

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

  /* Here I should maybe set the width to auto when the ratio is set to adapt */
  .featured-product-section .product-media-container.constrain-height {
    /* arbitrary offset value based on average theme spacing and header height */
    --viewport-offset: 400px;
    --constrained-min-height: var(--visual-preview--height, 80dvh);

    @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;
    }
  }
/* END_SECTION:featured-product */

/* START_SECTION:footer-utilities (INDEX:14) */
.footer-legal-notice {
    max-width: none;
    margin: 0 0 2px;
    width: 100%;
    text-align: left;
    font-size: 0.82rem;
    line-height: 1.45;
    color: rgb(var(--color-foreground-rgb) / 0.78);
    text-wrap: pretty;
    padding-top: 10px;
    border-top: 1px solid rgb(var(--color-foreground-rgb) / 0.06);
  }

  .footer-legal-notice a {
    color: inherit;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
    transition: text-underline-offset 150ms ease, color 150ms ease;
    /* WCAG 2.5.8 Target Size (minimum): expand hit area on dense legal line */
    display: inline-block;
    padding-block: 0.4rem;
    padding-inline: 0.15rem;
    margin-block: -0.4rem;
  }

  .footer-legal-notice a:hover {
    text-underline-offset: 3px;
    color: rgb(var(--color-foreground-rgb) / 1);
  }

  /* Group copyright and Terms and Policies inline on desktop */
  @media screen and (min-width: 750px) {
    .utilities:has(.footer-utilities__text:first-child:nth-last-child(2) + .footer-utilities__text:last-child) {
      grid-template-columns: auto auto 1fr;
      justify-content: start;
      column-gap: 20px;

      .footer-utilities__text:nth-child(2) {
        justify-self: start;
      }
    }
  }

  .utilities {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(8px, var(--gap), 14px);
    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;
    }

    @media screen and (min-width: 990px) {
      max-width: none;
      margin-inline: 0;
      width: 100%;
      padding-top: 4px;
    }
  }

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

  .utilities > * {
    text-align: center;
    text-wrap: pretty;
    width: 100%;

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

  .utilities > *:has(.shopify-follow-on-shop-button-view),
  .utilities > *:has(.shopify-follow-on-shop) {
    display: flex;
    justify-content: center;
    width: 100%;
  }

  @media screen and (min-width: 750px) {
    .utilities > *:has(.shopify-follow-on-shop-button-view),
    .utilities > *:has(.shopify-follow-on-shop) {
      justify-content: flex-end;
      justify-self: end;
      grid-column: 3;
    }
  }

  /* Dynamic positioning based on block order */
  @media screen and (min-width: 750px) {
    .utilities {
      position: relative;
    }

    /* Reset default positioning */
    .utilities > * {
      order: 0;
      margin-left: 0;
      margin-right: 0;
      position: static;
    }

    .utilities .footer-utilities__text {
      font-size: 0.79rem;
      line-height: 1.42;
    }

    .utilities .footer-utilities__icons {
      min-width: 120px;
    }

    /* Exactly 3 items cases: */
    /* A : A : B => A left, A left, B right */
    /* Example: Copyright and policy left, social right */
    .utilities:has(
        .footer-utilities__text:nth-child(1)
          + .footer-utilities__text:nth-child(2)
          + .footer-utilities__icons:nth-child(3)
      ) {
      grid-template-columns: auto auto 1fr;

      .footer-utilities__icons:nth-child(3) {
        justify-content: end;
      }
    }

    /* A : B : A => A left, B center, A right */
    /* Example: Policy left, Socials center, Copyright right */
    .utilities:has(
        .footer-utilities__text:nth-child(1)
          + .footer-utilities__icons:nth-child(2)
          + .footer-utilities__text:nth-child(3)
      ) {
      grid-template-columns: 1fr auto 1fr;

      .footer-utilities__icons:nth-child(2) {
        justify-self: center;
      }

      .footer-utilities__text:nth-child(3) {
        justify-self: end;
      }
    }

    /* B : A : A => B left, A right, A right */
    /* Example: Socials left, Policy right, Copyright right */
    .utilities:has(
        .footer-utilities__icons:nth-child(1)
          + .footer-utilities__text:nth-child(2)
          + .footer-utilities__text:nth-child(3)
      ) {
      grid-template-columns: 1fr auto auto;

      .footer-utilities__text:nth-child(3) {
        justify-content: end;
      }
    }

    /* Exactly 2 items cases: */
    /* A : A => A left, A left */
    /* Example: Copyright left, Policy left */
    .utilities:has(.footer-utilities__text:first-child:nth-last-child(2) + .footer-utilities__text:last-child) {
      grid-template-columns: auto auto;
      justify-content: space-between;

      .footer-utilities__text:nth-child(2) {
        justify-self: end;
      }
    }

    /* B : A => B left, A right */
    /* Example: Socials left, Policy right */
    .utilities:has(.footer-utilities__icons:first-child:nth-last-child(2) + .footer-utilities__text:last-child) {
      grid-template-columns: 1fr 1fr;

      .footer-utilities__text:nth-child(2) {
        justify-self: end;
      }
    }

    /* A : B => A left, B right */
    /* Example: Socials left, Policy right */
    .utilities:has(.footer-utilities__text:first-child:nth-last-child(2) + .footer-utilities__icons:last-child) {
      grid-template-columns: 1fr 1fr;

      .footer-utilities__icons:nth-child(2) {
        justify-self: end;
      }
    }

    /* Exactly 1 items cases: */
    /* A => A left */
    /* Example: Policy left */
    .utilities:has(.footer-utilities__text:first-child:nth-last-child(1)) {
      grid-template-columns: 1fr;
      justify-content: start;

      .footer-utilities__text:nth-child(1) {
        justify-self: start;
      }
    }

    /* B => B left */
    /* Example: Socials left */
    .utilities:has(.footer-utilities__icons:first-child:nth-last-child(1)) {
      grid-template-columns: 1fr;
      justify-content: start;

      .footer-utilities__icons:nth-child(1) {
        justify-self: start;
      }
    }
  }

  @media screen and (max-width: 749px) {
    .footer-legal-notice {
      font-size: 0.8rem;
      line-height: 1.4;
      margin-bottom: 6px;
    }

    .utilities {
      align-items: flex-start;
    }

    .utilities > * {
      text-align: left;
    }

    .utilities .footer-utilities__icons {
      justify-content: flex-start;
    }
  }

  @media screen and (min-width: 990px) {
    .utilities {
      gap: clamp(8px, var(--gap), 12px);
    }

    .utilities .footer-utilities__icons {
      justify-self: end;
      transform: translateY(-2px);
    }
  }

  /*
   * BCC sticky pre-order bar — minimal clearance below Follow on Shop (not a huge void).
   */
  @media screen and (max-width: 749px) {
    body:has(.bcc-sticky) .shopify-section.footer-utilities {
      padding-block-end: calc(76px + env(safe-area-inset-bottom, 0px)) !important;
    }
  }

  @media screen and (min-width: 750px) {
    body:has(.bcc-sticky) .shopify-section.footer-utilities {
      padding-block-end: calc(84px + env(safe-area-inset-bottom, 0px)) !important;
    }
  }
/* END_SECTION:footer-utilities */

/* START_SECTION:footer (INDEX:15) */
/* Optional subtle footer background */
  .footer-section--subtle-bg {
    position: relative;
  }

  .footer-section--subtle-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgb(var(--color-foreground-rgb) / 0.015);
    pointer-events: none;
    z-index: 0;
  }

  .footer-section--subtle-bg > * {
    position: relative;
    z-index: 1;
  }

  /* Mobile: Single column layout (base styles) */
  .footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(10px, var(--footer-gap), 18px);
    align-items: start;
  }

  /* Newsletter trust microcopy */
  .footer-content .email-signup__form::after {
    content: var(--email-microcopy);
    display: block;
    margin-top: 8px;
    font-size: 0.78rem;
    line-height: 1.4;
    color: rgb(var(--color-foreground-rgb) / 0.62);
    letter-spacing: 0.01em;
  }

  /* Social icons hover polish */
  .footer-content .social-icons__icon-wrapper a {
    transition: transform 150ms ease, opacity 150ms ease;
    display: inline-flex;
  }

  .footer-content .social-icons__icon-wrapper a:hover {
    transform: translateY(-1px);
    opacity: 0.85;
  }

  @media screen and (min-width: 750px) and (max-width: 989px) {
    .footer-content {
      grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
      grid-template-rows: auto auto auto;
      grid-auto-flow: row;
      column-gap: 40px;
      row-gap: 16px;
      max-width: none;
      margin-inline: 0;
    }

    /* Reset margins and alignment for all blocks on tablet */
    .footer-content > *:nth-child(n) {
      margin: 0;
      justify-self: start;
      align-self: start;
      text-align: left;
    }

    /* Col 1: logo -> brand text -> socials (stacked); five direct blocks only */
    .footer-content > *:nth-child(1) {
      grid-column: 1;
      grid-row: 1;
    }
    .footer-content > *:nth-child(2) {
      grid-column: 1;
      grid-row: 2;
    }
    .footer-content > *:nth-child(3) {
      grid-column: 1;
      grid-row: 3;
      margin-top: 4px;
    }

    /* Col 2: email signup -> nav menu (stacked) */
    .footer-content > *:nth-child(4) {
      grid-column: 2;
      grid-row: 1;
      width: 100%;
    }
    .footer-content > *:nth-child(5) {
      grid-column: 2;
      grid-row: 2;
      width: 100%;
      margin-top: 16px;
    }

    /* Tablet-specific heading sizes (quieter than desktop) */
    .footer-content > *:nth-child(4) .email-signup__heading,
    .footer-content > *:nth-child(4) :is(.h1, .h2, .h3),
    .footer-content > *:nth-child(5) .menu__heading {
      font-size: 1.1rem;
      line-height: 1.25;
      font-weight: 600;
      margin: 0 0 8px;
      padding-block: 0;
    }

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

    .footer-content .menu--accordion .menu__details {
      padding-inline: 0;
    }
  }

  @media screen and (min-width: 990px) {
    .footer-content {
      grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr) minmax(0, 1fr);
      grid-template-rows: auto auto 1fr auto;
      align-items: start;
      column-gap: clamp(24px, 4vw, 64px);
      row-gap: min(var(--footer-gap), 16px);
      width: 100%;
      max-width: none;
      margin-inline: 0;
    }

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

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

    /* Footer hierarchy: links left, trust center, accessibility right */
    .footer-content > *:has(.payment-icons),
    .footer-content > *:has(.shopify-follow-on-shop-button-view),
    .footer-content > *:has(.shopify-follow-on-shop) {
      justify-self: center;
      text-align: center;
    }

    .footer-content > *:has(.payment-icons) {
      max-width: 360px;
    }

    .footer-content > *:has(.shopify-follow-on-shop-button-view),
    .footer-content > *:has(.shopify-follow-on-shop) {
      margin-top: 0;
    }

    .footer-content > *:has(p a[href*='accessibility']) {
      justify-self: center;
      width: min(100%, 42rem);
      text-wrap: pretty;
      font-size: 0.86rem;
      line-height: 1.5;
      letter-spacing: 0.01em;
      border: 1px solid rgb(var(--color-foreground-rgb) / 0.55);
      border-radius: 0;
      padding: 12px 14px;
      background: transparent;
      color: rgb(var(--color-foreground-rgb) / 0.88);
    }

    /* Fixed 3-column mapping: five direct blocks (see Theme Editor order in section comment) */
    .footer-content > *:nth-child(1) { grid-column: 1; grid-row: 1; justify-self: start; align-self: start; }
    .footer-content > *:nth-child(2) { grid-column: 1; grid-row: 2; justify-self: start; align-self: start; text-align: left; }
    .footer-content > *:nth-child(3) { grid-column: 1; grid-row: 4; justify-self: start; align-self: end; text-align: left; }
    .footer-content > *:nth-child(4) { grid-column: 2; grid-row: 1 / span 4; justify-self: start; align-self: start; width: 100%; text-align: left; }
    .footer-content > *:nth-child(5) { grid-column: 3; grid-row: 1 / span 4; justify-self: start; align-self: start; text-align: left; }

    .footer-content > *:nth-child(3) .social-icons__wrapper {
      justify-content: flex-start;
      gap: 12px;
    }

    .footer-content > *:nth-child(3) .social-icons__icon-wrapper,
    .footer-content > *:nth-child(3) .social-icons__icon {
      width: 18px;
      height: 18px;
    }

    /* Vertical rhythm within column 1 */
    .footer-content > *:nth-child(1) {
      margin-bottom: -16px;
    }

    .footer-content > *:nth-child(2) {
      margin-top: 0;
    }

    .footer-content > *:nth-child(3) {
      margin-top: -4px;
      margin-bottom: 4px;
    }

    /* Baseline alignment for col 2 and 3 with col 1 logo top edge */
    .footer-content > *:nth-child(4),
    .footer-content > *:nth-child(5) {
      margin-top: -4px;
    }

    .footer-content > *:nth-child(4) .footer-signup-module--column {
      max-width: 100%;
      width: 100%;
    }

    /* Unified desktop column heading style */
    .footer-content > *:nth-child(5) .menu__heading {
      font-size: 1.05rem;
      line-height: 1.3;
      font-weight: 600;
      letter-spacing: 0;
      text-transform: none;
      margin: 0 0 8px;
      padding-block: 0;
      text-align: left;
      color: rgb(var(--color-foreground-rgb) / 0.95);
    }

    /* Col 2 left-align reset (flush with brand headlines) */
    .footer-content > *:nth-child(4),
    .footer-content > *:nth-child(4) .footer-signup-host {
      text-align: left;
      margin-inline-start: 0;
    }

    /* Nav link hover polish */
    .footer-content > *:nth-child(5) .menu__item a {
      position: relative;
      color: rgb(var(--color-foreground-rgb) / 0.92);
      transition: color var(--animation-values, 150ms ease);
    }

    .footer-content > *:nth-child(5) .menu__item a:hover {
      color: var(--pdp-brand-accent, rgb(var(--color-foreground-rgb) / 1));
      text-decoration: underline;
      text-underline-offset: 3px;
    }

    /* Focus polish for email signup input. Brand-red outline so the
       focus state ties back to the editorial system used elsewhere
       (FC heading, BCC band, PDP eyebrow, etc.) instead of generic
       foreground tone. Square the corners explicitly even on focus
       so the radius bump doesn't undo the squared input shape. */
    .footer-content .email-signup__input:focus-visible,
    .footer-content .email-signup__input--underline:focus-visible {
      outline: 2px solid #d23234;
      outline-offset: 2px;
      border-radius: 0;
    }
  }

  /* Clean up typography rhythm inside footer blocks */
  .footer-content .menu .menu__item a {
    line-height: 1.45;
  }

  .footer-content .menu .menu__heading {
    margin-bottom: 2px;
  }

  /* Remove divider/border treatment from footer nav menus */
  .footer-content .menu--dividers .menu__details {
    border-block-end: 0;
  }

  /* Enable accordion visuals for footer menu at all breakpoints */
  .footer-content .menu--accordion .menu__heading--empty {
    display: flex;
  }
  .footer-content .menu--accordion .menu__heading__accordion {
    display: contents;
  }
  .footer-content .menu--accordion .menu__heading__default {
    display: none;
  }
  .footer-content .menu--accordion summary {
    cursor: pointer;
    list-style: none;
  }
  .footer-content .menu--accordion summary::-webkit-details-marker {
    display: none;
  }
  .footer-content .menu--accordion details:not([open]) .details-content {
    display: none;
  }
  .footer-content .menu--accordion details[open] .details-content {
    margin-block-start: var(--spacing--size);
  }

  /* Two-column nav treatment for dense footer menus */
  .footer-content > *:has(.menu) .menu .details-content > ul {
    column-count: 1;
    column-gap: 20px;
  }

  .footer-content > *:has(.menu) .menu .menu__item {
    break-inside: avoid;
  }

  @media screen and (min-width: 750px) {
    .footer-content > *:has(.menu) .menu .details-content > ul {
      column-count: 2;
      column-gap: 28px;
    }
  }

  @media screen and (min-width: 990px) {
    .footer-content .menu .menu__item a {
      font-size: 0.98rem;
      line-height: 1.42;
    }

    .footer-content > *:nth-child(5) .menu__item + .menu__item {
      margin-block-start: 6px;
    }

    /* Keep trust content as a cohesive middle/right cluster */
    .footer-content > *:has(.payment-icons) {
      align-self: end;
    }

    .footer-content > *:has(.shopify-follow-on-shop-button-view),
    .footer-content > *:has(.shopify-follow-on-shop) {
      align-self: center;
    }

    .footer-content > *:has(p a[href*='accessibility']) {
      align-self: start;
    }
  }

  /* Always place accessibility/legal notice directly above utilities */
  .footer-content > *:has(p a[href*='accessibility']) {
    display: none;
  }

  .footer-content .payment-icons__list {
    justify-content: center;
    gap: 8px;
  }

  @media screen and (min-width: 990px) {
    .footer-content .payment-icons__list {
      gap: 7px;
    }
  }

  .footer-content .shopify-follow-on-shop-button-view {
    margin-inline: auto;
  }

  /* Trust/payment duplication removed from footer by request */
  .footer-content > *:has(.payment-icons),
  .footer-content > *:has(.shopify-follow-on-shop-button-view),
  .footer-content > *:has(.shopify-follow-on-shop) {
    display: none;
  }

  .footer-content a[href*='accessibility'] {
    text-underline-offset: 2px;
  }

  .footer-content > *:has(p a[href*='accessibility']) p {
    margin: 0;
    max-width: 56ch;
    font-weight: 500;
  }

  @media screen and (max-width: 989px) {
    .footer-content > *:has(.payment-icons),
    .footer-content > *:has(.shopify-follow-on-shop-button-view),
    .footer-content > *:has(.shopify-follow-on-shop),
    .footer-content > *:has(p a[href*='accessibility']) {
      text-align: left;
    }

    .footer-content .payment-icons__list {
      justify-content: flex-start;
      gap: 6px;
    }

    .footer-content > *:has(p a[href*='accessibility']) {
      width: 100%;
      max-width: 100%;
      font-size: 0.82rem;
      line-height: 1.45;
      padding: 10px 12px;
    }
  }

  /* Mobile-only proportion tune */
  @media screen and (max-width: 749px) {
    .footer-content {
      gap: 14px;
    }

    .footer-content .logo-block {
      max-width: 100px;
    }

    .footer-content .logo-block__image {
      width: 100%;
      height: auto;
    }

    .footer-content :is(h1, h2, h3, .h1, .h2, .h3, .text-block.h1, .text-block.h2, .text-block.h3) {
      font-size: 1.35rem;
      line-height: 1.2;
      letter-spacing: -0.01em;
    }

    .footer-content .email-signup__heading,
    .footer-content > *:nth-child(4) :is(.h1, .h2, .h3) {
      font-size: 1.1rem;
      line-height: 1.25;
      margin: 0 0 6px;
      padding-block: 0;
    }

    .footer-content .menu .menu__heading {
      font-size: 1.1rem;
      line-height: 1.25;
      letter-spacing: 0;
    }

    .footer-content .social-icons__wrapper {
      justify-content: flex-start;
      gap: 12px;
    }

    .footer-content .social-icons__icon-wrapper,
    .footer-content .social-icons__icon {
      width: 20px;
      height: 20px;
    }

    .footer-content > *:has(.footer-signup-host) {
      margin-top: 4px;
    }

    .footer-content .footer-signup-module {
      width: 100%;
    }

    .footer-content > *:nth-child(n) {
      margin-top: 0;
      margin-bottom: 0;
    }
  }
/* END_SECTION:footer */

/* START_SECTION:fridge-club (INDEX:16) */
.fridge-club__inner {
    max-width: var(--page-width);
    margin: 0 auto;
    padding-inline: var(--page-margin);
  }

  .fridge-club__hero {
    text-align: center;
    max-width: 46rem;
    margin: 0 auto 2.5rem;
  }

  .fridge-club__eyebrow {
    margin: 0 0 0.5rem;
    color: #d23234;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
  }

  .fridge-club__heading {
    margin: 0 0 0.75rem;
    font-family: var(--font-primary--family, inherit);
    font-size: clamp(2rem, 5vw, 3.25rem);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.015em;
  }

  .fridge-club__subheading {
    margin: 0 auto;
    max-width: 40ch;
    font-size: 1.05rem;
    color: rgb(var(--color-foreground-rgb) / 0.72);
  }

  .fridge-club__hero-actions {
    margin: 1.5rem 0 0.5rem;
  }

  .fridge-club__cta.button {
    border-radius: var(--style-border-radius-buttons-primary);
    background: #d23234;
    color: #fff;
    border: var(--style-border-width) solid #d23234;
    font-weight: var(--font-weight-bold);
    text-transform: none;
    letter-spacing: normal;
    padding-inline: 2rem;
  }

  .fridge-club__h2 {
    text-align: center;
    font-family: var(--font-primary--family, inherit);
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 700;
    margin: 0 0 1.5rem;
  }

  .fridge-club__how {
    margin: 0 0 3rem;
  }

  .fridge-club__steps {
    list-style: none;
    margin: 0 auto;
    padding: 0;
    max-width: 52rem;
    display: grid;
    gap: 0.75rem;
  }

  .fridge-club__step {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.85rem 1.1rem;
    border: 1px solid rgb(var(--color-foreground-rgb) / 0.1);
    border-radius: 12px;
    font-size: 1rem;
  }

  .fridge-club__step-num {
    flex-shrink: 0;
    width: 1.85rem;
    height: 1.85rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #d23234;
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
  }

  .fridge-club__plans {
    list-style: none;
    margin: 0;
    padding: 0.75rem 0 0;
    display: grid;
    gap: 1.25rem;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    align-items: stretch;
  }

  .fridge-club__plans[data-count='1'] {
    grid-template-columns: minmax(0, 400px);
    justify-content: center;
  }

  .fridge-club__plan {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 1.75rem 1.5rem 1.5rem;
    border: 1.5px solid rgb(var(--color-foreground-rgb) / 0.12);
    border-radius: 18px;
    background: var(--color-background);
    text-align: center;
  }

  .fridge-club__plan--featured {
    border-color: #d23234;
    box-shadow: 0 12px 34px rgb(210 50 52 / 0.12);
  }

  .fridge-club__badge {
    position: absolute;
    top: -0.75rem;
    left: 50%;
    transform: translateX(-50%);
    padding: 4px 12px;
    border-radius: 999px;
    background: rgb(var(--color-foreground-rgb) / 0.85);
    color: var(--color-background);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    white-space: nowrap;
  }

  .fridge-club__badge--featured {
    background: #d23234;
    color: #fff;
  }

  .fridge-club__plan-media {
    aspect-ratio: 1 / 1;
    margin: 0.25rem auto 0.75rem;
    max-width: 180px;
  }

  .fridge-club__plan-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .fridge-club__plan-title {
    margin: 0;
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.2;
  }

  .fridge-club__plan-subtitle {
    margin: 0.25rem 0 0;
    font-size: 0.85rem;
    color: rgb(var(--color-foreground-rgb) / 0.65);
  }

  .fridge-club__plan-price {
    margin: 0.6rem 0 0.25rem;
    font-size: 1.4rem;
    font-weight: 800;
  }

  .fridge-club__plan-cadence {
    font-size: 0.85rem;
    font-weight: 600;
    color: rgb(var(--color-foreground-rgb) / 0.6);
  }

  .fridge-club__pref-label {
    display: block;
    text-align: left;
    margin: 0.85rem 0;
    font-size: 0.82rem;
    font-weight: 600;
  }

  .fridge-club__pref {
    margin-top: 0.3rem;
    width: 100%;
    padding: 0.6rem 0.7rem;
    border: 1px solid rgb(var(--color-foreground-rgb) / 0.25);
    border-radius: 10px;
    background: var(--color-background);
    font-size: 0.9rem;
  }

  .fridge-club__add.button {
    width: 100%;
    margin-top: auto;
    border-radius: var(--style-border-radius-buttons-primary);
    text-transform: none;
    letter-spacing: normal;
    font-weight: var(--font-weight-bold);
  }

  .fridge-club__add--featured.button {
    background: #d23234;
    color: #fff;
    border: var(--style-border-width) solid #d23234;
  }

  .fridge-club__add.button[aria-busy='true'] {
    opacity: 0.7;
    pointer-events: none;
  }

  .fridge-club__plan-note {
    margin: 0.5rem 0 0;
    font-size: 0.78rem;
    color: rgb(var(--color-foreground-rgb) / 0.6);
  }

  .fridge-club__trust {
    list-style: none;
    margin: 2.5rem auto 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem 1.5rem;
    max-width: 52rem;
  }

  .fridge-club__trust-item {
    font-size: 0.9rem;
    font-weight: 600;
    color: rgb(var(--color-foreground-rgb) / 0.78);
  }

  .fridge-club__faq {
    margin: 3rem auto 0;
    max-width: 46rem;
  }

  .fridge-club__faq-item {
    border-bottom: 1px solid rgb(var(--color-foreground-rgb) / 0.12);
    padding: 0.25rem 0;
  }

  .fridge-club__faq-item > summary {
    cursor: pointer;
    list-style: none;
    padding: 0.9rem 0;
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .fridge-club__faq-item > summary::-webkit-details-marker { display: none; }
  .fridge-club__faq-item > summary::after { content: '+'; font-weight: 700; }
  .fridge-club__faq-item[open] > summary::after { content: '–'; }

  .fridge-club__faq-answer {
    padding: 0 0 1rem;
    color: rgb(var(--color-foreground-rgb) / 0.78);
    line-height: 1.55;
  }

  .fridge-club__setup {
    padding: 1.5rem;
    border: 1px dashed rgb(var(--color-foreground-rgb) / 0.3);
    border-radius: 12px;
    text-align: center;
    color: rgb(var(--color-foreground-rgb) / 0.7);
  }
/* END_SECTION:fridge-club */

/* START_SECTION:fridge-fill (INDEX:17) */
.fridge-fill {
    width: 100%;
  }

  .fridge-fill__inner {
    max-width: var(--page-width);
    margin: 0 auto;
    padding-inline: var(--page-margin);
  }

  .fridge-fill__head {
    text-align: center;
    margin-bottom: 1.75rem;
  }

  .fridge-fill__eyebrow {
    margin: 0 0 0.5rem;
    color: #d23234;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
  }

  .fridge-fill__heading {
    margin: 0 0 0.5rem;
    font-family: var(--font-primary--family, inherit);
    font-size: clamp(1.7rem, 3.5vw, 2.5rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.01em;
  }

  .fridge-fill__sub {
    margin: 0 auto;
    max-width: 46ch;
    color: rgb(var(--color-foreground-rgb) / 0.7);
    font-size: 1rem;
  }

  .fridge-fill__grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 1.25rem;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    align-items: stretch;
  }

  .fridge-fill__grid[data-count='1'] {
    grid-template-columns: minmax(0, 380px);
    justify-content: center;
  }

  .fridge-fill__item {
    margin: 0;
    display: flex;
  }

  .fridge-fill__card {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 1.5rem 1.25rem 1.25rem;
    border: 1.5px solid rgb(var(--color-foreground-rgb) / 0.12);
    border-radius: 18px;
    background: var(--color-background);
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
  }

  .fridge-fill__item--featured .fridge-fill__card {
    border-color: #d23234;
    box-shadow: 0 12px 34px rgb(210 50 52 / 0.12);
  }

  @media (hover: hover) {
    .fridge-fill__card:hover {
      transform: translateY(-3px);
      box-shadow: 0 14px 36px rgb(var(--color-foreground-rgb) / 0.1);
    }
  }

  .fridge-fill__badge {
    position: absolute;
    top: -0.75rem;
    left: 50%;
    transform: translateX(-50%);
    padding: 4px 12px;
    border-radius: 999px;
    background: rgb(var(--color-foreground-rgb) / 0.85);
    color: var(--color-background);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    white-space: nowrap;
  }

  .fridge-fill__badge--featured {
    background: #d23234;
    color: #fff;
  }

  .fridge-fill__media {
    display: block;
    aspect-ratio: 1 / 1;
    margin: 0.25rem 0 0.75rem;
  }

  .fridge-fill__img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .fridge-fill__body {
    flex: 1 1 auto;
    text-align: center;
    margin-bottom: 1rem;
  }

  .fridge-fill__title {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.2;
  }

  .fridge-fill__subtitle {
    margin: 0.25rem 0 0;
    font-size: 0.85rem;
    color: rgb(var(--color-foreground-rgb) / 0.65);
  }

  .fridge-fill__price-row {
    margin-top: 0.6rem;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
  }

  .fridge-fill__price {
    font-size: 1.25rem;
    font-weight: 800;
  }

  .fridge-fill__compare {
    font-size: 0.95rem;
    color: rgb(var(--color-foreground-rgb) / 0.5);
    text-decoration: line-through;
  }

  .fridge-fill__value {
    margin: 0.3rem 0 0;
    font-size: 0.82rem;
    font-weight: 600;
    color: #d23234;
  }

  .fridge-fill__add.button {
    width: 100%;
    border-radius: var(--style-border-radius-buttons-primary);
    text-transform: none;
    letter-spacing: normal;
    font-weight: var(--font-weight-bold);
  }

  .fridge-fill__add--featured.button {
    background: #d23234;
    color: #fff;
    border: var(--style-border-width) solid #d23234;
  }

  .fridge-fill__add.button[aria-busy='true'] {
    opacity: 0.7;
    pointer-events: none;
  }

  .fridge-fill__footnote {
    margin: 1.5rem auto 0;
    text-align: center;
    max-width: 52ch;
    font-size: 0.85rem;
    color: rgb(var(--color-foreground-rgb) / 0.62);
  }

  .fridge-fill__setup {
    padding: 1.5rem;
    border: 1px dashed rgb(var(--color-foreground-rgb) / 0.3);
    border-radius: 12px;
    text-align: center;
    color: rgb(var(--color-foreground-rgb) / 0.7);
  }

  @media (prefers-reduced-motion: reduce) {
    .fridge-fill__card {
      transition: none;
    }
    .fridge-fill__card:hover {
      transform: none;
    }
  }
/* END_SECTION:fridge-fill */

/* START_SECTION:header-announcements (INDEX:18) */
.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;

    &[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:19) */
body {
    --header-height: 0px;
    --header-group-height: var(--header-height);
    --transparent-header-offset-boolean: 0; /* stylelint-disable-line declaration-property-value-disallowed-list */
  }

  body:has(> #header-group > header) {
    --header-height: 60px;
  }

  body:has(> #header-group:empty) {
    --header-group-height: 0px;
  }

  .header[transparent] {
    --language-button-background-color: transparent;
    --language-button-border-color: transparent;

    /* used to apply transparency to .header__row, will only ever be transparent or unset */
    --header-bg-color: transparent;

    /* 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;

    /* transparent color scheme on .header should never apply its background color */
    background-color: transparent;
    z-index: var(--layer-overlay);

    &[transparent='not-sticky'][data-sticky-state='active'],
    /* Only show opaque background when hovering over menu items with children (mega menu)
       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[aria-haspopup]:is(:hover, [aria-expanded='true'], [data-animating])),
    &:has(.menu-list__list-item[slot='overflow'] .menu-list__link:is(:hover, [aria-expanded='true'], [data-animating])) {
      --header-logo-display: unset;
      --header-logo-inverse-display: unset;
      --header-bg-color: unset;
      --color-foreground: inherit;
      --color-foreground-rgb: inherit;
      --color-background: inherit;
      --color-background-rgb: inherit;
      --color-border: inherit;
      --color-border-rgb: inherit;

      .header__row {
        /* Faster transition for "in" animation */
        transition: color var(--animation-values-fast), border-color var(--animation-values-fast),
          background-color var(--animation-values-fast);
      }
    }

    .header__row {
      /* Slower transition for "out" animation */
      transition: color var(--animation-values-slow), border-color var(--animation-values-slow),
        background-color var(--animation-values-slow);
    }
  }

  :is(.header[transparent]:not([data-sticky-state='active']), .header[transparent='always'][data-sticky-state='active'])
    .header__row:not(
      :has(
          .mega-menu__list:hover,
          .menu-list__link[aria-haspopup]:is(:hover, [aria-expanded='true'], [data-animating]),
          .menu-list__list-item[slot='overflow'] .menu-list__link:is(:hover, [aria-expanded='true'], [data-animating])
        )
    ) {
    /* while transparent, header-row ignores its color-scheme settings, pull from the header-component */
    --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--inherit-color-scheme-on-menu-open:has(.mega-menu__list:hover) .header__row,
  .header--inherit-color-scheme-on-menu-open:has(
      .menu-list__link[aria-haspopup]:is(:hover, [aria-expanded='true'], [data-animating])
    )
    .header__row,
  .header--inherit-color-scheme-on-menu-open:has(
      .menu-list__list-item[slot='overflow'] .menu-list__link:is(:hover, [aria-expanded='true'], [data-animating])
    )
    .header__row {
    --color-foreground: inherit;
    --color-foreground-rgb: inherit;
    --color-background: inherit;
    --color-background-rgb: inherit;
    --color-border: inherit;
    --color-border-rgb: inherit;
  }

  .header-section {
    position: relative;
  }

  #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;
  }

  .header[data-sticky-state='idle'],
  .header[data-sticky-state='active'][data-animating] {
    opacity: 0;
  }

  .header__row {
    position: relative;

    /* will default to bg from its color scheme unless --header-bg-color is transparent */
    background-color: var(--header-bg-color, var(--color-background));
  }

  .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__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;
    }
  }

  @media screen and (min-width: 750px) and (max-width: 1199px) {
    .header__columns {
      grid-gap: var(--gap-md);
    }

    .header__column--left,
    .header__column--center,
    .header__column--right {
      gap: var(--gap-md);
    }
  }

  .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(.account-actions)) .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(.dropdown-localization__button:hover),
    .header__column:has(.header__icon--menu:hover) {
      header-menu:not(:hover),
      .header-actions__action:not(:hover),
      .dropdown-localization__button: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,
  .dropdown-localization__button,
  .header__icon--menu {
    transition: opacity var(--animation-speed) var(--animation-easing);
  }

  /* Extend hover area through padding to prevent flickering on actual menu items */
  .menu-list__list-item:where(:not([slot='overflow'])) > .menu-list__link[aria-haspopup],
  .menu-list__list-item:where(:not([slot='overflow'])) > .menu-list__link,
  .menu-list__list-item:where(:not([slot='overflow'])) > button.menu-list__link {
    margin-block: calc(-2 * var(--header-padding));
    padding-block: calc(2 * var(--header-padding));
    margin-inline: calc(-1 * var(--gap-xl) / 2);
    padding-inline: calc(var(--gap-xl) / 2);
  }

  /* Set header paddings based on height setting */
  .header {
    --header-padding: var(--padding-sm);
    --font-paragraph--line-height: 1;
  }

  .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);
    }
  }
/* END_SECTION:header */

/* START_SECTION:hero (INDEX:20) */
.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-wrapper {
    position: absolute;
    inset: 0;
    display: grid;
    grid-column: 1 / -1;
    grid-template-columns: repeat(var(--hero-media-count, 1), 1fr);
  }

  .hero--auto .hero__image,
  .hero--auto .hero__video {
    aspect-ratio: var(--hero-media-aspect-ratio);
  }

  .hero--no-blocks-auto-height {
    :is(.hero__image, .hero__video) {
      width: 100%;
      aspect-ratio: auto;
    }

    .hero__media-wrapper {
      /* When there are no blocks and the height is auto, allow the image to appear. */
      position: relative;
    }
  }

  .hero__image,
  .hero__video,
  .hero__video-poster {
    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__image--mobile,
  .hero__video--mobile,
  .hero__video-wrapper--mobile {
    display: none;
  }

  .hero__image--desktop,
  .hero__video--desktop,
  .hero__video-wrapper--desktop {
    display: block;
  }

  @media screen and (max-width: 749px) {
    .hero__image--desktop,
    .hero__video--desktop,
    .hero__video-wrapper--desktop {
      display: none;
    }

    .hero__image--mobile,
    .hero__video--mobile,
    .hero__video-wrapper--mobile {
      display: block;
    }

    .hero__media-wrapper {
      grid-template-columns: repeat(var(--hero-media-count-mobile, 1), 1fr);
    }

    /* Mobile stacking */
    .hero--stack-mobile .hero__media-wrapper {
      grid-template-columns: 1fr;
      grid-template-rows: repeat(var(--hero-media-count-mobile, 1), calc(100% / var(--hero-media-count-mobile, 1)));
    }
  }

  .hero__video-wrapper--desktop {
    position: relative;
  }

  .hero__video-poster--desktop {
    position: absolute;
  }

  .hero__link {
    position: absolute;
    inset: 0;
    grid-column: 1 / -1;
  }

  .hero__media-wrapper,
  .hero__content-wrapper {
    pointer-events: none;

    :is(a, button, input, textarea, select) {
      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:home-bcc-quick-links (INDEX:21) */
.bcc-quick-links {
    width: 100%;
    background: var(--bql-bg, #febed2);
    color: #1a1a1a;
    border-block-end: 1px solid rgb(26 26 26 / 0.08);
  }

  .bcc-quick-links__inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 4vw, 2.5rem) clamp(1.1rem, 2.5vw, 1.35rem);
    display: grid;
    grid-template-columns: minmax(120px, 200px) 1fr;
    gap: clamp(1.25rem, 4vw, 2.5rem);
    align-items: stretch;
    border-block-start: 1px solid rgb(26 26 26 / 0.14);
  }

  .bcc-quick-links__spacer {
    display: block;
  }

  .bcc-quick-links__content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.85rem 1rem;
    min-width: 0;
    padding-block-start: 0.9rem;
  }

  .bcc-quick-links__product--mobile {
    display: none;
  }

  .bcc-quick-links__product--desktop {
    display: none;
    align-items: center;
    gap: 0.75rem;
    min-width: 0;
    flex: 1 1 16rem;
    max-width: 28rem;
    padding: 0.5rem 0.85rem 0.5rem 0.5rem;
    background: rgb(255 255 255 / 0.72);
    border: 1px solid rgb(26 26 26 / 0.12);
    text-decoration: none;
    color: inherit;
    transition:
      background 180ms ease,
      border-color 180ms ease,
      transform 180ms ease,
      box-shadow 180ms ease;
  }

  @media (hover: hover) {
    .bcc-quick-links__product--desktop:hover {
      background: #fff;
      border-color: rgb(26 26 26 / 0.22);
      box-shadow: 0 4px 14px rgb(26 26 26 / 0.08);
      transform: translateY(-1px);
    }
  }

  .bcc-quick-links__thumb {
    flex: 0 0 3.25rem;
    width: 3.25rem;
    height: 3.25rem;
    border-radius: 50%;
    overflow: hidden;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgb(26 26 26 / 0.08);
  }

  .bcc-quick-links__thumb-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
  }

  .bcc-quick-links__product-copy {
    display: flex;
    flex-direction: column;
    gap: 0.12rem;
    min-width: 0;
    text-align: left;
  }

  .bcc-quick-links__product-title {
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.01em;
  }

  .bcc-quick-links__product-meta {
    font-size: 0.78rem;
    font-weight: 600;
    line-height: 1.3;
    color: rgb(26 26 26 / 0.72);
  }

  .bcc-quick-links__product-cta {
    flex: 0 0 auto;
    margin-inline-start: auto;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--bql-brand, #d23234);
    line-height: 1;
  }

  .bcc-quick-links__links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 0.5rem;
    flex: 1 1 12rem;
  }

  .bcc-quick-links__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.25rem;
    padding: 0.4rem 0.9rem;
    font-size: 0.84rem;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
    letter-spacing: 0.02em;
    background: rgb(255 255 255 / 0.55);
    border: 1px solid rgb(26 26 26 / 0.14);
    border-radius: 999px;
    white-space: nowrap;
    line-height: 1.2;
    transition:
      background 160ms ease,
      border-color 160ms ease,
      color 160ms ease,
      transform 160ms ease,
      box-shadow 160ms ease;
  }

  .bcc-quick-links__link-text {
    display: inline;
  }

  .bcc-quick-links__link-text--mobile {
    display: none;
  }

  @media (hover: hover) {
    .bcc-quick-links__link:hover {
      background: #fff;
      border-color: rgb(26 26 26 / 0.22);
      color: var(--bql-brand, #d23234);
      box-shadow: 0 2px 10px rgb(26 26 26 / 0.06);
      transform: translateY(-1px);
    }
  }

  /* Desktop: band owns pre-order; row is ingredients + campaign links only */
  @media (min-width: 750px) {
    .bcc-quick-links__content {
      justify-content: flex-start;
    }

    .bcc-quick-links__links {
      flex: none;
      width: 100%;
      justify-content: flex-start;
    }
  }

  @media (max-width: 749px) {
    .bcc-quick-links__inner {
      grid-template-columns: 1fr;
      gap: 0;
      padding-inline: 1rem;
      padding-block-end: 0.85rem;
    }

    .bcc-quick-links__spacer {
      display: none;
    }

    .bcc-quick-links__content {
      flex-direction: column;
      align-items: stretch;
      justify-content: flex-start;
      flex-wrap: nowrap;
      gap: 0.6rem;
      padding-block-start: 0.55rem;
    }

    .bcc-quick-links__product--desktop {
      display: none;
    }

    .bcc-quick-links__product--mobile {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.35rem;
      width: 100%;
      min-height: 3.25rem;
      padding: 0.55rem 0.9rem;
      background: rgb(255 255 255 / 0.55);
      border: 1px solid rgb(26 26 26 / 0.14);
      border-radius: 0;
      text-decoration: none;
      color: #1a1a1a;
      font-size: 0.86rem;
      font-weight: 700;
      letter-spacing: 0.01em;
      line-height: 1.2;
      transition:
        background 160ms ease,
        border-color 160ms ease,
        color 160ms ease,
        transform 160ms ease,
        box-shadow 160ms ease;
    }

    .bcc-quick-links__product--mobile:hover {
      background: #fff;
      border-color: rgb(26 26 26 / 0.22);
      color: var(--bql-brand, #d23234);
      box-shadow: 0 2px 10px rgb(26 26 26 / 0.06);
      transform: translateY(-1px);
    }

    .bcc-quick-links__compact-text {
      text-align: center;
      line-height: 1.35;
    }

    .bcc-quick-links__compact-arrow {
      flex: 0 0 auto;
      color: var(--bql-brand, #d23234);
      font-weight: 700;
    }

    .bcc-quick-links__links {
      flex-direction: column;
      align-items: stretch;
      justify-content: flex-start;
      flex: 0 0 auto;
      gap: 0.6rem;
    }

    .bcc-quick-links__link {
      width: 100%;
      min-height: 3.25rem;
      font-size: 0.86rem;
      border-radius: 0;
      white-space: normal;
      text-align: center;
    }

    .bcc-quick-links__link-text {
      display: -webkit-box;
      -webkit-box-orient: vertical;
      -webkit-line-clamp: 2;
      overflow: hidden;
      text-wrap: balance;
    }

    .bcc-quick-links__link-text--desktop {
      display: none;
    }

    .bcc-quick-links__link-text--mobile {
      display: inline;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .bcc-quick-links__product--desktop,
    .bcc-quick-links__product--mobile,
    .bcc-quick-links__link {
      transition: none;
    }

    .bcc-quick-links__product--desktop:hover,
    .bcc-quick-links__link:hover {
      transform: none;
    }

    .bcc-quick-links__product--mobile:hover {
      background: rgb(255 255 255 / 0.5);
    }
  }
/* END_SECTION:home-bcc-quick-links */

/* START_SECTION:home-brand-story (INDEX:22) */
.shopify-section.section-home-brand-story {
    width: 100%;
  }

  .hbs {
    width: 100%;
    color: var(--color-foreground);
  }

  .hbs__inner {
    width: 100%;
    max-width: var(--hbs-max-w, 1100px);
    margin-inline: auto;
    padding-inline: var(--page-margin, 16px);
    box-sizing: border-box;
  }

  .hbs__shell {
    border: 2px solid rgb(var(--color-foreground-rgb) / 0.92);
    background: #ffffff;
    box-shadow: 0 10px 28px rgb(0 0 0 / 0.08);
  }

  .hbs__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: clamp(2rem, 4vw, 3rem);
    align-items: center;
    padding: clamp(1.5rem, 3vw, 2.5rem);
  }

  .hbs__visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.1rem;
  }

  .hbs__photo-wrap {
    position: relative;
    width: min(100%, 360px);
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border: 2px solid rgb(var(--color-foreground-rgb) / 0.92);
  }

  .hbs__photo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 35%;
    display: block;
  }

  .hbs__illustration-wrap {
    width: min(100%, 220px);
    padding: 0.85rem 0.5rem 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hbs__illustration-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
  }

  .hbs__retail {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.45rem;
    text-align: center;
  }

  .hbs__retail-label {
    margin: 0;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: rgb(var(--color-foreground-rgb) / 0.55);
  }

  .hbs__retail-logo {
    max-width: 168px;
    max-height: 52px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
  }

  .hbs__retail-text {
    margin: 0;
    font-size: 0.9rem;
    font-weight: 600;
  }

  .hbs__eyebrow {
    margin: 0 0 0.65rem;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--hbs-brand);
  }

  .hbs__heading {
    margin: 0 0 1rem;
    font-family: var(--font-primary--family);
    font-size: clamp(1.55rem, 3vw, 2rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.01em;
    display: inline-block;
    border-bottom: 3px solid var(--hbs-brand);
    padding-bottom: 0.45rem;
  }

  .hbs__lead {
    margin: 0 0 0.85rem;
    font-size: clamp(1.05rem, 1.8vw, 1.2rem);
    line-height: 1.45;
    font-weight: 600;
    color: rgb(var(--color-foreground-rgb) / 0.92);
  }

  .hbs__text {
    font-size: 1rem;
    line-height: 1.6;
    color: rgb(var(--color-foreground-rgb) / 0.82);
  }

  .hbs__text p {
    margin: 0;
  }

  .hbs__pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1.1rem 0 0;
    padding: 0;
    list-style: none;
  }

  .hbs__pill {
    display: inline-flex;
    padding: 0.35rem 0.75rem;
    border: 1.5px solid rgb(var(--color-foreground-rgb) / 0.18);
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 600;
    background: #fafafa;
  }

  .hbs__cta-wrap {
    margin-top: 1.35rem;
  }

  .hbs__cta {
    display: inline-block;
    background: var(--hbs-brand);
    color: #ffffff;
    border: 2px solid var(--hbs-brand);
    padding: 0.85rem 1.75rem;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-decoration: none;
    line-height: 1.2;
    transition: transform 200ms ease, background-color 200ms ease, color 200ms ease;
  }

  .hbs__cta:hover {
    background: #ffffff;
    color: var(--hbs-brand);
    transform: translateY(-2px);
  }

  .hbs__milestones {
    display: grid;
    gap: 0.75rem;
    margin: 1.25rem 0 0;
    padding: 1rem 0 0;
    border-top: 1px solid rgb(var(--color-foreground-rgb) / 0.12);
  }

  .hbs__milestones--count-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hbs__milestones--count-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hbs__milestone-label {
    display: block;
    margin: 0 0 0.2rem;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--hbs-brand);
  }

  .hbs__milestone-text {
    margin: 0;
    font-size: 0.82rem;
    line-height: 1.35;
    color: rgb(var(--color-foreground-rgb) / 0.78);
  }

  @media screen and (max-width: 749px) {
    .hbs__shell {
      box-shadow: 0 6px 18px rgb(0 0 0 / 0.07);
    }

    .hbs__grid {
      grid-template-columns: 1fr;
      gap: 0;
      padding: 1.1rem 1rem 1rem;
    }

    .hbs__content {
      order: 1;
    }

    .hbs__visual {
      order: 2;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.5rem;
      width: 100%;
      margin-top: 1.1rem;
      padding-top: 1rem;
      border-top: 1px solid rgb(var(--color-foreground-rgb) / 0.12);
    }

    .hbs__photo-wrap {
      width: 100%;
      max-width: 100%;
    }

    .hbs__illustration-wrap {
      width: min(100%, 160px);
      padding: 0.25rem 0 0;
    }

    .hbs__retail {
      align-items: flex-start;
      text-align: left;
    }

    .hbs__cta {
      display: block;
      width: 100%;
      text-align: center;
      box-sizing: border-box;
      padding: 0.9rem 1rem;
    }

    .hbs__milestones--count-2,
    .hbs__milestones--count-3 {
      grid-template-columns: 1fr;
      gap: 0.55rem;
      margin-top: 1rem;
      padding-top: 0.9rem;
    }

    .hbs__milestone {
      display: grid;
      grid-template-columns: 4.25rem minmax(0, 1fr);
      gap: 0.65rem;
      align-items: start;
    }
  }

  /* Homepage — editorial founder story (US + NZ) */
  .hbs--editorial {
    background: #faf9f7;
  }

  .hbs--editorial .hbs__shell {
    border: 1px solid rgb(0 0 0 / 0.07);
    box-shadow: none;
    background: #ffffff;
  }

  .hbs--editorial .hbs__grid {
    gap: clamp(1.75rem, 4vw, 3rem);
    padding: clamp(1.75rem, 3.5vw, 2.75rem);
    align-items: start;
  }

  .hbs--editorial .hbs__photo-wrap {
    display: none !important;
  }

  .hbs--editorial .hbs__illustration-wrap {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: min(100%, 300px);
    margin-inline: auto;
    padding: clamp(0.35rem, 1.5vw, 0.75rem) 0;
  }

  .hbs--editorial .hbs__illustration-img {
    width: 100%;
    max-width: 360px;
    height: auto;
    object-fit: contain;
  }

  .hbs--editorial .hbs__retail {
    display: none !important;
  }

  .hbs--editorial .hbs__visual {
    align-items: center;
    justify-content: center;
    gap: 0;
  }

  .hbs--editorial .hbs__heading {
    border-bottom: none;
    padding-bottom: 0;
    font-size: clamp(1.65rem, 3.2vw, 2.15rem);
    line-height: 1.12;
  }

  .hbs--editorial .hbs__heading::after {
    content: '';
    display: block;
    width: 2.75rem;
    height: 3px;
    margin-top: 0.65rem;
    background: var(--hbs-brand);
  }

  .hbs--editorial .hbs__lead {
    font-weight: 500;
    font-size: clamp(1.02rem, 1.7vw, 1.12rem);
    color: rgb(var(--color-foreground-rgb) / 0.88);
  }

  .hbs--editorial .hbs__text {
    font-size: 0.98rem;
    line-height: 1.62;
    max-width: 42ch;
  }

  .hbs--editorial .hbs__milestones {
    margin-top: 1.5rem;
    padding-top: 1.15rem;
    border-top: 1px solid rgb(0 0 0 / 0.08);
  }

  .hbs--editorial .hbs__milestones--count-3 {
    gap: clamp(0.65rem, 2vw, 1rem);
  }

  @media screen and (min-width: 750px) {
    .hbs--editorial .hbs__illustration-wrap {
      width: min(100%, 360px);
      padding: 0.5rem 0 0.75rem;
    }

    .hbs--editorial .hbs__visual {
      align-self: center;
    }
  }

  .hbs--editorial .hbs__pills {
    display: none !important;
  }

  .hbs--editorial .hbs__cta {
    border-radius: 0;
    font-size: 0.78rem;
  }

  @media screen and (max-width: 749px) {
    .hbs--editorial .hbs__shell {
      border: none;
      background: transparent;
    }

    .hbs--editorial .hbs__grid {
      padding: 0;
      gap: 1.35rem;
    }

    .hbs--editorial .hbs__visual {
      order: 1;
      margin-top: 0;
      padding-top: 0;
      border-top: none;
    }

    .hbs--editorial .hbs__content {
      order: 2;
    }

    .hbs--editorial .hbs__illustration-wrap {
      width: min(100%, 280px);
      padding: 0.25rem 0 0.5rem;
    }

    .hbs--editorial .hbs__illustration-img {
      max-width: 280px;
    }

    .hbs--editorial .hbs__photo-wrap {
      display: none !important;
    }
  }
/* END_SECTION:home-brand-story */

/* START_SECTION:home-credibility-row (INDEX:23) */
.hcr {
    width: 100%;
    background: #ffffff;
    border-block: 2px solid #1a1a1a;
    color: var(--hcr-brand, #d23234);
    overflow-x: clip;
  }

  .hcr__inner {
    max-width: var(--hcr-max-w, 1100px);
    margin: 0 auto;
    padding-block: clamp(0.85rem, 2vw, 1.1rem);
    padding-inline: var(--page-margin, 16px);
  }

  .hcr__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.4rem 0.85rem;
    font-family: var(--font-primary--family, inherit);
    font-weight: 700;
    font-size: clamp(0.78rem, 1.8vw, 0.95rem);
    letter-spacing: 0.08em;
    line-height: 1.3;
    text-transform: uppercase;
  }

  .hcr__item {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    color: var(--hcr-brand, #d23234);
    white-space: nowrap;
  }

  .hcr__item:last-child .hcr__sep {
    display: none;
  }

  .hcr__sep {
    color: rgba(26, 26, 26, 0.52);
    font-weight: 400;
    font-size: 1.1em;
    line-height: 1;
  }

  /* Tablet & narrow desktop (<980px): the row no longer fits all six
     claims on one line once "3 MAIN INGREDIENTS" lengthens claim 1. We
     drop the · separators so wrapped lines don't end on a hanging dot,
     and let claims rewrap into a clean centered grid. */
  @media (max-width: 979px) {
    .hcr__list {
      gap: 0.4rem 1.4rem;
    }
    .hcr__item {
      gap: 0;
    }
    .hcr__sep {
      display: none;
    }
  }

  /* Mobile (<750px): tighter typography + tighter gap so all six claims
     read as a clear 2-row band rather than a thin scribble. */
  @media (max-width: 749px) {
    .hcr__inner {
      padding-block: clamp(0.7rem, 2.4vw, 0.95rem);
    }
    .hcr__list {
      gap: 0.35rem 1rem;
      font-size: 0.78rem;
      letter-spacing: 0.1em;
      line-height: 1.25;
    }
  }

  /* Very narrow screens (≤380px) — small Android, foldable cover. */
  @media (max-width: 380px) {
    .hcr__list {
      gap: 0.3rem 0.8rem;
      font-size: 0.74rem;
    }
  }
/* END_SECTION:home-credibility-row */

/* START_SECTION:home-discover-trinity (INDEX:24) */
.hdt {
    width: 100%;
  }

  .hdt__inner {
    max-width: var(--hdt-max-w, 1100px);
    margin: 0 auto;
    padding-inline: var(--page-margin, 16px);
    text-align: center;
  }

  .hdt__eyebrow {
    margin: 0 0 0.65rem;
    color: var(--hdt-brand, #d23234);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    line-height: 1.2;
  }

  .hdt__h2 {
    margin: 0 0 0.75rem;
    font-family: var(--font-primary--family, inherit);
    font-size: clamp(1.6rem, 3.2vw, 2.2rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.01em;
  }

  .hdt__h2 > span {
    display: inline-block;
    padding-bottom: 0.4rem;
    border-bottom: 3px solid var(--hdt-brand, #d23234);
  }

  .hdt__intro {
    max-width: 60ch;
    margin: 0.5rem auto 0;
    color: rgb(var(--color-foreground-rgb, 26, 26, 26) / 0.78);
    font-size: 1rem;
    line-height: 1.55;
  }

  .hdt__grid {
    display: grid;
    gap: clamp(1.25rem, 2.5vw, 2rem);
    grid-template-columns: 1fr;
    margin: clamp(2rem, 4vw, 3rem) 0 0;
    text-align: left;
  }

  @media (min-width: 750px) {
    .hdt__grid { grid-template-columns: repeat(2, 1fr); }
  }

  @media (min-width: 990px) {
    .hdt__grid { grid-template-columns: repeat(3, 1fr); }
  }

  .hdt__card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    border: 2px solid rgb(var(--color-foreground-rgb, 26, 26, 26) / 0.95);
    background: #ffffff;
    transition: transform 200ms ease, box-shadow 200ms ease;
  }

  .hdt__card:hover,
  .hdt__card:focus-visible {
    transform: translate(-3px, -3px);
    box-shadow: 6px 6px 0 0 var(--hdt-brand, #d23234);
    outline: none;
  }

  .hdt__card-frame {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-bottom: 2px solid rgb(var(--color-foreground-rgb, 26, 26, 26) / 0.95);
    background: #f9fafb;
  }

  .hdt__card-frame--emoji {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fdf6e3;
  }

  .hdt__card-emoji {
    font-size: clamp(3.5rem, 7vw, 5rem);
    line-height: 1;
  }

  .hdt__card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 350ms ease;
  }

  .hdt__card:hover .hdt__card-img {
    transform: scale(1.04);
  }

  .hdt__card-body {
    padding: clamp(1rem, 2.5vw, 1.5rem);
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    flex-grow: 1;
  }

  .hdt__card-eyebrow {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--hdt-brand, #d23234);
  }

  .hdt__card-heading {
    margin: 0;
    font-family: var(--font-primary--family, inherit);
    font-size: clamp(1.15rem, 2vw, 1.35rem);
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.01em;
  }

  .hdt__card-text {
    font-size: 0.95rem;
    line-height: 1.55;
    color: rgb(var(--color-foreground-rgb, 26, 26, 26) / 0.85);
    word-break: normal;
    overflow-wrap: normal;
    hyphens: auto;
  }

  .hdt__card-text p {
    margin: 0 0 0.4rem;
  }

  .hdt__card-text p:last-child {
    margin-bottom: 0;
  }

  .hdt__card-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: auto;
    padding-top: 0.65rem;
    color: var(--hdt-brand, #d23234);
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
  }

  .hdt__card-cta-arrow {
    transition: transform 200ms ease;
  }

  .hdt__card:hover .hdt__card-cta-arrow {
    transform: translateX(4px);
  }

  @media (prefers-reduced-motion: reduce) {
    .hdt__card,
    .hdt__card-img,
    .hdt__card-cta-arrow {
      transition: none;
    }
    .hdt__card:hover {
      transform: none;
    }
    .hdt__card:hover .hdt__card-img,
    .hdt__card:hover .hdt__card-cta-arrow {
      transform: none;
    }
  }
/* END_SECTION:home-discover-trinity */

/* START_SECTION:home-final-cta (INDEX:25) */
.hfc {
    width: 100%;
    background: var(--hfc-bg, #fff);
    border-block: 1px solid rgb(0 0 0 / 0.06);
  }

  .hfc__inner {
    max-width: 720px;
    margin: 0 auto;
    padding-inline: var(--page-margin, 16px);
    text-align: center;
  }

  .hfc__heading {
    margin: 0 0 0.6rem;
    font-family: var(--font-heading-family, inherit);
    font-size: clamp(1.4rem, 2.8vw, 1.85rem);
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -0.02em;
    color: var(--hfc-brand, #d23234);
  }

  .hfc__body {
    margin: 0 auto 1.15rem;
    max-width: 48ch;
    font-size: 0.92rem;
    line-height: 1.55;
    color: rgb(var(--color-foreground-rgb, 26, 26, 26) / 0.72);
  }

  .hfc__body p {
    margin: 0;
  }

  .hfc__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem 1rem;
  }

  .hfc__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3rem;
    padding: 0.85rem 1.65rem;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 0;
  }

  .hfc__btn--primary {
    background: var(--hfc-brand, #d23234);
    color: #fff;
    border: 2px solid var(--hfc-brand, #d23234);
  }

  .hfc__btn--secondary {
    background: transparent;
    color: var(--color-foreground, #1a1a1a);
    border: 2px solid rgb(0 0 0 / 0.18);
  }
/* END_SECTION:home-final-cta */

/* START_SECTION:home-ingredient-trinity (INDEX:26) */
.htri {
    width: 100%;
    color: var(--color-foreground);
  }

  .htri__inner {
    max-width: var(--htri-max-w, 1100px);
    margin: 0 auto;
    padding-inline: var(--page-margin, 16px);
    text-align: center;
  }

  .htri__eyebrow {
    margin: 0 0 0.6rem;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--htri-brand);
  }

  .htri__h2 {
    font-family: var(--font-primary--family);
    font-size: clamp(1.6rem, 3.4vw, 2.1rem);
    font-weight: 700;
    margin: 0 auto 0.85rem;
    letter-spacing: -0.01em;
    line-height: 1.2;
    display: inline-block;
    border-bottom: 3px solid var(--htri-brand);
    padding-bottom: 0.5rem;
  }

  .htri__intro {
    max-width: 60ch;
    margin: 0.75rem auto 0;
    color: rgb(var(--color-foreground-rgb) / 0.78);
    font-size: 1rem;
    line-height: 1.55;
  }

  .htri__intro p {
    margin: 0 0 0.5rem;
  }

  .htri__intro p:last-child {
    margin-bottom: 0;
  }

  .htri__grid {
    display: grid;
    gap: clamp(1.25rem, 2.5vw, 2rem);
    grid-template-columns: 1fr;
    margin: clamp(2rem, 4vw, 3rem) 0 0;
    text-align: left;
  }

  @media (min-width: 750px) {
    .htri__grid { grid-template-columns: repeat(2, 1fr); }
  }

  @media (min-width: 990px) {
    .htri__grid { grid-template-columns: repeat(3, 1fr); }
  }

  .htri__card {
    border: 2px solid rgb(var(--color-foreground-rgb) / 0.95);
    background: #ffffff;
    transition: transform 200ms ease, box-shadow 200ms ease;
  }

  .htri__card:hover {
    transform: translate(-3px, -3px);
    box-shadow: 6px 6px 0 0 rgb(var(--color-foreground-rgb) / 0.95);
  }

  .htri__card-frame {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-bottom: 2px solid rgb(var(--color-foreground-rgb) / 0.95);
    background: #f9fafb;
  }

  .htri__card-frame--emoji {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fdf6e3;
  }

  .htri__card-emoji {
    font-size: clamp(3.5rem, 7vw, 5rem);
    line-height: 1;
  }

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

  .htri__card-body {
    padding: clamp(1rem, 2.5vw, 1.5rem);
  }

  .htri__card-eyebrow {
    display: block;
    margin: 0 0 0.4rem;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--htri-brand);
  }

  .htri__card-heading {
    margin: 0 0 0.6rem;
    font-family: var(--font-primary--family);
    font-size: clamp(1.15rem, 2vw, 1.35rem);
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.01em;
  }

  .htri__card-text {
    font-size: 0.95rem;
    line-height: 1.55;
    color: rgb(var(--color-foreground-rgb) / 0.85);
  }

  .htri__card-text p {
    margin: 0 0 0.6rem;
  }

  .htri__card-text p:last-child {
    margin-bottom: 0;
  }

  .htri__cta-wrap {
    display: flex;
    justify-content: center;
    margin-top: clamp(1.5rem, 4vw, 2.5rem);
  }

  .htri__btn {
    display: inline-block;
    background: var(--htri-brand);
    color: #ffffff;
    border: 2px solid var(--htri-brand);
    padding: 0.95rem 2.25rem;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-decoration: none;
    line-height: 1.2;
    transition: transform 200ms ease, background-color 200ms ease, color 200ms ease;
  }

  .htri__btn:hover {
    background: #ffffff;
    color: var(--htri-brand);
    transform: translateY(-2px);
  }

  @media (prefers-reduced-motion: reduce) {
    .htri__card,
    .htri__btn {
      transition: none;
    }
    .htri__card:hover,
    .htri__btn:hover {
      transform: none;
    }
  }
/* END_SECTION:home-ingredient-trinity */

/* START_SECTION:home-press-band (INDEX:27) */
.hpb {
    width: 100%;
    background-color: var(--hpb-bg, #faf9f7);
    border-block: 1px solid rgb(0 0 0 / 0.06);
    --hpb-slides-per-view: 1;
    --hpb-card-w: clamp(13rem, 68vw, 14.25rem);
  }

  @media screen and (min-width: 750px) and (max-width: 989px) {
    .hpb {
      --hpb-slides-per-view: 2;
      --hpb-card-w: clamp(13.75rem, 17vw, 14.75rem);
    }
  }

  @media screen and (min-width: 990px) {
    .hpb {
      --hpb-slides-per-view: 3;
      --hpb-card-w: clamp(13.75rem, 17vw, 14.75rem);
    }
  }

  .hpb__header {
    max-width: 720px;
    margin: 0 auto;
    padding-inline: var(--page-margin, 16px);
    text-align: center;
  }

  .hpb__heading {
    margin: 0 0 0.65rem;
    font-family: var(--font-heading-family, var(--font-body--family, inherit));
    font-size: clamp(1.35rem, 2.8vw, 1.85rem);
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -0.025em;
    color: var(--hpb-brand, #d23234);
  }

  .hpb__clarifier {
    margin: 0;
    max-width: 52ch;
    margin-inline: auto;
    font-size: clamp(0.88rem, 1.5vw, 1rem);
    font-weight: 400;
    line-height: 1.55;
    letter-spacing: 0.01em;
    color: rgb(var(--color-foreground-rgb, 26, 26, 26) / 0.62);
  }

  .hpb--editorial .hpb__header {
    max-width: min(56rem, calc(100% - 2 * var(--page-margin, 16px)));
    margin-inline: auto;
    text-align: left;
    padding-inline: var(--page-margin, 16px);
  }

  .hpb--editorial .hpb__clarifier {
    margin-inline: 0;
  }

  .hpb--editorial .hpb__viewport {
    width: min(100%, 56rem);
    max-width: calc(100% - 2 * var(--page-margin, 16px));
    overflow: visible;
    margin-top: clamp(0.65rem, 1.8vw, 0.9rem);
    padding-block: 0;
  }

  .hpb--editorial .hpb__track {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(0.65rem, 1.5vw, 0.85rem);
    transform: none !important;
    will-change: auto;
  }

  @media screen and (min-width: 750px) {
    .hpb--editorial .hpb__track {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 0.75rem;
    }

    .hpb--editorial .hpb__cell--featured {
      grid-column: 1 / -1;
    }
  }

  .hpb--editorial .hpb__cell {
    width: 100%;
    flex: none;
  }

  .hpb--editorial .hpb__cell-link {
    height: auto;
    min-height: 0;
    padding: 1.1rem 1.25rem 1.05rem;
    align-items: flex-start;
    justify-content: flex-start;
    text-align: left;
    border-radius: 0;
    box-shadow: none;
    border: 1px solid rgb(0 0 0 / 0.08);
  }

  .hpb--editorial .hpb__cell--featured .hpb__cell-link {
    min-height: 0;
    padding: clamp(1.25rem, 2.5vw, 1.65rem) clamp(1.25rem, 2.5vw, 1.75rem);
    background: #ffffff;
    border-color: rgb(0 0 0 / 0.09);
  }

  .hpb--editorial .hpb__cell-body {
    align-items: flex-start;
    max-width: none;
    width: 100%;
    gap: 0.45rem;
  }

  .hpb--editorial .hpb__cell--featured .hpb__cell-body {
    max-width: none;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0.5rem;
  }

  @media screen and (min-width: 750px) {
    .hpb--editorial .hpb__cell--featured .hpb__cell-body {
      grid-template-columns: minmax(7.5rem, 9rem) minmax(0, 1fr);
      column-gap: clamp(1rem, 2.5vw, 1.75rem);
      align-items: start;
    }

    .hpb--editorial .hpb__cell--featured .hpb__logo-stage {
      grid-row: 1 / span 3;
      height: auto;
      max-width: none;
      margin-inline: 0;
      justify-content: flex-start;
      align-items: flex-start;
      padding-top: 0.15rem;
    }

    .hpb--editorial .hpb__cell--featured .hpb__cell-eyebrow,
    .hpb--editorial .hpb__cell--featured .hpb__cell-quote,
    .hpb--editorial .hpb__cell--featured .hpb__cell-source {
      grid-column: 2;
    }
  }

  .hpb--editorial .hpb__cell--featured .hpb__cell-quote {
    font-size: clamp(1.08rem, 1.9vw, 1.32rem);
    line-height: 1.38;
    max-width: 38ch;
    text-wrap: pretty;
    color: rgb(var(--color-foreground-rgb, 26, 26, 26) / 0.9);
  }

  .hpb--editorial .hpb__cell:not(.hpb__cell--featured) .hpb__cell-link {
    min-height: 8.75rem;
  }

  .hpb--editorial .hpb__cell:not(.hpb__cell--featured) .hpb__cell-body {
    max-width: none;
  }

  .hpb--editorial .hpb__cell:not(.hpb__cell--featured) .hpb__cell-quote {
    font-size: 0.9rem;
    line-height: 1.48;
    max-width: 34ch;
    text-align: left;
  }

  .hpb--editorial .hpb__cell:not(.hpb__cell--featured) .hpb__logo-stage {
    justify-content: flex-start;
    margin-inline: 0;
    height: calc(var(--hpb-target-h, 44px) + 2px);
  }

  .hpb--editorial .hpb__cell-source {
    margin-top: 0.35rem;
  }

  .hpb--editorial .hpb__cell--featured .hpb__cell-source {
    margin-top: 0.25rem;
  }

  @media (max-width: 749px) {
    .hpb--editorial .hpb__header {
      text-align: left;
    }

    .hpb--editorial .hpb__cell-link {
      padding: 1rem 1.05rem 0.95rem;
    }

    .hpb--editorial .hpb__cell--featured .hpb__cell-link {
      padding: 1.15rem 1.1rem 1.05rem;
    }

    .hpb--editorial .hpb__cell:not(.hpb__cell--featured) .hpb__cell-link {
      min-height: 0;
    }
  }

  .hpb__viewport {
    position: relative;
    overflow: hidden;
    width: calc(
      var(--hpb-slides-per-view) * var(--hpb-card-w) +
        (var(--hpb-slides-per-view) - 1) * var(--hpb-cell-gap, 16px)
    );
    max-width: calc(100% - 2 * var(--page-margin, 16px));
    margin-top: clamp(0.95rem, 2.5vw, 1.25rem);
    margin-inline: auto;
    padding-block: 0 clamp(0.25rem, 0.8vw, 0.5rem);
  }

  .hpb__track {
    display: flex;
    align-items: stretch;
    gap: var(--hpb-cell-gap, 16px);
    margin: 0;
    padding: 0;
    list-style: none;
    will-change: transform;
  }

  .hpb__cell {
    flex: 0 0 var(--hpb-card-w);
    width: var(--hpb-card-w);
  }

  .hpb__cell-link {
    display: flex;
    align-items: center;
    justify-content: center;
    height: clamp(11.75rem, 12vw, 12.75rem);
    max-height: 12.75rem;
    padding: 0.5rem 0.7rem;
    text-align: center;
    text-decoration: none;
    color: inherit;
    background: rgb(255 255 255 / 0.92);
    border: 1px solid rgb(0 0 0 / 0.08);
    border-radius: 8px;
    box-shadow: 0 1px 4px rgb(0 0 0 / 0.035);
    transition: border-color 200ms ease, box-shadow 200ms ease, transform 200ms ease;
  }

  .hpb__cell--featured .hpb__cell-link {
    background: rgb(255 255 255 / 0.98);
    border-color: rgb(210 50 52 / 0.11);
    box-shadow: 0 2px 10px rgb(210 50 52 / 0.06);
  }

  .hpb__cell-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.22rem;
    width: 100%;
    max-width: 26ch;
  }

  .hpb__cell--featured .hpb__cell-body {
    max-width: 28ch;
  }

  .hpb__cell-link--static {
    cursor: default;
  }

  .hpb__logo-stage {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: calc(var(--hpb-target-h, 44px) + 2px);
    max-width: var(--logo-max-w, 140px);
    margin-inline: auto;
    flex-shrink: 0;
  }

  .hpb__cell--featured .hpb__logo-stage {
    height: calc(var(--hpb-target-h, 44px) + 4px);
  }

  .hpb__logo-img {
    max-height: var(--hpb-target-h, 44px);
    width: auto;
    max-width: 100%;
    object-fit: contain;
    display: block;
    filter: brightness(0);
    opacity: 0.84;
    transition: opacity 220ms ease, transform 220ms ease;
  }

  .hpb__cell--featured .hpb__logo-img {
    max-height: calc(var(--hpb-target-h, 44px) + 4px);
    opacity: 0.9;
  }

  .hpb__logo-text {
    display: inline-block;
    max-width: 100%;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    line-height: 1.2;
    color: rgb(var(--color-foreground-rgb, 26, 26, 26) / 0.72);
  }

  .hpb__cell-eyebrow {
    margin: 0;
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--hpb-brand, #d23234);
    line-height: 1.2;
  }

  .hpb__cell-label {
    margin: 0;
    font-size: 0.58rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgb(var(--color-foreground-rgb, 26, 26, 26) / 0.42);
    line-height: 1.2;
  }

  .hpb__cell-quote {
    margin: 0;
    width: 100%;
    font-family: var(--font-body--family, inherit);
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: -0.006em;
    color: rgb(var(--color-foreground-rgb, 26, 26, 26) / 0.72);
    text-wrap: balance;
  }

  .hpb__cell--featured .hpb__cell-quote {
    font-family: var(--font-heading-family, var(--font-body--family, inherit));
    font-size: 0.975rem;
    font-weight: 500;
    line-height: 1.46;
    letter-spacing: -0.01em;
    color: rgb(var(--color-foreground-rgb, 26, 26, 26) / 0.86);
  }

  .hpb__cell--mention .hpb__cell-quote {
    font-size: 0.825rem;
    line-height: 1.46;
    color: rgb(var(--color-foreground-rgb, 26, 26, 26) / 0.62);
  }

  .hpb__cell-quote-mark {
    color: var(--hpb-brand, #d23234);
    font-weight: 600;
    font-size: 1.05em;
    line-height: 0;
    margin-right: 0.04em;
    vertical-align: -0.05em;
  }

  .hpb__cell-quote-text {
    display: inline;
  }

  .hpb__cell-source {
    margin: 0.75rem 0 0;
    font-size: 0.625rem;
    font-weight: 600;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: rgb(var(--color-foreground-rgb, 26, 26, 26) / 0.4);
    line-height: 1.2;
  }

  .hpb__cell--featured .hpb__cell-source {
    margin-top: 0.8rem;
    font-size: 0.64rem;
    color: rgb(var(--color-foreground-rgb, 26, 26, 26) / 0.48);
  }

  @media (hover: hover) {
    .hpb__cell-link:hover,
    .hpb__cell-link:focus-visible {
      border-color: rgb(0 0 0 / 0.12);
      box-shadow: 0 4px 14px rgb(0 0 0 / 0.06);
      transform: translateY(-1px);
    }

    .hpb__cell-link:hover .hpb__logo-img,
    .hpb__cell-link:focus-visible .hpb__logo-img {
      opacity: 1;
    }

    .hpb__cell-link:hover .hpb__cell-quote,
    .hpb__cell-link:focus-visible .hpb__cell-quote {
      color: rgb(var(--color-foreground-rgb, 26, 26, 26) / 0.88);
    }
  }

  @media (max-width: 749px) {
    .hpb__viewport {
      margin-top: clamp(0.85rem, 3.5vw, 1.1rem);
    }

    .hpb__cell-link {
      height: clamp(10.75rem, 34vw, 11.5rem);
      max-height: 11.5rem;
      padding: 0.45rem 0.65rem;
    }

    .hpb__cell-body {
      gap: 0.2rem;
      max-width: none;
    }

    .hpb__cell-source {
      margin-top: 0.65rem;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .hpb__track {
      transform: none !important;
      transition: none !important;
    }

    .hpb__cell--clone {
      display: none;
    }

    .hpb__logo-img,
    .hpb__cell-link {
      transition: none;
    }

    .hpb__cell-link:hover,
    .hpb__cell-link:focus-visible {
      transform: none;
    }
  }
/* END_SECTION:home-press-band */

/* START_SECTION:home-retail-proof (INDEX:28) */
.hrp {
    width: 100%;
    background: var(--hrp-bg, #fff);
    border-block: 1px solid rgb(0 0 0 / 0.06);
    box-shadow: 0 1px 0 rgb(255 255 255 / 0.8) inset;
    overflow-x: clip;
  }

  .hrp__inner {
    max-width: var(--hrp-max-w, 1100px);
    margin: 0 auto;
    padding-inline: var(--page-margin, 16px);
    text-align: center;
  }

  .hrp__heading {
    margin: 0 0 clamp(0.85rem, 1.9vw, 1.15rem);
    max-width: 42ch;
    margin-inline: auto;
    font-size: clamp(0.78rem, 1.7vw, 0.92rem);
    font-weight: 600;
    line-height: 1.45;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgb(var(--color-foreground-rgb, 26, 26, 26) / 0.68);
  }

  .hrp__logos {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: clamp(0.9rem, 2.2vw, 1.5rem) clamp(1.25rem, 3vw, 2rem);
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .hrp__logos::-webkit-scrollbar {
    display: none;
  }

  .hrp__logo-slot {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    height: clamp(2rem, 4.2vw, 2.55rem);
    min-width: clamp(4.25rem, 11vw, 5.5rem);
    max-width: clamp(5.5rem, 14vw, 7.75rem);
  }

  .hrp__logo-img {
    display: block;
    max-height: 100%;
    max-width: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: brightness(0);
    opacity: 0.78;
  }

  .hrp__logo-img--color {
    filter: none;
    opacity: 1;
  }

  .hrp__logo-img--mono {
    filter: brightness(0);
    opacity: 0.78;
  }

  .hrp__logo-img--lhs {
    filter: none;
    opacity: 0.88;
  }

  .hrp__logo-img--dark {
    filter: none;
    opacity: 0.82;
  }

  .hrp__logo-img--tall {
    filter: none;
    opacity: 1;
  }

  .hrp__logo-badge {
    display: inline-block;
    padding: 0.35rem 0.75rem;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgb(var(--color-foreground-rgb, 26, 26, 26) / 0.55);
    border: 1px solid rgb(0 0 0 / 0.1);
    border-radius: 2px;
    white-space: nowrap;
  }

  /* NZ homepage — two-row proof (grocery + destinations) */
  .hrp--nz-dual .hrp__inner {
    padding-block: clamp(0.35rem, 1vw, 0.65rem);
  }

  .hrp--nz-dual .hrp__rows {
    display: flex;
    flex-direction: column;
    gap: clamp(1.25rem, 2.8vw, 1.85rem);
  }

  .hrp--nz-dual .hrp__row + .hrp__row {
    padding-top: clamp(1.25rem, 2.8vw, 1.85rem);
    border-top: 1px solid rgb(0 0 0 / 0.05);
  }

  .hrp--nz-dual .hrp__heading {
    letter-spacing: 0.045em;
    max-width: 52ch;
    font-weight: 550;
    color: rgb(var(--color-foreground-rgb, 26, 26, 26) / 0.58);
    margin-bottom: clamp(0.95rem, 2.1vw, 1.25rem);
  }

  .hrp--nz-dual .hrp__row--grocery .hrp__logos {
    gap: clamp(1.1rem, 2.6vw, 1.75rem) clamp(1.75rem, 4.5vw, 3rem);
    max-width: 50rem;
    margin-inline: auto;
  }

  .hrp--nz-dual .hrp__row--destinations .hrp__logos {
    gap: clamp(0.95rem, 2.2vw, 1.45rem) clamp(1.25rem, 3vw, 2rem);
    max-width: 56rem;
    margin-inline: auto;
  }

  /* Grocery row — balanced visual weight */
  .hrp--nz-dual .hrp__logo-slot--farro,
  .hrp--nz-dual .hrp__logo-slot--foursquare {
    max-width: clamp(4.75rem, 11.5vw, 6.25rem);
    height: clamp(1.85rem, 3.8vw, 2.35rem);
  }

  .hrp--nz-dual .hrp__logo-slot--newworld,
  .hrp--nz-dual .hrp__logo-slot--freshchoice {
    max-width: clamp(6.75rem, 16vw, 8.75rem);
    height: clamp(2.05rem, 4.3vw, 2.6rem);
  }

  /* Destinations row — slight emphasis on Onsen + LHS when present */
  .hrp--nz-dual .hrp__logo-slot--onsen,
  .hrp--nz-dual .hrp__logo-slot--lhs {
    max-width: clamp(5.5rem, 13.5vw, 7.25rem);
  }

  .hrp--nz-dual .hrp__logo-slot--edgewater,
  .hrp--nz-dual .hrp__logo-slot--airspresso {
    max-width: clamp(5rem, 12.5vw, 6.75rem);
  }

  .hrp--nz-dual .hrp__logo-slot--sundays {
    max-width: clamp(4.5rem, 11.5vw, 6rem);
  }

  .hrp--nz-dual .hrp__logo-slot--tititea {
    height: clamp(2.1rem, 4.4vw, 2.7rem);
    max-width: clamp(3.85rem, 9.5vw, 5rem);
  }

  .hrp--nz-dual .hrp__logo-slot--bathhouse {
    max-width: clamp(5.25rem, 13vw, 7rem);
  }

  @media (max-width: 749px) {
    .hrp--nz-dual .hrp__logos {
      flex-wrap: nowrap;
      justify-content: flex-start;
      max-width: none;
      margin-inline: calc(-1 * var(--page-margin, 16px));
      padding-inline: calc(var(--page-margin, 16px) + 0.15rem);
    }

    .hrp--nz-dual .hrp__logo-slot {
      min-width: clamp(4.5rem, 21vw, 6.25rem);
    }
  }
/* END_SECTION:home-retail-proof */

/* START_SECTION:home-where-to-buy (INDEX:30) */
.hwb {
    width: 100%;
    background: var(--hwb-bg, #faf9f7);
    border-block: 1px solid rgb(0 0 0 / 0.06);
  }

  .hwb__inner {
    max-width: var(--hwb-max-w, 900px);
    margin: 0 auto;
    padding-inline: var(--page-margin, 16px);
    text-align: center;
  }

  .hwb__heading {
    margin: 0 0 0.75rem;
    font-family: var(--font-heading-family, var(--font-body--family, inherit));
    font-size: clamp(1.45rem, 3vw, 1.9rem);
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -0.02em;
    color: var(--color-foreground, #1a1a1a);
  }

  .hwb__body {
    margin: 0 auto 1.35rem;
    max-width: 48ch;
    font-size: clamp(0.92rem, 1.6vw, 1.02rem);
    line-height: 1.6;
    color: rgb(var(--color-foreground-rgb, 26, 26, 26) / 0.72);
  }

  .hwb__body p {
    margin: 0;
  }

  .hwb__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.75rem 1rem;
  }

  .hwb__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3rem;
    padding: 0.85rem 1.85rem;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 0;
    transition: transform 200ms ease, background-color 200ms ease, color 200ms ease, border-color 200ms ease;
  }

  .hwb__btn--primary {
    background: var(--hwb-brand, #d23234);
    color: #fff;
    border: 2px solid var(--hwb-brand, #d23234);
  }

  .hwb__btn--secondary {
    background: #fff;
    color: var(--color-foreground, #1a1a1a);
    border: 2px solid rgb(0 0 0 / 0.14);
  }

  @media (hover: hover) {
    .hwb__btn--primary:hover,
    .hwb__btn--primary:focus-visible {
      transform: translateY(-1px);
      background: #fff;
      color: var(--hwb-brand, #d23234);
    }

    .hwb__btn--secondary:hover,
    .hwb__btn--secondary:focus-visible {
      transform: translateY(-1px);
      border-color: rgb(0 0 0 / 0.35);
    }
  }
/* END_SECTION:home-where-to-buy */

/* START_SECTION:ingredients (INDEX:31) */
.ipage {
    --ipage-brand: #d23234;
    --ipage-brand-hover: #b02729;
    --ipage-max-w: 1100px;
    overflow-x: clip;
  }

  .ipage__inner {
    max-width: var(--ipage-max-w);
    margin: 0 auto;
    padding: clamp(2.5rem, 5vw, 3.5rem) clamp(1rem, 4vw, 1.5rem);
  }

  .ipage__inner--grid {
    padding-top: 0;
    padding-bottom: clamp(2rem, 4vw, 3rem);
  }

  /* HERO ─────────────────────────────────────────────────────── */
  .ipage__hero {
    background: #f9fafb;
    border-bottom: 2px solid rgb(var(--color-foreground-rgb) / 0.95);
    text-align: center;
  }

  .ipage__hero-inner {
    padding-block: clamp(3rem, 7vw, 5rem);
  }

  .ipage__hero-eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--ipage-brand);
    margin: 0 0 1rem;
  }

  .ipage__h1 {
    font-family: var(--font-primary--family);
    /* Min lowered from 2.2rem so "Our Ingredients" doesn't break
       mid-word on very narrow phones (≤320px). Letter-spacing also
       relaxed slightly to give the H1 more breathing room. */
    font-size: clamp(1.85rem, 5.5vw, 3.4rem);
    font-weight: 700;
    margin: 0 0 1rem;
    letter-spacing: -0.01em;
    line-height: 1.1;
    overflow-wrap: break-word;
    hyphens: none;
  }

  .ipage__hero-body {
    max-width: 60ch;
    margin: 0 auto;
    font-size: clamp(1rem, 1.6vw, 1.15rem);
    line-height: 1.55;
    color: rgb(var(--color-foreground-rgb) / 0.78);
  }

  .ipage__hero-body p { margin: 0 0 0.75rem; }
  .ipage__hero-body p:last-child { margin-bottom: 0; }

  /* SECTION HEADING ──────────────────────────────────────────── */
  .ipage__h2-wrap { margin: 0 0 1.5rem; }

  .ipage__h2-wrap--center { text-align: center; }

  .ipage__h2 {
    font-family: var(--font-primary--family);
    font-size: clamp(1.6rem, 3.4vw, 2.1rem);
    font-weight: 700;
    margin: 0 0 0.75rem;
    letter-spacing: -0.01em;
    /* Brand-red underline carries the editorial feel from the
       original page design. Inline-block so the underline only
       spans the heading text, not the full container width. */
    display: inline-block;
    border-bottom: 3px solid var(--ipage-brand);
    padding-bottom: 0.5rem;
    line-height: 1.2;
  }

  .ipage__h2--centered { display: inline-block; }

  .ipage__h2-body {
    max-width: 60ch;
    margin: 0;
    color: rgb(var(--color-foreground-rgb) / 0.78);
    font-size: 1rem;
    line-height: 1.55;
  }

  .ipage__h2-wrap--center .ipage__h2-body { margin: 0 auto; }
  .ipage__h2-wrap--center .ipage__h2-body p { margin: 0 0 0.5rem; }
  .ipage__h2-wrap--center .ipage__h2-body p:last-child { margin-bottom: 0; }

  /* INGREDIENT CARDS (3-up grid) ─────────────────────────────── */
  .ipage__grid--cards {
    display: grid;
    gap: clamp(1rem, 2vw, 1.5rem);
    grid-template-columns: 1fr;
  }

  @media (min-width: 768px) {
    .ipage__grid--cards { grid-template-columns: repeat(3, 1fr); }
  }

  .ipage__card {
    background: #fff;
    border: 2px solid rgb(var(--color-foreground-rgb) / 0.95);
    padding: clamp(1.5rem, 3vw, 2rem) clamp(1.25rem, 2.5vw, 1.75rem);
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    transition: transform 220ms ease, box-shadow 220ms ease;
  }

  /* Signature offset shadow on hover — preserves the editorial
     feel from the original page. */
  .ipage__card:hover {
    transform: translateY(-4px);
    box-shadow: 6px 6px 0 var(--ipage-brand);
  }

  @media (prefers-reduced-motion: reduce) {
    .ipage__card,
    .ipage__card:hover {
      transition: none;
      transform: none;
    }
  }

  .ipage__card-icon {
    font-size: 3rem;
    line-height: 1;
    margin: 0 auto 0.25rem;
  }

  .ipage__card-heading {
    font-family: var(--font-primary--family);
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0;
    letter-spacing: 0.01em;
    line-height: 1.3;
  }

  .ipage__card-tagline {
    font-style: italic;
    color: var(--ipage-brand);
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.4;
    min-height: 2.4em;
  }

  .ipage__card-body {
    color: rgb(var(--color-foreground-rgb) / 0.8);
    font-size: 0.95rem;
    line-height: 1.55;
    margin: 0;
    flex: 1;
  }

  .ipage__card-body p { margin: 0 0 0.6rem; }
  .ipage__card-body p:last-child { margin-bottom: 0; }

  .ipage__card-details {
    list-style: none;
    margin: 0.5rem 0 0;
    padding: 0.85rem 0 0;
    border-top: 1px solid rgb(var(--color-foreground-rgb) / 0.08);
    text-align: left;
    font-size: 0.85rem;
    color: rgb(var(--color-foreground-rgb) / 0.7);
  }

  .ipage__card-details li {
    padding-left: 1rem;
    position: relative;
    margin: 0 0 0.35rem;
    line-height: 1.4;
  }

  .ipage__card-details li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--ipage-brand);
    font-weight: 700;
  }

  /* QUOTE BANNER (full-bleed) ────────────────────────────────── */
  .ipage__quote {
    background: var(--ipage-quote-bg);
    color: var(--ipage-quote-fg);
    margin: clamp(2rem, 4vw, 3rem) calc(50% - 50vw);
    width: 100vw;
    padding: clamp(2rem, 4vw, 3rem) clamp(1rem, 4vw, 2rem);
    text-align: center;
  }

  .ipage__quote-text {
    max-width: 800px;
    margin: 0 auto;
    font-family: var(--font-primary--family);
    font-style: italic;
    font-size: clamp(1.1rem, 2.2vw, 1.35rem);
    line-height: 1.5;
    quotes: "“" "”";
  }

  .ipage__quote-text::before { content: open-quote; margin-right: 0.1em; }
  .ipage__quote-text::after { content: close-quote; margin-left: 0.1em; }

  .ipage__quote-cite {
    display: block;
    margin-top: 0.75rem;
    font-style: normal;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    opacity: 0.85;
  }

  /* COMPARISON PAIRS (1 / 2 / 3-up grid) ─────────────────────────
     Auto-fits 1 column on phones, 2 on small tablets, and 3 on
     wider viewports so a third "Fruit purée" card sits cleanly
     alongside the existing Balance + Body cards instead of
     orphaning to a new row. */
  .ipage__grid--compare {
    display: grid;
    gap: clamp(1.25rem, 2.5vw, 2rem);
    grid-template-columns: 1fr;
  }

  @media (min-width: 640px) {
    .ipage__grid--compare { grid-template-columns: repeat(2, 1fr); }
  }

  @media (min-width: 960px) {
    .ipage__grid--compare { grid-template-columns: repeat(3, 1fr); }
  }

  /* Emoji placeholder frame — keeps the 1:1 layout when a card
     hasn't had its real photo uploaded yet. */
  .ipage__compare-frame--emoji {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fdf6e3;
  }

  .ipage__compare-emoji {
    font-size: clamp(3.5rem, 9vw, 5.5rem);
    line-height: 1;
    filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.06));
  }

  .ipage__compare {
    text-align: center;
    margin: 0;
  }

  .ipage__compare-frame {
    border: 2px solid rgb(var(--color-foreground-rgb) / 0.95);
    background: #fff;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    margin: 0 0 1rem;
  }

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

  .ipage__compare-cap {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
  }

  .ipage__compare-label {
    font-family: var(--font-primary--family);
    font-weight: 700;
    font-size: 1.15rem;
  }

  .ipage__compare-desc {
    font-size: 0.9rem;
    color: rgb(var(--color-foreground-rgb) / 0.65);
    line-height: 1.45;
  }

  /* SUGAR BARS (full-bleed tinted band) ──────────────────────── */
  .ipage__bars {
    background: var(--ipage-bars-bg);
    border-block: 2px solid rgb(var(--color-foreground-rgb) / 0.95);
    margin: clamp(2rem, 4vw, 3rem) calc(50% - 50vw);
    width: 100vw;
    text-align: center;
  }

  .ipage__bars-inner { padding-block: clamp(2.5rem, 5vw, 3.5rem); }

  .ipage__bars-intro {
    max-width: 60ch;
    margin: 0 auto 1.5rem;
    color: rgb(var(--color-foreground-rgb) / 0.78);
  }

  .ipage__bars-intro p { margin: 0 0 0.5rem; }

  .ipage__bars-chart {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    max-width: 600px;
    margin: 1.5rem auto;
  }

  .ipage__bars-row {
    display: flex;
    align-items: center;
    gap: 0.85rem;
  }

  .ipage__bars-rowlabel {
    width: 90px;
    font-size: 0.82rem;
    font-weight: 700;
    text-align: right;
    flex-shrink: 0;
  }

  /* Meter wraps the track + the value caption below it. The value
     sits *below* the bar (not inside the fill) so dual-display
     sugar copy like "~9g per 250ml can · ~3.5g/100ml" stays readable
     even when the fill is intentionally narrow on phones. */
  .ipage__bars-meter {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    min-width: 0;
  }

  .ipage__bars-track {
    background: #fff;
    height: 28px;
    overflow: hidden;
    border: 2px solid rgb(var(--color-foreground-rgb) / 0.95);
  }

  /* Animated bar fill — grows from 0 to its target % once the
     section becomes visible. The CSS variable lets each bar set
     its own destination width without inline keyframes. */
  @keyframes ipage-fill-bar {
    from { width: 0; }
    to { width: var(--ipage-bar-target); }
  }

  .ipage__bars-fill {
    background: var(--ipage-bar-color);
    display: block;
    height: 100%;
    width: var(--ipage-bar-target);
    animation: ipage-fill-bar 1.4s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
  }

  @media (prefers-reduced-motion: reduce) {
    .ipage__bars-fill {
      animation: none;
      width: var(--ipage-bar-target);
    }
  }

  .ipage__bars-value {
    font-size: 0.82rem;
    font-weight: 700;
    color: rgb(var(--color-foreground-rgb) / 0.92);
    line-height: 1.3;
    overflow-wrap: anywhere;
  }

  .ipage__bars-footnote {
    margin: 1rem auto 0;
    font-size: 0.78rem;
    color: rgb(var(--color-foreground-rgb) / 0.6);
    font-style: italic;
  }

  /* QUALITY PROTOCOL ─────────────────────────────────────────── */
  .ipage__qp { text-align: center; }

  .ipage__qp-intro {
    max-width: 60ch;
    margin: 0 auto 0.5rem;
    color: rgb(var(--color-foreground-rgb) / 0.85);
  }

  .ipage__qp-intro p { margin: 0 0 0.5rem; }
  .ipage__qp-intro p:last-child { margin-bottom: 0; }

  .ipage__qp-subnote {
    max-width: 60ch;
    margin: 0 auto 1.75rem;
    font-size: 0.85rem;
    color: rgb(var(--color-foreground-rgb) / 0.6);
  }

  .ipage__qp-grid {
    display: grid;
    gap: clamp(2rem, 4vw, 3rem);
    grid-template-columns: 1fr;
    max-width: 1000px;
    margin: 0 auto;
    align-items: start;
  }

  @media (min-width: 768px) {
    .ipage__qp-grid { grid-template-columns: 1fr 1fr; }
  }

  .ipage__qp-col { text-align: center; }

  .ipage__qp-colhead {
    font-family: var(--font-primary--family);
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0 0 1.25rem;
    color: rgb(var(--color-foreground-rgb) / 0.9);
    text-decoration: underline;
    text-decoration-color: var(--ipage-brand);
    text-underline-offset: 5px;
    text-decoration-thickness: 2px;
  }

  .ipage__qp-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    align-items: stretch;
  }

  .ipage__qp-badge {
    background: #fff;
    border: 2px solid rgb(var(--color-foreground-rgb) / 0.95);
    padding: 0.85rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.85rem;
    text-align: left;
    box-shadow: 4px 4px 0 rgb(var(--color-foreground-rgb) / 0.06);
  }

  .ipage__qp-icon {
    font-size: 1.5rem;
    line-height: 1;
    flex-shrink: 0;
    width: 2rem;
    text-align: center;
  }

  .ipage__qp-content {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    flex: 1;
  }

  .ipage__qp-text {
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    line-height: 1.25;
    /* Long single tokens like "NANOPARTICLE" or "RESIDUAL" used to
       blow out the badge and clip on the right at narrow phone
       widths. Allow break-anywhere so labels stay fully visible. */
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .ipage__qp-sub {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: rgb(var(--color-foreground-rgb) / 0.6);
    line-height: 1.3;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .ipage__qp-footnote p { margin: 0 0 0.5rem; }
  .ipage__qp-footnote p:last-child { margin-bottom: 0; }

  .ipage__qp-footnote {
    margin: 2rem auto 0;
    font-size: 0.78rem;
    color: rgb(var(--color-foreground-rgb) / 0.55);
    font-style: italic;
    max-width: 60ch;
  }

  /* FAQ ──────────────────────────────────────────────────────── */
  .ipage__faq {
    max-width: 820px;
    margin: 0 auto;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: clamp(1rem, 3vw, 2rem);
    border-top: 1px solid rgb(var(--color-foreground-rgb) / 0.08);
  }

  .ipage__faq-heading {
    text-align: center;
    margin: 0 0 1.5rem;
  }

  .ipage__faq-list {
    width: 100%;
    border-top: 1px solid rgb(var(--color-foreground-rgb) / 0.1);
  }

  .ipage__faq-row {
    border-bottom: 1px solid rgb(var(--color-foreground-rgb) / 0.1);
    padding: 1rem 0;
  }

  .ipage__faq-q {
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-weight: 700;
    font-size: 1rem;
    color: rgb(var(--color-foreground-rgb) / 0.95);
    line-height: 1.4;
  }

  .ipage__faq-q::-webkit-details-marker { display: none; }

  .ipage__faq-row[open] > .ipage__faq-q { color: var(--ipage-brand); }

  .ipage__faq-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 999px;
    background: var(--ipage-brand);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 220ms ease;
  }

  .ipage__faq-icon svg { display: block; }

  .ipage__faq-row[open] > .ipage__faq-q > .ipage__faq-icon {
    transform: rotate(45deg);
  }

  @media (prefers-reduced-motion: reduce) {
    .ipage__faq-icon { transition: none; }
  }

  .ipage__faq-a {
    padding: 0.75rem 0 0.25rem;
    color: rgb(var(--color-foreground-rgb) / 0.78);
    font-size: 0.95rem;
    line-height: 1.55;
  }

  .ipage__faq-a p { margin: 0 0 0.6rem; }
  .ipage__faq-a p:last-child { margin-bottom: 0; }
  .ipage__faq-a a {
    color: var(--ipage-brand);
    text-decoration: underline;
    text-underline-offset: 2px;
  }

  .ipage__back-to-top {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin: 1.75rem auto 0;
    padding: 0.55rem 1rem;
    color: rgb(var(--color-foreground-rgb) / 0.65);
    background: transparent;
    border: 1px solid rgb(var(--color-foreground-rgb) / 0.12);
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-decoration: none;
    text-transform: uppercase;
    transition: color 150ms ease, border-color 150ms ease, background 150ms ease;
  }

  .ipage__back-to-top:hover,
  .ipage__back-to-top:focus {
    color: rgb(var(--color-foreground-rgb) / 0.95);
    border-color: rgb(var(--color-foreground-rgb) / 0.3);
    background: rgb(var(--color-foreground-rgb) / 0.04);
  }

  /* CTA BOX ──────────────────────────────────────────────────── */
  .ipage__cta { text-align: center; }

  .ipage__cta-inner { padding-block: clamp(2rem, 4vw, 3rem); }

  .ipage__cta-body {
    max-width: 50ch;
    margin: 0 auto 1.5rem;
    color: rgb(var(--color-foreground-rgb) / 0.78);
    font-size: 1.05rem;
    line-height: 1.5;
  }

  .ipage__cta-btn {
    display: inline-block;
    background: var(--ipage-brand);
    color: #fff;
    padding: 0.9rem 2rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.9rem;
    border: 2px solid var(--ipage-brand);
    transition: background 180ms ease, color 180ms ease, transform 180ms ease;
  }

  .ipage__cta-btn:hover,
  .ipage__cta-btn:focus {
    background: #fff;
    color: var(--ipage-brand);
    transform: translateY(-1px);
  }

  /* LEGAL FOOTER ─────────────────────────────────────────────── */
  .ipage__legal {
    background: #f9fafb;
    border-top: 1px solid rgb(var(--color-foreground-rgb) / 0.1);
    text-align: center;
  }

  .ipage__legal-inner {
    max-width: 800px;
    padding-block: clamp(1.5rem, 3vw, 2rem);
    font-size: 0.78rem;
    color: rgb(var(--color-foreground-rgb) / 0.6);
    line-height: 1.5;
  }

  .ipage__legal-inner p { margin: 0 0 0.5rem; }
  .ipage__legal-inner p:last-child { margin-bottom: 0; }

  /* Smooth scroll for the back-to-top anchor (also benefits the
     rest of the page if users add additional in-page anchors). */
  html { scroll-behavior: smooth; }
  @media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
  }
/* END_SECTION:ingredients */

/* START_SECTION:journal-related (INDEX:32) */
.journal-related {
    width: 100%;
  }

  .journal-related__inner {
    max-width: var(--page-width);
    margin: 0 auto;
    padding-inline: var(--page-margin);
  }

  .journal-related__head {
    text-align: center;
    margin-block-end: 1.5rem;
    padding-block-start: 1rem;
    border-block-start: 1px solid rgb(var(--color-foreground-rgb) / 0.1);
  }

  .journal-related__heading {
    font-family: var(--font-primary--family);
    font-size: clamp(1.4rem, 2.4vw, 1.85rem);
    font-weight: 600;
    margin: 0 0 0.4rem;
    letter-spacing: -0.01em;
  }

  .journal-related__sub {
    margin: 0;
    color: rgb(var(--color-foreground-rgb) / 0.7);
    font-size: 0.95rem;
  }

  .journal-related__grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }

  /* Single match: keep card centred and modest width to avoid a giant lonely card. */
  .journal-related__grid[data-count='1'] {
    grid-template-columns: minmax(0, 360px);
    justify-content: center;
  }

  .journal-related__item {
    margin: 0;
  }

  /* Card style matches the unified design used by homepage carousel,
     /blogs/recipes listing, and recipe-related strip. */
  .journal-related__card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: var(--color-foreground);
    height: 100%;
  }

  .journal-related__media {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    background: rgb(var(--color-foreground-rgb) / 0.04);
    overflow: hidden;
  }

  .journal-related__media-link {
    display: block;
    width: 100%;
    height: 100%;
  }

  .journal-related__img,
  .journal-related__img-placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 320ms cubic-bezier(0.2, 0.7, 0.2, 1);
    transform-origin: center center;
    will-change: transform;
  }

  .journal-related__card:hover .journal-related__img,
  .journal-related__card:focus-within .journal-related__img {
    transform: scale(1.04);
  }

  .journal-related__img-placeholder {
    background: linear-gradient(135deg,
      rgb(var(--color-foreground-rgb) / 0.06),
      rgb(var(--color-foreground-rgb) / 0.02));
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Mask logo at low opacity so the photoless card still feels
     branded rather than broken. Width % keeps it scaling with the
     responsive card. */
  .journal-related__img-fallback-logo {
    width: 32%;
    height: auto;
    opacity: 0.18;
  }

  .journal-related__body {
    padding: 0.75rem 0 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1 1 auto;
  }

  .journal-related__title-link {
    text-decoration: none;
    color: inherit;
    transition: color 200ms ease;
  }

  .journal-related__title-link:hover,
  .journal-related__card:focus-within .journal-related__title-link {
    color: var(--color-primary-hover, var(--color-primary));
  }

  .journal-related__title {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .journal-related__meta {
    list-style: none;
    margin: 0.25rem 0 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
  }

  .journal-related__chip {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.75rem;
    font-weight: 500;
    line-height: 1;
    padding: 0.35rem 0.6rem;
    border-radius: 999px;
    background-color: rgb(var(--color-foreground-rgb) / 0.05);
    color: rgb(var(--color-foreground-rgb) / 0.78);
    white-space: nowrap;
  }

  .journal-related__chip--tag {
    background-color: rgb(var(--color-primary-rgb) / 0.1);
    color: var(--color-primary);
    text-transform: capitalize;
  }

  .journal-related__chip-icon {
    width: 0.85rem;
    height: 0.85rem;
    flex-shrink: 0;
  }

  @media (prefers-reduced-motion: reduce) {
    .journal-related__img {
      transition: none;
    }

    .journal-related__card:hover .journal-related__img,
    .journal-related__card:focus-within .journal-related__img {
      transform: none;
    }
  }
/* END_SECTION:journal-related */

/* START_SECTION:july-dry-month-band (INDEX:33) */
.jdm-band {
    width: 100%;
    background: var(--bcc-bg, #d23234);
    color: var(--bcc-color, #ffffff);
    font-family: var(--font-body--family, inherit);
  }

  .jdm-band__inner {
    max-width: 1100px;
    margin: 0 auto;
    padding-inline: clamp(1rem, 4vw, 2.5rem);
  }

  /* No logo / no scatter: centered copy stack (homepage default). */
  .jdm-band--editorial:not(.jdm-band--has-art) .jdm-band__inner:not(:has(.jdm-band__logo-wrap)) {
    grid-template-columns: 1fr;
    max-width: 72ch;
    text-align: center;
  }

  .jdm-band--editorial:not(.jdm-band--has-art) .jdm-band__inner:not(:has(.jdm-band__logo-wrap)) .jdm-band__body {
    align-items: center;
  }

  .jdm-band--editorial:not(.jdm-band--has-art) .jdm-band__rating {
    justify-content: center;
  }

  .jdm-band--editorial:not(.jdm-band--has-art) .jdm-band__rating .store-rating-trust-line {
    justify-content: center;
  }

  .jdm-band--editorial:not(.jdm-band--has-art) .jdm-band__ctas {
    justify-content: center;
  }

  .jdm-band--editorial:not(.jdm-band--has-art) .jdm-band__sub {
    margin-inline: auto;
  }

  /* Editorial layout — homepage band, taller; logo + content when no scatter art */
  .jdm-band--editorial .jdm-band__inner {
    padding-block: clamp(2rem, 5vw, 3rem);
    display: grid;
    grid-template-columns: minmax(120px, 200px) 1fr;
    gap: clamp(1.25rem, 4vw, 2.5rem);
    align-items: center;
  }

  /* Product scatter — copy left, angled art pinned to the right edge */
  .jdm-band--editorial.jdm-band--has-art {
    position: relative;
    overflow: hidden;
  }

  .jdm-band--editorial.jdm-band--has-art .jdm-band__inner {
    grid-template-columns: 1fr;
    max-width: 1100px;
    text-align: left;
  }

  .jdm-band--editorial.jdm-band--has-art .jdm-band__body {
    position: relative;
    z-index: 1;
    max-width: min(36rem, 52%);
  }

  /* Slim layout — collection page band, single-row strip */
  .jdm-band--slim .jdm-band__inner {
    padding-block: clamp(0.7rem, 1.6vw, 1.5rem);
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: clamp(0.75rem, 2vw, 1.5rem);
    align-items: center;
  }

  .jdm-band--slim .jdm-band__inner:not(:has(.jdm-band__logo-wrap)) {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .jdm-band__art-wrap {
    display: none;
    pointer-events: none;
    user-select: none;
  }

  .jdm-band__art {
    display: block;
    width: auto;
    height: 100%;
    max-width: none;
    object-fit: contain;
    opacity: calc(var(--jdm-art-opacity-pct, 50) / 100);
    transform: rotate(12deg) scale(1.12);
    transform-origin: center center;
    pointer-events: none;
    user-select: none;
  }

  @media (min-width: 750px) {
    .jdm-band--editorial.jdm-band--has-art .jdm-band__art-wrap {
      display: flex;
      position: absolute;
      top: 50%;
      right: clamp(-2.5rem, -6vw, -1rem);
      width: min(60%, 660px);
      height: 132%;
      transform: translateY(-50%);
      align-items: center;
      justify-content: flex-end;
      z-index: 0;
    }
  }

  @media (min-width: 990px) {
    .jdm-band--editorial.jdm-band--has-art .jdm-band__art-wrap {
      right: clamp(-3.5rem, -5vw, -1.5rem);
      width: min(58%, 720px);
      height: 138%;
    }

    .jdm-band--editorial.jdm-band--has-art .jdm-band__body {
      max-width: min(38rem, 50%);
    }
  }

  /* Mobile — both layouts collapse to centered single column */
  @media (max-width: 749px) {
    .jdm-band--editorial .jdm-band__inner,
    .jdm-band--slim .jdm-band__inner {
      grid-template-columns: 1fr;
      text-align: center;
      gap: 0.75rem;
    }

    .jdm-band__art-wrap {
      display: none !important;
    }

    .jdm-band__logo-wrap {
      justify-self: center;
    }

    .jdm-band--slim .jdm-band__inner {
      padding-block: 0.85rem;
    }
  }

  /* Logo */
  .jdm-band__logo-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .jdm-band__logo {
    display: block;
    width: 100%;
    height: auto;
    max-width: 200px;
    object-fit: contain;
    /* Black logo asset on light-pink band — no recolour filter needed. */
    filter: none;
  }

  .jdm-band--slim .jdm-band__logo {
    max-width: 70px;
  }

  @media (max-width: 749px) {
    .jdm-band--slim .jdm-band__logo {
      max-width: 90px;
    }
  }

  /* Body — vertical stack of eyebrow + heading + sub + ctas */
  .jdm-band__body {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    min-width: 0;
  }

  .jdm-band--slim .jdm-band__body {
    flex-direction: row;
    align-items: center;
    gap: 0.85rem;
    flex-wrap: wrap;
  }

  /* Eyebrow uses the band text colour at reduced opacity rather than a
     separate accent colour. The previous pink accent (#ffc1cd) sat on a
     pink-leaning red and didn't have enough contrast — white-at-72% gives
     the eyebrow a clear secondary tier under the heading while still
     reading on the brand-red background. */
  .jdm-band__eyebrow {
    margin: 0;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--bcc-color, #ffffff);
    opacity: 0.95;
  }

  .jdm-band--slim .jdm-band__eyebrow {
    display: none;
  }

  .jdm-band__heading {
    margin: 0;
    font-family: var(--font-primary--family, inherit);
    font-size: clamp(1.4rem, 3.4vw, 2rem);
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1.15;
    color: inherit;
  }

  .jdm-band--slim .jdm-band__heading {
    font-size: clamp(0.92rem, 1.6vw, 1.05rem);
    font-weight: 600;
    letter-spacing: 0.01em;
    line-height: 1.4;
  }

  /* Mobile-tailored heading swap. Default state hides the mobile-only
     string at all widths; the 749px breakpoint below flips visibility
     so each width gets the optimal length copy. Applies to both layouts
     so the slim collection-page band can run a shorter line on phones
     where the long campaign sentence wraps awkwardly. */
  .jdm-band__heading--mobile { display: none; }
  @media (max-width: 749px) {
    .jdm-band__heading--desktop { display: none; }
    .jdm-band__heading--mobile { display: block; }
  }

  .jdm-band__sub {
    margin: 0;
    font-size: 1rem;
    line-height: 1.55;
    opacity: 1;
    max-width: 60ch;
  }

  .jdm-band__sub p {
    margin: 0 0 0.5rem;
  }

  .jdm-band__sub p:last-child {
    margin-bottom: 0;
  }

  .jdm-band__rating {
    display: flex;
    justify-content: flex-start;
    width: 100%;
    margin: 0.15rem 0 0;
  }

  .jdm-band .store-rating-trust-line,
  .jdm-band .store-rating-trust-line__value,
  .jdm-band .store-rating-trust-line__count {
    color: #fff;
  }

  .jdm-band .store-rating-trust-line__count {
    opacity: 0.92;
  }

  .jdm-band--editorial .jdm-band__rating .store-rating-trust-line {
    justify-content: flex-start;
  }

  .jdm-band--slim .jdm-band__rating {
    justify-content: center;
    margin: 0;
    flex: 1 1 100%;
  }

  .jdm-band--slim .jdm-band__rating .store-rating-trust-line {
    justify-content: center;
  }

  .jdm-band--slim .jdm-band__inner:not(:has(.jdm-band__logo-wrap)) .jdm-band__body {
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .jdm-band--slim .jdm-band__body:has(.jdm-band__rating) {
    flex-wrap: wrap;
  }

  .jdm-band--slim .jdm-band__sub {
    display: none;
  }

  /* CTAs */
  .jdm-band__ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem 0.85rem;
    margin-top: 0.4rem;
  }

  .jdm-band--slim .jdm-band__ctas {
    margin-top: 0;
    margin-left: auto;
    flex-wrap: nowrap;
  }

  @media (max-width: 749px) {
    /* Slim body is flex-direction:row at desktop so headline + CTA sit
       on a single line. On mobile we collapse it to column so the
       heading and CTA each get their own centered line — matches the
       centered logo above and avoids the "headline centered, CTA
       left-aligned" wrap state. */
    .jdm-band--slim .jdm-band__body {
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 0.75rem;
    }

    .jdm-band--slim .jdm-band__ctas {
      margin-left: 0;
      justify-content: center;
    }

    /* Editorial layout collapses to a tighter, more decisive band on
       mobile: subhead and secondary CTA are dropped so the eyebrow +
       (mobile) heading + primary CTA carry the message. The full subhead
       is the kind of context shoppers want on desktop where there's
       horizontal room; on mobile the campaign page handles the long
       version, so the band acts more like a slim hero. */
    .jdm-band--editorial .jdm-band__sub,
    .jdm-band--editorial .jdm-band__btn--secondary {
      display: none;
    }

    .jdm-band--editorial .jdm-band__body {
      align-items: center;
    }

    .jdm-band--editorial .jdm-band__rating {
      justify-content: center;
    }

    .jdm-band--editorial .jdm-band__rating .store-rating-trust-line {
      justify-content: center;
    }

    .jdm-band--editorial .jdm-band__ctas {
      justify-content: center;
    }
  }

  /* Editorial system buttons — square, uppercase, letter-spaced.
     On the light-pink band: primary is black fill / white text;
     secondary is black outline / black text. */
  .jdm-band__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1.6rem;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-decoration: none;
    border-radius: 0;
    border: 2px solid #1a1a1a;
    transition: transform 200ms ease, background 200ms ease, color 200ms ease, border-color 200ms ease;
    white-space: nowrap;
    cursor: pointer;
  }

  .jdm-band--slim .jdm-band__btn {
    padding: 0.55rem 1.1rem;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
  }

  .jdm-band__btn--primary {
    background: #ffffff;
    color: #1a1a1a;
    border-color: #ffffff;
  }

  .jdm-band__btn--secondary {
    background: transparent;
    color: inherit;
    border-color: currentColor;
  }

  @media (hover: hover) {
    .jdm-band__btn--primary:hover {
      background: transparent;
      color: #ffffff;
      border-color: #ffffff;
      transform: translateY(-2px);
    }
    .jdm-band__btn--secondary:hover {
      background: #ffffff;
      color: #1a1a1a;
      border-color: #ffffff;
      transform: translateY(-2px);
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .jdm-band__btn,
    .jdm-band__btn:hover {
      transition: none;
      transform: none;
    }
  }
/* END_SECTION:july-dry-month-band */

/* START_SECTION:logo (INDEX:34) */
.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: 750px) {
      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:36) */
.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:37) */
/**
   * 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);
  }

  /**
   * Apart from the first and second rows in the grid, all remaining blog posts
   * are arranged in a three-column layout:
   * +------------+------------+-------------+
   * |            |            |             |
   * |  (span 2)  |  (span 2)  |  (span 2)   |
   * |            |            |             |
   * +------------+------------+-------------+
   */
  .blog-post-item {
    --blog-post-card-scale: 0.6;

    grid-column: span 2;

    /* Bumped from 749px → 989px so iPad portrait + small tablets get full-width cards. */
    @media screen and (max-width: 989px) {
      --blog-post-card-scale: 0.5;

      grid-column: span 6;
    }
  }

  /**
   * The second row of blog posts has two columns:
   * +-------------------+-------------------+
   * |                   |                   |
   * |  (column span 3)  |  (column span 3)  |
   * |                   |                   |
   * +-------------------+-------------------+
   */
  .blog-post-item:nth-child(2),
  .blog-post-item:nth-child(3) {
    --blog-post-card-scale: 0.8;

    grid-column: span 3;

    @media screen and (max-width: 989px) {
      --blog-post-card-scale: 0.5;

      grid-column: span 6;
    }
  }

  /**
   * The first row of blog posts has only one column:
   * +---------------------------------------+
   * |                                       |
   * |           (1 column span 6)           |
   * |                                       |
   * +---------------------------------------+
   */
  .blog-post-item:first-child {
    --blog-post-card-scale: 1;

    grid-column: span 6;
  }

  /**
   * Editor's pick — pinned hero rendered ABOVE the grid. Inherits the hero
   * sizing so it visually matches a chronological first-child hero.
   */
  .blog-post-item--featured {
    --blog-post-card-scale: 1;

    width: 100%;
    margin-block-end: var(--rows-gap);
    position: relative;
  }

  /**
   * When a featured article is pinned above the grid, the grid's first
   * child should NOT receive hero treatment — otherwise we'd render two
   * cinematic heroes back-to-back. Reset the first child to the standard
   * 2-up layout (matches :nth-child(2)/:nth-child(3) sizing) and revert
   * the side-by-side flex/width rules from _blog-post-card.liquid.
   */
  .blog-posts-container--has-featured .blog-post-item:first-child {
    --blog-post-card-scale: 0.8;

    grid-column: span 3;

    @media screen and (max-width: 989px) {
      --blog-post-card-scale: 0.5;

      grid-column: span 6;
    }
  }

  .blog-posts-container--has-featured .blog-post-item:first-child .blog-post-card {
    flex-direction: column;
  }

  .blog-posts-container--has-featured .blog-post-item:first-child .blog-post-card__image-container,
  .blog-posts-container--has-featured .blog-post-item:first-child .blog-post-card__content {
    width: 100%;
    padding-inline-start: 0;
  }

  @media screen and (min-width: 990px) {
    .blog-posts-container--has-featured .blog-post-item:first-child .blog-post-card__image {
      aspect-ratio: 1 / 1;
      height: auto;
    }
  }

  /**
   * Editor's pick badge — small label sitting on top of the featured card's
   * image. Only renders if the merchant has set badge text.
   *
   * "New" variant ('blog-post-card__badge--new') uses the same skeleton
   * but flips to the opposite corner so it can co-exist with Editor's
   * pick on the same card without overlapping. Keeps colour brand-tinted
   * but pulls back from solid primary so the eye still reads Editor's
   * pick first when both apply.
   */
  .blog-post-card__badge {
    position: absolute;
    top: 1rem;
    inset-inline-start: 1rem;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.4rem 0.75rem;
    border-radius: 999px;
    background-color: var(--color-primary);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgb(0 0 0 / 0.15);
  }

  .blog-post-card__badge--new {
    inset-inline-start: auto;
    inset-inline-end: 1rem;
    background-color: rgb(var(--color-foreground-rgb));
    color: rgb(var(--color-background-rgb));
    box-shadow: 0 4px 12px rgb(0 0 0 / 0.18);
  }

  /**
   * When there's no image, the blog post item has a border.
   * position: relative so absolute-positioned badges (Editor's pick / New)
   * are scoped to their card. Set on every item — it's free, and keeps
   * the rule simple regardless of whether the card has an image or not.
   */
  .blog-post-item {
    position: relative;
    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;
  }

  /* Hide filtered-out cards. `display: none` is needed because grid items
     would otherwise still take a slot. */
  .blog-post-item[hidden] {
    display: none;
  }

  /* Filter transitions — make the flavour-filter feel intentional rather
     than jarring. Cards leaving fade out, cards entering fade up with a
     small stagger driven by --enter-delay set in JS. Initial page load
     skips the animation (handled in JS) so URL-driven ?flavour=cherry
     doesn't flash. */

  .blog-post-item--leaving {
    opacity: 0;
    transform: translateY(-4px);
    transition: opacity 200ms ease, transform 200ms ease;
    pointer-events: none;
  }

  @keyframes blog-post-item-enter {
    from {
      opacity: 0;
      transform: translateY(8px);
    }
    to {
      opacity: 1;
      transform: none;
    }
  }

  .blog-post-item--entering {
    animation: blog-post-item-enter 280ms cubic-bezier(0.2, 0.7, 0.2, 1) both;
    animation-delay: var(--enter-delay, 0ms);
    /* Hint the compositor so the animation stays smooth on lower-end
       Android devices. Cleared by the animation finishing (via `both`). */
    will-change: opacity, transform;
  }

  @media (prefers-reduced-motion: reduce) {
    .blog-post-item--leaving,
    .blog-post-item--entering {
      animation: none;
      transition: none;
    }
  }

  /* Recipe library meta line — "X recipes · Last updated [date]".
     Sits between the intro paragraph and the filter pills. Subordinated
     to the H1/intro so it reads as auxiliary metadata, not a heading. */
  .blog-meta-line {
    margin: 0 0 1rem;
    padding: 0;
    font-size: 0.875rem;
    color: rgb(var(--color-foreground-rgb) / 0.7);
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem 0.5rem;
    align-items: baseline;
  }

  .blog-meta-line__count {
    font-weight: 600;
    color: rgb(var(--color-foreground-rgb) / 0.85);
    font-variant-numeric: tabular-nums;
  }

  .blog-meta-line__sep {
    opacity: 0.5;
  }

  .blog-meta-line__updated time {
    font-variant-numeric: tabular-nums;
  }

  /* Recipe flavour filter (shown only on /blogs/recipes) */
  .recipe-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 0.625rem;
    margin-block-end: 1.5rem;
    padding-block-end: 0.5rem;
  }

  .recipe-filter__btn {
    appearance: none;
    border: 1px solid rgb(var(--color-foreground-rgb) / 0.15);
    background-color: transparent;
    color: rgb(var(--color-foreground-rgb) / 0.78);
    font-size: 0.85rem;
    font-weight: 500;
    line-height: 1;
    min-height: var(--minimum-touch-target, 44px);
    padding: 0.55rem 0.95rem;
    border-radius: 999px;
    cursor: pointer;
    transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
  }

  .recipe-filter__btn:hover {
    border-color: rgb(var(--color-foreground-rgb) / 0.4);
    color: var(--color-foreground);
  }

  .recipe-filter__btn:focus-visible {
    outline: 2px solid var(--color-primary, currentColor);
    outline-offset: 2px;
  }

  .recipe-filter__btn[aria-pressed='true'] {
    background-color: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary);
  }

  /* Count appended to each pill, e.g. "Cherry (3)". Lighter weight + subtle
     opacity so the label stays the primary read. Inherits color via
     currentColor so it auto-flips white on the active pill. */
  .recipe-filter__count {
    margin-inline-start: 0.25rem;
    font-weight: 400;
    font-variant-numeric: tabular-nums;
    opacity: 0.65;
  }

  .recipe-filter__btn[aria-pressed='true'] .recipe-filter__count {
    opacity: 0.85;
  }

  /* Pills for flavours with zero current matches still render so the
     filter bar always feels complete, but they're visually demoted —
     mum can still click to see an empty-state message, and merchants
     get visual feedback on which flavours need recipes added. */
  .recipe-filter__btn--empty {
    opacity: 0.5;
  }

  .recipe-filter__empty {
    margin: 0 0 1.5rem;
    padding: 1.25rem;
    text-align: center;
    color: rgb(var(--color-foreground-rgb) / 0.7);
    border: 1px dashed rgb(var(--color-foreground-rgb) / 0.2);
    border-radius: 8px;
  }

  /* Mobile: allow filter pills to scroll horizontally if they overflow */
  @media screen and (max-width: 749px) {
    .recipe-filter {
      flex-wrap: nowrap;
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
      padding-block-end: 0.25rem;
    }

    .recipe-filter::-webkit-scrollbar {
      display: none;
    }

    .recipe-filter__btn {
      flex-shrink: 0;
    }
  }

  /* Recipes shop strip — inlined from former blog-recipes-intro section */

  .recipes-shop {
    width: 100%;
  }

  .recipes-shop__inner {
    max-width: var(--page-width);
    margin-inline: auto;
    padding-inline: var(--page-margin);
  }

  .recipes-shop__head {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.75rem 1.5rem;
    margin-block-end: 1.25rem;
    padding-block-start: 1rem;
    border-block-start: 1px solid rgb(var(--color-foreground-rgb) / 0.1);
  }

  .recipes-shop__title {
    font-family: var(--font-primary--family);
    font-size: clamp(1.2rem, 1.8vw, 1.5rem);
    font-weight: 600;
    margin: 0;
    letter-spacing: -0.01em;
  }

  .recipes-shop__cta {
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    color: var(--color-primary, var(--color-foreground));
    transition: opacity 0.2s ease;
  }

  .recipes-shop__cta:hover {
    opacity: 0.7;
  }

  .recipes-shop__grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1rem;
  }

  @media (min-width: 1280px) {
    .recipes-shop__grid {
      grid-template-columns: repeat(6, minmax(0, 1fr));
    }
  }

  .recipes-shop__item {
    margin: 0;
  }

  .recipes-shop__card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    text-decoration: none;
    color: var(--color-foreground);
    padding: 0.75rem 0.5rem 1rem;
    border-radius: 12px;
    transition:
      transform 0.2s ease,
      background-color 0.2s ease;
  }

  .recipes-shop__card:hover {
    background-color: rgb(var(--color-foreground-rgb) / 0.03);
    transform: translateY(-2px);
  }

  .recipes-shop__card:focus-visible {
    outline: 2px solid var(--color-primary, currentColor);
    outline-offset: 2px;
  }

  .recipes-shop__img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    margin-block-end: 0.5rem;
  }

  .recipes-shop__name {
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.2;
  }

  .recipes-shop__price {
    margin-block-start: 0.15rem;
    font-size: 0.85rem;
    color: rgb(var(--color-foreground-rgb) / 0.65);
  }

  @media (prefers-reduced-motion: reduce) {
    .recipes-shop__card {
      transition: none;
    }

    .recipes-shop__card:hover {
      transform: none;
    }
  }

  /* Saved filter pill — shares the same .recipe-filter__btn skeleton so
     it sits naturally with the flavour pills. Uses currentColor on the
     SVG so the heart fills + outline both flip white when the pill is
     active (pressed). Hidden via the [hidden] attribute when there are
     no saves, so we never show "Saved (0)". */
  .recipe-filter__btn--saved {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
  }

  .recipe-filter__saved-icon {
    width: 0.95rem;
    height: 0.95rem;
    color: var(--color-primary);
    transition: color 0.15s ease;
  }

  .recipe-filter__btn--saved[aria-pressed='true'] .recipe-filter__saved-icon {
    color: #fff;
  }

  /* Anchor the card heart to the image — see assets/recipe-saves.css
     for the full save-button styles, which apply on both the listing
     and the individual article page. */
  .blog-post-card__image-container {
    position: relative;
  }
/* END_SECTION:main-blog */

/* START_SECTION:main-cart (INDEX:38) */
/* Cart-page root must be a block container (the drawer overrides this to
     flex via the more-specific `.cart-drawer .cart-items-component`). Without
     this it falls back to the custom-element default (inline), which can let
     the following section overlap the summary. */
  cart-items-component {
    display: block;
  }

  /* --- Global Summary Alignment Fix --- */
  .cart-page__summary details, 
  .cart-page__summary .cart-note,
  .cart-page__summary summary,
  .cart-page__summary .cart-note__label {
    padding-left: 0 !important;
    margin-left: 0 !important;
    width: 100% !important;
    text-align: left !important;
  }

  .cart-page__summary summary {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    list-style: none !important;
  }

  .summary-wrapper-dtc {
    margin-block-end: 0;
  }

  /* --- Pro DTC Animations --- */
  .success-pulse {
    animation: pulse-glow 2s infinite;
  }
  @keyframes pulse-glow {
    0% { opacity: 1; }
    50% { opacity: 0.7; }
    100% { opacity: 1; }
  }

  /* --- Core Layout --- */
  .cart-page {
    --cart-font-size--2xs: var(--font-size--2xs);
    --cart-font-size--xs: var(--font-size--xs);
    --cart-font-size--sm: var(--font-size--sm);
    --cart-font-size--md: var(--font-size--md);
    --cart-font-size--2xl: var(--font-size--2xl);

    display: grid;
    grid-template-columns: 1fr;
    gap: 0 var(--padding-5xl);
  }

  .cart-page--empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-block-start: 8px;
  }

  .cart-page--empty .cart-page__items {
    width: 100%;
  }

  .cart-page__summary {
    padding-top: var(--padding-xl);
  }

  @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: flex !important;
      flex-direction: column !important;
      height: 100%;
      grid-column: 2;
      grid-row: 1 / -1;
      align-self: stretch;
      padding-top: 0;
      position: relative;
    }
  }

  @media screen and (min-width: 1400px) {
    .cart-page {
      grid-template-columns: 1fr var(--sidebar-width);
    }
  }

  /* Scroll-aware sticky mobile checkout bar */
  .cart-mobile-checkout {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: var(--layer-sticky, 8);
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px calc(10px + env(safe-area-inset-bottom, 0px));
    background: var(--color-background);
    border-top: 1px solid rgb(0 0 0 / 0.08);
    box-shadow: 0 -6px 24px rgb(0 0 0 / 0.12);
    transform: translateY(110%);
    transition: transform 0.22s ease;
    visibility: hidden;
  }

  .cart-mobile-checkout.is-visible {
    transform: translateY(0);
    visibility: visible;
  }

  @media screen and (min-width: 750px) {
    .cart-mobile-checkout {
      display: none;
    }
  }

  .cart-mobile-checkout__total {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
    flex-shrink: 0;
  }

  .cart-mobile-checkout__label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: rgb(var(--color-foreground-rgb) / 0.6);
  }

  .cart-mobile-checkout__value {
    font-size: 1.05rem;
    font-weight: 700;
  }

  .cart-mobile-checkout__btn.button {
    flex: 1;
  }

  .cart-pack-brand .cart-mobile-checkout__btn.button {
    border-radius: 0;
    background: #d23234;
    color: #fff;
    border: 2px solid #d23234;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 800;
  }

  @media (hover: hover) {
    .cart-pack-brand .cart-mobile-checkout__btn.button:hover {
      background: #ffffff;
      color: #d23234;
      box-shadow: 3px 3px 0 #d23234;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .cart-mobile-checkout {
      transition: none;
    }
  }

  .cart-page__items .cart-items--dividers .cart-items__table-row {
    border-bottom-color: rgb(26 26 26 / 0.08);
  }
/* END_SECTION:main-cart */

/* START_SECTION:main-collection (INDEX:40) */
.main-collection-grid {
    grid-column: var(--grid-column--mobile);

    @media screen and (min-width: 750px) {
      grid-column: var(--grid-column--desktop);
    }
  }

  .collection-description {
    max-width: 70ch;
    margin: 0 auto var(--padding-lg);
    padding-inline: var(--page-margin);
    color: rgb(var(--color-foreground-rgb) / var(--opacity-subdued-text));
    font-size: var(--font-paragraph--size);
    line-height: 1.55;

    @media screen and (min-width: 750px) {
      text-align: center;
    }
  }

  .collection-description :is(p, li) {
    margin: 0.35rem 0;
  }

  /* Fridge Fill value banner */
  .collection-value-banner {
    margin: 0 auto 0.75rem;
    padding: 0.55rem 1rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.35rem 0.75rem;
    border-radius: 12px;
    background: rgb(210 50 52 / 0.06);
    text-align: center;
  }

  .collection-value-banner__text {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-foreground);
    line-height: 1.35;
  }

  .collection-value-banner__cta {
    font-size: 0.9rem;
    font-weight: 700;
    color: #d23234;
    text-decoration: none;
    white-space: nowrap;
  }

  @media screen and (min-width: 750px) {
    .collection-value-banner {
      width: 100vw;
      max-width: 100vw;
      margin-inline: calc(50% - 50vw);
      margin-bottom: 0.85rem;
      padding: 0.65rem clamp(1rem, 4vw, 2.5rem);
      border-radius: 0;
      flex-wrap: nowrap;
      justify-content: center;
      gap: 0.75rem 1.25rem;
      border-block: 1px solid rgb(210 50 52 / 0.1);
    }

    .collection-value-banner__text {
      font-size: 0.92rem;
      text-wrap: nowrap;
    }
  }

  @media screen and (min-width: 990px) {
    .collection-value-banner__text {
      font-size: 0.95rem;
    }
  }

  .collection-value-banner__cta:hover {
    text-decoration: underline;
    text-underline-offset: 2px;
  }


  .collection-description a {
    color: var(--color-foreground);
    text-decoration: underline;
  }

  .collection-wrapper {
    @media screen and (min-width: 750px) {
      grid-template-columns:
        1fr repeat(
          var(--centered-column-number),
          minmax(0, calc((var(--page-width) - var(--page-margin) * 2) / var(--centered-column-number)))
        )
        1fr;
    }
  }

  .collection-wrapper:has(.facets-block-wrapper--full-width),
  .collection-wrapper:has(.collection-wrapper--full-width) {
    @media screen and (min-width: 750px) {
      grid-column: 1 / -1;
      grid-template-columns:
        minmax(var(--page-margin), 1fr) repeat(
          var(--centered-column-number),
          minmax(0, calc((var(--page-width) - var(--page-margin) * 2) / var(--centered-column-number)))
        )
        minmax(var(--page-margin), 1fr);
    }
  }

  .collection-wrapper:has(.facets--vertical) .facets-block-wrapper--vertical:not(.hidden) ~ .main-collection-grid {
    @media screen and (min-width: 750px) {
      grid-column: var(--facets-vertical-col-width) / var(--full-width-column-number);
    }
  }

  .collection-wrapper:has(.facets-block-wrapper--vertical:not(#filters-drawer)):has(.collection-wrapper--full-width) {
    @media screen and (min-width: 750px) {
      grid-column: 1 / -1;
      grid-template-columns: 0fr repeat(var(--centered-column-number), minmax(0, 1fr)) 0fr;
    }
  }

  :is(.collection-wrapper--full-width, .collection-wrapper--full-width-on-mobile)
    [product-grid-view='default']
    .product-grid__card {
    @media screen and (max-width: 749px) {
      padding-inline-start: max(var(--padding-xs), var(--padding-inline-start));
      padding-inline-end: max(var(--padding-xs), var(--padding-inline-end));
    }
  }

  :is(.collection-wrapper--full-width, .collection-wrapper--full-width-on-mobile)
    [product-grid-view='mobile-single']
    .product-grid__card {
    @media screen and (max-width: 749px) {
      padding-inline-start: max(var(--padding-xs), var(--padding-inline-start));
      padding-inline-end: max(var(--padding-xs), var(--padding-inline-end));
    }
  }

  /* Make product media go edge-to-edge by using negative margins */
  :is(.collection-wrapper--full-width) .card-gallery,
  :is(.collection-wrapper--full-width-on-mobile) .card-gallery {
    @media screen and (max-width: 749px) {
      margin-inline-start: calc(-1 * max(var(--padding-xs), var(--padding-inline-start)));
      margin-inline-end: calc(-1 * max(var(--padding-xs), var(--padding-inline-end)));
    }
  }

  /* Collection promo tile — fills trailing orphan slot / cross-sell surface */
  .product-grid__item--promo {
    list-style: none;
  }

  /* Hide the promo tile in zoom-out / compact grid view — the tile doesn't
     read at thumbnail size and the grid view is for quick scanning, not marketing. */
  [product-grid-view='zoom-out'] .product-grid__item--promo {
    display: none;
  }

  .collection-promo-tile {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 14px;
    height: 100%;
    padding: 20px;
    color: var(--promo-fg, var(--color-foreground));
    background: var(--promo-bg, rgb(var(--color-foreground-rgb) / 0.04));
    border-radius: var(--product-corner-radius, 8px);
    text-decoration: none;
    transition: transform 180ms ease, box-shadow 180ms ease;
  }

  @media screen and (max-width: 749px) {
    .collection-promo-tile {
      padding: 16px;
      gap: 12px;
    }
  }

  /* Invisible link overlay for link-mode, so whole tile is clickable */
  .collection-promo-tile__link {
    position: absolute;
    inset: 0;
    z-index: 1;
    border-radius: inherit;
  }

  /* Form inputs/buttons must sit above the link overlay */
  .collection-promo-tile--email .collection-promo-tile__form,
  .collection-promo-tile--email .collection-promo-tile__input-row,
  .collection-promo-tile--email .collection-promo-tile__message {
    position: relative;
    z-index: 2;
  }

  .collection-promo-tile__media {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: calc(var(--product-corner-radius, 8px) - 4px);
  }

  .collection-promo-tile__media img {
    max-width: 100%;
    max-height: 280px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    transition: transform 220ms ease;
  }

  @media screen and (max-width: 749px) {
    .collection-promo-tile__media img {
      max-height: 200px;
    }
  }

  .collection-promo-tile__body {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding-inline: 2px;
  }

  .collection-promo-tile__eyebrow {
    margin: 0;
    font-size: var(--font-size--2xs);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    opacity: 0.9;
  }

  .collection-promo-tile__heading {
    margin: 0;
    font-family: var(--font-subheading--family);
    font-size: 1.15rem;
    line-height: 1.25;
    text-wrap: balance;
  }

  .collection-promo-tile__text {
    margin: 0;
    font-size: var(--font-paragraph--size);
    line-height: 1.45;
    opacity: 0.85;
  }

  .collection-promo-tile__cta {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border: 1.5px solid currentColor;
    border-radius: 999px;
    font-weight: 600;
    font-size: var(--font-size--sm);
    text-decoration: none;
    transition: background-color 160ms ease, color 160ms ease;
  }

  @media (hover: hover) and (prefers-reduced-motion: no-preference) {
    .collection-promo-tile:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 18px -10px rgb(var(--color-foreground-rgb) / 0.18);
    }

    .collection-promo-tile:hover .collection-promo-tile__media img {
      transform: scale(1.02);
    }

    .collection-promo-tile:hover .collection-promo-tile__cta {
      background: var(--promo-fg, var(--color-foreground));
      color: var(--promo-bg, var(--color-background));
    }
  }

  .collection-promo-tile__link:focus-visible {
    outline: 2px solid currentColor;
    outline-offset: 2px;
    border-radius: inherit;
  }

  /* Email signup form (mode: email) */
  .collection-promo-tile__form {
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .collection-promo-tile__input-row {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  /* Solid white field with dark text — keeps WCAG AA contrast regardless of tile color. */
  .collection-promo-tile__input {
    width: 100%;
    padding: 9px 12px;
    font-size: var(--font-size--sm);
    font-family: inherit;
    color: #1a1a1a;
    background: #ffffff;
    border: 1.5px solid rgb(255 255 255 / 0.6);
    border-radius: 6px;
    transition: border-color 160ms ease, box-shadow 160ms ease;
  }

  .collection-promo-tile__input::placeholder {
    color: #6b6b6b;
    opacity: 1;
  }

  .collection-promo-tile__input:focus-visible {
    outline: none;
    border-color: #1a1a1a;
    box-shadow: 0 0 0 2px rgb(255 255 255 / 0.9);
  }

  .collection-promo-tile__input[aria-invalid='true'] {
    border-color: #b00020;
  }

  .collection-promo-tile__cta--submit {
    align-self: stretch;
    justify-content: center;
    background: transparent;
    color: currentColor;
    cursor: pointer;
    font-family: inherit;
  }

  .collection-promo-tile__message {
    margin: 0;
    font-size: var(--font-size--2xs);
    line-height: 1.4;
  }

  .collection-promo-tile__message--error {
    opacity: 0.95;
    font-weight: 600;
  }

  .collection-promo-tile__message--success {
    font-weight: 600;
  }
/* END_SECTION:main-collection */

/* START_SECTION:marquee (INDEX:43) */
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;
  }

  /* Bloom-style promo ticker */
  .marquee-component--promo {
    --marquee-promo-font-size: 1.125rem;
    --marquee-promo-separator-gap: 1.25rem;
  }

  .marquee__repeated-items--promo {
    gap: var(--marquee-promo-separator-gap);
  }

  .marquee-promo__segment {
    display: inline-flex;
    align-items: center;
    gap: var(--marquee-promo-separator-gap);
    min-width: max-content;
  }

  .marquee-promo__text {
    font-family: var(--font-body--family, system-ui, sans-serif);
    font-size: var(--marquee-promo-font-size);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--color-foreground);
    white-space: nowrap;
  }

  .marquee-promo__text--discount em,
  .marquee-promo__text--discount strong {
    font-style: italic;
    font-weight: 800;
  }

  .marquee-promo__countdown {
    display: inline-block;
    margin-inline-start: 0.35em;
    min-width: 10ch;
    font-variant-numeric: tabular-nums;
    letter-spacing: 0.04em;
  }

  .marquee-component--promo .marquee__content {
    gap: var(--marquee-gap);
  }

  .marquee-component--promo .marquee__wrapper {
    gap: var(--marquee-gap);
  }

  .marquee-promo__separator {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    line-height: 0;
  }

  .marquee-promo__separator-img {
    display: block;
    width: auto;
    height: calc(var(--marquee-promo-font-size) * 1.35);
    max-height: 2.5rem;
    object-fit: contain;
  }

  @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:44) */
.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:our-story (INDEX:46) */
.spage {
    width: 100%;
    color: var(--color-foreground);
    overflow-x: clip;
    position: relative;
  }

  .spage__inner {
    max-width: var(--spage-max-w, 1100px);
    margin: 0 auto;
    padding-inline: var(--page-margin, 16px);
  }

  .spage__inner--grid {
    margin-block: clamp(2rem, 4vw, 3rem);
  }

  /* HERO ─────────────────────────────────────────────────────
     Full-bleed light grey band with a hard 2px black bottom
     rule. Same beat as the Ingredients hero so the page family
     reads as one product. */
  .spage__hero {
    background: #f9fafb;
    border-bottom: 2px solid rgb(var(--color-foreground-rgb) / 0.95);
    padding-block: clamp(3rem, 7vw, 5rem);
    margin-bottom: clamp(2rem, 4vw, 3rem);
  }

  .spage__hero-inner {
    text-align: center;
  }

  .spage__hero-eyebrow {
    margin: 0 0 0.75rem;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--spage-brand);
  }

  .spage__h1 {
    font-family: var(--font-primary--family);
    font-size: clamp(1.85rem, 5.5vw, 3.4rem);
    font-weight: 700;
    text-align: center;
    margin: 0 auto 1rem;
    letter-spacing: -0.01em;
    line-height: 1.1;
    overflow-wrap: break-word;
    hyphens: none;
  }

  .spage__hero-body {
    text-align: center;
    font-size: clamp(1rem, 1.6vw, 1.15rem);
    color: rgb(var(--color-foreground-rgb) / 0.78);
    margin: 0 auto;
    max-width: 60ch;
    line-height: 1.55;
  }

  .spage__hero-body p {
    margin: 0 0 0.85rem;
  }

  .spage__hero-body p:last-child {
    margin-bottom: 0;
  }

  /* SECTION HEADING — red-underlined editorial accent */
  .spage__h2-wrap {
    text-align: left;
    margin: clamp(2.5rem, 5vw, 3.5rem) 0 1.5rem;
  }

  .spage__h2-wrap--center {
    text-align: center;
  }

  .spage__h2 {
    font-family: var(--font-primary--family);
    font-size: clamp(1.6rem, 3.4vw, 2.1rem);
    font-weight: 700;
    margin: 0 0 0.75rem;
    letter-spacing: -0.01em;
    line-height: 1.2;
    display: inline-block;
    border-bottom: 3px solid var(--spage-brand);
    padding-bottom: 0.5rem;
  }

  .spage__h2-body {
    margin: 0.5rem 0 0;
    color: rgb(var(--color-foreground-rgb) / 0.78);
    font-size: 1rem;
    line-height: 1.55;
    max-width: 100%;
  }

  .spage__h2-wrap--center .spage__h2-body {
    margin-inline: auto;
  }

  /* TEXT BLOCK — narrative prose fills the inner column so story copy
     lines up edge-to-edge with the red-underlined section heading
     above it (no left-rail column on desktop). */
  .spage__text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgb(var(--color-foreground-rgb) / 0.85);
    width: 100%;
    max-width: 100%;
    margin: 1.25rem 0 1.5rem;
  }

  .spage__text p {
    margin: 0 0 1rem;
  }

  .spage__text p:last-child {
    margin-bottom: 0;
  }

  /* No bullet markers in rich-text blocks. Lists collapse to plain
     stacked lines — matches the timeline body treatment. */
  .spage .spage__text ul,
  .spage .spage__text ol {
    list-style: none !important;
    list-style-type: none !important;
    list-style-image: none !important;
    margin: 0 0 1rem;
    padding-left: 0 !important;
  }

  .spage .spage__text ul li,
  .spage .spage__text ol li {
    list-style: none !important;
    list-style-type: none !important;
    position: relative;
    padding-left: 0;
    margin-bottom: 0.4rem;
    line-height: 1.6;
  }

  .spage .spage__text ul li::before,
  .spage .spage__text ol li::before {
    content: none !important;
    display: none !important;
  }

  .spage .spage__text li::marker {
    content: '' !important;
    color: transparent !important;
    font-size: 0 !important;
  }

  .spage__text a {
    color: var(--spage-brand);
    text-decoration: underline;
    text-underline-offset: 2px;
  }

  .spage__text a:hover {
    color: var(--spage-brand-hover);
  }

  /* PULL QUOTE — full-bleed coloured band, italic quote, hard
     editorial moment that punctuates the narrative. */
  .spage__quote {
    background: var(--spage-quote-bg, var(--spage-brand));
    color: var(--spage-quote-color, #fff);
    padding-block: clamp(2.5rem, 5vw, 3.5rem);
    padding-inline: max(var(--page-margin, 16px), calc((100vw - var(--spage-max-w, 1100px)) / 2));
    margin: clamp(2.5rem, 5vw, 3.5rem) 0;
    text-align: center;
  }

  .spage__quote-inner {
    max-width: 60ch;
    margin: 0 auto;
  }

  .spage__quote-text {
    font-family: var(--font-primary--family);
    font-style: italic;
    font-size: clamp(1.25rem, 2.6vw, 1.8rem);
    font-weight: 500;
    line-height: 1.4;
    margin: 0 auto 1rem;
    color: inherit;
  }

  .spage__quote-text p {
    margin: 0 0 0.85rem;
  }

  .spage__quote-text p:last-child {
    margin-bottom: 0;
  }

  .spage__quote-attr {
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    margin: 0;
    opacity: 0.9;
  }

  /* IMAGE BLOCK — full-bleed framed image with caption */
  .spage__image {
    margin: clamp(2rem, 4vw, 3rem) auto;
    max-width: var(--spage-max-w, 1100px);
    padding-inline: var(--page-margin, 16px);
  }

  .spage__image-frame {
    border: 2px solid rgb(var(--color-foreground-rgb) / 0.95);
    overflow: hidden;
    background: #fff;
  }

  .spage__image-img {
    display: block;
    width: 100%;
    height: auto;
  }

  .spage__image-caption {
    margin: 0.85rem 0 0;
    font-size: 0.92rem;
    color: rgb(var(--color-foreground-rgb) / 0.65);
    font-style: italic;
    text-align: center;
  }

  .spage__image--illustration {
    max-width: 420px;
    margin-inline: auto;
  }

  .spage__image--illustration .spage__image-frame {
    border: none;
    background: transparent;
    padding: 0.5rem 0;
  }

  .spage__image--illustration .spage__image-img {
    object-fit: contain;
  }

  /* VALUE CARDS — 3-up bordered cards (auto-grid) */
  .spage__grid {
    display: grid;
    gap: 1rem;
  }

  .spage__grid--values {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  }

  .spage__grid--founders {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }

  .spage__value {
    background: #fff;
    border: 2px solid rgb(var(--color-foreground-rgb) / 0.95);
    padding: 1.6rem 1.7rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    height: 100%;
    transition: transform 220ms ease, box-shadow 220ms ease;
  }

  .spage__value:hover {
    transform: translateY(-4px);
    box-shadow: 6px 6px 0 var(--spage-brand);
  }

  .spage__value-icon {
    font-size: 2rem;
    line-height: 1;
  }

  .spage__value-title {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.3;
  }

  .spage__value-body {
    margin: 0;
    color: rgb(var(--color-foreground-rgb) / 0.78);
    font-size: 0.95rem;
    line-height: 1.55;
  }

  .spage__value-body p {
    margin: 0 0 0.5rem;
  }

  .spage__value-body p:last-child {
    margin-bottom: 0;
  }

  /* TIMELINE — vertical, alternating left/right on desktop.
     The central rule is drawn with ::before on the <ol>. Each
     event uses CSS grid to position itself on the correct side
     of the rule. Mobile collapses to a single left-rail layout
     so it stays scannable on small viewports. */
  /* Outer timeline <ol> + outer timeline-event <li> — bulletproofed
     against any list-marker leak. At desktop widths the default <li>
     marker was rendering OUTSIDE the <ol>'s left edge (because
     padding: 0) and showing as a stray "0" character on the page.
     Use !important + ::marker clearance so no global theme rule can
     re-assert a marker on the outer ordered list. */
  .spage__timeline,
  .spage .spage__timeline {
    list-style: none !important;
    list-style-type: none !important;
    list-style-image: none !important;
    margin: clamp(2rem, 5vw, 3.5rem) 0;
    padding: 0;
    position: relative;
  }

  .spage .spage__tl,
  .spage .spage__timeline > li {
    list-style: none !important;
    list-style-type: none !important;
  }

  .spage .spage__timeline > li::marker,
  .spage .spage__tl::marker {
    content: '' !important;
    color: transparent !important;
    font-size: 0 !important;
  }

  .spage__timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgb(var(--color-foreground-rgb) / 0.95);
    transform: translateX(-1px);
  }

  /* Two-column timeline layout — left/right alternating cards on
     either side of the central vertical rule. No center marker
     column (we removed the dots). */
  .spage__tl {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    margin-bottom: clamp(2rem, 4vw, 3rem);
    align-items: start;
  }

  .spage__tl:last-child {
    margin-bottom: 0;
  }

  .spage__tl-card {
    background: #fff;
    border: 2px solid rgb(var(--color-foreground-rgb) / 0.95);
    padding: 1.5rem 1.6rem;
    transition: transform 220ms ease, box-shadow 220ms ease;
  }

  .spage__tl-card:hover {
    transform: translateY(-4px);
    box-shadow: 6px 6px 0 var(--spage-brand);
  }

  .spage__tl--left .spage__tl-card {
    grid-column: 1;
    margin-right: clamp(1.5rem, 3vw, 2.5rem);
  }

  .spage__tl--right .spage__tl-card {
    grid-column: 2;
    margin-left: clamp(1.5rem, 3vw, 2.5rem);
  }

  /* Timeline dot — red center wrapped in a thick black ring,
     matches the bold black borders on the cards. Absolutely
     positioned so it sits ON the central vertical rule regardless
     of which side the card is on. */
  .spage__tl-dot {
    position: absolute;
    left: 50%;
    top: 1.6rem;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--spage-brand);
    border: 3px solid rgb(var(--color-foreground-rgb) / 0.95);
    box-shadow: 0 0 0 3px #fff;
    transform: translateX(-50%);
    z-index: 2;
  }

  .spage__tl-year {
    margin: 0 0 0.5rem;
    font-family: var(--font-primary--family);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--spage-brand);
  }

  .spage__tl-title {
    margin: 0 0 0.6rem;
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.3;
  }

  .spage__tl-body {
    margin: 0;
    font-size: 0.98rem;
    line-height: 1.6;
    color: rgb(var(--color-foreground-rgb) / 0.85);
  }

  .spage__tl-body p {
    margin: 0 0 0.6rem;
  }

  .spage__tl-body p:last-child {
    margin-bottom: 0;
  }

  /* No bullet markers anywhere in timeline cards. Lists render as
     plain stacked lines — cleaner for medal/credential lists where
     each line already starts with a strong heading word. */
  .spage .spage__tl-body ul,
  .spage .spage__tl-body ol {
    list-style: none !important;
    list-style-type: none !important;
    list-style-image: none !important;
    margin: 0.5rem 0 0.6rem;
    padding-left: 0 !important;
  }

  .spage .spage__tl-body ul li,
  .spage .spage__tl-body ol li {
    list-style: none !important;
    list-style-type: none !important;
    position: relative;
    padding-left: 0;
    margin-bottom: 0.35rem;
    font-size: 0.92rem;
    line-height: 1.5;
  }

  .spage .spage__tl-body ul li::before,
  .spage .spage__tl-body ol li::before {
    content: none !important;
    display: none !important;
  }

  .spage .spage__tl-body li::marker {
    content: '' !important;
    color: transparent !important;
    font-size: 0 !important;
  }

  .spage .spage__tl-body li:last-child {
    margin-bottom: 0;
  }

  .spage__tl-body strong {
    color: var(--spage-brand);
    font-weight: 700;
  }

  .spage__tl-image {
    margin-top: 0.85rem;
    border: 2px solid rgb(var(--color-foreground-rgb) / 0.95);
    overflow: hidden;
  }

  .spage__tl-image-img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
  }

  /* Mobile / tablet: collapse to single-column timeline with the
     rule pinned to the left rail. No dots — just a clean vertical
     line and a stack of cards. */
  @media (max-width: 749px) {
    .spage__timeline {
      padding-left: 1.6rem;
    }

    .spage__timeline::before {
      left: 8px;
      transform: none;
    }

    .spage__tl {
      grid-template-columns: 1fr;
    }

    .spage__tl--left .spage__tl-card,
    .spage__tl--right .spage__tl-card {
      grid-column: 1;
      margin-left: 0;
      margin-right: 0;
    }

    .spage__tl-dot {
      left: -1.6rem;
      top: 1.4rem;
      transform: translateX(0);
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .spage__value,
    .spage__value:hover,
    .spage__tl-card,
    .spage__tl-card:hover {
      transition: none;
      transform: none;
    }
  }

  /* FOUNDER CARDS — bordered cards, photo above text */
  .spage__founder {
    background: #fff;
    border: 2px solid rgb(var(--color-foreground-rgb) / 0.95);
    padding: 1.5rem 1.6rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    height: 100%;
    transition: transform 220ms ease, box-shadow 220ms ease;
  }

  .spage__founder:hover {
    transform: translateY(-4px);
    box-shadow: 6px 6px 0 var(--spage-brand);
  }

  .spage__founder-photo-wrap {
    width: 100%;
  }

  .spage__founder-photo {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border: 2px solid rgb(var(--color-foreground-rgb) / 0.95);
    background: #fff;
  }

  .spage__founder-name {
    margin: 0 0 0.25rem;
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.3;
  }

  .spage__founder-role {
    margin: 0 0 0.85rem;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--spage-brand);
  }

  .spage__founder-bio {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgb(var(--color-foreground-rgb) / 0.85);
  }

  .spage__founder-bio p {
    margin: 0 0 0.6rem;
  }

  .spage__founder-bio p:last-child {
    margin-bottom: 0;
  }

  /* PARTNERSHIP CARD — logo left, body right inside bordered tile (matches BCC) */
  .spage__partner {
    display: grid;
    gap: clamp(1.25rem, 3vw, 2rem);
    align-items: center;
    background: #f9fafb;
    border: 2px solid rgb(var(--color-foreground-rgb) / 0.95);
    padding: clamp(1.5rem, 3vw, 2rem);
    margin: clamp(2rem, 4vw, 3rem) 0;
  }

  .spage__partner--with-logo {
    grid-template-columns: minmax(120px, 220px) minmax(0, 1fr);
  }

  .spage__partner--no-logo {
    grid-template-columns: 1fr;
  }

  @media (max-width: 599px) {
    .spage__partner--with-logo,
    .spage__partner--no-logo {
      grid-template-columns: 1fr;
    }

    .spage__partner {
      justify-items: stretch;
    }

    .spage__partner-logo-wrap {
      justify-self: center;
      max-width: 220px;
      width: 100%;
    }

    .spage__partner-body {
      text-align: left;
    }
  }

  .spage__partner-logo-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .spage__partner-logo {
    max-width: 200px;
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  .spage__partner-name {
    margin: 0 0 0.25rem;
    font-size: clamp(1.22rem, 2.5vw, 1.42rem);
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.01em;
  }

  .spage__partner-tagline {
    margin: 0 0 0.85rem;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--spage-brand);
  }

  .spage__partner-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgb(var(--color-foreground-rgb) / 0.85);
    margin-bottom: 1rem;
  }

  .spage__partner-text p {
    margin: 0 0 0.6rem;
  }

  .spage__partner-text p:last-child {
    margin-bottom: 0;
  }

  /* PARTNERSHIPS FOOTER LINK — auto-renders after the last partnership_card */
  .spage__partners-footer {
    text-align: center;
    margin-top: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: clamp(2rem, 4vw, 3rem);
  }

  .spage__partners-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--spage-brand);
    font-family: var(--font-primary--family);
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-decoration: none;
    border-bottom: 2px solid var(--spage-brand);
    padding: 0.4rem 0 0.45rem;
    transition: gap 200ms ease, opacity 200ms ease;
  }

  .spage__partners-link:hover,
  .spage__partners-link:focus-visible {
    gap: 0.8rem;
    opacity: 0.85;
    outline: none;
  }

  .spage__partners-link-arrow {
    display: inline-block;
    transition: transform 200ms ease;
  }

  @media (prefers-reduced-motion: reduce) {
    .spage__partners-link,
    .spage__partners-link-arrow {
      transition: none;
    }
  }

  /* CTA — full-bleed coloured band closing the page */
  .spage__cta {
    background: var(--spage-cta-bg, var(--spage-brand));
    color: var(--spage-cta-color, #fff);
    padding-block: clamp(2.5rem, 6vw, 4rem);
    padding-inline: max(var(--page-margin, 16px), calc((100vw - var(--spage-max-w, 1100px)) / 2));
    margin: clamp(3rem, 6vw, 4rem) 0 0;
    text-align: center;
  }

  .spage__cta-inner {
    max-width: 60ch;
    margin: 0 auto;
  }

  .spage__cta-heading {
    color: inherit;
    margin: 0 auto 0.75rem;
    font-size: clamp(1.6rem, 3.4vw, 2.1rem);
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1.2;
  }

  .spage__cta-body {
    font-size: 1.05rem;
    margin: 0 auto 1.75rem;
    opacity: 0.95;
    line-height: 1.55;
  }

  .spage__cta-body p {
    margin: 0 0 0.85rem;
  }

  .spage__cta-body p:last-child {
    margin-bottom: 0;
  }

  /* BUTTONS — square + uppercase + letter-spaced (matches the
     Ingredients + Why Sidekick pages). */
  .spage__btn {
    display: inline-block;
    padding: 0.95rem 2.25rem;
    text-decoration: none;
    border-radius: 0;
    border: 2px solid var(--spage-brand);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: transform 200ms ease, background-color 200ms ease, color 200ms ease;
    line-height: 1.2;
  }

  .spage__btn--brand {
    background: var(--spage-brand);
    color: #fff;
    margin-top: 0.5rem;
  }

  .spage__btn--brand:hover {
    background: #fff;
    color: var(--spage-brand);
    transform: translateY(-2px);
  }

  /* Inside the brand-red CTA band the brand button needs to invert
     so it stands off the background. */
  .spage__cta .spage__btn--brand {
    background: #fff;
    color: var(--spage-brand);
    border-color: #fff;
  }

  .spage__cta .spage__btn--brand:hover {
    background: transparent;
    color: #fff;
    border-color: #fff;
  }

  @media (prefers-reduced-motion: reduce) {
    .spage__btn,
    .spage__btn:hover {
      transition: none;
      transform: none;
    }
  }
/* END_SECTION:our-story */

/* START_SECTION:page-redirect (INDEX:48) */
.page-redirect {
    max-width: var(--normal-content-width);
    margin: 0 auto;
    padding: 3rem var(--page-margin, 1.25rem) 4rem;
    text-align: center;
  }

  .page-redirect__lead {
    margin: 0 0 1rem;
    font-size: 1rem;
    line-height: 1.5;
    color: rgb(var(--color-foreground-rgb) / 0.8);
  }

  .page-redirect__link {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.25rem;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    color: #fff;
    background: #d23234;
    border: 2px solid #1a1a1a;
    box-shadow: 4px 4px 0 #1a1a1a;
  }

  .page-redirect__link:hover,
  .page-redirect__link:focus-visible {
    background: #b02729;
  }
/* END_SECTION:page-redirect */

/* START_SECTION:password (INDEX:50) */
.section-password {
    flex-grow: 1;
    display: flex;
  }

  .password-main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
  }

  .password-enter {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--gap-sm);
    padding-block: var(--padding-xl);
  }

  .password-enter__powered-by {
    margin: 0;
    display: flex;
    align-items: center;
    gap: var(--padding-xs);
    height: 1em;

    a {
      display: flex;
    }

    svg {
      display: inline;
      height: 1.3em;
      color: var(--color-foreground);
    }
  }

  .password-enter__links {
    display: flex;
    align-items: center;
    gap: var(--gap-2xl);

    @media screen and (max-width: 749px) {
      flex-direction: column;
      gap: var(--gap-sm);
    }
  }

  .password-enter__admin-link {
    margin: 0;
  }

  .password-enter__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;
    }
  }

  .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_SECTION:password */

/* START_SECTION:predictive-search (INDEX:53) */
input[type='search']::-webkit-search-decoration {
    -webkit-appearance: none; /* stylelint-disable-line */
  }

  .predictive-search-dropdown {
    display: flex;
    flex-direction: column;
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--layer-base);
  }

  .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;
    }
  }

  .header[transparent] :is(.predictive-search):not(:focus-within) {
    background-color: transparent;
  }

  .header[transparent] .predictive-search-form__header-inner {
    border-color: var(--color-foreground);
  }

  .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;
    }
  }

  /* Listbox must not use aria-expanded (WCAG / ARIA: only the combobox
     carries expanded state). Match “results present” via inner wrapper. */
  .predictive-search:has(.predictive-search-dropdown .predictive-search-results__inner)
    .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__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__wrapper.predictive-search-results__wrapper-queries {
    margin-bottom: var(--margin-lg);
    padding-inline: var(--padding-xl);
    gap: var(--gap-2xs);
  }

  .predictive-search-results__card {
    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 {
    animation-delay: 100ms;
    transition: opacity var(--animation-speed-medium) var(--animation-timing-fade-in);
  }

  .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;
  }

  .predictive-search-results__no-results:last-child {
    margin-block: var(--margin-lg);
    text-align: center;
  }

  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);
    }
  }
/* END_SECTION:predictive-search */

/* START_SECTION:privacy-choices-preferences (INDEX:54) */
.privacy-choices-preferences__wrap {
    width: 100%;
  }

  .privacy-choices-preferences__intro,
  .privacy-choices-page-intro-default {
    margin-block-end: 1.5rem;
    max-width: min(100%, 52rem);
  }

  .privacy-choices-page-intro-default h3 {
    margin-block: 1.75rem 0.75rem;
    font-size: clamp(1.05rem, 2.5vw, 1.2rem);
  }

  .privacy-choices-page-intro-default p {
    margin-block: 0 1rem;
  }

  .privacy-choices-page-intro-default p:last-child {
    margin-block-end: 0;
  }

  .privacy-choices-preferences__panel {
    padding: clamp(1.25rem, 3vw, 1.75rem);
    border-radius: var(--style-border-radius-popover, 8px);
    border: 1px solid rgb(var(--color-foreground-rgb) / 0.1);
    background-color: rgb(var(--color-foreground-rgb) / 0.03);
    max-width: min(100%, 36rem);
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
  }

  .privacy-choices-preferences__dns {
    padding-block-start: 1.25rem;
    border-block-start: 1px solid rgb(var(--color-foreground-rgb) / 0.1);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    width: 100%;
  }

  .privacy-choices-preferences__hint--dns {
    margin: 0;
  }

  .privacy-choices-preferences__actions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .privacy-choices-preferences__btn {
    min-height: var(--minimum-touch-target, 44px);
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .privacy-choices-preferences__hint {
    margin: 0;
    max-width: 42rem;
    color: rgb(var(--color-foreground-rgb) / 0.78);
    font-size: 0.92rem;
  }
/* END_SECTION:privacy-choices-preferences */

/* START_SECTION:product-information (INDEX:55) */
.product-information {
    gap: var(--gap) 0;
    overflow-x: clip;
    max-width: 100%;
  }

  .product-information__grid {
    display: grid;
    grid-template-columns: subgrid;
    grid-column: 1 / -1;
    min-width: 0;
  }

  .product-information__grid > .product-information__media,
  .product-information__grid > .product-details {
    min-width: 0;
  }

  .product-details {
    order: 1;
  }

  .product-information__media {
    order: 0;
    min-width: 0;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  /* Carousel slide track must not widen the page (common on multi-image PDPs). */
  .product-information__media .media-gallery--carousel slideshow-container,
  .product-information__media .media-gallery--carousel slideshow-slides {
    overflow-x: hidden;
    max-width: 100%;
  }

  .product-information__media .media-gallery--carousel slideshow-container {
    overflow: hidden;
  }

  .product-information__media .media-gallery--carousel slideshow-slide[aria-hidden='false'] {
    content-visibility: visible;
  }

  @media screen and (min-width: 750px) {
    .product-information__media .media-gallery--carousel slideshow-slides {
      overscroll-behavior-x: none;
    }
  }

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

    .product-information__grid:not(.product-information--media-none):not(:has(.media-gallery--empty))
      .product-details {
      grid-column: 2 / 3;
    }
  }

  /* No product images: single centered column (bundles / drafts without media). */
  .product-information__grid.product-information--media-none,
  .product-information__grid:has(.media-gallery--empty) {
    grid-column: 1 / -1;
    grid-template-columns: minmax(0, 1fr);
    justify-items: center;
  }

  .product-information__grid.product-information--media-none .product-details,
  .product-information__grid:has(.media-gallery--empty) .product-details {
    grid-column: 1 / -1;
    width: min(100%, var(--narrow-content-width));
    max-width: 100%;
    margin-inline: auto;
  }

  @media screen and (min-width: 750px) {
    .product-information__grid {
      grid-column: 2;
    }

    .product-information__grid.product-information--media-none .product-details,
    .product-information__grid:has(.media-gallery--empty) .product-details {
      width: min(100%, var(--narrow-content-width));
      margin-inline: auto;
    }

    .product-information__grid:not(.product-information--media-none):not(:has(.media-gallery--empty)) {
      &.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;
        }
      }

      &.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;
        }
      }

      &.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;
          }
        }
      }
    }

    .section--full-width {
      .product-information__grid:not(.product-information--media-none):not(:has(.media-gallery--empty)),
      .product-information__grid:not(.product-information--media-none):not(:has(.media-gallery--empty)) {
        &.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;
          }
        }
      }
    }
  }

  @media screen and (min-width: 1200px) {
    .product-information__grid:not(
        .product-information__grid--half,
        :has(.media-gallery--empty)
      ).product-information--media-left {
      grid-template-columns: 2fr 1fr;
    }

    .product-information__grid:not(
        .product-information__grid--half,
        :has(.media-gallery--empty)
      ).product-information--media-right {
      grid-template-columns: 1fr 2fr;
    }
  }

  .product-information__grid--limit-details .product-details > .group-block {
    max-width: var(--sidebar-width);
  }

  /*
   * Bloom-style desktop PDP: sticky gallery + single page scroll.
   * Details grow naturally; the document scrolls (no nested overflow panel).
   */
  @media screen and (min-width: 750px) {
    .product-information {
      overflow-x: visible;
    }

    .product-information__grid:not(.product-information--media-none):not(:has(.media-gallery--empty)) {
      --pdp-sticky-offset: var(
        --sticky-header-offset,
        var(--pdp-header-stack-height, var(--header-height, 0px))
      );
      align-items: start;
      min-height: 80vh;
    }

    .product-information__grid:not(.product-information--media-none):not(:has(.media-gallery--empty)) .product-details,
    .product-information__grid:not(.product-information--media-none):not(:has(.media-gallery--empty))
      .product-details.sticky-content--desktop {
      position: static !important;
      top: auto !important;
      align-self: start;
      max-height: none;
      overflow: visible;
    }

    .product-information__grid:not(.product-information--media-none):not(:has(.media-gallery--empty)) .product-details > .group-block {
      width: 100%;
      min-width: 0;
    }

    .product-information__grid:not(.product-information--media-none):not(:has(.media-gallery--empty))
      .product-information__media--sticky {
      position: sticky;
      top: var(--pdp-sticky-offset);
      align-self: start;
      width: 100%;
      height: fit-content;
      max-height: none;
      overflow: visible;
      z-index: var(--layer-flat);
    }

    .product-information__grid:not(.product-information--media-none):not(:has(.media-gallery--empty))
      .product-information__media--sticky
      media-gallery {
      display: block;
      max-height: none;
    }
  }

  body.has-pdp-sticky-bar-visible
    .product-information__grid:not(.product-information--media-none):not(:has(.media-gallery--empty)) {
    --sticky-header-offset: var(--pdp-header-stack-height, var(--header-height));
  }

  body:has(#header-group #header-component[data-sticky-state='active'])
    .product-information__grid:not(.product-information--media-none):not(:has(.media-gallery--empty)) {
    --sticky-header-offset: var(--pdp-header-stack-height, var(--header-height));
  }

  @media (prefers-reduced-motion: reduce) {
    .product-information__media--sticky {
      position: static !important;
    }
  }
/* END_SECTION:product-information */

/* START_SECTION:product-list (INDEX:56) */
.section-resource-list__header {
    margin-bottom: 8px;
  }

  .section-resource-list__content {
    margin-top: 8px;
  }

  .resource-list__item {
    margin: 0;
  }

  @media screen and (max-width: 749px) {
    .section-resource-list__header {
      margin-bottom: 6px;
    }

    .section-resource-list__content {
      margin-top: 6px;
    }
  }
/* END_SECTION:product-list */

/* START_SECTION:product-recommendations (INDEX:57) */
product-recommendations,
  .product-recommendations,
  .product-recommendations .section,
  .product-recommendations .section-resource-list,
  .product-recommendations .section-resource-list__content,
  .product-recommendations .resource-list {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  product-recommendations {
    display: block;
  }

  product-recommendations:has([data-has-recommendations='false']) {
    display: none;
  }

  @media screen and (max-width: 749px) {
    .product-recommendations,
    .product-recommendations .resource-list.hidden--desktop {
      overflow-x: hidden;
    }
  }

  .product-recommendations__skeleton-item {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .product-recommendations__skeleton-image {
    aspect-ratio: 3 / 4;
    background-color: var(--color-foreground);
    opacity: var(--skeleton-opacity, 0.04);
    border-radius: 0;
    animation: skeleton-pulse 1.5s ease-in-out infinite;
  }

  .product-recommendations__skeleton-text {
    height: 14px;
    width: 70%;
    background-color: var(--color-foreground);
    opacity: var(--skeleton-opacity, 0.04);
    border-radius: 0;
    animation: skeleton-pulse 1.5s ease-in-out 0.1s infinite;
  }

  .product-recommendations__skeleton-text--short {
    width: 40%;
    animation-delay: 0.2s;
  }

  @keyframes skeleton-pulse {
    0%, 100% { opacity: var(--skeleton-opacity, 0.04); }
    50% { opacity: calc(var(--skeleton-opacity, 0.04) * 2.5); }
  }

  @media screen and (max-width: 749px) {
    .product-recommendations__skeleton-item:nth-child(n + 3) {
      display: none;
    }
  }
/* END_SECTION:product-recommendations */

/* START_SECTION:recipe-cross-sell (INDEX:58) */
.recipe-cross-sell {
    width: 100%;
  }

  .recipe-cross-sell__inner {
    max-width: var(--page-width);
    margin: 0 auto;
    padding-inline: var(--page-margin);
  }

  .recipe-cross-sell__head {
    text-align: center;
    margin-block-end: 1.5rem;
    padding-block-start: 1rem;
    border-block-start: 1px solid rgb(var(--color-foreground-rgb) / 0.1);
  }

  .recipe-cross-sell__heading {
    font-family: var(--font-primary--family);
    font-size: clamp(1.4rem, 2.4vw, 1.85rem);
    font-weight: 600;
    margin: 0 0 0.4rem;
    letter-spacing: -0.01em;
  }

  .recipe-cross-sell__sub {
    margin: 0;
    color: rgb(var(--color-foreground-rgb) / 0.7);
    font-size: 0.95rem;
  }

  .recipe-cross-sell__grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }

  /* Single match: keep card centred and modest width. */
  .recipe-cross-sell__grid[data-count='1'] {
    grid-template-columns: minmax(0, 360px);
    justify-content: center;
  }

  .recipe-cross-sell__item {
    margin: 0;
  }

  .recipe-cross-sell__card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: var(--color-foreground);
    background-color: rgb(var(--color-foreground-rgb) / 0.03);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }

  .recipe-cross-sell__card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgb(var(--color-foreground-rgb) / 0.08);
  }

  .recipe-cross-sell__card:focus-visible {
    outline: 2px solid var(--color-primary, currentColor);
    outline-offset: 2px;
  }

  .recipe-cross-sell__media {
    width: 100%;
    aspect-ratio: 4 / 3;
    background: rgb(var(--color-foreground-rgb) / 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .recipe-cross-sell__img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 1.25rem;
  }

  .recipe-cross-sell__body {
    padding: 1rem 1.25rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    text-align: center;
  }

  .recipe-cross-sell__name {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.2;
  }

  .recipe-cross-sell__price {
    font-size: 0.95rem;
    color: rgb(var(--color-foreground-rgb) / 0.75);
  }

  .recipe-cross-sell__cta {
    margin-block-start: 0.6rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-primary);
  }

  .recipe-cross-sell__fallback {
    text-align: center;
    margin: 0;
  }

  .recipe-cross-sell__fallback-link {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-primary);
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border: 1px solid var(--color-primary);
    border-radius: 999px;
    display: inline-block;
    transition: background-color 0.2s ease, color 0.2s ease;
  }

  .recipe-cross-sell__fallback-link:hover {
    background-color: var(--color-primary);
    color: #fff;
  }

  @media (prefers-reduced-motion: reduce) {
    .recipe-cross-sell__card {
      transition: none;
    }

    .recipe-cross-sell__card:hover {
      transform: none;
    }
  }
/* END_SECTION:recipe-cross-sell */

/* START_SECTION:recipe-related (INDEX:59) */
.recipe-related {
    width: 100%;
  }

  .recipe-related__inner {
    max-width: var(--page-width);
    margin: 0 auto;
    padding-inline: var(--page-margin);
  }

  .recipe-related__head {
    text-align: center;
    margin-block-end: 1.5rem;
    padding-block-start: 1rem;
    border-block-start: 1px solid rgb(var(--color-foreground-rgb) / 0.1);
  }

  .recipe-related__heading {
    font-family: var(--font-primary--family);
    font-size: clamp(1.4rem, 2.4vw, 1.85rem);
    font-weight: 600;
    margin: 0 0 0.4rem;
    letter-spacing: -0.01em;
  }

  .recipe-related__sub {
    margin: 0;
    color: rgb(var(--color-foreground-rgb) / 0.7);
    font-size: 0.95rem;
  }

  .recipe-related__grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }

  /* Single match: keep card centred and modest width to avoid a giant lonely card. */
  .recipe-related__grid[data-count='1'] {
    grid-template-columns: minmax(0, 360px);
    justify-content: center;
  }

  .recipe-related__item {
    margin: 0;
  }

  /* Card style — kept transparent & no border to match the homepage
     featured-blog-posts cards and the /blogs/recipes listing cards
     (blocks/_blog-post-card.liquid). All three surfaces should feel
     like the same product. */
  .recipe-related__card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: var(--color-foreground);
    height: 100%;
  }

  .recipe-related__media {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    background: rgb(var(--color-foreground-rgb) / 0.04);
    overflow: hidden;
  }

  .recipe-related__media-link {
    display: block;
    width: 100%;
    height: 100%;
  }

  .recipe-related__img,
  .recipe-related__img-placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    /* Match the homepage carousel hover-lift on the image so the three
       recipe surfaces share one visual language. */
    transition: transform 320ms cubic-bezier(0.2, 0.7, 0.2, 1);
    transform-origin: center center;
    will-change: transform;
  }

  .recipe-related__card:hover .recipe-related__img,
  .recipe-related__card:focus-within .recipe-related__img {
    transform: scale(1.04);
  }

  .recipe-related__img-placeholder {
    background: linear-gradient(135deg,
      rgb(var(--color-foreground-rgb) / 0.06),
      rgb(var(--color-foreground-rgb) / 0.02));
  }

  .recipe-related__body {
    padding: 0.75rem 0 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1 1 auto;
  }

  .recipe-related__title-link {
    text-decoration: none;
    color: inherit;
    transition: color 200ms ease;
  }

  .recipe-related__title-link:hover,
  .recipe-related__card:focus-within .recipe-related__title-link {
    color: var(--color-primary-hover, var(--color-primary));
  }

  .recipe-related__title {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  /* Meta chips — same shape, sizing, and palette as the homepage
     and /blogs/recipes cards. */
  .recipe-related__meta {
    list-style: none;
    margin: 0.25rem 0 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
  }

  .recipe-related__chip {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.75rem;
    font-weight: 500;
    line-height: 1;
    padding: 0.35rem 0.6rem;
    border-radius: 999px;
    background-color: rgb(var(--color-foreground-rgb) / 0.05);
    color: rgb(var(--color-foreground-rgb) / 0.78);
    white-space: nowrap;
  }

  .recipe-related__chip--category {
    background-color: rgb(var(--color-primary-rgb) / 0.1);
    color: var(--color-primary);
  }

  .recipe-related__chip-icon {
    width: 0.85rem;
    height: 0.85rem;
    flex-shrink: 0;
  }

  @media (prefers-reduced-motion: reduce) {
    .recipe-related__img {
      transition: none;
    }

    .recipe-related__card:hover .recipe-related__img,
    .recipe-related__card:focus-within .recipe-related__img {
      transform: none;
    }
  }
/* END_SECTION:recipe-related */

/* START_SECTION:store-locator (INDEX:66) */
.slctr {
    width: 100%;
    overflow-x: clip;
  }

  .slctr__inner {
    max-width: var(--slctr-max-w, 1100px);
    margin: 0 auto;
    padding-inline: var(--page-margin, 16px);
    display: flex;
    flex-direction: column;
    gap: clamp(1.25rem, 2.6vw, 1.85rem);
  }

  .slctr__hero-shell {
    border: 2px solid rgb(var(--color-foreground-rgb) / 0.92);
    background: #ffffff;
    box-shadow: 0 10px 28px rgb(0 0 0 / 0.08);
    overflow: hidden;
  }

  .slctr--nz .slctr__hero-shell {
    border: 1px solid rgb(0 0 0 / 0.05);
    box-shadow: 0 2px 20px rgb(0 0 0 / 0.035);
    background: #ffffff;
  }

  .slctr--nz .slctr__photo-wrap {
    border: 0;
    box-shadow: 0 1px 10px rgb(0 0 0 / 0.04);
  }

  .slctr--nz .slctr__h2 > span {
    border-bottom-width: 2px;
    border-bottom-color: rgb(210 50 52 / 0.55);
  }

  .slctr--nz .slctr__notice {
    margin-top: 1.1rem;
    padding: 0.85rem 1rem;
    border: 0;
    border-left: 2px solid rgb(210 50 52 / 0.45);
    border-radius: 0;
    background: rgb(250 250 250 / 0.7);
    font-size: 0.88rem;
    color: rgb(var(--color-foreground-rgb, 26, 26, 26) / 0.76);
  }

  .slctr__proof-band {
    margin: 0 0 clamp(0.85rem, 2vw, 1.15rem);
    padding: clamp(0.95rem, 2.1vw, 1.25rem) 0 clamp(0.15rem, 0.5vw, 0.35rem);
    border-top: 1px solid rgb(0 0 0 / 0.05);
    border-bottom: 1px solid rgb(0 0 0 / 0.04);
    background: transparent;
  }

  .slctr__proof-band .slctr__proof {
    margin: 0;
    padding: 0;
    border-top: 0;
    gap: clamp(0.85rem, 2vw, 1.25rem);
  }

  .slctr--nz .slctr__hero-grid {
    padding: clamp(1.25rem, 2.8vw, 2rem);
  }

  .slctr__hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: clamp(1.5rem, 3vw, 2.5rem);
    align-items: center;
    padding: clamp(1.35rem, 3vw, 2.25rem);
  }

  .slctr__hero-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.1rem;
  }

  .slctr__photo-wrap {
    position: relative;
    width: min(100%, 300px);
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border: 2px solid rgb(var(--color-foreground-rgb) / 0.92);
  }

  .slctr__photo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
    display: block;
  }

  .slctr__mask-badge {
    position: absolute;
    left: 0.75rem;
    bottom: 0.75rem;
    width: 3.25rem;
    height: 3.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.45rem;
    background: #ffffff;
    border: 2px solid rgb(var(--color-foreground-rgb) / 0.92);
    box-shadow: 0 6px 16px rgb(0 0 0 / 0.12);
  }

  .slctr__mask-badge-img,
  .slctr__mask-img {
    width: 100%;
    height: auto;
    display: block;
  }

  .slctr__mask-frame {
    width: min(100%, 200px);
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem;
    background: linear-gradient(160deg, #fff5f5 0%, #ffffff 55%, #fafafa 100%);
    border: 2px solid rgb(var(--color-foreground-rgb) / 0.92);
  }

  .slctr__retail {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.55rem;
    text-align: center;
  }

  .slctr__retail-label {
    margin: 0;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: rgb(var(--color-foreground-rgb) / 0.55);
  }

  .slctr__retail-logos {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.85rem 1.25rem;
  }

  .slctr__retail-logo {
    max-width: 148px;
    max-height: 48px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
  }

  .slctr__retail-logo--secondary {
    max-width: 120px;
  }

  .slctr__retail-logo--color {
    max-height: 52px;
    object-fit: contain;
  }

  .slctr__retail-logo--mono {
    filter: brightness(0);
    opacity: 0.82;
    object-fit: contain;
  }

  .slctr__retail-logo--lhs {
    filter: none;
    opacity: 0.88;
    max-height: 56px;
    max-width: 100px;
    object-fit: contain;
  }

  .slctr__retail-logo--dark {
    filter: none;
    opacity: 0.82;
    object-fit: contain;
  }

  .slctr__hero-grid--nz {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  }

  .slctr__hero-visual--photo-only {
    gap: 0;
  }

  .slctr__hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 1.15rem;
  }

  .slctr__hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1.35rem;
    border-radius: 0;
    background: var(--slctr-brand, #d23234);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-decoration: none;
    border: 2px solid var(--slctr-brand, #d23234);
    transition: transform 200ms ease, background-color 200ms ease, color 200ms ease;
  }

  .slctr__hero-btn:hover {
    background: #ffffff;
    color: var(--slctr-brand, #d23234);
    transform: translateY(-2px);
  }

  .slctr__hero-btn--secondary {
    background: transparent;
    color: var(--slctr-brand, #d23234);
  }

  .slctr__hero-btn--secondary:hover {
    background: var(--slctr-brand, #d23234);
    color: #fff;
  }

  .slctr__proof {
    margin: 0 0 clamp(1rem, 2.2vw, 1.35rem);
    padding: clamp(1rem, 2.2vw, 1.35rem) 0 0;
    border-top: 1px solid rgb(var(--color-foreground-rgb) / 0.08);
    display: flex;
    flex-direction: column;
    gap: clamp(1rem, 2.2vw, 1.45rem);
  }

  .slctr__proof-row + .slctr__proof-row {
    padding-top: clamp(0.85rem, 2vw, 1.2rem);
    margin-top: clamp(0.15rem, 0.5vw, 0.35rem);
    border-top: 1px solid rgb(0 0 0 / 0.045);
  }

  .slctr__proof-heading {
    margin: 0 0 clamp(0.7rem, 1.6vw, 0.95rem);
    font-size: clamp(0.72rem, 1.55vw, 0.84rem);
    font-weight: 550;
    line-height: 1.45;
    letter-spacing: 0.045em;
    text-transform: uppercase;
    text-align: center;
    color: rgb(var(--color-foreground-rgb, 26, 26, 26) / 0.58);
  }

  .slctr__proof-logos {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: clamp(0.95rem, 2.2vw, 1.45rem) clamp(1.25rem, 3vw, 2rem);
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .slctr__proof-logos::-webkit-scrollbar {
    display: none;
  }

  .slctr__proof-slot {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    height: clamp(2rem, 4.2vw, 2.55rem);
    min-width: clamp(4.25rem, 11vw, 5.5rem);
    max-width: clamp(5.5rem, 14vw, 7.75rem);
  }

  .slctr__proof-logo {
    display: block;
    max-height: 100%;
    max-width: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
  }

  .slctr__proof-logo--color {
    filter: none;
    opacity: 1;
  }

  .slctr__proof-logo--lhs {
    filter: none;
    opacity: 0.88;
  }

  .slctr__proof-logo--dark {
    filter: none;
    opacity: 0.82;
  }

  .slctr__proof-logo--tall {
    filter: none;
    opacity: 1;
  }

  .slctr__proof-slot--farro,
  .slctr__proof-slot--foursquare {
    max-width: clamp(4.5rem, 10.5vw, 5.85rem);
    height: clamp(1.8rem, 3.6vw, 2.25rem);
  }

  .slctr__proof-slot--newworld {
    max-width: clamp(6.5rem, 15.5vw, 8.5rem);
    height: clamp(2.05rem, 4.2vw, 2.55rem);
  }

  .slctr__proof-slot--freshchoice {
    max-width: clamp(7rem, 17vw, 9rem);
    height: clamp(2.1rem, 4.3vw, 2.6rem);
  }

  .slctr__proof-row--destinations .slctr__proof-slot {
    height: clamp(2rem, 4vw, 2.45rem);
    max-width: clamp(4.65rem, 11.5vw, 6.5rem);
  }

  .slctr__proof-slot--onsen,
  .slctr__proof-slot--lhs {
    max-width: clamp(5.1rem, 12.5vw, 6.65rem);
  }

  .slctr__proof-slot--edgewater,
  .slctr__proof-slot--airspresso,
  .slctr__proof-slot--sundays,
  .slctr__proof-slot--bathhouse {
    max-width: clamp(4.85rem, 12vw, 6.35rem);
  }

  .slctr__proof-slot--tititea {
    height: clamp(2.05rem, 4.2vw, 2.55rem);
    max-width: clamp(3.75rem, 9vw, 4.85rem);
  }

  .slctr__hero-content {
    min-width: 0;
  }

  .slctr__eyebrow {
    margin: 0 0 0.5rem;
    color: var(--slctr-brand, #d23234);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    line-height: 1.2;
  }

  .slctr__h2 {
    margin: 0 0 0.85rem;
    font-family: var(--font-primary--family, inherit);
    font-size: clamp(1.55rem, 3vw, 2rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.01em;
  }

  .slctr__h2 > span {
    display: inline-block;
    padding-bottom: 0.4rem;
    border-bottom: 3px solid var(--slctr-brand, #d23234);
  }

  .slctr__lead {
    margin: 0 0 0.75rem;
    font-size: clamp(1.02rem, 1.8vw, 1.15rem);
    line-height: 1.45;
    font-weight: 600;
    color: rgb(var(--color-foreground-rgb, 26, 26, 26) / 0.92);
  }

  .slctr__intro {
    max-width: 52ch;
    margin: 0;
    color: rgb(var(--color-foreground-rgb, 26, 26, 26) / 0.78);
    font-size: 0.98rem;
    line-height: 1.55;
  }

  .slctr__intro p:last-child {
    margin-bottom: 0;
  }

  .slctr__pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1rem 0 0;
    padding: 0;
    list-style: none;
  }

  .slctr__pill {
    display: inline-flex;
    padding: 0.35rem 0.75rem;
    border: 1.5px solid rgb(var(--color-foreground-rgb) / 0.18);
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 600;
    background: #fafafa;
  }

  .slctr__notice {
    margin: 1rem 0 0;
    padding: 0.85rem 1rem;
    border-radius: 12px;
    border: 1.5px solid rgb(var(--color-foreground-rgb, 26, 26, 26) / 0.12);
    border-left: 4px solid var(--slctr-brand, #d23234);
    background: linear-gradient(90deg, rgb(210 50 52 / 0.06) 0%, rgb(210 50 52 / 0.02) 100%);
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .slctr__notice p {
    margin: 0;
  }

  .slctr__notice p + p {
    margin-top: 0.55rem;
  }

  .slctr__stats {
    display: grid;
    gap: 0;
    border-top: 1px solid rgb(var(--color-foreground-rgb) / 0.12);
    background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
  }

  .slctr__stats--count-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .slctr__stats--count-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .slctr__stat {
    padding: 1rem 1.25rem;
    text-align: center;
  }

  .slctr__stat + .slctr__stat {
    border-left: 1px solid rgb(var(--color-foreground-rgb) / 0.1);
  }

  .slctr__stat-label {
    display: block;
    margin: 0 0 0.2rem;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--slctr-brand, #d23234);
  }

  .slctr__stat-text {
    margin: 0;
    font-size: 0.82rem;
    line-height: 1.35;
    color: rgb(var(--color-foreground-rgb) / 0.78);
    font-weight: 600;
  }

  .slctr__finder {
    border: 2px solid rgb(var(--color-foreground-rgb) / 0.92);
    background: #ffffff;
    box-shadow: 0 8px 24px rgb(0 0 0 / 0.06);
    padding: clamp(1rem, 2.5vw, 1.5rem);
  }

  .slctr--nz .slctr__finder {
    border: 1px solid rgb(0 0 0 / 0.05);
    box-shadow: 0 2px 18px rgb(0 0 0 / 0.03);
    background: #ffffff;
  }

  .slctr--nz .slctr__online-cta {
    border: 1px solid rgb(0 0 0 / 0.05);
    box-shadow: 0 2px 18px rgb(0 0 0 / 0.03);
  }

  .slctr__online-cta {
    margin-top: 0;
    padding: 1.75rem 1.5rem;
    border: 2px solid rgb(var(--color-foreground-rgb) / 0.92);
    border-radius: 0;
    background: linear-gradient(160deg, #fff8f8 0%, #ffffff 100%);
    box-shadow: 0 8px 24px rgb(0 0 0 / 0.06);
    text-align: center;
  }

  .slctr__online-heading {
    margin: 0;
    font-family: var(--font-primary--family, inherit);
    font-size: clamp(1.25rem, 2.4vw, 1.6rem);
    font-weight: 700;
    line-height: 1.2;
  }

  .slctr__online-sub {
    margin: 0.4rem 0 0;
    color: rgb(var(--color-foreground-rgb) / 0.72);
    font-size: 0.95rem;
  }

  .slctr__online-actions {
    margin-top: 1.1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    justify-content: center;
  }

  .slctr__online-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1.75rem;
    border-radius: 0;
    background: var(--slctr-brand, #d23234);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-decoration: none;
    border: 2px solid var(--slctr-brand, #d23234);
    transition: transform 200ms ease, background-color 200ms ease, color 200ms ease;
  }

  .slctr__online-btn:hover {
    background: #ffffff;
    color: var(--slctr-brand, #d23234);
    transform: translateY(-2px);
  }

  .slctr__online-btn--secondary {
    background: transparent;
    color: var(--slctr-brand, #d23234);
  }

  .slctr__online-btn--secondary:hover {
    background: var(--slctr-brand, #d23234);
    color: #fff;
  }

  .slctr__controls {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    margin: 0 0 1rem;
  }

  .slctr__search-label {
    position: relative;
    flex: 1 1 320px;
    display: inline-flex;
    align-items: center;
  }

  .slctr__search-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.05rem;
    color: rgb(var(--color-foreground-rgb) / 0.45);
    pointer-events: none;
  }

  .slctr__search {
    width: 100%;
    padding: 0.9rem 1rem 0.9rem 2.55rem;
    font-size: 1rem;
    line-height: 1.3;
    color: var(--color-foreground, #1a1a1a);
    background: #fafafa;
    border: 2px solid rgb(var(--color-foreground-rgb, 26, 26, 26) / 0.18);
    border-radius: 999px;
    -webkit-appearance: none;
    appearance: none;
    transition: border-color 0.15s ease, background-color 0.15s ease;
  }

  .slctr__search:focus-visible {
    outline: 3px solid rgb(210, 50, 52, 0.35);
    outline-offset: 2px;
    border-color: var(--slctr-brand, #d23234);
    background: #ffffff;
  }

  .slctr__count {
    margin: 0;
    color: rgb(var(--color-foreground-rgb, 26, 26, 26) / 0.65);
    font-size: 0.88rem;
    font-weight: 600;
  }

  .slctr__panel {
    padding: 1.5rem;
    border: 2px dashed rgb(var(--color-foreground-rgb, 26, 26, 26) / 0.3);
    background: #fafafa;
    color: rgb(var(--color-foreground-rgb, 26, 26, 26) / 0.78);
  }

  .slctr__panel p {
    margin: 0;
  }

  .slctr__panel--error,
  .slctr__panel--hint {
    border-color: var(--slctr-brand, #d23234);
    color: var(--slctr-brand, #d23234);
    background: #fff5f5;
  }

  .slctr__list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 0.25rem;
  }

  .slctr__region {
    border: 1.5px solid rgb(var(--color-foreground-rgb, 26, 26, 26) / 0.14);
    background: #ffffff;
    box-shadow: 0 2px 8px rgb(0 0 0 / 0.04);
    overflow: hidden;
    transition: box-shadow 0.2s ease;
  }

  .slctr__region[open] {
    box-shadow: 0 6px 18px rgb(0 0 0 / 0.07);
  }

  .slctr__region-summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.15rem;
    font-family: var(--font-primary--family, inherit);
    font-size: clamp(1.02rem, 2vw, 1.15rem);
    font-weight: 700;
    line-height: 1.2;
    background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
    border-bottom: 1.5px solid transparent;
    transition: background-color 0.15s ease;
  }

  .slctr__region-summary:hover {
    background: #fff8f8;
  }

  .slctr__region[open] .slctr__region-summary {
    border-bottom-color: rgb(var(--color-foreground-rgb, 26, 26, 26) / 0.1);
    background: #ffffff;
  }

  .slctr__region-summary::-webkit-details-marker {
    display: none;
  }

  .slctr__region-meta {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--slctr-brand, #d23234);
  }

  .slctr__region-toggle {
    width: 1.5rem;
    height: 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgb(var(--color-foreground-rgb, 26, 26, 26) / 0.7);
    transition: transform 200ms ease;
  }

  .slctr__region[open] .slctr__region-toggle {
    transform: rotate(45deg);
  }

  .slctr__store-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
  }

  @media (min-width: 750px) {
    .slctr__store-list {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  .slctr__store {
    padding: 1rem 1.15rem;
    border-top: 1px solid rgb(var(--color-foreground-rgb, 26, 26, 26) / 0.08);
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    transition: background-color 0.15s ease;
  }

  .slctr__store:hover {
    background: rgb(210 50 52 / 0.03);
  }

  .slctr__store--featured {
    background: linear-gradient(90deg, #fff8f8 0%, #ffffff 100%);
  }

  .slctr__store--featured:hover {
    background: linear-gradient(90deg, #fff0f0 0%, #fffafa 100%);
  }

  .slctr__store--chain {
    grid-column: 1 / -1;
    background: #fff;
  }

  .slctr__store-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
  }

  .slctr__store-logo {
    display: block;
    width: auto;
    max-width: 140px;
    height: 48px;
    object-fit: contain;
    object-position: left center;
  }

  .slctr__store--chain .slctr__store-logo {
    max-width: 168px;
    height: 56px;
  }

  .slctr__store-note {
    margin: 0.35rem 0 0;
    font-size: 0.92rem;
    line-height: 1.5;
    color: rgb(var(--color-foreground-rgb, 26, 26, 26) / 0.82);
  }

  .slctr__store-name {
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.005em;
  }

  .slctr__store-name .slctr__star {
    margin-left: 0.4rem;
    color: var(--slctr-brand, #d23234);
    font-size: 0.85em;
  }

  .slctr__store-address,
  .slctr__store-meta {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.45;
    color: rgb(var(--color-foreground-rgb, 26, 26, 26) / 0.75);
  }

  .slctr__store-meta {
    font-size: 0.85rem;
  }

  .slctr__store-actions {
    margin-top: 0.4rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
  }

  .slctr__store-link {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--slctr-brand, #d23234);
    text-decoration: none;
  }

  .slctr__store-link:hover,
  .slctr__store-link:focus-visible {
    text-decoration: underline;
    outline: none;
  }

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

  @media screen and (max-width: 749px) {
    .slctr__hero-grid,
    .slctr__hero-grid--nz {
      grid-template-columns: 1fr;
      padding: 1.25rem;
    }

    .slctr__proof-logos {
      flex-wrap: nowrap;
      justify-content: flex-start;
    }

    .slctr__proof-band .slctr__proof-logos {
      margin-inline: -0.25rem;
      padding-inline: 0.25rem;
      overflow-x: auto;
      overscroll-behavior-x: contain;
    }

    .slctr__proof-slot {
      min-width: clamp(4.5rem, 21vw, 6.25rem);
    }

    .slctr__stats--count-2,
    .slctr__stats--count-3 {
      grid-template-columns: 1fr;
    }

    .slctr__stat + .slctr__stat {
      border-left: 0;
      border-top: 1px solid rgb(var(--color-foreground-rgb) / 0.1);
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .slctr__region-toggle,
    .slctr__online-btn,
    .slctr__region,
    .slctr__store {
      transition: none;
    }
  }
/* END_SECTION:store-locator */

/* START_SECTION:wholesale (INDEX:67) */
.wpage {
    --wpage-brand: #d23234;
    --wpage-brand-hover: #b02729;
    --wpage-max-w: 1100px;
    /* overflow-x: clip lets the hero image visually break out of the
       page max-width without triggering a horizontal scrollbar. */
    overflow-x: clip;
  }

  .wpage__inner {
    max-width: var(--wpage-max-w);
    margin: 0 auto;
    padding: 0 clamp(1rem, 4vw, 1.5rem);
  }

  /* Headings (intro, section, CTA) all sit centered for the wholesale
     page since the audience is reading top-down with no sidebar. */
  .wpage__intro,
  .wpage__cta {
    text-align: center;
  }

  /* Section H2 ("Why retailers back us") sits left-aligned with a
     short red accent rule above it — feels more editorial and
     anchors the eye for the differentiator grid that follows. */
  .wpage__h2-wrap {
    text-align: left;
    margin: clamp(2.5rem, 5vw, 3.5rem) 0 1.5rem;
    padding-left: 0.25rem;
    position: relative;
  }

  .wpage__h2-wrap::before {
    content: "";
    display: block;
    width: 36px;
    height: 3px;
    background: var(--wpage-brand);
    border-radius: 2px;
    margin: 0 0 0.85rem;
  }

  .wpage__h1 {
    font-family: var(--font-primary--family);
    font-size: clamp(2rem, 6vw, 3.25rem);
    font-weight: 700;
    margin: 0 0 1rem;
    letter-spacing: -0.01em;
    line-height: 1.15;
  }

  .wpage__sub {
    font-size: clamp(1rem, 1.6vw, 1.15rem);
    line-height: 1.55;
    margin: 0 auto 2.5rem;
    max-width: 60ch;
    color: rgb(var(--color-foreground-rgb) / 0.78);
  }

  .wpage__h2 {
    font-family: var(--font-primary--family);
    font-size: clamp(1.5rem, 3.4vw, 2.1rem);
    font-weight: 700;
    margin: 0 0 0.5rem;
    letter-spacing: -0.01em;
  }

  .wpage__h2-sub {
    margin: 0;
    max-width: 56ch;
    color: rgb(var(--color-foreground-rgb) / 0.7);
    font-size: 1rem;
  }

  /* Differentiator grid (the "Why retailers back us" 4-up).
     Auto-fits 1 / 2 / 4 columns based on viewport. */
  .wpage__grid {
    display: grid;
    gap: clamp(1rem, 2.5vw, 1.5rem);
    margin: 1rem 0 2.5rem;
  }

  /* Differentiator grid: 4-up on wide desktop, snaps cleanly to 2x2 on
     tablet (so cards never look squashed), 1 column on phones. */
  .wpage__grid--diffs {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }

  @media (min-width: 1100px) {
    .wpage__grid--diffs {
      grid-template-columns: repeat(4, 1fr);
    }
  }

  .wpage__diff {
    background: rgb(var(--color-foreground-rgb) / 0.03);
    border: 1px solid rgb(var(--color-foreground-rgb) / 0.08);
    border-radius: 14px;
    padding: 1.5rem 1.25rem;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease, background 220ms ease;
  }

  .wpage__diff:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgb(0 0 0 / 0.08);
    border-color: rgb(var(--color-foreground-rgb) / 0.18);
    background: #fff;
  }

  @media (prefers-reduced-motion: reduce) {
    .wpage__diff,
    .wpage__diff:hover {
      transition: none;
      transform: none;
    }
  }

  .wpage__diff-icon {
    font-size: 1.8rem;
    line-height: 1;
  }

  .wpage__diff-title {
    display: block;
    font-size: 1.05rem;
    font-weight: 700;
    color: rgb(var(--color-foreground-rgb) / 0.95);
    line-height: 1.3;
  }

  .wpage__diff-body {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
    color: rgb(var(--color-foreground-rgb) / 0.75);
  }

  /* FLAVOUR / RANGE GRID ─────────────────────────────────────────
     Per-flavour SKU cards. 4-up on desktop, 2x2 on tablet,
     1-column on phones. Cards are taller than diff cards because
     they carry SKU codes + nutrition. */
  .wpage__grid--flavours {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }

  @media (min-width: 1100px) {
    .wpage__grid--flavours {
      grid-template-columns: repeat(4, 1fr);
    }
  }

  .wpage__flav {
    background: #fff;
    border: 1px solid rgb(var(--color-foreground-rgb) / 0.08);
    border-radius: 14px;
    padding: 1.25rem 1.1rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    text-align: left;
    transition: border-color 200ms ease, box-shadow 200ms ease, transform 200ms ease;
  }

  .wpage__flav:hover {
    border-color: rgb(var(--color-foreground-rgb) / 0.18);
    box-shadow: 0 8px 20px rgb(0 0 0 / 0.05);
    transform: translateY(-2px);
  }

  @media (prefers-reduced-motion: reduce) {
    .wpage__flav,
    .wpage__flav:hover { transition: none; transform: none; }
  }

  .wpage__flav-icon {
    font-size: 1.6rem;
    line-height: 1;
    margin-bottom: 0.15rem;
  }

  .wpage__flav-name {
    font-family: var(--font-primary--family);
    font-size: 1.05rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.25;
    color: rgb(var(--color-foreground-rgb) / 0.95);
  }

  /* Provenance shows as a small uppercase chip (matches the
     product-page chip aesthetic Rogan likes). */
  .wpage__flav-prov {
    align-self: flex-start;
    display: inline-block;
    padding: 0.18rem 0.55rem;
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--wpage-brand);
    background: rgb(210 50 52 / 0.08);
    border-radius: 999px;
    line-height: 1.4;
  }

  .wpage__flav-ksp {
    margin: 0;
    font-size: 0.85rem;
    line-height: 1.45;
    color: rgb(var(--color-foreground-rgb) / 0.7);
    font-style: italic;
  }

  .wpage__flav-nutri {
    margin-top: 0.25rem;
    padding-top: 0.65rem;
    border-top: 1px dashed rgb(var(--color-foreground-rgb) / 0.1);
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
  }

  /* Sugar primary lead (per-can, more visceral); secondary is the
     per-100ml regulatory frame the line sheet uses. */
  .wpage__flav-nutri-primary {
    font-size: 0.88rem;
    font-weight: 700;
    color: rgb(var(--color-foreground-rgb) / 0.92);
  }

  .wpage__flav-nutri-secondary {
    font-size: 0.72rem;
    color: rgb(var(--color-foreground-rgb) / 0.55);
    letter-spacing: 0.01em;
  }

  .wpage__flav-skus {
    list-style: none;
    margin: 0.3rem 0 0;
    padding: 0.65rem 0 0;
    border-top: 1px solid rgb(var(--color-foreground-rgb) / 0.06);
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
  }

  .wpage__flav-sku {
    display: flex;
    flex-direction: column;
    gap: 0.05rem;
    font-size: 0.72rem;
  }

  .wpage__flav-sku-format {
    font-weight: 700;
    color: rgb(var(--color-foreground-rgb) / 0.85);
  }

  .wpage__flav-sku-code {
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    color: rgb(var(--color-foreground-rgb) / 0.55);
    letter-spacing: 0;
    font-size: 0.68rem;
    word-break: break-all;
  }

  /* CUSTOM / EXCLUSIVE CALLOUT ───────────────────────────────────
     Visual break from the structured grid above — dashed border
     and neutral palette signal "bespoke tier, talk to us". */
  .wpage__custom {
    margin: 0.5rem 0 2.5rem;
    padding: clamp(1.5rem, 3vw, 2rem) clamp(1.25rem, 3vw, 2.25rem);
    border: 2px dashed rgb(var(--color-foreground-rgb) / 0.18);
    border-radius: 16px;
    background: rgb(var(--color-foreground-rgb) / 0.02);
    text-align: center;
  }

  .wpage__custom-eyebrow {
    margin: 0 0 0.4rem;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--wpage-brand);
  }

  .wpage__custom-heading {
    font-family: var(--font-primary--family);
    font-size: clamp(1.15rem, 2.4vw, 1.5rem);
    font-weight: 700;
    margin: 0 0 0.65rem;
    color: rgb(var(--color-foreground-rgb) / 0.95);
    line-height: 1.25;
  }

  .wpage__custom-body {
    max-width: 56ch;
    margin: 0 auto 1rem;
    color: rgb(var(--color-foreground-rgb) / 0.78);
    font-size: 0.95rem;
    line-height: 1.55;
  }

  .wpage__custom-body p { margin: 0 0 0.5rem; }
  .wpage__custom-body p:last-child { margin-bottom: 0; }

  .wpage__custom-btn {
    display: inline-block;
    margin-top: 0.25rem;
    padding: 0.65rem 1.5rem;
    background: var(--wpage-brand);
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.78rem;
    border-radius: 999px;
    transition: background 150ms ease, transform 150ms ease;
  }

  .wpage__custom-btn:hover,
  .wpage__custom-btn:focus {
    background: var(--wpage-brand-hover);
    transform: translateY(-1px);
  }

  /* ---------------------------------------------------------------
     Region picker (tabbed selector around the ordering region cards)
     -----------------------------------------------------------------
     Renders a row of pill buttons followed by a panels container.
     Only the selected panel is visible at a time. Iframes inside
     hidden panels are NOT loaded — their src attribute lives in
     data-src and gets swapped in on first activation by JS below.
     This is what gives the page its big perf win — Faire / Airgoods
     / Upstock embeds don't boot unless a buyer asks for them.
  --------------------------------------------------------------- */
  .wpage__region-picker {
    margin: clamp(2rem, 4vw, 3rem) 0 0;
    padding: clamp(2rem, 4vw, 2.5rem) 0 0;
    border-top: 1px solid rgb(var(--color-foreground-rgb) / 0.08);
  }

  .wpage__region-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.6rem;
    margin: 0 0 1.5rem;
  }

  .wpage__region-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.2rem;
    border-radius: 999px;
    background: #fff;
    border: 1.5px solid rgb(var(--color-foreground-rgb) / 0.15);
    font-family: var(--font-primary--family);
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1;
    color: rgb(var(--color-foreground-rgb) / 0.85);
    cursor: pointer;
    transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
  }

  .wpage__region-pill:hover {
    border-color: rgb(var(--color-foreground-rgb) / 0.4);
    transform: translateY(-1px);
  }

  .wpage__region-pill:focus-visible {
    outline: 2px solid var(--wpage-brand);
    outline-offset: 3px;
  }

  /* Active state — the selected region's pill takes brand red. */
  .wpage__region-pill[aria-selected="true"] {
    background: var(--wpage-brand);
    border-color: var(--wpage-brand);
    color: #fff;
    box-shadow: 0 4px 12px rgb(210 50 52 / 0.25);
  }

  .wpage__region-pill-flag {
    font-size: 1.05rem;
    line-height: 1;
  }

  /* Empty state — shown until the user picks a region.
     Hidden via the .is-active class on the picker once any pill
     is selected. */
  .wpage__region-empty {
    text-align: center;
    padding: 1.5rem 1rem 0.5rem;
    color: rgb(var(--color-foreground-rgb) / 0.6);
    font-size: 0.95rem;
    line-height: 1.5;
  }

  .wpage__region-empty p {
    margin: 0;
  }

  .wpage__region-picker.is-active .wpage__region-empty {
    display: none;
  }

  /* Hide region panels by default while the picker is enabled.
     Browser-native [hidden] handles the "before any pill clicked"
     state; JS toggles the [hidden] attribute on selection.
     Belt-and-braces: also enforce display: none in case some other
     CSS forces display on .wpage__region. */
  .wpage__region--panel[hidden] {
    display: none !important;
  }

  /* When a panel becomes active, drop its top border (it lives
     inside the picker which already has its own divider) and
     shrink the spacing so it tucks neatly under the pill bar. */
  .wpage__region--panel {
    margin-top: 0;
    margin-bottom: 0;
    border-top: none !important;
    padding-top: clamp(1.5rem, 3vw, 2rem) !important;
    animation: wpage-fade-in 220ms ease both;
  }

  @keyframes wpage-fade-in {
    from { opacity: 0; transform: translateY(4px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  @media (prefers-reduced-motion: reduce) {
    .wpage__region--panel { animation: none; }
    .wpage__region-pill { transition: none; }
  }

  /* Region ordering cards. Three visual variants. */
  .wpage__region {
    margin: 0 0 2.5rem;
    padding: clamp(1.5rem, 3vw, 2rem) clamp(1rem, 2vw, 1.5rem);
    border-radius: 20px;
    text-align: center;
  }

  /* Visible visual break above the ordering platforms section.
     Tells the buyer "you've left the why-stock-us context, you're
     now in the how-to-order context". This rule only applies to
     the legacy stacked layout — when the picker is on, the picker
     itself provides the divider so we suppress this rule. */
  .wpage__region:not(.wpage__region--panel):first-of-type {
    border-top: 1px solid rgb(var(--color-foreground-rgb) / 0.08);
    padding-top: clamp(2.5rem, 5vw, 3.5rem);
    margin-top: 1rem;
  }

  .wpage__region--tinted {
    background-color: #f4f6f8;
  }

  .wpage__region--bordered {
    background-color: #fdfdfd;
    border: 1px solid #eee;
  }

  .wpage__region--plain {
    background: none;
    /* No card chrome → no need for internal vertical padding. The
       region's own margin-bottom (2.5rem) gives clean separation
       from the next block without compounding extra whitespace. */
    padding-block: 0;
  }

  .wpage__region-heading {
    font-family: var(--font-primary--family);
    font-size: clamp(1.3rem, 2.6vw, 1.6rem);
    font-weight: 700;
    margin: 0 0 0.5rem;
    letter-spacing: -0.005em;
    line-height: 1.25;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  /* Soft circular badge wrapping the flag emoji — feels more
     deliberate than a stray glyph and keeps rendering consistent
     across systems where flag emoji support is patchy. */
  .wpage__region-flag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    background: #f8f9fb;
    border: 1px solid rgb(var(--color-foreground-rgb) / 0.08);
    border-radius: 50%;
    font-size: 1.15rem;
    line-height: 1;
    box-shadow: inset 0 1px 0 rgb(255 255 255 / 0.6);
  }

  /* Typographic country-code variant (US / NZ / WW) — renders
     consistently on every OS, where flag emoji support is patchy
     (Windows in particular often drops to literal letter pairs). */
  .wpage__region-flag--code {
    font-family: var(--font-primary--family);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: rgb(var(--color-foreground-rgb) / 0.78);
  }

  .wpage__region-body {
    margin: 0 auto 1.5rem;
    max-width: 60ch;
    color: rgb(var(--color-foreground-rgb) / 0.78);
    font-size: 1rem;
    line-height: 1.55;
  }

  .wpage__region-body p {
    margin: 0 0 0.75rem;
  }

  .wpage__region-body p:last-child {
    margin-bottom: 0;
  }

  /* Embed (iframe wrapper) */
  .wpage__embed {
    margin: 0 auto;
    width: 100%;
    max-width: 900px;
  }

  .wpage__embed + .wpage__embed {
    margin-top: 1.5rem;
  }

  .wpage__embed-label {
    color: rgb(var(--color-foreground-rgb) / 0.55);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin: 0 0 0.85rem;
    font-weight: 600;
  }

  .wpage__embed-frame {
    width: 100%;
    position: relative;
  }

  .wpage__embed-frame iframe {
    width: 100%;
    border: 0;
    display: block;
    background: transparent;
    opacity: 0;
    transition: opacity 280ms ease;
  }

  .wpage__embed-frame.is-loaded iframe {
    opacity: 1;
  }

  /* Loader: centered spinner, fades out once the iframe is revealed.
     Sits behind the iframe but is visible while iframe opacity is 0. */
  .wpage__embed-loader {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    transition: opacity 280ms ease;
    z-index: 1;
  }

  .wpage__embed-frame.is-loaded .wpage__embed-loader {
    opacity: 0;
  }

  .wpage__embed-spinner {
    width: 28px;
    height: 28px;
    border: 3px solid rgb(var(--color-foreground-rgb) / 0.12);
    border-top-color: var(--wpage-brand);
    border-radius: 50%;
    animation: wpage-spin 800ms linear infinite;
  }

  @keyframes wpage-spin {
    to { transform: rotate(360deg); }
  }

  @media (prefers-reduced-motion: reduce) {
    .wpage__embed-spinner { animation: none; }
    .wpage__embed-frame iframe { transition: none; }
    .wpage__embed-loader { transition: none; }
  }

  /* "OR" pill divider between Faire and Airgoods. Two hairlines flanking
     a small uppercase pill — more deliberate than a dashed rule. */
  .wpage__embed-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    max-width: 360px;
    margin: 2.25rem auto;
  }

  .wpage__embed-divider::before,
  .wpage__embed-divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: rgb(var(--color-foreground-rgb) / 0.14);
  }

  .wpage__embed-divider-pill {
    padding: 0.35rem 0.85rem;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgb(var(--color-foreground-rgb) / 0.55);
    background: #fff;
    border: 1px solid rgb(var(--color-foreground-rgb) / 0.14);
    border-radius: 999px;
    line-height: 1;
  }

  /* Region contact (mailto fallback) */
  .wpage__region-contact {
    margin: 1rem 0 0;
    font-size: 1.1rem;
    line-height: 1.5;
  }

  .wpage__region-contact-label {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: rgb(var(--color-foreground-rgb) / 0.85);
    margin-bottom: 0.4rem;
  }

  .wpage__region-contact-link {
    color: var(--wpage-brand);
    font-weight: 700;
    text-decoration: none;
    border-bottom: 1px dashed rgb(210 50 52 / 0.35);
    transition: border-color 150ms ease;
  }

  .wpage__region-contact-link:hover,
  .wpage__region-contact-link:focus {
    border-bottom-color: var(--wpage-brand);
  }

  /* CTA box */
  .wpage__cta {
    background: var(--wpage-cta-bg, var(--wpage-brand));
    color: #fff;
    padding: clamp(2rem, 5vw, 3rem) clamp(1.5rem, 4vw, 2rem);
    border-radius: 20px;
    margin: 3rem 0 2rem;
  }

  .wpage__cta-heading {
    font-family: var(--font-primary--family);
    font-size: clamp(1.6rem, 3.4vw, 2.1rem);
    font-weight: 700;
    margin: 0 0 0.75rem;
    letter-spacing: -0.01em;
  }

  .wpage__cta-body {
    margin: 0 auto 1.5rem;
    max-width: 60ch;
    font-size: 1.05rem;
    line-height: 1.55;
    opacity: 0.95;
  }

  .wpage__cta-btn {
    display: inline-block;
    background: #fff;
    color: var(--wpage-brand);
    padding: 0.85rem 2rem;
    border-radius: 999px;
    font-weight: 700;
    text-decoration: none;
    font-size: 1rem;
    transition: transform 150ms ease, box-shadow 150ms ease;
  }

  .wpage__cta-btn:hover,
  .wpage__cta-btn:focus {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgb(0 0 0 / 0.18);
  }

  /* Closing CTA: 2-button row support (primary + ghost). */
  .wpage__cta-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
  }

  .wpage__cta-btn--ghost {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgb(255 255 255 / 0.55);
  }

  .wpage__cta-btn--ghost:hover,
  .wpage__cta-btn--ghost:focus {
    background: rgb(255 255 255 / 0.08);
    border-color: #fff;
    box-shadow: none;
  }

  /* Hero image: full-bleed (edge-to-edge) on desktop for maximum
     visual presence. Breaks out of the wpage__inner max-width via
     negative margin sized to the viewport. The parent .wpage has
     overflow-x: clip so this never spawns a horizontal scrollbar. */
  .wpage__hero-image {
    margin: 0 calc(50% - 50vw) clamp(1.5rem, 4vw, 2.5rem);
    width: 100vw;
    max-width: 100vw;
    border-radius: 0;
    overflow: hidden;
    background: #f4f6f8;
  }

  .wpage__hero-image-img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 21 / 9;
    object-fit: cover;
    /* Pull the visible crop up toward the cans cluster (rather than
       defaulting to the dead-center mountain backdrop). */
    object-position: center 30%;
  }

  @media (max-width: 749px) {
    .wpage__hero-image-img {
      /* Punchier mobile crop — portrait-ish so the hero feels
         intentional on phones instead of a thin letterbox band. */
      aspect-ratio: 4 / 5;
    }
  }

  .wpage__hero-image-caption {
    padding: 0.75rem 1rem;
    font-size: 0.85rem;
    color: rgb(var(--color-foreground-rgb) / 0.6);
    text-align: center;
    max-width: var(--wpage-max-w);
    margin: 0 auto;
  }

  /* Trust strip — soft-tinted full-bleed credibility band with a
     3-column layout (review · retail logo · press quote). Breaks out
     of wpage__inner via negative margin so the tint extends edge-to
     -edge of the viewport, then constrains its inner grid to the page
     max-width so content stays aligned with the rest of the page. */
  .wpage__trust {
    margin: 0 calc(50% - 50vw) clamp(2rem, 4vw, 2.5rem);
    width: 100vw;
    max-width: 100vw;
    padding: clamp(1.5rem, 3vw, 2rem) clamp(1rem, 4vw, 1.5rem);
    background: #f8f9fb;
    border-block: 1px solid rgb(var(--color-foreground-rgb) / 0.06);
  }

  .wpage__trust-grid {
    max-width: var(--wpage-max-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(1.5rem, 4vw, 3rem);
    align-items: center;
    text-align: center;
  }

  .wpage__trust-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    min-width: 0;
  }

  .wpage__trust-stars {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
  }

  .wpage__trust-stars-row {
    color: var(--wpage-brand);
    letter-spacing: 1px;
    line-height: 1;
  }

  .wpage__trust-rating {
    font-weight: 700;
    color: rgb(var(--color-foreground-rgb) / 0.92);
  }

  .wpage__trust-count {
    font-weight: 500;
    color: rgb(var(--color-foreground-rgb) / 0.6);
    margin-left: 0.35em;
  }

  .wpage__trust-primary {
    margin: 0;
    font-family: var(--font-body-family);
    font-size: clamp(0.9rem, 1.6vw, 1rem);
    font-weight: 600;
    color: rgb(var(--color-foreground-rgb) / 0.92);
    line-height: 1.4;
    max-width: 28ch;
    letter-spacing: -0.005em;
  }

  .wpage__trust-primary--press {
    font-weight: 500;
    font-style: italic;
    max-width: 32ch;
  }

  .wpage__trust-secondary {
    margin: 0;
    font-size: 0.78rem;
    color: rgb(var(--color-foreground-rgb) / 0.6);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
  }

  .wpage__trust-logo {
    display: block;
    max-width: 200px;
    width: 100%;
    height: auto;
    object-fit: contain;
    margin-top: 0.25rem;
  }

  /* Mobile: stack columns vertically, tighten band padding. */
  @media (max-width: 749px) {
    .wpage__trust-grid {
      grid-template-columns: 1fr;
      gap: 1.25rem;
    }
    .wpage__trust-col {
      padding-bottom: 1.25rem;
      border-bottom: 1px solid rgb(var(--color-foreground-rgb) / 0.08);
    }
    .wpage__trust-col:last-child {
      padding-bottom: 0;
      border-bottom: 0;
    }
  }

  /* Pull-quote testimonial. */
  .wpage__quote {
    margin: clamp(2rem, 5vw, 3rem) auto;
    max-width: 720px;
    padding: clamp(1.5rem, 3vw, 2rem);
    border-left: 4px solid var(--wpage-brand);
    background: rgb(var(--color-foreground-rgb) / 0.025);
    border-radius: 0 14px 14px 0;
  }

  .wpage__quote-text {
    margin: 0 0 1rem;
    font-family: var(--font-primary--family);
    font-size: clamp(1.15rem, 2.2vw, 1.4rem);
    line-height: 1.45;
    font-weight: 500;
    color: rgb(var(--color-foreground-rgb) / 0.92);
    font-style: italic;
  }

  .wpage__quote-text::before {
    content: "\201C";
    font-size: 1.6em;
    line-height: 0.5;
    color: var(--wpage-brand);
    margin-right: 0.15em;
    vertical-align: -0.2em;
  }

  .wpage__quote-cite {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: baseline;
    color: rgb(var(--color-foreground-rgb) / 0.7);
    font-size: 0.9rem;
    font-style: normal;
  }

  .wpage__quote-name {
    font-weight: 700;
    color: rgb(var(--color-foreground-rgb) / 0.9);
  }

  .wpage__quote-role::before {
    content: " — ";
    margin: 0 0.15em;
  }

  /* Info strip (case pack / MOQ / sample CTA). */
  .wpage__info {
    margin: clamp(1.5rem, 4vw, 2.5rem) auto;
    max-width: 880px;
    padding: clamp(1.75rem, 3.5vw, 2.5rem) clamp(1.5rem, 3vw, 2.25rem);
    background: #fff;
    border: 1px solid rgb(var(--color-foreground-rgb) / 0.08);
    border-radius: 18px;
    box-shadow: 0 1px 3px rgb(0 0 0 / 0.04);
    text-align: center;
  }

  .wpage__info-heading {
    font-family: var(--font-primary--family);
    font-size: clamp(1.15rem, 2.2vw, 1.35rem);
    font-weight: 700;
    margin: 0 0 1.25rem;
    color: rgb(var(--color-foreground-rgb) / 0.9);
  }

  /* Chips share one card (the .wpage__info container) — no per-chip
     borders. On desktop, slim vertical hairlines separate each chip. */
  .wpage__info-grid {
    display: grid;
    gap: 0;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    list-style: none;
    margin: 0 0 1.5rem;
    padding: 0;
  }

  .wpage__info-chip {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 1rem;
    background: transparent;
    border: 0;
    position: relative;
  }

  /* Vertical divider between adjacent chips on desktop only. */
  @media (min-width: 600px) {
    .wpage__info-chip + .wpage__info-chip::before {
      content: "";
      position: absolute;
      left: 0;
      top: 18%;
      bottom: 18%;
      width: 1px;
      background: rgb(var(--color-foreground-rgb) / 0.12);
    }
  }

  .wpage__info-icon {
    font-size: 1.4rem;
    line-height: 1;
  }

  .wpage__info-label {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 600;
    color: rgb(var(--color-foreground-rgb) / 0.6);
  }

  .wpage__info-value {
    font-weight: 700;
    color: rgb(var(--color-foreground-rgb) / 0.92);
    font-size: 1rem;
    line-height: 1.3;
    text-align: center;
  }

  .wpage__info-cta {
    display: inline-block;
    background: var(--wpage-brand);
    color: #fff;
    padding: 0.75rem 1.75rem;
    border-radius: 999px;
    font-weight: 700;
    text-decoration: none;
    font-size: 0.95rem;
    transition: background 150ms ease, transform 150ms ease;
  }

  .wpage__info-cta:hover,
  .wpage__info-cta:focus {
    background: var(--wpage-brand-hover);
    transform: translateY(-1px);
  }

  /* FAQ accordion. Visible visual break above (mirrors the region
     section start) so it reads as a distinct page section. */
  .wpage__faq {
    margin: clamp(2.5rem, 5vw, 3.5rem) auto;
    max-width: 820px;
    padding-top: clamp(2.5rem, 5vw, 3.5rem);
    border-top: 1px solid rgb(var(--color-foreground-rgb) / 0.08);
  }

  .wpage__faq-heading {
    text-align: center;
    /* Match the "Why retailers back us" H2 sizing so the page has a
       consistent section-heading hierarchy (#9). */
    font-size: clamp(1.5rem, 3.4vw, 2.1rem);
    margin: 0 0 1.5rem;
  }

  .wpage__faq-list {
    border-top: 1px solid rgb(var(--color-foreground-rgb) / 0.1);
  }

  .wpage__faq-row {
    border-bottom: 1px solid rgb(var(--color-foreground-rgb) / 0.1);
  }

  .wpage__faq-q {
    list-style: none;
    cursor: pointer;
    padding: 1.1rem 0.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-weight: 600;
    font-size: 1.02rem;
    color: rgb(var(--color-foreground-rgb) / 0.92);
    transition: color 150ms ease;
  }

  .wpage__faq-q::-webkit-details-marker { display: none; }

  .wpage__faq-q:hover { color: var(--wpage-brand); }

  .wpage__faq-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgb(var(--color-foreground-rgb) / 0.06);
    color: rgb(var(--color-foreground-rgb) / 0.7);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 200ms ease, background 200ms ease, color 200ms ease;
  }

  .wpage__faq-icon svg {
    display: block;
  }

  .wpage__faq-row[open] .wpage__faq-icon {
    transform: rotate(45deg);
    background: var(--wpage-brand);
    color: #fff;
  }

  .wpage__faq-a {
    padding: 0 0.5rem 1.25rem;
    color: rgb(var(--color-foreground-rgb) / 0.78);
    font-size: 0.98rem;
    line-height: 1.6;
  }

  .wpage__faq-a p { margin: 0 0 0.6rem; }
  .wpage__faq-a p:last-child { margin-bottom: 0; }
  .wpage__faq-a a {
    color: var(--wpage-brand);
    text-decoration: underline;
    text-underline-offset: 2px;
  }

  /* "Back to top" link sits below the FAQ list — useful on long
     scrolls to get back up to the ordering iframes. Smooth-scrolls
     thanks to scroll-behavior set on #wholesale-top below. */
  .wpage__back-to-top {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin: 1.75rem auto 0;
    padding: 0.55rem 1rem;
    color: rgb(var(--color-foreground-rgb) / 0.65);
    background: transparent;
    border: 1px solid rgb(var(--color-foreground-rgb) / 0.12);
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-decoration: none;
    text-transform: uppercase;
    transition: color 150ms ease, border-color 150ms ease, background 150ms ease;
  }

  .wpage__back-to-top:hover,
  .wpage__back-to-top:focus {
    color: rgb(var(--color-foreground-rgb) / 0.95);
    border-color: rgb(var(--color-foreground-rgb) / 0.3);
    background: rgb(var(--color-foreground-rgb) / 0.04);
  }

  /* Smooth-scroll when the back-to-top anchor is followed. */
  html { scroll-behavior: smooth; }
  @media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
  }

  /* Center the back-to-top link inside the FAQ block. */
  .wpage__faq {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .wpage__faq-list { width: 100%; }
/* END_SECTION:wholesale */

/* START_SECTION:why-sidekick (INDEX:68) */
.aspage {
    width: 100%;
    color: var(--color-foreground);
    /* Lets full-bleed children (founder note + philosophy band)
       break out of the inner max-width using calc(50% - 50vw)
       without ever causing horizontal scroll. */
    overflow-x: clip;
    position: relative;
  }

  .aspage__inner {
    max-width: var(--aspage-max-w, 1100px);
    margin: 0 auto;
    padding-inline: var(--page-margin, 16px);
    line-height: 1.6;
    /* Plain block container so inline-* children (logo cards, diff
       cards, stats) can flow side-by-side. Vertical rhythm comes
       from each block's own top/bottom margins. */
    text-align: center;
  }

  /* Re-left-align prose content. We only want the inline cards
     centered when they wrap in a row. */
  .aspage__intro,
  .aspage__h2-wrap,
  .aspage__hero,
  .aspage__cta {
    text-align: center;
  }

  .aspage__press,
  .aspage__founder,
  .aspage__card,
  .aspage__text,
  .aspage__review {
    text-align: left;
  }

  /* INTRO / HERO ─────────────────────────────────────────────
     Editorial hero: tinted background with a hard black rule
     under it. Mirrors the ingredients page hero so the two
     pages feel like the same product. */
  .aspage__intro {
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    width: 100vw;
    background: #f9fafb;
    border-bottom: 2px solid rgb(var(--color-foreground-rgb) / 0.95);
    padding: clamp(3rem, 7vw, 5rem) clamp(1rem, 4vw, 1.5rem);
    margin-bottom: clamp(2rem, 4vw, 3rem);
  }

  .aspage__intro > * {
    max-width: var(--aspage-max-w, 1100px);
    margin-left: auto;
    margin-right: auto;
  }

  .aspage__h1 {
    font-family: var(--font-primary--family);
    font-size: clamp(1.85rem, 5.5vw, 3.4rem);
    font-weight: 700;
    text-align: center;
    margin: 0 auto 1rem;
    letter-spacing: -0.01em;
    line-height: 1.1;
    overflow-wrap: break-word;
    hyphens: none;
  }

  .aspage__sub {
    text-align: center;
    font-size: clamp(1rem, 1.6vw, 1.15rem);
    color: rgb(var(--color-foreground-rgb) / 0.78);
    margin: 0 auto 1.25rem;
    max-width: 60ch;
    line-height: 1.55;
  }

  /* Trust bar — single line of credibility chips just under the H1.
     Items are separated by a middot using ::before so we don't have
     to render a trailing dot in Liquid. Wraps on narrow viewports. */
  .aspage__trust {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.4rem 0.8rem;
    margin: 0 auto;
    padding: 0.7rem 1.2rem;
    max-width: max-content;
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--color-foreground);
    background: #fff;
    border: 2px solid rgb(var(--color-foreground-rgb) / 0.95);
    border-radius: 0;
    text-align: center;
    line-height: 1.4;
  }

  .aspage__trust--link {
    text-decoration: none;
    transition: background-color 200ms ease, transform 200ms ease;
  }

  .aspage__trust--link:hover {
    background: rgb(var(--color-foreground-rgb) / 0.08);
    color: var(--color-foreground);
    transform: translateY(-1px);
  }

  .aspage__trust-item {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    position: relative;
    white-space: nowrap;
  }

  /* Middot separators between items (skip the first). Only shown
     when items are inline on a single row — see mobile override
     below where stacked items don't need a separator. */
  .aspage__trust-item + .aspage__trust-item::before {
    content: '·';
    margin-inline-end: 0.4rem;
    color: rgb(var(--color-foreground-rgb) / 0.4);
    font-weight: 700;
  }

  /* Mobile: stack chips vertically (clear visual list), drop the
     middot since vertical stacking is its own separator, and round
     the pill into a softer rounded box so it doesn't look pinched. */
  @media (max-width: 599px) {
    .aspage__trust {
      flex-direction: column;
      align-items: center;
      border-radius: 0;
      padding: 0.85rem 1.1rem;
    }

    .aspage__trust-item + .aspage__trust-item::before {
      content: none;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .aspage__trust--link {
      transition: none;
    }

    .aspage__trust--link:hover {
      transform: none;
    }
  }

  .aspage__h2-wrap {
    text-align: center;
    margin: clamp(2.5rem, 5vw, 3.5rem) 0 1.5rem;
  }

  /* Editorial section heading: bold weight, brand-red underline
     drawn only under the text (inline-block). Mirrors the
     ingredients page so the two pages share visual language. */
  .aspage__h2 {
    font-family: var(--font-primary--family);
    font-size: clamp(1.6rem, 3.4vw, 2.1rem);
    font-weight: 700;
    margin: 0 0 0.75rem;
    letter-spacing: -0.01em;
    line-height: 1.2;
    display: inline-block;
    border-bottom: 3px solid var(--aspage-brand);
    padding-bottom: 0.5rem;
  }

  .aspage__h2-sub {
    margin: 0.5rem auto 0;
    color: rgb(var(--color-foreground-rgb) / 0.78);
    font-size: 1rem;
    line-height: 1.55;
    max-width: 60ch;
  }

  /* Retailer hero (e.g. Erewhon) */
  .aspage__hero {
    background: var(--aspage-hero-bg, var(--aspage-brand));
    color: #fff;
    padding: clamp(2rem, 6vw, 3.25rem) clamp(1.5rem, 5vw, 2.5rem);
    text-align: center;
    border-radius: 0;
    border: 2px solid rgb(var(--color-foreground-rgb) / 0.95);
    margin: 1.5rem 0 2.5rem;
    box-shadow: 6px 6px 0 rgb(var(--color-foreground-rgb) / 0.95);
  }

  .aspage__hero-logo {
    max-width: 220px;
    height: auto;
    margin: 0 auto 1rem;
    display: block;
    /* If your retailer ships a black-on-transparent PNG, this flips
       it to white so it sits cleanly on the coloured hero. Use
       a pre-inverted asset if you DON'T want this. */
    filter: brightness(0) invert(1);
  }

  .aspage__hero-tagline {
    font-size: 1.1rem;
    font-weight: 500;
    margin: 1rem 0 0;
    letter-spacing: 0.3px;
    opacity: 0.95;
  }

  /* Editorial product hero (image-led, no brand-colour panel needed).
     Lives inside .aspage__inner so it inherits the section max-width.
     16:9 reservation on desktop, 4:5 portrait on mobile to match the
     art-directed mobile crop. */
  .aspage__hero-image {
    margin: 1.75rem 0 0.5rem;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 6px 22px rgb(0 0 0 / 0.10);
    background: rgb(var(--color-foreground-rgb) / 0.04);
  }
  .aspage__hero-image-img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
  }
  @media (max-width: 749px) {
    /* Only swap the aspect ratio if the editor supplied a separate
       mobile image (otherwise we'd letterbox the desktop crop). */
    .aspage__hero-image-img--has-mobile {
      aspect-ratio: 4 / 5;
    }
  }
  .aspage__hero-image-caption {
    text-align: center;
    font-size: 0.95rem;
    color: rgb(var(--color-foreground-rgb) / 0.65);
    margin: 0.75rem 0 0;
    font-style: italic;
  }

  /* Logo grids — Retailers + Featured In.
     We use a single auto-fit grid; adjacent logo_grid_item blocks
     visually group themselves into one row. */
  .aspage__logo-card {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1.25rem 1rem;
    background: #fff;
    border: 2px solid rgb(var(--color-foreground-rgb) / 0.95);
    border-radius: 0;
    text-align: center;
    transition: transform 220ms ease, box-shadow 220ms ease;
  }

  .aspage__logo-link {
    display: contents;
    text-decoration: none;
    color: inherit;
  }

  .aspage__logo-card:hover {
    transform: translateY(-4px);
    box-shadow: 6px 6px 0 var(--aspage-brand);
  }

  .aspage__logo-img {
    max-width: 120px;
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  .aspage__logo-caption {
    font-size: 0.85rem;
    color: rgb(var(--color-foreground-rgb) / 0.65);
  }

  /* Grid wrappers — Liquid groups consecutive blocks of the same
     type into one of these so we get clean rows + consistent gaps. */
  .aspage__grid {
    display: grid;
    gap: 0.85rem;
    margin: 1rem 0 1.5rem;
    text-align: left;
  }

  .aspage__grid--logos {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    text-align: center;
  }

  .aspage__grid--diffs {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  }

  .aspage__grid--stats {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    text-align: center;
  }

  /* When a card sits in a grid wrapper, fill the cell. */
  .aspage__grid > .aspage__logo-card,
  .aspage__grid > .aspage__diff,
  .aspage__grid > .aspage__stat {
    width: 100%;
    margin: 0;
  }

  /* Awards */
  .aspage__award {
    background: rgb(var(--color-foreground-rgb) / 0.03);
    border: 2px solid rgb(var(--color-foreground-rgb) / 0.08);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    margin: 1rem 0 1.5rem;
  }

  .aspage__award-figure {
    margin: 0 0 0.65rem;
    width: 100%;
    max-width: min(100%, 340px);
    line-height: 0;
  }

  .aspage__award-graphic {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 4px;
  }

  .aspage__award-medal {
    font-size: 3rem;
    line-height: 1;
    margin-bottom: 0.5rem;
  }

  .aspage__award-title {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 0 0.5rem;
  }

  .aspage__award-body {
    margin: 0 0 1rem;
    color: rgb(var(--color-foreground-rgb) / 0.75);
  }

  /* Press cards */
  .aspage__press {
    background: #fff;
    border: 2px solid rgb(var(--color-foreground-rgb) / 0.95);
    border-radius: 0;
    padding: 1.75rem;
    margin: 1rem 0;
    transition: transform 220ms ease, box-shadow 220ms ease;
  }

  .aspage__press:hover {
    transform: translateY(-4px);
    box-shadow: 6px 6px 0 var(--aspage-brand);
  }

  @media (prefers-reduced-motion: reduce) {
    .aspage__press,
    .aspage__press:hover {
      transition: none;
      transform: none;
    }
  }

  .aspage__press-logo {
    max-width: 150px;
    height: auto;
    margin-bottom: 0.75rem;
    display: block;
  }

  .aspage__press-date {
    display: block;
    color: rgb(var(--color-foreground-rgb) / 0.6);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
  }

  .aspage__press-headline {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 0.75rem;
    line-height: 1.35;
  }

  .aspage__press-quote {
    font-style: italic;
    color: rgb(var(--color-foreground-rgb) / 0.78);
    margin: 0.75rem 0;
    padding-left: 1rem;
    border-left: 3px solid var(--aspage-brand);
  }

  /* Differentiators — wider cards now that bodies hold ~50 words. */
  .aspage__grid--diffs {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
    gap: 1rem;
  }

  .aspage__diff {
    background: #fff;
    border: 2px solid rgb(var(--color-foreground-rgb) / 0.95);
    border-radius: 0;
    padding: 1.6rem 1.7rem;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    height: 100%;
    transition: transform 220ms ease, box-shadow 220ms ease;
  }

  .aspage__diff:hover {
    transform: translateY(-4px);
    box-shadow: 6px 6px 0 var(--aspage-brand);
  }

  @media (prefers-reduced-motion: reduce) {
    .aspage__diff,
    .aspage__diff:hover {
      transition: none;
      transform: none;
    }
  }

  .aspage__diff-icon {
    font-size: 1.9rem;
    line-height: 1;
    margin-bottom: 0.25rem;
  }

  .aspage__diff-title {
    display: block;
    font-size: 1.08rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
  }

  .aspage__diff-body {
    margin: 0;
    color: rgb(var(--color-foreground-rgb) / 0.78);
    font-size: 0.95rem;
    line-height: 1.55;
  }

  /* Bordered "card" sections (Why People Switch, Why Retailers Back Us) */
  .aspage__card {
    background: #fff;
    border: 2px solid rgb(var(--color-foreground-rgb) / 0.95);
    border-radius: 0;
    padding: 2rem;
    margin: 2rem 0;
  }

  .aspage__card-heading {
    text-align: center;
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0 0 1.25rem;
  }

  .aspage__card-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.85rem;
  }

  .aspage__card-list--center {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    text-align: center;
  }

  .aspage__card-list--left .aspage__card-item {
    padding: 0.85rem 1rem;
    background: #f9fafb;
    border-left: 3px solid var(--aspage-brand);
    border-radius: 0;
  }

  .aspage__card-list--center .aspage__card-item {
    padding: 0.5rem;
  }

  .aspage__card-item strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 0.2rem;
  }

  .aspage__card-item p {
    font-size: 0.92rem;
    color: rgb(var(--color-foreground-rgb) / 0.7);
    margin: 0;
    line-height: 1.5;
  }

  /* Impact stats */
  .aspage__stat {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem 1rem;
    background: #fff;
    border: 2px solid rgb(var(--color-foreground-rgb) / 0.95);
    border-radius: 0;
    min-width: 200px;
    transition: transform 220ms ease, box-shadow 220ms ease;
  }

  .aspage__stat:hover {
    transform: translateY(-4px);
    box-shadow: 6px 6px 0 var(--aspage-brand);
  }

  @media (prefers-reduced-motion: reduce) {
    .aspage__stat,
    .aspage__stat:hover {
      transition: none;
      transform: none;
    }
  }

  .aspage__stat-number {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    font-weight: 700;
    color: var(--aspage-brand);
    line-height: 1;
    margin-bottom: 0.4rem;
  }

  .aspage__stat-title {
    display: block;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-foreground);
    margin-bottom: 0.25rem;
    line-height: 1.3;
  }

  .aspage__stat-label {
    color: rgb(var(--color-foreground-rgb) / 0.7);
    font-size: 0.92rem;
    line-height: 1.45;
  }

  /* When award + impact_stat blocks share the 'stats' grid (the
     Awards-and-impact trio), give them the same card chrome so the
     row reads as a unit. */
  .aspage__grid--stats > .aspage__award,
  .aspage__grid--stats > .aspage__stat {
    background: #fff;
    border: 2px solid rgb(var(--color-foreground-rgb) / 0.95);
    border-radius: 0;
    padding: 1.75rem 1.25rem;
    text-align: center;
    margin: 0;
    min-width: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 0.4rem;
    transition: transform 220ms ease, box-shadow 220ms ease;
  }

  .aspage__grid--stats > .aspage__award:hover,
  .aspage__grid--stats > .aspage__stat:hover {
    transform: translateY(-4px);
    box-shadow: 6px 6px 0 var(--aspage-brand);
  }

  @media (prefers-reduced-motion: reduce) {
    .aspage__grid--stats > .aspage__award,
    .aspage__grid--stats > .aspage__stat,
    .aspage__grid--stats > .aspage__award:hover,
    .aspage__grid--stats > .aspage__stat:hover {
      transition: none;
      transform: none;
    }
  }

  .aspage__grid--stats > .aspage__award .aspage__award-figure {
    max-width: min(100%, 220px);
    margin: 0.35rem 0 0.65rem;
  }

  /* Graphic-only award card: the image IS the card. Image bleeds
     edge-to-edge inside the 2px black border, no padding. When
     wrapped in an anchor, the whole card lifts on hover with the
     same offset-shadow we use elsewhere for click affordance. */
  .aspage__grid--stats > .aspage__award.aspage__award--graphic-only,
  .aspage__award--graphic-only {
    padding: 0;
    overflow: hidden;
    align-items: stretch;
    justify-content: stretch;
    text-decoration: none;
    color: inherit;
  }

  a.aspage__award--graphic-only {
    display: flex;
    cursor: pointer;
  }

  .aspage__award-graphic--bleed {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
  }

  /* Reuse existing hover lift; ensure it still triggers when the
     award is an <a> rather than a <div>. */
  a.aspage__award--graphic-only:hover {
    transform: translateY(-4px);
    box-shadow: 6px 6px 0 var(--aspage-brand);
  }

  @media (prefers-reduced-motion: reduce) {
    a.aspage__award--graphic-only,
    a.aspage__award--graphic-only:hover {
      transition: none;
      transform: none;
    }
  }

  .aspage__grid--stats > .aspage__award .aspage__award-medal {
    font-size: 2.6rem;
  }

  .aspage__grid--stats > .aspage__award .aspage__award-title {
    font-size: 1.05rem;
    margin: 0;
  }

  .aspage__grid--stats > .aspage__award .aspage__award-body {
    font-size: 0.92rem;
    color: rgb(var(--color-foreground-rgb) / 0.7);
    margin: 0;
    line-height: 1.45;
  }

  /* In the trio context, bump stat numbers up to match the visual
     weight of the medal so all three cards read as a unified row.
     Single-word "stats" like FINALIST scale down a notch so they
     don't look chunky next to numeric ones like 4.98★ / 100%. */
  .aspage__grid--stats > .aspage__stat .aspage__stat-number {
    font-size: clamp(2.2rem, 5.5vw, 2.8rem);
    line-height: 1;
    letter-spacing: -0.02em;
    word-break: keep-all;
  }

  /* Center the number + label vertically inside each stat card so
     the trio (Shelfie graphic / 4.98★ / 100%) reads as a balanced
     row. If a stat ever carries a CTA, the button still pins to
     the bottom via margin-top: auto. */
  .aspage__grid--stats > .aspage__stat {
    justify-content: center;
  }

  .aspage__stat-cta {
    margin-top: auto;
    align-self: stretch;
  }

  /* Press cards laid out in a row of 3. */
  .aspage__grid--press {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.25rem;
    align-items: stretch;
  }

  .aspage__grid--press > .aspage__press {
    margin: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
  }

  .aspage__grid--press .aspage__press-quote {
    flex-grow: 1;
  }

  /* === Founder note (signed) ===
     Full-bleed light-grey band so it reads as a deliberate
     editorial moment — matches the ingredients page hero
     treatment so the two pages share the same beats.

     The padding-inline max() trick is what keeps the inner
     content (photo + text) constrained to the page max-width
     even though the band itself stretches edge-to-edge. */
  .aspage__fnote {
    display: grid;
    grid-template-columns: minmax(200px, 320px) 1fr;
    gap: clamp(1.5rem, 4vw, 2.5rem);
    align-items: center;
    margin: clamp(2.5rem, 5vw, 3.5rem) calc(50% - 50vw) clamp(2.5rem, 5vw, 3.5rem);
    width: 100vw;
    background: #f9fafb;
    border-block: 2px solid rgb(var(--color-foreground-rgb) / 0.95);
    padding-block: clamp(2.5rem, 5vw, 3.5rem);
    padding-inline: max(var(--page-margin, 16px), calc((100vw - var(--aspage-max-w, 1100px)) / 2));
    text-align: left;
  }

  /* No photo uploaded yet → drop the photo column and centre the
     prose inside the band. The band itself stays full-bleed. */
  .aspage__fnote--text-only {
    display: block;
    text-align: center;
  }

  .aspage__fnote--text-only > .aspage__fnote-body {
    max-width: 60ch;
    margin: 0 auto;
    text-align: left;
  }

  @media (max-width: 749px) {
    .aspage__fnote {
      grid-template-columns: 1fr;
      gap: 1.25rem;
    }
  }

  .aspage__fnote-photo-wrap {
    width: 100%;
  }

  .aspage__fnote-photo {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 0;
    border: 2px solid rgb(var(--color-foreground-rgb) / 0.95);
    background: #fff;
  }

  .aspage__fnote-photo--placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: rgb(var(--color-foreground-rgb) / 0.45);
    border: 2px dashed rgb(var(--color-foreground-rgb) / 0.15);
    padding: 1.5rem;
    text-align: center;
    font-size: 0.82rem;
    gap: 0.5rem;
  }

  .aspage__fnote-text {
    font-size: clamp(1rem, 1.4vw, 1.08rem);
    line-height: 1.65;
    color: rgb(var(--color-foreground-rgb) / 0.85);
  }

  .aspage__fnote-text p {
    margin: 0 0 0.85rem;
  }

  .aspage__fnote-text p:last-child {
    margin-bottom: 0;
  }

  .aspage__fnote-sig {
    margin: 1.25rem 0 0;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-foreground);
    letter-spacing: 0.01em;
  }

  /* === Principles two-column ("What to look for") === */
  .aspage__principles {
    margin: 3rem 0;
    text-align: center;
  }

  .aspage__principles-heading {
    margin-bottom: 0.5rem;
  }

  .aspage__principles-sub {
    margin: 0 auto 2rem;
    max-width: 56ch;
  }

  .aspage__principles-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(1.5rem, 4vw, 3rem);
    text-align: left;
    margin-top: 2rem;
  }

  @media (max-width: 749px) {
    .aspage__principles-grid {
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }
  }

  .aspage__principles-col-heading {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin: 0 0 1.25rem;
    padding-bottom: 0.65rem;
    border-bottom: 1px solid rgb(var(--color-foreground-rgb) / 0.12);
    color: rgb(var(--color-foreground-rgb) / 0.6);
  }

  .aspage__principles-col--avoid .aspage__principles-col-heading {
    color: rgb(185 28 28);
    border-bottom-color: rgb(185 28 28 / 0.2);
  }

  .aspage__principles-col--look .aspage__principles-col-heading {
    color: rgb(22 101 52);
    border-bottom-color: rgb(22 101 52 / 0.2);
  }

  .aspage__principles-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
  }

  .aspage__principles-item {
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgb(var(--color-foreground-rgb) / 0.06);
  }

  .aspage__principles-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  .aspage__principles-item-heading {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 0.35rem;
    color: var(--color-foreground);
  }

  .aspage__principles-item-body {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.55;
    color: rgb(var(--color-foreground-rgb) / 0.75);
  }

  .aspage__principles-closing {
    margin: 2rem auto 0;
    max-width: 60ch;
    font-size: 0.98rem;
    color: rgb(var(--color-foreground-rgb) / 0.85);
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgb(var(--color-foreground-rgb) / 0.08);
  }

  /* === "Never list" — what's never in Sidekick === */
  .aspage__never {
    margin: 3rem 0;
    text-align: center;
  }

  .aspage__never-heading {
    margin-bottom: 1.5rem;
  }

  .aspage__never-list {
    list-style: none;
    margin: 1.5rem auto;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem 1.5rem;
    max-width: 700px;
    text-align: left;
  }

  @media (max-width: 599px) {
    .aspage__never-list {
      grid-template-columns: 1fr;
      gap: 0.65rem;
    }
  }

  .aspage__never-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.98rem;
    color: rgb(var(--color-foreground-rgb) / 0.85);
    line-height: 1.4;
  }

  .aspage__never-mark {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.4rem;
    height: 1.4rem;
    border-radius: 50%;
    background: rgb(220 38 38 / 0.12);
    color: rgb(185 28 28);
    font-weight: 700;
    font-size: 0.8rem;
  }

  .aspage__never-closing {
    margin: 1.75rem auto 0;
    max-width: 60ch;
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-foreground);
    padding: 1rem 1.25rem;
    background: #f9fafb;
    border: 2px solid rgb(var(--color-foreground-rgb) / 0.95);
    border-radius: 0;
  }

  /* === Sugar philosophy aside === */
  /* Sugar philosophy aside — full-bleed brand-red band, mirrors
     the Oxymel quote banner on the ingredients page. The honest
     "why we don't chase 0g" framing earns the visual emphasis. */
  .aspage__sugar-aside {
    margin: clamp(2.5rem, 5vw, 3.5rem) calc(50% - 50vw);
    width: 100vw;
    background: var(--aspage-brand);
    color: #fff;
    padding-block: clamp(2.5rem, 5vw, 3.5rem);
    padding-inline: max(var(--page-margin, 16px), calc((100vw - var(--aspage-max-w, 1100px)) / 2));
    text-align: center;
  }

  .aspage__sugar-aside-heading {
    margin: 0 auto 1rem;
    font-family: var(--font-primary--family);
    font-size: clamp(1.4rem, 3vw, 1.8rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    letter-spacing: -0.01em;
    max-width: 60ch;
  }

  .aspage__sugar-aside-body {
    font-size: clamp(1rem, 1.6vw, 1.1rem);
    line-height: 1.65;
    color: #fff;
    max-width: 60ch;
    margin: 0 auto;
    text-align: left;
  }

  .aspage__sugar-aside-body p {
    margin: 0 0 0.75rem;
  }

  .aspage__sugar-aside-body p:last-child {
    margin-bottom: 0;
  }

  /* Founder card */
  .aspage__founder {
    background: #fff;
    border: 2px solid rgb(var(--color-foreground-rgb) / 0.95);
    border-radius: 0;
    padding: 2rem;
    margin: 2rem 0;
  }

  .aspage__founder-heading {
    text-align: center;
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0 0 1.25rem;
  }

  .aspage__founder-body {
    margin-bottom: 1rem;
    line-height: 1.7;
  }

  .aspage__founder-body:last-child {
    margin-bottom: 0;
  }

  /* Free narrative text */
  .aspage__text {
    margin: 1.5rem 0;
  }

  .aspage__text-body {
    line-height: 1.7;
  }

  .aspage__text-body p {
    margin-bottom: 1rem;
  }

  /* Review themes */
  .aspage__review {
    background: #fff;
    border: 2px solid rgb(var(--color-foreground-rgb) / 0.95);
    border-radius: 0;
    padding: 1.5rem 1.75rem;
    margin: 0.75rem 0;
    transition: transform 220ms ease, box-shadow 220ms ease;
  }

  .aspage__review:hover {
    transform: translateY(-4px);
    box-shadow: 6px 6px 0 var(--aspage-brand);
  }

  @media (prefers-reduced-motion: reduce) {
    .aspage__review,
    .aspage__review:hover {
      transition: none;
      transform: none;
    }
  }

  .aspage__review-heading {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 0.85rem;
  }

  .aspage__review-list {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .aspage__review-quote {
    position: relative;
    padding-left: 1.25rem;
    margin-bottom: 0.75rem;
    color: rgb(var(--color-foreground-rgb) / 0.8);
    font-style: italic;
    font-size: 0.95rem;
    line-height: 1.5;
  }

  .aspage__review-quote::before {
    content: '\201C';
    position: absolute;
    left: 0;
    top: -0.05em;
    color: var(--aspage-brand);
    font-size: 1.4em;
    font-style: normal;
    line-height: 1;
  }

  .aspage__review-quote:last-child {
    margin-bottom: 0;
  }

  /* Judge.me strip */
  .aspage__jdgm {
    margin: 1.5rem 0;
  }

  /* CTA box */
  /* CTA — full-bleed coloured band so the page closes with a
     decisive editorial moment instead of a soft rounded panel. */
  .aspage__cta {
    background: var(--aspage-cta-bg, var(--aspage-brand));
    color: #fff;
    padding: clamp(2.5rem, 6vw, 4rem) clamp(1.5rem, 4vw, 2.5rem);
    text-align: center;
    border-radius: 0;
    margin: clamp(3rem, 6vw, 4rem) calc(50% - 50vw) 0;
    width: 100vw;
  }

  .aspage__cta > * {
    max-width: 60ch;
    margin-left: auto;
    margin-right: auto;
  }

  .aspage__cta-heading {
    color: #fff;
    margin: 0 auto 0.75rem;
    font-size: clamp(1.6rem, 3.4vw, 2.1rem);
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1.2;
  }

  .aspage__cta-body {
    font-size: 1.05rem;
    margin: 0 auto 1.75rem;
    opacity: 0.95;
    line-height: 1.55;
  }

  /* Inside the coloured CTA band, the brand button needs to invert
     so it stands off the brand-red background. */
  .aspage__cta .aspage__btn--brand {
    background: #fff;
    color: var(--aspage-brand);
    border-color: #fff;
  }

  .aspage__cta .aspage__btn--brand:hover {
    background: transparent;
    color: #fff;
    border-color: #fff;
  }

  /* Buttons — editorial: square corners, uppercase, generous
     letter-spacing. Shares visual language with the ingredients
     page CTA. */
  .aspage__btn {
    display: inline-block;
    padding: 0.95rem 2.25rem;
    text-decoration: none;
    border-radius: 0;
    border: 2px solid var(--aspage-brand);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: transform 200ms ease, background-color 200ms ease, color 200ms ease;
    line-height: 1.2;
  }

  .aspage__btn--brand {
    background: var(--aspage-brand);
    color: #fff;
    margin-top: 0.5rem;
  }

  .aspage__btn--brand:hover {
    background: #fff;
    color: var(--aspage-brand);
    transform: translateY(-2px);
  }

  .aspage__btn--invert {
    background: #fff;
    color: var(--aspage-brand);
    padding: 0.95rem 2.25rem;
    font-size: 0.85rem;
  }

  .aspage__btn--invert:hover {
    background: var(--aspage-brand);
    color: #fff;
    transform: translateY(-2px);
  }

  @media (prefers-reduced-motion: reduce) {
    .aspage__btn,
    .aspage__btn--brand:hover,
    .aspage__btn--invert:hover {
      transition: none;
      transform: none;
    }
  }

  /* (Legacy width rules removed — grid wrappers handle sizing now.) */

  /* Screen-reader-only utility (table caption, header labels) */
  .aspage .visually-hidden {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  /* Comparison-table styles are intentionally inlined as a <style>
     block in the section body (see comparison_table case) so changes
     ship instantly without waiting for Shopify's compiled-asset
     bundle cache to invalidate. */

  /* Honour reduced motion */
  @media (prefers-reduced-motion: reduce) {
    .aspage__logo-card,
    .aspage__btn--invert {
      transition: none;
    }

    .aspage__logo-card:hover,
    .aspage__btn--invert:hover {
      transform: none;
    }
  }
/* END_SECTION:why-sidekick */

/* CSS from block stylesheet tags */
/* START_BLOCK:_accordion-row (INDEX:69) */
.details__icon {
    height: auto;
    margin-inline-end: var(--margin-xs);
  }
/* END_BLOCK:_accordion-row */

/* START_BLOCK:_announcement (INDEX:70) */
.text-block {
    width: var(--width);
    max-width: 100%;
  }

  .text-block > * {
    width: var(--width);
    max-width: var(--max-width, 100%);
    text-align: var(--text-align);
  }

  .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:71) */
.blog-post-card {
    display: flex;
    flex-direction: column;
    text-align: var(--text-align);
  }

  .blog-post-card__content {
    padding-block-start: 0.4rem;
    display: flex;
    flex-direction: column;
    /* Belt-and-suspenders: stop long titles word-stacking if the column ever clamps narrow. */
    min-width: 0;
    overflow-wrap: anywhere;
  }

  .blog-post-item .blog-post-card__image-container,
  .blog-post-item .blog-post-card__content {
    width: 100%;
  }

  /* Hero card: image left + text right on tablet/desktop, stacked on mobile.
     Triggers for either the chronological first card OR a merchant-pinned
     "Editor's pick" featured card.
     Breakpoint bumped from 749px → 989px so iPad portrait (768px) and small tablets stack cleanly. */
  .blog-post-item:first-child .blog-post-card,
  .blog-post-item--featured .blog-post-card {
    flex-direction: row;

    @media screen and (max-width: 989px) {
      flex-direction: column;
    }
  }

  .blog-post-item:first-child .blog-post-card__image-container,
  .blog-post-item--featured .blog-post-card__image-container {
    width: 70%;

    @media screen and (max-width: 989px) {
      width: 100%;
    }
  }

  /* Drop the :has() selector so iOS 14 / legacy Android still gets the right mobile layout. */
  .blog-post-item:first-child .blog-post-card__content,
  .blog-post-item--featured .blog-post-card__content {
    padding-inline-start: var(--columns-gap);
    width: 30%;

    @media screen and (max-width: 989px) {
      padding-inline-start: 0;
      width: 100%;
    }
  }

  /* When the hero card has no image, keep the content full-width even on desktop. */
  .blog-post-item:first-child:not(:has(.blog-post-card__image-container)) .blog-post-card__content,
  .blog-post-item--featured:not(:has(.blog-post-card__image-container)) .blog-post-card__content {
    width: 100%;
    padding-inline-start: 0;
  }

  /* Hero card on desktop: keep the cinematic letterbox shape so the
     side-by-side layout doesn't blow out into a giant square. On mobile/tablet
     where the hero stacks, the global square aspect-ratio takes over. */
  @media screen and (min-width: 990px) {
    .blog-post-item:first-child .blog-post-card__image,
    .blog-post-item--featured .blog-post-card__image {
      aspect-ratio: auto;
      height: calc(var(--blog-post-card-img-height) * var(--blog-post-card-scale));
    }
  }

  .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);
  }

  /* Image hover lift — gentle 1.04× scale on card hover/focus matches the
     homepage featured-blog-posts carousel so the two surfaces feel like
     the same product. Container clips so the scale doesn't leak past the
     card edge. transition lives on the image itself so removing the
     hover state animates back smoothly. */
  .blog-post-card__image-container {
    overflow: hidden;
  }

  .blog-post-card__image {
    transition: transform 320ms cubic-bezier(0.2, 0.7, 0.2, 1);
    transform-origin: center center;
    will-change: transform;
  }

  .blog-post-card:hover .blog-post-card__image,
  .blog-post-card:focus-within .blog-post-card__image {
    transform: scale(1.04);
  }

  @media (prefers-reduced-motion: reduce) {
    .blog-post-card__image {
      transition: none;
    }

    .blog-post-card:hover .blog-post-card__image,
    .blog-post-card:focus-within .blog-post-card__image {
      transform: none;
    }
  }

  .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));
  }

  /* Recipe meta chips (category, total time, servings).
     Anchored after the post details / before the description. */
  .blog-post-card__meta {
    list-style: none;
    margin: 0.5rem 0 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
  }

  .blog-post-card__chip {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.75rem;
    font-weight: 500;
    line-height: 1;
    padding: 0.35rem 0.6rem;
    border-radius: 999px;
    background-color: rgb(var(--color-foreground-rgb) / 0.05);
    color: rgb(var(--color-foreground-rgb) / 0.78);
    white-space: nowrap;
  }

  /* Category chip: brand-tinted to make recipe type pop at a glance. */
  .blog-post-card__chip--category {
    background-color: rgb(var(--color-primary-rgb) / 0.1);
    color: var(--color-primary);
  }

  .blog-post-card__chip-icon {
    width: 0.85rem;
    height: 0.85rem;
    flex-shrink: 0;
  }
/* END_BLOCK:_blog-post-card */

/* START_BLOCK:_blog-post-content (INDEX:72) */
.blog-post-content {
    max-width: var(--normal-content-width);
    margin: 0 auto;
  }
/* END_BLOCK:_blog-post-content */

/* START_BLOCK:_blog-post-description (INDEX:73) */
.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:74) */
.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:75) */
/* Square-by-default. Aspect-ratio + height:auto overrides the legacy fixed
     pixel heights so cards line up as a clean Pinterest-style grid. The
     hero (first) card overrides this back to the cinematic letterbox on
     desktop — see blocks/_blog-post-card.liquid. */
  .blog-post-card__image {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    object-position: center center;
  }

  /* Legacy size variables kept so the hero card on desktop can still pick
     small / medium / large heights via _blog-post-card.liquid. */
  .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:76) */
.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;
    align-items: center;
  }

  .blog-post-details > span {
    text-overflow: clip;
    overflow: hidden;
  }

  /* Reading time chip: small clock + "X min read" inline with the date.
     Stays visually subordinate so it doesn't compete with the article H1. */
  .blog-post-details__reading-time {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
  }

  .blog-post-details__reading-icon {
    width: 0.85em;
    height: 0.85em;
    flex-shrink: 0;
    /* Slight optical-centering nudge — clocks read better with a hair of top offset. */
    margin-block-start: -0.05em;
  }
/* END_BLOCK:_blog-post-info-text */

/* START_BLOCK:_cart-products (INDEX:77) */
.cart-page--empty .cart-items__wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-block-start: 0;
    text-align: center;
  }

  .cart-page--empty .cart-page__items {
    margin-block-start: 0;
  }

  .cart-page__title + .cart-page__items {
    margin-block-start: var(--margin-lg);
  }
/* END_BLOCK:_cart-products */

/* START_BLOCK:_cart-summary (INDEX:78) */
.cart__summary-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .cart__summary-item.tax-note {
    font-size: var(--cart-font-size--sm);
  }

  .cart__discount-label {
    display: flex;
    align-items: center;
    gap: var(--gap-2xs);
  }

  .cart__total {
    align-items: baseline;
    font-weight: var(--font-weight-bold);
  }

  .cart__tax-note {
    color: rgb(var(--color-foreground-rgb) / var(--opacity-subdued-text));
  }

  .cart__discount-label svg {
    width: var(--icon-size-sm);
    height: var(--icon-size-sm);
    display: inline-block;
  }

  .cart__summary-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--gap-2xl);
    container-type: inline-size;
    padding: 0;
    /* Static on mobile (single column) so the following section can't
       overlap the checkout button; sticky only kicks in on desktop. */
    position: static;

    @media screen and (min-width: 750px) {
      padding: var(--padding-5xl);
      grid-row: 1 / -1;
      position: sticky;
      top: 0;
      align-self: start;
    }
  }

  @media screen and (min-width: 750px) {
    body:has(> #header-group .header[sticky]) .cart__summary-inner {
      top: var(--header-height, 0);
    }
  }

  .cart__summary-container {
    @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-container:not(.cart__container--extend),
  .cart__summary-container:not(.cart__container--extend) .cart__summary-inner {
    height: auto;
  }

  .cart__container--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__container--extend:not(.has-border-radius) {
    @media screen and (min-width: 750px) {
      border-top: none;
      border-bottom: none;
    }
  }

  .cart__container--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:79) */
.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] {
    aspect-ratio: 1;
    min-width: 26px;
  }

  .cart-title .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-size: clamp(var(--cart-font-size--2xs), 0.7lh, var(--cart-font-size--xs));
  }
/* END_BLOCK:_cart-title */

/* START_BLOCK:_collection-image (INDEX:82) */
.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:84) */
.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));

    @media (hover: hover) {
      opacity: var(--disabled-opacity);
    }

    [layout='spotlight'] & {
      opacity: var(--disabled-opacity);
    }

    &[aria-current='true'] {
      opacity: 1;
    }

    .text-block {
      display: inline-block;
    }

    @media (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:88) */
.featured-blog-posts-card {
    width: 100%;
    position: relative;
    text-align: var(--text-align);
  }

  .featured-blog-posts-card__inner {
    width: 100%;
    overflow: hidden;
    position: relative;
    gap: var(--gap);
    display: flex;
    flex-direction: column;
    height: 100%;
    z-index: var(--layer-flat);
    pointer-events: none;
  }

  .resource-list--grid .resource-list__item {
    min-width: 0;
  }

  /* Editorial layout */
  .resource-list:not(.hidden--desktop) .blog-post-card--flexible-aspect-ratio {
    height: 100%;

    .featured-blog-posts-card__image,
    .blog-placeholder-svg {
      aspect-ratio: 99;
      height: 100%;
    }

    .featured-blog-posts-card__content {
      flex-shrink: 0;
      height: auto;
    }
  }

  @media (max-width: 768px) {
    .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 {
    position: relative;
    display: flex;
    height: 100%;
    width: 100%;
    gap: var(--gap);
    flex-direction: column;
    align-items: var(--horizontal-alignment);
  }

  .featured-blog-posts-card__link {
    position: absolute;
    inset: 0;
    border-radius: var(--border-radius);
  }

  .featured-blog-posts-card__content h3 {
    margin: 0;
  }

  /* Hover lift — kept in sync with the recipes listing cards
     (blocks/_blog-post-card.liquid) so the homepage carousel and the
     /blogs/recipes grid feel like the same surface. The wrapping
     .resource-image already has overflow: hidden, so the scaling image
     stays inside the card frame. */
  .featured-blog-posts-card .image-block__image {
    transition: transform 320ms cubic-bezier(0.2, 0.7, 0.2, 1);
    transform-origin: center center;
    will-change: transform;
  }

  .featured-blog-posts-card:hover .image-block__image,
  .featured-blog-posts-card:focus-within .image-block__image {
    transform: scale(1.04);
  }

  /* Title link colour shift on card hover — title heading sits inside
     the inner content panel while the click target is the absolutely
     positioned __link overlay, so we drive the colour from the card
     root rather than the link itself. */
  .featured-blog-posts-card h3 {
    transition: color 200ms ease;
  }

  .featured-blog-posts-card:hover h3,
  .featured-blog-posts-card:focus-within h3 {
    color: var(--color-primary-hover, var(--color-primary));
  }

  @media (prefers-reduced-motion: reduce) {
    .featured-blog-posts-card .image-block__image,
    .featured-blog-posts-card h3 {
      transition: none;
    }

    .featured-blog-posts-card:hover .image-block__image,
    .featured-blog-posts-card:focus-within .image-block__image {
      transform: none;
    }
  }

  /* Save heart wrapper — anchored to the image so the .recipe-save--card
     overlay positions correctly. Mirrors the equivalent block in
     blocks/_blog-post-card.liquid so the homepage carousel and the
     /blogs/recipes grid surface the heart in the same spot. */
  .featured-blog-posts-card__image-wrap {
    position: relative;
  }

  /* Recipe meta chips — same shape, sizing, and palette as the
     /blogs/recipes listing card chips so the homepage carousel and
     the recipes index look like one product. */
  .featured-blog-posts-card__meta {
    list-style: none;
    margin: 0.5rem 0 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
  }

  .featured-blog-posts-card__chip {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.75rem;
    font-weight: 500;
    line-height: 1;
    padding: 0.35rem 0.6rem;
    border-radius: 999px;
    background-color: rgb(var(--color-foreground-rgb) / 0.05);
    color: rgb(var(--color-foreground-rgb) / 0.78);
    white-space: nowrap;
  }

  .featured-blog-posts-card__chip--category {
    /* Use a darker brand-red shade for the text so it hits WCAG AA
       contrast on the pale pink chip background. The original
       var(--color-primary) (#d23234) on the 0.1-alpha pink composited
       to 4.28 contrast — just below the 4.5 requirement. #a51b1d gives
       roughly 6:1 contrast while still reading as the same brand red. */
    background-color: rgb(var(--color-primary-rgb) / 0.1);
    color: #a51b1d;
    font-weight: 600;
  }

  .featured-blog-posts-card__chip-icon {
    width: 0.85rem;
    height: 0.85rem;
    flex-shrink: 0;
  }
/* END_BLOCK:_featured-blog-posts-card */

/* START_BLOCK:_featured-blog-posts-image (INDEX:89) */
.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 (INDEX:93) */
.featured-product-content-top {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: var(--gap-sm);
  }

  .featured-product-content-bottom:not(:has(product-swatches)) {
    display: none;
  }
/* END_BLOCK:_featured-product */

/* START_BLOCK:_footer-social-icons (INDEX:94) */
.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:95) */
.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;

    /* Make sure the logo visually hugs the left edge of the column when it is the first item in the left column */
    margin-inline: calc(-1 * var(--padding-inline-start));

    &[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 (max-width: 749px) {
      /* Keeps the 5-cell mobile bar from ballooning when logo mobile height is set large in theme settings */
      max-height: min(44px, var(--header-logo-image-height-mobile));
      width: auto;
      max-width: min(var(--header-logo-image-width-mobile), 52vw);
    }

    @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:96) */
.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);
  }

  header-menu {
    width: 100%;
  }

  /* Drawer menu featured content */
  .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-list {
    --menu-horizontal-gap: var(--gap-xl);
    --menu-vertical-gap: var(--gap-xl);

    display: flex;
  }

  .menu-list__list {
    display: flex;
    justify-content: var(--grid-area-alignment);
  }

  .menu-list__list-item {
    flex-shrink: 0;
    white-space: nowrap;
  }

  .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);
    transition: color var(--animation-speed) var(--animation-easing);
    text-decoration: none;
    display: flex;
    min-height: var(--minimum-touch-target);
    align-items: center;

    &:hover,
    &:focus {
      color: var(--menu-top-level-font-color);
    }

    @media screen and (min-width: 750px) {
      font-size: var(--menu-top-level-font-size-desktop);
    }
  }

  /*
      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 var(--menu-horizontal-gap);
  }

  .overflow-menu {
    background-color: transparent;
    padding: var(--focus-outline-size);
    margin: calc(-1 * var(--focus-outline-size));
  }

  /* the submenu background element to animate */
  .overflow-menu::after {
    content: '';
    position: absolute;
    top: calc(100% - 1px + var(--border-bottom-width));
    left: 0;
    width: 100%;
    height: var(--submenu-height);
    background-color: var(--color-background);
    box-shadow: var(--shadow-popover);
    clip-path: inset(0.5px 0 -100px 0); /* stylelint-disable-line */
    opacity: var(--submenu-opacity, 1);
    transition: height var(--submenu-animation-speed) var(--ease-out-cubic),
      opacity var(--animation-speed-slow) var(--ease-out-cubic) var(--animation-speed-fast);
    z-index: calc(var(--layer-header-menu) - 1);
  }

  /** 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);

    box-shadow: var(--shadow-drawer);
    visibility: hidden;
    background-color: var(--color-background);
    position: absolute;
    width: 100%;
    left: 0;
    top: calc(100% - 1px + var(--border-bottom-width));
    z-index: var(--layer-header-menu);
    padding-inline: var(--padding-inline);
    clip-path: rect(0 100% var(--submenu-height) 0); /* stylelint-disable-line */
    transition: clip-path var(--submenu-animation-speed) var(--ease-out-cubic);
  }

  /* 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),
  /* Keep the submenus open when they are hovered */
  .menu-list__submenu:is(:hover),
  .overflow-menu::part(overflow):hover {
    --submenu-content-opacity: 1;

    visibility: visible;
  }

  .menu-list__list-item:has([data-animating]) > .menu-list__submenu {
    --submenu-content-opacity: 0;

    visibility: visible;

    &::before {
      height: 0;
    }
  }

  .menu-list__submenu-inner,
  .overflow-menu::part(overflow-list) {
    grid-column: 2;
    padding-block-start: var(--submenu-padding-block-start);
    padding-block-end: var(--submenu-padding-block-end);
    padding-inline: var(--section-padding-inline);
  }

  .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) {
    --submenu-content-opacity: 0;

    position: relative;
    display: grid;
    grid-template-columns: minmax(auto, 200px) 1fr;
    grid-template-areas: 'left right';
    grid-template-rows: max-content;
    grid-gap: 0;
  }

  /* Make overflow menu scrollable when content exceeds viewport */
  .menu-list__submenu-inner,
  .overflow-menu::part(overflow-list) {
    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;
  }

  .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 {
      --submenu-content-opacity: 0;

      grid-area: left;
      grid-row: auto;
      height: min-content;
      font-size: var(--font-size--xl);
      opacity: var(--submenu-content-opacity);
      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 {
        padding-block-start: 0;
        grid-column: unset;
      }
    }

    .menu-list__link[aria-expanded='true'] + .menu-list__submenu {
      visibility: visible;
    }
  }

  .header-menu[data-overflow-expanded='true'] .menu-list__list-item:where([slot='overflow']) .menu-list__link {
    --submenu-content-opacity: 1;
  }

  .menu-list__list-item:where([slot='overflow']):has([data-animating]) > .menu-list__link {
    --submenu-content-opacity: 0;
  }

  .menu-list__submenu-inner {
    position: relative;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    opacity: var(--submenu-content-opacity);
    transition: var(--submenu-content-animation);
  }

  .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;
    transition: color var(--animation-speed) var(--animation-easing);

    &: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__more-list-item .mega-menu__link {
    color: rgb(var(--menu-top-level-font-color-rgb) / var(--opacity-subdued-text));
  }

  .mega-menu__more-list-item:where(:hover, .active) .mega-menu__link {
    color: var(--menu-top-level-font-color);
  }

  .mega-menu__more-list-item[aria-hidden='true'] {
    display: none;
  }

  .mega-menu__submenu {
    /* preserves the inherited grid layout when this submenu wrapper is used */
    display: contents;
  }
/* END_BLOCK:_header-menu */

/* START_BLOCK:_image (INDEX:98) */
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:101) */
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:107) */
@media screen and (max-width: 749px) {
    .product-information.section--page-width .product-details > .group-block {
      padding-inline: 0;
    }
  }

  .view-product-title {
    display: none;
  }

  .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');
    }
  }

  /* ── Respect reduced motion for sticky behaviour (WCAG 2.2 AA) ── */
  @media (prefers-reduced-motion: reduce) {
    .product-details.sticky-content--desktop {
      position: static !important;
    }
  }
/* END_BLOCK:_product-details */

/* START_BLOCK:_product-media-gallery (INDEX:111) */
.media-gallery--empty .product-media-gallery__empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    width: 100%;
    min-height: min(60vw, 28rem);
    padding: 2rem;
    background: rgb(var(--color-background-rgb) / 0.6);
    border: 2px solid rgb(var(--color-border-rgb) / 0.35);
    border-radius: var(--media-radius, 8px);
    text-align: center;
  }

  .product-media-gallery__empty-image {
    width: 100%;
    max-width: 32rem;
    height: auto;
    object-fit: contain;
    border-radius: var(--media-radius, 8px);
  }

  .product-media-gallery__empty-svg {
    width: min(12rem, 45%);
    height: auto;
    opacity: 0.35;
  }

  .product-media-gallery__empty-label {
    margin: 0;
    max-width: 20rem;
    font-size: 0.875rem;
    line-height: 1.4;
    color: rgb(var(--color-foreground-rgb) / 0.65);
  }

  .dialog-zoomed-gallery {
    cursor: zoom-out;
  }

  .dialog--preloading {
    opacity: 0;
  }

  .product-media__drag-zoom-wrapper {
    aspect-ratio: inherit;
    min-height: inherit;
    min-width: inherit;
    display: inherit;
    flex: inherit;
  }

  @media screen and (max-width: 749px) {
    .dialog-zoomed-gallery {
      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);
  }

  .media-gallery__mobile-controls {
    grid-area: auto;
  }

  .dialog-zoomed-gallery .product-media-container--zoomable.product-media-container--image {
    cursor: zoom-out;
  }

  .product-media-container--zoomable.product-media-container--image {
    cursor: zoom-in;
  }

  .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 {
    height: 100vh;
  }

  /* ── Respect reduced motion (WCAG 2.2 AA) ── */
  @media (prefers-reduced-motion: reduce) {
    .dialog-zoomed-gallery {
      scroll-behavior: auto !important;
    }

    .product-media__drag-zoom-wrapper .product-media__image {
      transition: none !important;
    }
  }
/* END_BLOCK:_product-media-gallery */

/* START_BLOCK:_search-input (INDEX:112) */
.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:113) */
.slide__content {
    height: 100%;
    position: relative;
    z-index: var(--layer-flat);
  }

  .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 > placeholder-image,
  .slide__image-container > placeholder-image > img {
    width: 100%;
  }

  .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;
  }
/* END_BLOCK:_slide */

/* START_BLOCK:_social-link (INDEX:114) */
.social-icons__icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    height: var(--icon-size-lg);
  }

  .social-icons__icon {
    display: flex;
    fill: currentColor;
    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:accelerated-checkout (INDEX:115) */
.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_BLOCK:accelerated-checkout */

/* START_BLOCK:accordion (INDEX:116) */
.accordion {
    flex: 1;
    width: 100%;
  }

  /* ── Divider borders ── */
  .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);
  }

  /* ── Icon visibility ── */
  .accordion--caret .icon-plus,
  .accordion--plus .icon-caret {
    display: none;
  }

  /* ── Header typography ── */
  .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);
  }

  /* ── Keyboard focus indicator (WCAG 2.2 AA) ── */
  .accordion .details__header:focus-visible {
    outline: 2px solid var(--color-foreground);
    outline-offset: -2px;
  }

  /* ── Respect reduced motion preference (WCAG 2.2 AA) ── */
  @media (prefers-reduced-motion: reduce) {
    .accordion .details-content,
    .accordion .details__header,
    .accordion accordion-custom {
      transition: none !important;
      animation: none !important;
    }
  }
/* END_BLOCK:accordion */

/* START_BLOCK:bcc_campaign (INDEX:137) */
.bcc-campaign {
    --bcc-pink: #FEBED2;
    --bcc-pink-dark: #AD1457;
    --bcc-pink-soft: color-mix(in srgb, var(--bcc-pink) 55%, white);
    --bcc-text: #1a1a1a;
    --bcc-muted: #555;
    --bcc-cta-bg: var(--bcc-pink);
    --bcc-cta-color: var(--bcc-text);
    --bcc-cta-bg-hover: color-mix(in srgb, var(--bcc-pink) 88%, var(--bcc-text));
    --bcc-cta-border: color-mix(in srgb, var(--bcc-text) 14%, var(--bcc-pink));
    color: var(--bcc-text);
    font-family: var(--font-body--family, sans-serif);
    line-height: 1.5;
    /* Break out of the theme section wrapper's inline padding so the
       hero / mechanic / FAQ bands render edge-to-edge. */
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }

  .bcc-campaign h1,
  .bcc-campaign h2,
  .bcc-campaign h3 {
    margin: 0;
    font-weight: 700;
  }

  /* Hero */
  .bcc-hero {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    background: var(--bcc-pink);
    color: var(--bcc-text);
  }
  @media (min-width: 750px) {
    .bcc-hero {
      grid-template-columns: 1.1fr 1fr;
      align-items: stretch;
    }
  }
  .bcc-hero__inner {
    padding: 48px 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: center;
    max-width: 640px;
    text-align: left;
  }
  @media (min-width: 750px) {
    .bcc-hero__inner { padding: 80px 48px; }
  }
  .bcc-hero__eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 12px;
    font-weight: 600;
    margin: 0;
  }
  .bcc-hero__heading {
    font-size: clamp(32px, 5vw, 56px);
    line-height: 1.05;
    letter-spacing: -0.01em;
  }
  .bcc-hero__heading-line {
    display: block;
    white-space: nowrap;
  }
  @media (max-width: 400px) {
    .bcc-hero__heading {
      font-size: clamp(26px, 7.5vw, 44px);
    }
  }
  .bcc-hero__sub {
    font-size: clamp(16px, 2vw, 20px);
    line-height: 1.45;
    margin: 0;
    max-width: 48ch;
  }
  .bcc-hero__rating {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    row-gap: 4px;
    margin-top: 4px;
    font-size: 14px;
  }
  .bcc-hero__stars {
    display: inline-flex;
    align-items: center;
    gap: 1px;
    color: var(--bcc-text);
    line-height: 0;
  }
  .bcc-hero__star {
    display: block;
  }
  .bcc-hero__star path {
    fill: #1a1a1a !important;
  }
  .bcc-hero__star--empty path {
    fill-opacity: 0.35 !important;
  }
  .bcc-hero__rating-value {
    font-weight: 700;
    color: var(--bcc-text);
  }
  .bcc-hero__rating-count {
    color: var(--bcc-muted);
  }
  .bcc-hero__cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 8px;
  }
  .bcc-hero__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 22px;
    border-radius: 999px;
    background: var(--bcc-text);
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    transition: transform 120ms ease, background 120ms ease;
  }
  .bcc-hero__cta:hover {
    transform: translateY(-1px);
    background: color-mix(in srgb, var(--bcc-text) 88%, #000);
  }
  .bcc-hero__cta--ghost {
    background: transparent;
    color: var(--bcc-text);
    border: 1px solid color-mix(in srgb, var(--bcc-text) 35%, transparent);
  }
  .bcc-hero__cta--ghost:hover {
    background: color-mix(in srgb, var(--bcc-text) 6%, transparent);
  }
  .bcc-hero__partners {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-top: 16px;
    font-size: 12px;
  }
  .bcc-hero__partners-label {
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
    font-size: 11px;
  }
  .bcc-hero__partners-logos {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
    margin-top: 8px;
  }
  .bcc-hero__partner-logo {
    display: inline-flex;
    align-items: center;
    height: calc(36px * var(--bcc-partner-scale, 1));
  }
  .bcc-hero__partner-logo img {
    height: 100%;
    width: auto;
    max-height: calc(36px * var(--bcc-partner-scale, 1));
    max-width: calc(140px * var(--bcc-partner-scale, 1));
    object-fit: contain;
    filter: brightness(0);
    opacity: 1;
  }
  .bcc-hero__partner-name {
    font-size: 13px;
    font-weight: 600;
    opacity: 0.95;
  }
  .bcc-hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  /* Inventory progress wrap — directly under hero, above product CTA */
  .bcc-inventory-progress-wrap {
    background: var(--bcc-pink);
    padding: 32px 24px 40px;
  }
  @media (min-width: 750px) {
    .bcc-inventory-progress-wrap {
      padding: 48px 24px 56px;
    }
  }

  /* Story */
  #story.bcc-story,
  #pre-order.bcc-product {
    scroll-margin-top: calc(var(--header-group-height, 0px) + 1.5rem);
  }

  .bcc-story {
    padding: 64px 24px;
    background: white;
  }
  .bcc-story__inner {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 28px;
  }
  .bcc-story--with-image .bcc-story__inner {
    max-width: 1080px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: center;
  }
  @media (min-width: 750px) {
    .bcc-story--with-image .bcc-story__inner {
      grid-template-columns: 0.9fr 1.1fr;
      gap: 48px;
    }
  }
  .bcc-story__media {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .bcc-story__media img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    display: block;
    aspect-ratio: var(--bcc-story-aspect, 4 / 5);
    object-fit: cover;
    background: var(--bcc-pink-soft);
    max-height: 80vh;
  }
  .bcc-story__caption {
    font-size: 12px;
    line-height: 1.4;
    color: var(--bcc-muted);
    margin: 0;
    font-style: italic;
  }
  .bcc-story__copy {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .bcc-story__heading {
    font-size: clamp(24px, 3vw, 34px);
    color: var(--bcc-text);
  }
  .bcc-story__body {
    font-size: 17px;
    line-height: 1.65;
    color: var(--bcc-muted);
  }
  .bcc-story__body p { margin: 0 0 1em; }
  .bcc-story__body strong { color: var(--bcc-text); }
  .bcc-story__signature {
    margin: 4px 0 0;
    padding-top: 16px;
    border-top: 1px solid color-mix(in srgb, var(--bcc-pink) 20%, #eee);
    font-style: italic;
    font-size: 15px;
    color: var(--bcc-text);
    letter-spacing: 0.01em;
  }

  /* Event key art band — square art, centered with side gutters on desktop */
  .bcc-event-card {
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 24px 20px 0;
  }
  .bcc-event-card__picture {
    display: block;
    width: 100%;
    max-width: min(420px, 94vw);
    margin-inline: auto;
    line-height: 0;
  }
  .bcc-event-card__img {
    display: block;
    width: 100%;
    height: auto;
  }
  .bcc-event-card__caption {
    margin: 0;
    width: 100%;
    max-width: min(520px, 94vw);
    padding: 16px 0 24px;
    text-align: center;
    font-size: 13px;
    line-height: 1.5;
    color: #4a5a6e;
    letter-spacing: 0.04em;
    font-weight: 500;
  }
  @media (min-width: 750px) {
    .bcc-event-card {
      padding: 40px 32px 0;
    }
    .bcc-event-card__picture {
      max-width: min(520px, 52vw);
    }
    .bcc-event-card__caption {
      padding: 20px 0 28px;
      font-size: 14px;
    }
  }

  /* Mechanic */
  .bcc-mechanic {
    padding: 64px 24px;
    background: var(--bcc-pink-soft);
  }
  .bcc-mechanic__inner {
    max-width: 960px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 28px;
    align-items: center;
    text-align: center;
  }
  .bcc-mechanic__heading {
    font-size: clamp(24px, 3vw, 30px);
  }
  .bcc-mechanic__steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    width: 100%;
  }
  @media (min-width: 750px) {
    .bcc-mechanic__steps { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  }
  .bcc-mechanic__step {
    background: white;
    padding: 24px 20px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: left;
    border: 1px solid color-mix(in srgb, var(--bcc-pink) 15%, white);
  }
  .bcc-mechanic__num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 999px;
    background: var(--bcc-pink);
    color: var(--bcc-text);
    border: 1px solid var(--bcc-cta-border);
    font-weight: 700;
    font-size: 14px;
  }
  .bcc-mechanic__step h3 { font-size: 17px; }
  .bcc-mechanic__step p {
    font-size: 14px;
    color: var(--bcc-muted);
    margin: 0;
  }
  .bcc-mechanic__note {
    margin: 28px 0 0;
    font-size: 13px;
    line-height: 1.5;
    color: var(--bcc-muted);
    text-align: center;
    max-width: 36rem;
    margin-left: auto;
    margin-right: auto;
  }

  /* Yum moment — generous whitespace: space above heading, between copy & image, below image */
  .bcc-yum {
    padding: clamp(48px, 6vw, 64px) 20px clamp(64px, 7vw, 80px);
    background: #fff;
  }
  .bcc-yum--pale_pink {
    background: var(--bcc-pink-soft);
  }
  @media (min-width: 750px) {
    .bcc-yum {
      padding: clamp(48px, 5vw, 64px) 32px clamp(64px, 6vw, 80px);
    }
  }
  .bcc-yum__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: clamp(20px, 2.5vw, 28px);
    align-items: center;
  }
  .bcc-yum__copy {
    max-width: 42rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .bcc-yum__heading {
    margin: 0;
    font-size: clamp(1.35rem, 3vw, 1.75rem);
    line-height: 1.15;
    letter-spacing: -0.01em;
    color: var(--bcc-text);
  }
  .bcc-yum__body {
    margin: 0;
    font-size: clamp(0.95rem, 2vw, 1.05rem);
    line-height: 1.55;
    color: var(--bcc-muted);
  }
  .bcc-yum__figure {
    margin: 0;
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgb(26 26 26 / 0.1);
    aspect-ratio: 16 / 9;
    background: #f5f5f5;
  }
  @media (max-width: 749px) {
    .bcc-yum {
      padding: clamp(48px, 8vw, 64px) 0 clamp(64px, 10vw, 80px);
    }
    .bcc-yum__inner {
      gap: clamp(20px, 4vw, 28px);
      padding-inline: 0;
    }
    .bcc-yum__copy {
      padding-inline: 20px;
    }
    .bcc-yum__figure {
      border-radius: 0;
      aspect-ratio: 4 / 5;
      max-height: 72vh;
    }
    .bcc-yum__img {
      object-position: center 42%;
    }
  }
  .bcc-yum__img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
  }

  /* Product */
  .bcc-product {
    padding: 64px 24px;
    background: white;
  }
  .bcc-product__inner {
    max-width: 960px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: center;
  }
  @media (min-width: 750px) {
    .bcc-product__inner { grid-template-columns: 1fr 1fr; gap: 48px; }
  }
  .bcc-product__media img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    background: var(--bcc-pink-soft);
  }
  .bcc-product__copy {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .bcc-product__eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 12px;
    font-weight: 600;
    color: var(--bcc-text);
    margin: 0;
  }
  .bcc-product__heading {
    font-size: clamp(26px, 3vw, 36px);
    line-height: 1.1;
  }
  .bcc-product__price {
    font-size: 20px;
    font-weight: 600;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 8px;
  }
  .bcc-product__price-note {
    font-size: 13px;
    font-weight: 400;
    color: var(--bcc-muted);
  }
  .bcc-product__donation {
    background: var(--bcc-pink-soft);
    border-radius: 10px;
    padding: 12px 14px;
    font-size: 14px;
    margin: 0;
    color: var(--bcc-text);
  }
  .bcc-product__options-note {
    margin: 10px 0 0;
    font-size: 12px;
    line-height: 1.45;
    color: var(--bcc-muted);
  }
  .bcc-product .bcc-hero__cta {
    background: var(--bcc-cta-bg);
    color: var(--bcc-cta-color);
    border: 1px solid var(--bcc-cta-border);
    align-self: flex-start;
    margin-top: 4px;
  }
  .bcc-product .bcc-hero__cta:hover {
    background: var(--bcc-cta-bg-hover);
  }
  .bcc-product__trust {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin: 8px 0 0;
    font-size: 13px;
    color: var(--bcc-muted);
    line-height: 1.4;
  }
  .bcc-product__trust-icon {
    color: var(--bcc-pink-dark);
    flex-shrink: 0;
  }
  .bcc-product__donate-alt {
    margin: 10px 0 0;
    font-size: 13px;
    line-height: 1.5;
    color: var(--bcc-muted);
  }
  .bcc-product__donate-alt a {
    color: var(--bcc-text);
    text-decoration: none;
    border-bottom: 1px solid color-mix(in srgb, var(--bcc-text) 35%, transparent);
    padding-bottom: 1px;
    transition: border-color 120ms ease, color 120ms ease;
  }
  .bcc-product__donate-alt a:hover,
  .bcc-product__donate-alt a:focus-visible {
    color: var(--bcc-text);
    border-bottom-color: var(--bcc-text);
    outline: none;
  }

  /* FAQ — donate CTA inside an answer */
  .bcc-faq__cta {
    margin: 10px 0 0 !important;
  }
  .bcc-faq__cta a {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: var(--bcc-text);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid color-mix(in srgb, var(--bcc-text) 35%, transparent);
    padding-bottom: 1px;
    transition: border-color 120ms ease, color 120ms ease;
  }
  .bcc-faq__cta a:hover,
  .bcc-faq__cta a:focus-visible {
    color: var(--bcc-text);
    border-bottom-color: var(--bcc-text);
    outline: none;
  }

  /* Donate strip (bottom safety net) */
  .bcc-donate-strip {
    padding: 48px 24px;
    background: linear-gradient(135deg, color-mix(in srgb, var(--bcc-pink-soft) 100%, white) 0%, #fff 100%);
    border-top: 1px solid color-mix(in srgb, var(--bcc-pink) 15%, white);
  }
  .bcc-donate-strip__inner {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
  }
  .bcc-donate-strip__heading {
    font-size: clamp(20px, 2.6vw, 26px);
    color: var(--bcc-text);
    margin: 0;
  }
  .bcc-donate-strip__sub {
    font-size: 15px;
    color: var(--bcc-muted);
    margin: 0;
    line-height: 1.5;
    max-width: 48ch;
  }
  .bcc-donate-strip__button {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 14px;
    padding: 12px 22px;
    border-radius: 999px;
    background: var(--bcc-cta-bg);
    color: var(--bcc-cta-color);
    border: 1px solid var(--bcc-cta-border);
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: background 120ms ease, transform 120ms ease;
  }
  .bcc-donate-strip__button:hover,
  .bcc-donate-strip__button:focus-visible {
    background: var(--bcc-cta-bg-hover);
    transform: translateY(-1px);
    outline: none;
  }
  .bcc-donate-strip__arrow {
    font-size: 14px;
    line-height: 1;
  }

  /* FAQ */
  .bcc-faq {
    padding: 64px 24px;
    background: #fafafa;
  }
  .bcc-faq__inner {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .bcc-faq__heading {
    font-size: clamp(24px, 3vw, 30px);
    margin-bottom: 8px;
  }
  .bcc-faq__item {
    background: white;
    border-radius: 12px;
    border: 1px solid #eee;
    padding: 16px 18px;
  }
  .bcc-faq__item summary {
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }
  .bcc-faq__item summary::-webkit-details-marker { display: none; }
  .bcc-faq__item summary::after {
    content: '+';
    font-size: 22px;
    font-weight: 400;
    color: var(--bcc-pink-dark);
    transition: transform 160ms ease;
  }
  .bcc-faq__item[open] summary::after { transform: rotate(45deg); }
  .bcc-faq__answer {
    padding-top: 12px;
    font-size: 15px;
    line-height: 1.55;
    color: var(--bcc-muted);
  }
  .bcc-faq__answer p { margin: 0 0 0.6em; }
  .bcc-faq__answer a {
    color: var(--bcc-text);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
  }
  .bcc-faq__answer a:hover,
  .bcc-faq__answer a:focus-visible {
    color: var(--bcc-accent);
  }

  /* Countdown */
  .bcc-countdown {
    padding: 32px 24px;
    background: white;
    border-top: 1px solid color-mix(in srgb, var(--bcc-pink) 15%, white);
  }
  .bcc-countdown__inner {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    text-align: center;
  }
  .bcc-countdown__label {
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 12px;
    font-weight: 600;
    color: var(--bcc-text);
    margin: 0;
  }
  .bcc-countdown__timer {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 10px;
    font-variant-numeric: tabular-nums;
  }
  .bcc-countdown__clock {
    display: flex;
    align-items: flex-end;
    gap: 10px;
  }
  .bcc-countdown__unit--inventory.bcc-counter--critical .bcc-countdown__num,
  .bcc-countdown__unit--inventory.bcc-counter--soldout .bcc-countdown__num {
    color: #ad1457;
  }
  .bcc-countdown__unit {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    min-width: 52px;
    padding: 10px 8px;
    border-radius: 12px;
    background: var(--bcc-pink);
    color: var(--bcc-text);
    border: 1px solid var(--bcc-cta-border);
  }
  .bcc-countdown__num {
    font-size: clamp(22px, 3vw, 28px);
    font-weight: 700;
    line-height: 1;
  }
  .bcc-countdown__word {
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 10px;
    font-weight: 600;
    margin-top: 4px;
    opacity: 0.8;
  }
  .bcc-countdown__sep {
    font-size: clamp(22px, 3vw, 28px);
    font-weight: 700;
    color: var(--bcc-text);
    line-height: 1;
    padding-bottom: 14px;
  }
  .bcc-countdown__expired {
    font-size: 16px;
    font-weight: 600;
    color: var(--bcc-text);
  }

  /* Waitlist (non-NZ) */
  .bcc-waitlist {
    padding: 64px 24px;
    background: white;
  }
  .bcc-waitlist__inner {
    max-width: 560px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
    text-align: center;
  }
  .bcc-waitlist__eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 12px;
    font-weight: 600;
    color: var(--bcc-pink-dark);
    margin: 0;
  }
  .bcc-waitlist__heading {
    font-size: clamp(24px, 3vw, 32px);
    color: var(--bcc-text);
    margin: 0;
  }
  .bcc-waitlist__sub {
    font-size: 16px;
    line-height: 1.5;
    color: var(--bcc-muted);
    margin: 0 0 12px;
  }
  .bcc-waitlist__form {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
  }
  @media (min-width: 560px) {
    .bcc-waitlist__form {
      flex-direction: row;
    }
  }
  .bcc-waitlist__form input[type="email"] {
    flex: 1 1 auto;
    padding: 14px 16px;
    border: 1px solid #ddd;
    border-radius: 999px;
    font-size: 15px;
    font-family: inherit;
    background: white;
    color: var(--bcc-text);
  }
  .bcc-waitlist__form input[type="email"]:focus {
    outline: none;
    border-color: var(--bcc-pink);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--bcc-pink) 18%, transparent);
  }
  .bcc-waitlist__button {
    padding: 14px 22px;
    border-radius: 999px;
    border: 1px solid var(--bcc-cta-border);
    background: var(--bcc-cta-bg);
    color: var(--bcc-cta-color);
    font-weight: 600;
    font-size: 15px;
    font-family: inherit;
    cursor: pointer;
    transition: background 120ms ease, transform 120ms ease;
  }
  .bcc-waitlist__button:hover {
    background: var(--bcc-cta-bg-hover);
    transform: translateY(-1px);
  }
  .bcc-waitlist__success,
  .bcc-waitlist__error {
    font-size: 14px;
    margin: 6px 0 0;
    flex-basis: 100%;
  }
  .bcc-waitlist__success { color: #1a7f5a; }
  .bcc-waitlist__error { color: #b4232c; }

  /* Sticky CTA — mobile: full-width bar; desktop: bottom-left pill */
  .bcc-sticky {
    display: flex;
    position: fixed;
    z-index: 40;
    padding: 14px 18px;
    border-radius: 999px;
    background: var(--bcc-cta-bg);
    color: var(--bcc-cta-color);
    border: 1px solid var(--bcc-cta-border);
    text-decoration: none;
    font-weight: 600;
    align-items: center;
    gap: 10px;
    box-shadow: 0 6px 24px rgba(20, 0, 10, 0.14);
    font-size: 15px;
    line-height: 1.25;
    transition: transform 120ms ease, box-shadow 120ms ease;
  }
  .bcc-sticky:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 28px rgba(20, 0, 10, 0.32);
  }
  .bcc-sticky:focus-visible {
    outline: 3px solid color-mix(in srgb, var(--bcc-pink) 70%, white);
    outline-offset: 3px;
  }
  @media (max-width: 749px) {
    .bcc-sticky {
      left: 12px;
      right: 12px;
      bottom: 12px;
      justify-content: space-between;
    }
    .bcc-sticky__label {
      flex: 1 1 auto;
    }
    .bcc-sticky__note {
      font-size: 12px;
      font-weight: 500;
      margin-left: 4px;
    }
    .bcc-legal { padding-bottom: 100px; }
  }
  @media (min-width: 750px) {
    .bcc-sticky {
      left: max(24px, env(safe-area-inset-left, 0px));
      right: auto;
      bottom: max(24px, env(safe-area-inset-bottom, 0px));
      width: auto;
      max-width: min(640px, calc(100vw - 48px));
      padding: 16px 22px;
      justify-content: flex-start;
      gap: 14px;
    }
    .bcc-sticky__label {
      flex: 0 1 auto;
      font-size: 16px;
      white-space: nowrap;
    }
    .bcc-sticky__note {
      flex: 0 1 auto;
      font-size: 13px;
      font-weight: 500;
      opacity: 0.95;
      margin-left: auto;
      white-space: nowrap;
    }
    .bcc-sticky__arrow {
      flex-shrink: 0;
      margin-left: 4px;
    }
  }
  .bcc-sticky__arrow {
    font-size: 18px;
    line-height: 1;
  }

  /* Legal footer */
  .bcc-legal {
    padding: 24px;
    background: white;
    border-top: 1px solid #eee;
    text-align: center;
  }
  .bcc-legal p {
    max-width: 720px;
    margin: 0 auto;
    font-size: 12px;
    line-height: 1.55;
    color: var(--bcc-muted);
  }

  /* Gallery (+ optional event reel) */
  .bcc-gallery {
    padding: 56px 24px 64px;
    background: linear-gradient(180deg, var(--bcc-pink-soft) 0%, #fff 50%);
  }
  @media (min-width: 750px) {
    .bcc-gallery { padding: 72px 32px 80px; }
  }
  .bcc-gallery__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .bcc-gallery__heading {
    font-size: clamp(24px, 3vw, 32px);
    color: var(--bcc-text);
    text-align: center;
  }
  .bcc-gallery__sub {
    font-size: 15px;
    color: var(--bcc-muted);
    margin: 0 auto;
    max-width: 52ch;
    text-align: center;
    line-height: 1.5;
  }
  .bcc-gallery__media-row {
    display: flex;
    flex-direction: column;
    gap: 28px;
    align-items: stretch;
    width: 100%;
  }
  @media (min-width: 750px) {
    .bcc-gallery--with-reel .bcc-gallery__media-row {
      display: flex;
      flex-direction: row;
      flex-wrap: nowrap;
      align-items: flex-start;
      justify-content: space-between;
      gap: clamp(16px, 2.5vw, 28px);
      width: 100%;
    }
    .bcc-gallery--with-reel .bcc-gallery__photos-stack {
      flex: 1 1 58%;
      min-width: 0;
      max-width: 62%;
      order: 1;
      display: flex;
      flex-direction: column;
      gap: 16px;
    }
    .bcc-gallery--with-reel .bcc-gallery__photos {
      overflow: hidden;
    }
    .bcc-gallery--with-reel .bcc-gallery__reel {
      flex: 0 0 auto;
      width: min(300px, 32%);
      max-width: 300px;
      min-width: 0;
      order: 2;
    }
  }
  .bcc-gallery__photos-stack {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .bcc-gallery__photos {
    width: 100%;
  }
  .bcc-gallery__see-all-wrap {
    display: flex;
    justify-content: center;
    width: 100%;
    margin: 0;
    padding: 0;
  }
  .bcc-gallery__credit--stack {
    margin: 0;
    padding: 0;
    text-align: center;
    width: 100%;
  }
  .bcc-gallery__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  @media (max-width: 749px) {
    .bcc-gallery__media-row {
      gap: 10px;
    }
    .bcc-gallery__photos-stack {
      gap: 6px;
    }
    .bcc-gallery__grid {
      gap: 6px;
    }
    .bcc-gallery__see-all {
      margin-top: 0;
    }
    .bcc-gallery__credit--stack {
      font-size: 11px;
      line-height: 1.35;
    }
    .bcc-gallery--with-reel .bcc-gallery__photos-stack {
      gap: 4px;
    }
    .bcc-gallery--with-reel .bcc-gallery__credit--stack {
      margin-bottom: 4px;
    }
    .bcc-gallery--with-reel .bcc-gallery__media-row {
      gap: 40px;
    }
  }
  @media (min-width: 750px) {
    .bcc-gallery:not(.bcc-gallery--with-reel) .bcc-gallery__grid {
      grid-template-columns: repeat(3, 1fr);
      gap: 12px;
    }
    .bcc-gallery--with-reel .bcc-gallery__grid {
      grid-template-columns: repeat(3, minmax(0, 1fr));
      grid-template-rows: repeat(3, auto);
      gap: clamp(6px, 0.75vw, 10px);
      width: 100%;
      max-width: 100%;
    }
    .bcc-gallery--with-reel .bcc-gallery__tile {
      width: 100%;
      min-width: 0;
      height: auto;
      aspect-ratio: 1 / 1;
    }
  }
  /* If merchant bumps preview count to 8+ (gallery-only layout), switch to 4 cols */
  @media (min-width: 750px) {
    .bcc-gallery:not(.bcc-gallery--with-reel)[data-preview-count="8"] .bcc-gallery__grid,
    .bcc-gallery:not(.bcc-gallery--with-reel)[data-preview-count="12"] .bcc-gallery__grid,
    .bcc-gallery:not(.bcc-gallery--with-reel)[data-preview-count="16"] .bcc-gallery__grid {
      grid-template-columns: repeat(4, 1fr);
    }
  }
  .bcc-gallery__reel {
    width: 100%;
    max-width: min(360px, 100%);
    margin-inline: auto;
  }
  .bcc-gallery__reel-frame {
    position: relative;
    width: min(100%, calc(min(78vh, 640px) * 9 / 16));
    aspect-ratio: 9 / 16;
    max-height: min(78vh, 640px);
    height: auto;
    margin-inline: auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.14);
    background: #0a0a0a;
  }
  .bcc-gallery__reel-video {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    background: #0a0a0a;
  }
  .bcc-gallery__reel-open {
    margin: 14px 0 0;
    font-size: 14px;
    line-height: 1.45;
    color: var(--bcc-muted);
    text-align: center;
  }
  @media (min-width: 750px) {
    .bcc-gallery--with-reel .bcc-gallery__reel-open {
      text-align: left;
    }
  }
  .bcc-gallery__reel-open a {
    color: var(--bcc-pink-dark);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
  }
  .bcc-gallery__reel-open a:hover {
    text-decoration-thickness: 2px;
  }
  .bcc-gallery__reel-open-note {
    font-weight: 400;
  }
  .bcc-gallery--reel-only .bcc-gallery__media-row {
    align-items: center;
  }
  .bcc-gallery--reel-only .bcc-gallery__reel {
    max-width: min(360px, 100%);
    margin: 0 auto;
    width: 100%;
  }
  .bcc-gallery__footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    width: 100%;
    margin-top: 4px;
  }
  .bcc-gallery__tile {
    appearance: none;
    -webkit-appearance: none;
    padding: 0;
    margin: 0;
    border: 0;
    background: var(--bcc-pink-soft);
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    cursor: zoom-in;
    position: relative;
    transition: transform 160ms ease, box-shadow 160ms ease;
  }
  .bcc-gallery__tile:hover,
  .bcc-gallery__tile:focus-visible {
    transform: translateY(-1px);
    box-shadow: 0 8px 22px rgba(20, 0, 10, 0.12);
    outline: none;
  }
  .bcc-gallery__tile:focus-visible {
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--bcc-pink) 40%, transparent);
  }
  .bcc-gallery__tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .bcc-gallery__tile-empty {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: var(--bcc-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
  }
  /* Preview mode — hide overflow tiles until lightbox opens */
  .bcc-gallery:not([data-show-all]) .bcc-gallery__tile[data-gallery-hidden],
  .bcc-gallery:not([data-show-all]) .bcc-gallery__tile[data-bcc-mobile-preview-hidden] {
    display: none;
  }
  .bcc-gallery__see-all {
    align-self: center;
    margin-top: 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: 999px;
    background: var(--bcc-cta-bg);
    color: var(--bcc-cta-color);
    border: 1px solid var(--bcc-cta-border);
    font: inherit;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: background 120ms ease, transform 120ms ease;
  }
  .bcc-gallery__see-all:hover {
    background: var(--bcc-cta-bg-hover);
    transform: translateY(-1px);
  }
  .bcc-gallery__see-all:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--bcc-pink) 40%, transparent);
  }
  .bcc-gallery__see-all-arrow {
    font-size: 17px;
    line-height: 1;
  }
  @media (min-width: 750px) {
    .bcc-gallery:not(.bcc-gallery--with-reel) .bcc-gallery__see-all {
      margin-top: 10px;
    }
  }
  .bcc-gallery__album-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 4px;
  }
  .bcc-gallery__album-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    border-radius: 999px;
    border: 1px solid color-mix(in srgb, var(--bcc-pink) 40%, #ddd);
    background: white;
    color: var(--bcc-pink-dark);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: background 120ms ease, border-color 120ms ease, color 120ms ease, transform 120ms ease;
  }
  .bcc-gallery__album-pill:hover,
  .bcc-gallery__album-pill:focus-visible {
    background: color-mix(in srgb, var(--bcc-pink) 8%, white);
    border-color: var(--bcc-pink);
    color: var(--bcc-pink-dark);
    transform: translateY(-1px);
    outline: none;
  }
  .bcc-gallery__album-pill-arrow {
    font-size: 13px;
    line-height: 1;
  }
  .bcc-gallery__credit {
    margin: 8px 0 0;
    text-align: center;
    font-size: 11px;
    color: var(--bcc-muted);
    letter-spacing: 0.04em;
  }
  .bcc-gallery__credit a {
    color: inherit;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: color 120ms ease, border-color 120ms ease;
  }
  .bcc-gallery__credit a:hover,
  .bcc-gallery__credit a:focus-visible {
    color: var(--bcc-pink-dark);
    border-bottom-color: var(--bcc-pink-dark);
    outline: none;
  }
  .bcc-gallery__credit-sep {
    display: inline-block;
    margin: 0 6px;
    opacity: 0.6;
  }

  /* Lightbox */
  .bcc-gallery__lightbox {
    padding: 0;
    border: 0;
    background: transparent;
    max-width: 100vw;
    max-height: 100vh;
    width: 100vw;
    height: 100vh;
    color: white;
  }
  .bcc-gallery__lightbox::backdrop {
    background: rgba(0, 0, 0, 0.97);
  }
  .bcc-gallery__lightbox[open] {
    display: flex;
  }
  .bcc-gallery__lightbox-inner {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px 16px 72px;
    box-sizing: border-box;
  }
  @media (min-width: 750px) {
    .bcc-gallery__lightbox-inner { padding: 64px 80px; }
  }
  .bcc-gallery__lb-figure {
    margin: 0;
    max-width: 100%;
    max-height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
  }
  .bcc-gallery__lb-img {
    max-width: 100%;
    max-height: calc(100vh - 140px);
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 6px;
    background: #111;
    display: block;
  }
  .bcc-gallery__lb-caption {
    font-size: 14px;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.85);
    max-width: 640px;
    text-align: center;
    margin: 0;
    min-height: 1.2em;
  }
  .bcc-gallery__lb-caption:empty { visibility: hidden; }
  .bcc-gallery__lb-btn {
    position: absolute;
    background: rgba(255, 255, 255, 0.08);
    color: white;
    border: 0;
    border-radius: 999px;
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 120ms ease, transform 120ms ease;
    backdrop-filter: blur(4px);
  }
  .bcc-gallery__lb-btn:hover { background: rgba(255, 255, 255, 0.18); }
  .bcc-gallery__lb-btn:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--bcc-pink) 70%, transparent);
  }
  .bcc-gallery__lb-btn--close {
    top: 12px;
    right: 12px;
  }
  .bcc-gallery__lb-btn--prev { left: 12px; top: 50%; transform: translateY(-50%); }
  .bcc-gallery__lb-btn--next { right: 12px; top: 50%; transform: translateY(-50%); }
  @media (min-width: 750px) {
    .bcc-gallery__lb-btn { width: 52px; height: 52px; }
    .bcc-gallery__lb-btn--close { top: 20px; right: 20px; }
    .bcc-gallery__lb-btn--prev { left: 20px; }
    .bcc-gallery__lb-btn--next { right: 20px; }
  }
  .bcc-gallery__lb-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.04em;
  }
  /* Prevent page scroll while lightbox open */
  body:has(.bcc-gallery__lightbox[open]) {
    overflow: hidden;
  }

  /* Footer utilities clearance when sticky pre-order bar is present */
  @media screen and (max-width: 749px) {
    body:has(.bcc-sticky) .shopify-section.footer-utilities {
      padding-block-end: calc(76px + env(safe-area-inset-bottom, 0px)) !important;
    }
  }

  @media screen and (min-width: 750px) {
    body:has(.bcc-sticky) .shopify-section.footer-utilities {
      padding-block-end: calc(84px + env(safe-area-inset-bottom, 0px)) !important;
    }
  }
  @media (prefers-reduced-motion: reduce) {
    .bcc-campaign *,
    .bcc-campaign *::before,
    .bcc-campaign *::after {
      transition-duration: 0.001ms !important;
      animation-duration: 0.001ms !important;
      animation-iteration-count: 1 !important;
    }
    .bcc-hero__cta:hover,
    .bcc-gallery__tile:hover,
    .bcc-gallery__see-all:hover,
    .bcc-waitlist__button:hover,
    .bcc-faq__item[open] summary::after {
      transform: none !important;
    }
  }

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

/* START_BLOCK:bcc_donation (INDEX:138) */
.bcc-donation {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 16px 18px;
    border-radius: 12px;
    background: color-mix(in srgb, var(--bcc-pink, #FEBED2) 8%, white);
    border: 1px solid color-mix(in srgb, var(--bcc-pink, #FEBED2) 25%, white);
    margin: 16px 0;
  }
  .bcc-donation__inner {
    display: flex;
    align-items: flex-start;
    gap: 12px;
  }
  .bcc-donation__logo-row {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .bcc-donation__logo {
    display: block;
    height: 32px;
    width: auto;
    max-width: 160px;
    object-fit: contain;
  }
  .bcc-donation__badge {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 999px;
    background: white;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  }
  .bcc-donation__ribbon-svg {
    width: 28px;
    height: 28px;
  }
  .bcc-donation__text {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    gap: 2px;
  }
  .bcc-donation__headline {
    font-size: 15px;
    line-height: 1.35;
    margin: 0;
    color: #1a1a1a;
  }
  .bcc-donation__headline strong {
    font-weight: 700;
  }
  .bcc-donation__subline {
    font-size: 13px;
    line-height: 1.4;
    margin: 0;
    color: #4a4a4a;
  }
  .bcc-donation__link {
    margin-top: 4px;
    font-size: 13px;
    font-weight: 600;
    color: var(--bcc-pink, #AD1457);
    text-decoration: underline;
    text-underline-offset: 2px;
    align-self: flex-start;
  }
  .bcc-donation__link:hover {
    text-decoration: none;
  }
  .bcc-donation__credit {
    font-size: 11px;
    line-height: 1.4;
    margin: 0;
    color: #666;
  }
/* END_BLOCK:bcc_donation */

/* START_BLOCK:bcc_tier_picker (INDEX:140) */
.bcc-tier-picker-block { width: 100%; }
  .bcc-tier-picker-block__placeholder {
    padding: 16px;
    border: 1px dashed rgb(var(--color-foreground-rgb, 0 0 0) / 0.2);
    border-radius: 12px;
    font-size: 0.9rem;
    opacity: 0.75;
  }
/* END_BLOCK:bcc_tier_picker */

/* START_BLOCK:buy-buttons (INDEX:142) */
.buy-buttons-block {
    width: 100%;
  }

  .product-find-in-store {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    margin-top: var(--gap-md);
    color: var(--color-foreground);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
  }

  .product-find-in-store .svg-wrapper {
    display: inline-flex;
    flex-shrink: 0;
  }

  .product-find-in-store__label {
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 2px;
  }

  .product-find-in-store:hover .product-find-in-store__label {
    text-decoration-color: var(--color-foreground);
  }

  .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, .quantity-rules, .quantity-label) {
    flex: 1 1 185px;
    min-width: fit-content;
  }

  .product-form-buttons--stacked > *:not(.quantity-selector, .quantity-rules, .quantity-label) {
    flex-basis: 51%; /* Force the buttons to be on separate rows */
  }

  .product-form-buttons button {
    width: 100%;
    padding-inline: var(--padding-4xl);
    padding-block: var(--padding-lg);
  }

  .quantity-selector {
    flex-grow: 0;
    flex-shrink: 0;
    height: var(--height-buy-buttons);
  }

  .product-form-buttons:has(.quantity-rules) .quantity-selector {
    margin-inline-end: var(--gap-sm);
    margin-block-end: var(--gap-sm);
  }

  .quantity-selector:has(+ .quantity-rules) {
    margin-block-end: 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-buttons .shopify-payment-button__button {
    width: 100%;
    min-height: var(--minimum-touch-target);
  }

  .product-form-text__error {
    display: flex;
    align-items: flex-start;
    gap: var(--gap-xs);
    margin-block-end: var(--gap-xs);
  }

  .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-2xl);
  }

  .quantity-rules__item {
    position: relative;
    display: inline-block;
  }

  .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;
  }

  .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));
  }
/* END_BLOCK:buy-buttons */

/* START_BLOCK:contact-form-submit-button (INDEX:145) */
.submit-button {
    min-width: max-content;
  }
/* END_BLOCK:contact-form-submit-button */

/* START_BLOCK:custom-liquid (INDEX:147) */
/* Full width inside column flex sections (align-items: center shrinks children). */
  .custom-liquid-block {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    align-self: stretch;
  }
/* END_BLOCK:custom-liquid */

/* START_BLOCK:email-signup (INDEX:148) */
.email-signup-block-wrapper {
    display: block;
    width: 100%;
  }

  email-signup-block.footer-signup-host {
    display: block;
    width: 100%;
    min-width: 0;
  }
/* END_BLOCK:email-signup */

/* START_BLOCK:filters (INDEX:150) */
.collection-wrapper {
    @media screen and (min-width: 750px) {
      --facets-vertical-col-width: 6;
    }

    @media screen and (min-width: 990px) {
      --facets-vertical-col-width: 5;
    }
  }

  .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-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:has(> :nth-child(2)) {
    justify-content: space-between;
  }

  dialog-component.facets-block-wrapper:not(:has(.facets--drawer[open])) {
    @media screen and (min-width: 750px) {
      display: none;
    }
  }

  .variant-option__swatch-wrapper {
    position: relative;
    overflow: visible;
    border-radius: var(--options-border-radius);
  }

  .variant-option--swatches-disabled .variant-option__swatch-wrapper {
    overflow: hidden;
  }

  .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;
    }
  }

  .collection-wrapper:has(.collection-wrapper--full-width) .facets--vertical:not(.facets--drawer) {
    @media screen and (min-width: 750px) {
      padding-inline-start: max(var(--padding-sm), var(--padding-inline-start));
    }
  }

  .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;
    justify-content: space-between;
  }

  .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);
    }
  }

  .collection-wrapper:has(.product-grid-mobile--large) .facets-mobile-wrapper.facets-controls-wrapper {
    @media screen and (max-width: 749px) {
      display: none;
    }
  }

  .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;
    align-items: center;
    justify-content: space-between;
    min-height: var(--minimum-touch-target);

    &: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,
  .sorting-filter__options {
    @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,
  .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__label,
  .products-count-wrapper {
    text-transform: var(--facet-label-transform);
  }

  .clear-filter {
    background-color: transparent;
    box-shadow: none;
    padding: 0;
  }

  /* Facets - Label */
  .facets__label {
    color: var(--color-foreground);
    cursor: pointer;

    @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);
    }
  }

  .collection-wrapper:has(> .facets--horizontal) .facets__panel[open] {
    @media screen and (min-width: 750px) {
      z-index: var(--facets-open-z-index);
    }
  }
/* END_BLOCK:filters */

/* START_BLOCK:footer-policy-list (INDEX:153) */
.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: 6ch 100%;
  }

  .terms-policies-popover.\:popover-open,
  .terms-policies-popover:popover-open {
    opacity: 1;
    translate: 0 0;
    scale: 1;
  }

  @media screen and (max-width: 750px) {
    .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: 750px) {
      .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:icon (INDEX:155) */
.icon-block {
    display: flex;
    fill: currentcolor;
    flex-shrink: 0;
  }

  .icon-block__media {
    height: auto;
  }
/* END_BLOCK:icon */

/* START_BLOCK:image (INDEX:156) */
.placeholder-image {
    position: relative;
    aspect-ratio: var(--ratio);
    overflow: hidden;
  }

  placeholder-image img {
    width: 100%;
    height: 100%;
    aspect-ratio: var(--ratio);
  }

  .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:158) */
.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: 750px) {
      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:159) */
.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);
    }
  }

  .menu--caret .icon-plus,
  .menu--plus .icon-caret {
    display: none;
  }
/* END_BLOCK:menu */

/* START_BLOCK:page (INDEX:161) */
.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);
  }

  .placeholder-image {
    position: relative;
    aspect-ratio: var(--ratio);
    overflow: hidden;
  }

  .page-placeholder {
    width: 100%;
    height: 100%;
  }
/* END_BLOCK:page */

/* START_BLOCK:payment-icons (INDEX:162) */
.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;
    list-style: none;
  }

  .payment-icons__item {
    display: flex;
    align-items: center;
  }
/* END_BLOCK:payment-icons */

/* START_BLOCK:popup-link (INDEX:163) */
.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:price (INDEX:164) */
.tax-note:empty {
    display: none;
  }

  form.payment-terms {
    padding-top: 0.5em;
    font-size: min(0.85em, var(--font-paragraph--size));
    font-weight: var(--font-paragraph--weight);
    color: rgb(var(--color-foreground-rgb) / var(--opacity-subdued-text));
  }

  .installments:not(:has(shopify-payment-terms)) {
    display: none;
  }

  .product-unit-price {
    margin-top: 0.35em;
    font-size: max(0.875rem, var(--font-size--sm, 0.875rem));
    line-height: 1.45;
    font-weight: 400;
    color: rgb(var(--color-foreground-rgb) / var(--opacity-subdued-text));
  }
/* END_BLOCK:price */

/* START_BLOCK:product-custom-property (INDEX:166) */
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:168) */
.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:169) */
.product-recommendations-wrapper {
    width: 100%;
  }

  .product-recommendations-wrapper:has(product-recommendations[data-shopify-editor-preview]) {
    width: 100vw;
  }

  .product-recommendations {
    display: block;
  }

  .product-recommendations__skeleton-item {
    aspect-ratio: 3 / 4;
    background-color: var(--color-foreground);
    opacity: var(--skeleton-opacity);
    border-radius: 4px;
  }
/* END_BLOCK:product-recommendations */

/* START_BLOCK:review (INDEX:172) */
.rating-wrapper {
    width: 100%;
    gap: var(--gap-xs);
    flex-wrap: wrap;
  }

  .rating-color--primary {
    --star-fill-color: var(--color-primary);
    --star-fill-color-rgb: var(--color-primary-rgb);
  }

  .rating-color--foreground {
    --star-fill-color: var(--color-foreground);
    --star-fill-color-rgb: var(--color-foreground-rgb);
  }

  .rating-wrapper,
  .rating {
    display: flex;
    align-items: center;
  }

  .rating-wrapper.justify-right {
    flex-direction: row-reverse;
  }

  .rating {
    gap: var(--gap-3xs);
  }

  .rating-wrapper .rating-text,
  .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:social-links (INDEX:173) */
.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;
    fill: currentColor;
    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:spacer (INDEX:174) */
/* 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: 750px) {
    /* 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:swatches (INDEX:175) */
product-swatches {
    width: 100%;
    display: flex;
    position: relative;
    overflow: hidden;
    gap: 0;
    flex-shrink: 0;
  }

  swatches-variant-picker-component {
    display: flex;
    width: 100%;
    flex-direction: row;
    justify-content: var(--product-swatches-alignment-mobile);

    @media (min-width: 750px) {
      justify-content: var(--product-swatches-alignment);
    }
  }

  swatches-variant-picker-component .variant-option--swatches {
    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));
    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));
  }

  .variant-option--swatches {
    overflow-list::part(list) {
      gap: var(--gap-sm);
    }

    overflow-list[defer]::part(list) {
      flex-wrap: nowrap;
    }
  }

  .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_BLOCK:swatches */

/* START_BLOCK:video (INDEX:178) */
.placeholder-video {
    aspect-ratio: 5 / 3;
  }
/* END_BLOCK:video */

/* CSS from snippet stylesheet tags */
/* START_SNIPPET:account-actions (INDEX:179) */
.account-actions {
    background-color: var(--color-background);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: height var(--animation-values);

    &:has([data-active]) .account-actions__main-menu {
      visibility: hidden;
    }
  }

  .account-actions__header {
    padding: var(--padding-xl);
    display: flex;
    flex-direction: column;
    gap: var(--gap-2xs);
  }

  .account-actions__title {
    /* Ideally we set the font-size here, but specificity issues make this necessary */
    --font-h5--size: var(--font-size--lg);

    margin: 0;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }

  .account-actions__email {
    display: flex;
    align-items: center;
    gap: var(--gap-2xs);
    color: rgb(var(--color-foreground-rgb) / var(--opacity-60));
    max-width: var(--account-actions-max-width);
    word-break: break-all;
  }

  .account-actions__sign-ins {
    padding: var(--padding-xl);
    padding-block-start: 0;
    padding-block-end: var(--padding-md);
    display: flex;
    flex-direction: column;
    gap: var(--gap-sm);
  }

  .account-actions__sign-in-text {
    display: inline;
  }

  .account-actions__fallback-text {
    display: none;
  }

  .account-actions__sign-ins:not(:has(shop-login-button)) {
    gap: 0;

    .account-actions__sign-in-text {
      display: none;
    }

    .account-actions__fallback-text {
      display: block;
    }
  }

  /* Makes the shop login button radius match the theme settings */
  .account-actions__shop-login {
    --buttons-radius: var(--style-border-radius-buttons-primary);
  }

  .account-actions__nav {
    padding: var(--padding-xl);
    padding-block-start: 0;
  }

  .account-actions__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--gap-sm);
    width: 100%;
    list-style: none;
    margin: 0;
    padding: 0;

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

  .account-actions__link {
    width: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--gap-2xs);
  }

  .account-actions__icon {
    display: flex;
    width: var(--icon-size-sm);
    height: var(--icon-size-sm);
    margin-block: -4px;
  }

  /* This triggers iOS < 16.4. The outline bug is not recognized as a lack of @supports */

  @supports not (background-color: rgb(from red 150 g b / alpha)) {
    /**
    There is a bug in safari < 16.4 that causes the outline to not follow the elements border radius. This is a workaround.
    Using element selector to increase specificity.
  **/

    .account-actions :is(a.button, a.button-secondary):focus-visible {
      outline: none;
      overflow: visible;
      position: relative;

      &::after {
        content: '';
        position: absolute;
        inset: calc(-1 * var(--focus-outline-offset));
        border: var(--focus-outline-width) solid currentColor;
        border-radius: var(--style-border-radius-buttons-secondary);
        display: inherit;
      }
    }

    .account-actions a.button:focus-visible::after {
      border-color: var(--button-background-color);
      border-radius: var(--style-border-radius-buttons-primary);
    }
  }
/* END_SNIPPET:account-actions */

/* START_SNIPPET:account-button (INDEX:180) */
.account-button {
    color: var(--color-foreground);
    appearance: none;
    border: none;
    background: none;
    height: var(--button-size);
    width: var(--button-size);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
    transition: color var(--animation-speed) var(--animation-easing);
    anchor-name: --account-button-trigger;
  }

  .account-button__avatar {
    --account-button-size: 1.625rem;

    display: flex;
    align-items: center;
    justify-content: center;
    width: var(--account-button-size);
    height: var(--account-button-size);
    border-radius: var(--style-border-radius-50);
    background-color: var(--color-primary-button-background);
    font-size: var(--font-size--sm);
    font-weight: 500;
    color: var(--color-primary-button-text);
    text-transform: uppercase;
    line-height: 1;
  }

  .account-button__icon {
    color: currentColor;
    display: inline-flex;
    justify-content: center;
    align-items: center;
  }

  /* The shop avatar doesn't bubble the click event up to our button, so we need to prevent that or the button doesn't work */
  .account-button shop-user-avatar {
    pointer-events: none;
  }
/* END_SNIPPET:account-button */

/* START_SNIPPET:account-drawer (INDEX:181) */
.account-drawer {
    @media screen and (min-width: 750px) {
      display: none;
    }
  }

  .account-drawer__dialog {
    --animation-speed: 0.24s;
    --dialog-drawer-opening-animation: account-drawer-slide-in;
    --dialog-drawer-closing-animation: account-drawer-slide-out;

    position: relative;
    height: fit-content;
    margin: 0;
    inset-block-end: 0;
    inset-block-start: auto;
    border-radius: 0;
    padding: 0;
  }

  .account-drawer__close-button {
    z-index: 1;
    position: absolute;
    inset-block-start: var(--padding-xs);
    inset-inline-end: var(--padding-xs);
    color: var(--color-foreground);
    background-color: transparent;
  }

  .account-drawer__close-button .svg-wrapper {
    display: flex;
    width: var(--button-size);
    height: var(--button-size);
    align-items: center;
    justify-content: center;
  }

  @keyframes account-drawer-slide-in {
    from {
      transform: translateY(100%);
    }

    to {
      transform: translateY(0);
    }
  }

  @keyframes account-drawer-slide-out {
    from {
      transform: translateY(0);
    }

    to {
      transform: translateY(100%);
    }
  }
/* END_SNIPPET:account-drawer */

/* START_SNIPPET:account-popover (INDEX:182) */
.account-popover {
    --account-popover-min-width: 22rem;
    --account-actions-max-width: 22rem;
  }

  .account-popover__summary {
    padding: 0;

    &:hover {
      color: var(--color-foreground);
    }
  }

  .account-popover__panel {
    --account-popover-opacity: 0;
    --account-popover-y: 20px;
    position-anchor: --account-button-trigger;
    border-radius: var(--style-border-radius-popover);
    margin: 0;
    left: unset;
    width: max-content;
    min-width: var(--account-popover-min-width);
    box-shadow: var(--shadow-popover);
    border: var(--style-border-popover);
    background-color: var(--color-background);
    overflow-y: hidden;
    opacity: var(--account-popover-opacity);
    translate: 0 var(--account-popover-y);
    transition-property: display, opacity, translate;
    transition-duration: 0.3s;
    transition-timing-function: var(--ease-out-quad);
    transition-behavior: allow-discrete;
    top: calc(anchor(bottom) + var(--header-padding));
    right: anchor(right);

    &:popover-open {
      --account-popover-opacity: 1;
      --account-popover-y: 0px;
    }

    @supports not (position-anchor: --account-button-trigger) {
      top: calc(var(--anchor-top) * 1px + var(--minimum-touch-target) + var(--header-padding));
      right: calc(var(--anchor-right) * 1px);
    }

    @supports not selector(:popover-open) {
      &.\:popover-open {
        --account-popover-opacity: 1;
        --account-popover-y: 0px;
      }
    }
  }

  @starting-style {
    .account-popover__panel {
      --account-popover-opacity: 0.7;
      --account-popover-y: 20px;
    }

    .account-popover__panel:popover-open {
      --account-popover-opacity: 0.7;
      --account-popover-y: 20px;
    }
  }
/* END_SNIPPET:account-popover */

/* START_SNIPPET:add-to-cart-button (INDEX:183) */
.add-to-cart-text {
    display: flex;
    gap: var(--gap-2xs);
    align-items: center;
    justify-content: center;
    animation-duration: var(--animation-speed);
    animation-timing-function: var(--animation-easing);
    animation-fill-mode: forwards;
    transition: opacity var(--animation-speed) var(--animation-easing);
  }

  .atc-added .add-to-cart-text {
    animation-name: atc-slide-out;
  }

  .add-to-cart-text--added {
    position: absolute;
    inset: 0;
    animation-duration: var(--animation-speed);
    animation-timing-function: var(--animation-easing);
    animation-fill-mode: forwards;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: width var(--animation-speed) var(--animation-easing),
      opacity var(--animation-speed) var(--animation-easing);
  }

  .atc-added .add-to-cart-text--added {
    animation-name: atc-slide-in;
  }

  @keyframes atc-slide-in {
    from {
      opacity: 0;
      transform: translateY(0.5em);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes atc-slide-out {
    from {
      transform: translateY(0);
      opacity: 1;
    }

    to {
      transform: translateY(-1em);
      opacity: 0;
    }
  }
/* END_SNIPPET:add-to-cart-button */

/* START_SNIPPET:background-video (INDEX:186) */
@media (prefers-reduced-motion: reduce) {
    video-background-component video {
      display: none;
    }
  }
/* END_SNIPPET:background-video */

/* START_SNIPPET:bcc-good-questions-pdp (INDEX:190) */
.bcc-good-questions-pdp {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .bcc-good-questions-pdp .bcc-faq {
    width: 100%;
    padding: 64px clamp(1rem, 4vw, 2.5rem);
    background: #fafafa;
  }
  .bcc-good-questions-pdp .bcc-faq__inner {
    max-width: min(1100px, 100%);
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .bcc-good-questions-pdp .bcc-faq__heading {
    font-size: clamp(24px, 3vw, 30px);
    margin-bottom: 8px;
    color: var(--bcc-text);
  }
  .bcc-good-questions-pdp .bcc-faq__item {
    background: white;
    border-radius: 12px;
    border: 1px solid #eee;
    padding: 16px 18px;
  }
  .bcc-good-questions-pdp .bcc-faq__item summary {
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: var(--bcc-text);
  }
  .bcc-good-questions-pdp .bcc-faq__item summary::-webkit-details-marker {
    display: none;
  }
  .bcc-good-questions-pdp .bcc-faq__item summary::after {
    content: '+';
    font-size: 22px;
    font-weight: 400;
    color: var(--bcc-pink-dark);
    transition: transform 160ms ease;
  }
  .bcc-good-questions-pdp .bcc-faq__item[open] summary::after {
    transform: rotate(45deg);
  }
  .bcc-good-questions-pdp .bcc-faq__answer {
    padding-top: 12px;
    font-size: 15px;
    line-height: 1.55;
    color: var(--bcc-muted);
  }
  .bcc-good-questions-pdp .bcc-faq__answer p {
    margin: 0 0 0.6em;
  }
  .bcc-good-questions-pdp .bcc-faq__answer a {
    color: var(--bcc-text);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
  }
  .bcc-good-questions-pdp .bcc-faq__answer a:hover,
  .bcc-good-questions-pdp .bcc-faq__answer a:focus-visible {
    color: var(--bcc-accent);
  }
  .bcc-good-questions-pdp .bcc-faq__cta {
    margin: 10px 0 0 !important;
  }
  .bcc-good-questions-pdp .bcc-faq__cta a {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: var(--bcc-text);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid color-mix(in srgb, var(--bcc-text) 35%, transparent);
    padding-bottom: 1px;
    transition: border-color 120ms ease, color 120ms ease;
  }
  .bcc-good-questions-pdp .bcc-faq__cta a:hover,
  .bcc-good-questions-pdp .bcc-faq__cta a:focus-visible {
    color: var(--bcc-text);
    border-bottom-color: var(--bcc-text);
    outline: none;
  }
  @media (prefers-reduced-motion: reduce) {
    .bcc-good-questions-pdp .bcc-faq__item summary::after {
      transition-duration: 0.001ms;
    }
    .bcc-good-questions-pdp .bcc-faq__item[open] summary::after {
      transform: rotate(45deg);
    }
  }
/* END_SNIPPET:bcc-good-questions-pdp */

/* START_SNIPPET:bento-grid (INDEX:193) */
.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 (max-width: 900px) {
    .bento-box {
      grid-template-columns: repeat(2, 1fr);
    }

    .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 (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 cases === */

    /* Exactly 1 item */
    .bento-box:has(.bento-box__item:first-child:nth-last-child(1)) {
      grid-template-areas: 'A A A A A A A A A A A A';
    }

    /* Exactly 2 items */
    .bento-box:has(.bento-box__item:first-child:nth-last-child(2)) {
      grid-template-areas: 'A A A A A A B B B B B B';
    }

    /* Exactly 4 items */
    .bento-box:has(.bento-box__item:first-child:nth-last-child(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:has(.bento-box__item:first-child:nth-last-child(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:has(.bento-box__item:first-child:nth-last-child(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:has(.bento-box__item:first-child:nth-last-child(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:has(.bento-box__item:first-child:nth-last-child(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:has(.bento-box__item:first-child:nth-last-child(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:196) */
.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:blog-shop-cta (INDEX:199) */
.blog-shop-cta {
    max-width: var(--normal-content-width);
    margin: 2rem auto;
    display: grid;
    grid-template-columns: 96px minmax(0, 1fr) auto;
    align-items: center;
    gap: 1rem 1.25rem;
    padding: 1.1rem 1.25rem;
    border: 1px solid rgb(var(--color-foreground-rgb) / 0.12);
    border-radius: 16px;
    background: rgb(210 50 52 / 0.04);
  }

  .blog-shop-cta__media {
    width: 96px;
    height: 96px;
    border-radius: 12px;
    overflow: hidden;
    background: rgb(var(--color-foreground-rgb) / 0.03);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .blog-shop-cta__img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 0.4rem;
  }

  .blog-shop-cta__body {
    min-width: 0;
  }

  .blog-shop-cta__eyebrow {
    margin: 0;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #d23234;
  }

  .blog-shop-cta__title {
    display: inline-block;
    margin: 0.2rem 0 0;
    font-family: var(--font-primary--family);
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.15;
    color: var(--color-foreground);
    text-decoration: none;
  }

  .blog-shop-cta__title:hover {
    text-decoration: underline;
    text-underline-offset: 2px;
  }

  .blog-shop-cta__sub {
    margin: 0.3rem 0 0;
    font-size: 0.85rem;
    line-height: 1.35;
    color: rgb(var(--color-foreground-rgb) / 0.7);
  }

  .blog-shop-cta__price-row {
    margin-top: 0.5rem;
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
  }

  .blog-shop-cta__price {
    font-size: 1rem;
    font-weight: 700;
  }

  .blog-shop-cta__compare {
    font-size: 0.85rem;
    color: rgb(var(--color-foreground-rgb) / 0.5);
    text-decoration: line-through;
  }

  .blog-shop-cta__action {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.4rem;
    text-align: center;
  }

  .blog-shop-cta__add.button {
    border-radius: var(--style-border-radius-buttons-primary);
    background: #d23234;
    color: #fff;
    border: var(--style-border-width) solid #d23234;
    font-weight: var(--font-weight-bold);
    text-transform: none;
    letter-spacing: normal;
    padding-inline: 1.5rem;
    white-space: nowrap;
  }

  .blog-shop-cta__add.button[aria-busy='true'] {
    opacity: 0.7;
    pointer-events: none;
  }

  .blog-shop-cta__link {
    font-size: 0.78rem;
    color: rgb(var(--color-foreground-rgb) / 0.6);
    text-decoration: underline;
    text-underline-offset: 2px;
  }

  @media screen and (max-width: 600px) {
    .blog-shop-cta {
      grid-template-columns: 72px minmax(0, 1fr);
      grid-template-areas:
        'media body'
        'action action';
    }

    .blog-shop-cta__media {
      grid-area: media;
      width: 72px;
      height: 72px;
    }

    .blog-shop-cta__body {
      grid-area: body;
    }

    .blog-shop-cta__action {
      grid-area: action;
      flex-direction: row;
      align-items: center;
      justify-content: space-between;
      gap: 0.75rem;
    }

    .blog-shop-cta__add.button {
      flex: 1;
    }
  }

  .blog-shop-cta__find {
    max-width: var(--normal-content-width);
    margin: -0.5rem auto 2rem;
    text-align: center;
  }

  .blog-shop-cta__find a {
    font-size: 0.85rem;
    font-weight: 600;
    color: rgb(var(--color-foreground-rgb) / 0.7);
    text-decoration: underline;
    text-underline-offset: 2px;
  }

  @media print {
    .blog-shop-cta,
    .blog-shop-cta__find {
      display: none !important;
    }
  }
/* END_SNIPPET:blog-shop-cta */

/* START_SNIPPET:blog-sticky-buy-bar (INDEX:200) */
/* Blog/article variant: pin to the bottom of the viewport instead of
     under the header stack (avoids fighting the sticky header). */
  .pdp-sticky-buy-bar--blog {
    position: fixed;
    inset: auto 0 0 0;
    top: auto;
  }

  .pdp-sticky-buy-bar.pdp-sticky-buy-bar--blog.is-visible {
    position: fixed;
    inset: auto 0 0 0;
    top: auto;
    box-shadow: 0 -6px 24px rgb(0 0 0 / 0.16);
  }

  .pdp-sticky-buy-bar--blog .pdp-sticky-buy-bar__product {
    text-decoration: none;
    color: inherit;
  }

  .pdp-sticky-buy-bar--blog .pdp-sticky-buy-bar__eyebrow {
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    opacity: 0.7;
    line-height: 1.2;
  }

  /* Keep the "Add to cart" label visible on mobile for blogs (the PDP bar
     hides it because it relies on context; here the bar needs to be explicit). */
  @media screen and (max-width: 749px) {
    .pdp-sticky-buy-bar--blog .pdp-sticky-buy-bar__cta-text {
      display: inline;
    }

    .pdp-sticky-buy-bar--blog .pdp-sticky-buy-bar__cta {
      flex-direction: column;
      gap: 0.05rem;
      min-height: 2.6rem;
      line-height: 1.1;
    }
  }
/* END_SNIPPET:blog-sticky-buy-bar */

/* START_SNIPPET:breadcrumbs (INDEX:202) */
.breadcrumbs-wrap {
    padding-inline: var(--page-margin, 1.25rem);
  }

  .breadcrumbs {
    width: 100%;
    padding: 0.65rem 0 0.25rem;
  }

  .breadcrumbs__list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem 0.5rem;
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 0.82rem;
    line-height: 1.4;
    color: rgb(var(--color-foreground-rgb) / 0.72);
  }

  .breadcrumbs__item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
  }

  .breadcrumbs__item:not(:last-child)::after {
    content: '/';
    color: rgb(var(--color-foreground-rgb) / 0.35);
    pointer-events: none;
  }

  .breadcrumbs__link {
    color: inherit;
    text-decoration: none;
  }

  @media (hover: hover) {
    .breadcrumbs__link:hover,
    .breadcrumbs__link:focus-visible {
      color: var(--color-foreground, #1a1a1a);
      text-decoration: underline;
      text-underline-offset: 0.15em;
    }
  }

  .breadcrumbs__current {
    color: var(--color-foreground, #1a1a1a);
    font-weight: 600;
  }
/* END_SNIPPET:breadcrumbs */

/* START_SNIPPET:button (INDEX:203) */
.link {
    text-decoration: none;
    text-decoration-color: currentcolor;

    &:hover {
      color: var(--color-primary-hover);
      text-decoration-color: transparent;
    }
  }
/* END_SNIPPET:button */

/* START_SNIPPET:card-gallery (INDEX:205) */
.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:has(.product-badges--top-right .product-badges__badge)
      .product-card-gallery__title-placeholder {
      padding-right: calc(var(--padding-3xl) + 50px);
    }

    .product-grid[data-product-card-size='large']
      .card-gallery:has(.product-badges--top-right .product-badges__badge)
      .product-card-gallery__title-placeholder {
      padding-right: calc(var(--padding-2xl) + 50px);
    }

    .product-grid[data-product-card-size='medium']
      .card-gallery:has(.product-badges--top-right .product-badges__badge)
      .product-card-gallery__title-placeholder {
      padding-right: calc(var(--padding-xl) + 50px);
    }

    .product-grid[data-product-card-size='small']
      .card-gallery:has(.product-badges--top-right .product-badges__badge)
      .product-card-gallery__title-placeholder {
      padding-right: calc(var(--padding-sm) + 50px);
    }

    .product-grid[data-product-card-size='extra-large']
      .card-gallery:has(.product-badges--top-left .product-badges__badge)
      .product-card-gallery__title-placeholder {
      padding-top: calc(var(--padding-3xl) + 40px);
    }

    .product-grid[data-product-card-size='large']
      .card-gallery:has(.product-badges--top-left .product-badges__badge)
      .product-card-gallery__title-placeholder {
      padding-top: calc(var(--padding-2xl) + 40px);
    }

    .product-grid[data-product-card-size='medium']
      .card-gallery:has(.product-badges--top-left .product-badges__badge)
      .product-card-gallery__title-placeholder {
      padding-top: calc(var(--padding-xl) + 40px);
    }

    .product-grid[data-product-card-size='small']
      .card-gallery:has(.product-badges--top-left .product-badges__badge)
      .product-card-gallery__title-placeholder {
      padding-top: calc(var(--padding-sm) + 40px);
    }

    .product-grid[data-product-card-size='extra-large']
      .card-gallery:has(.product-badges--bottom-left .product-badges__badge)
      .product-card-gallery__title-placeholder {
      padding-bottom: calc(var(--padding-3xl) + 40px);
    }

    .product-grid[data-product-card-size='large']
      .card-gallery:has(.product-badges--bottom-left .product-badges__badge)
      .product-card-gallery__title-placeholder {
      padding-bottom: calc(var(--padding-2xl) + 40px);
    }

    .product-grid[data-product-card-size='medium']
      .card-gallery:has(.product-badges--bottom-left .product-badges__badge)
      .product-card-gallery__title-placeholder {
      padding-bottom: calc(var(--padding-xl) + 40px);
    }

    .product-grid[data-product-card-size='small']
      .card-gallery:has(.product-badges--bottom-left .product-badges__badge)
      .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:has(.product-badges--top-right .product-badges__badge)
      .product-card-gallery__title-placeholder {
      padding-right: calc(var(--padding-sm) + 50px);
    }

    .product-grid[data-product-card-size]
      .card-gallery:has(.product-badges--top-left .product-badges__badge)
      .product-card-gallery__title-placeholder {
      padding-top: calc(var(--padding-sm) + 40px);
    }

    .product-grid[data-product-card-size]
      .card-gallery:has(.product-badges--bottom-left .product-badges__badge)
      .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;
  }
/* END_SNIPPET:card-gallery */

/* START_SNIPPET:cart-discount (INDEX:207) */
.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;
  }

  .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);
  }
/* END_SNIPPET:cart-discount */

/* START_SNIPPET:cart-drawer-addons (INDEX:208) */
.cart-drawer__addons {
    margin: 0;
    padding: 12px 16px 10px;
    border-top: 3px solid var(--cart-pack-red, #d23234);
    background: #ffffff;
  }

  .cart-drawer__addons-title {
    margin: 0 0 4px;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-align: center;
    color: rgb(var(--color-foreground-rgb) / 0.85);
  }

  .cart-drawer__addons-sub {
    margin: 0 0 10px;
    font-size: 0.75rem;
    font-weight: 600;
    text-align: center;
    color: var(--cart-pack-red, #d23234);
  }

  .cart-drawer__addons-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 1fr;
    gap: 8px;
    width: 100%;
    max-width: 100%;
    margin-inline: auto;
  }

  .cart-drawer__addons-grid--three .cart-drawer__addon--pack:last-child {
    grid-column: 1 / -1;
    max-width: calc(50% - 4px);
    justify-self: center;
  }

  .cart-drawer__addons-grid--one {
    grid-template-columns: minmax(0, 1fr);
    justify-items: stretch;
  }

  .cart-drawer__addons-grid--one .cart-drawer__addon--pack {
    width: 100%;
    min-height: 2.75rem;
    border: 1.5px solid rgb(26 26 26 / 0.14);
    justify-content: center;
  }

  .cart-drawer__addon--pack {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    width: 100%;
    min-width: 0;
    padding: 0.55rem 0.65rem;
    box-sizing: border-box;
    background: #ffffff;
    border-color: rgb(26 26 26 / 0.14);
    text-align: center;
    cursor: pointer;
    transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
  }

  .cart-drawer__addon-plus {
    flex-shrink: 0;
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1;
    color: #1a1a1a;
  }

  .cart-drawer__addon-label {
    min-width: 0;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .cart-drawer__addon--pack:focus-visible {
    outline: 2px solid #d23234;
    outline-offset: 2px;
  }

  .cart-drawer__addon--pack[aria-busy='true'] {
    opacity: 0.65;
    pointer-events: none;
  }
/* END_SNIPPET:cart-drawer-addons */

/* START_SNIPPET:cart-drawer-shipping-nudge (INDEX:209) */
.cart-drawer-shipping-nudge {
    margin: 0.75rem 0 0;
    padding: 0.65rem 0.75rem;
    border-radius: 10px;
    background: rgb(var(--color-foreground-rgb) / 0.05);
    border: 1px solid rgb(var(--color-foreground-rgb) / 0.1);
  }

  .cart-drawer-shipping-nudge__line {
    margin: 0;
    font-size: 0.88rem;
    font-weight: 600;
    line-height: 1.35;
  }

  .cart-drawer-shipping-nudge__threshold {
    font-weight: 500;
    color: rgb(var(--color-foreground-rgb) / 0.65);
  }

  .cart-drawer-shipping-nudge__hint {
    margin: 0.35rem 0 0;
    font-size: 0.78rem;
    line-height: 1.35;
    color: rgb(var(--color-foreground-rgb) / 0.65);
  }
/* END_SNIPPET:cart-drawer-shipping-nudge */

/* START_SNIPPET:cart-drawer (INDEX:210) */
/* --- Pro DTC Animations --- */
  .success-pulse {
    animation: pulse-glow 2s infinite;
  }
  @keyframes pulse-glow {
    0% { opacity: 1; }
    50% { opacity: 0.7; }
    100% { opacity: 1; }
  }

  @media (prefers-reduced-motion: reduce) {
    .success-pulse {
      animation: none;
    }
  }

  /* --- Drawer Alignment & Layout --- */
  .cart-drawer__summary details,
  .cart-drawer__summary .cart-note,
  .cart-drawer__summary summary {
    padding-left: 0 !important;
    margin-left: 0 !important;
    width: 100%;
  }

  .cart-drawer__summary summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
  }

  .cart-drawer .cart-items-component {
    width: 100%;
    height: 100%;
    min-height: 0;
    max-height: 100dvh;
    display: flex;
    flex-direction: column;
  }

  .cart-drawer__header {
    background-color: var(--color-background);
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    width: 100%;
    padding: max(12px, env(safe-area-inset-top, 0px)) 16px 14px;
    flex-shrink: 0;
    z-index: 2;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  }

  .cart-drawer__heading {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin: 0;
    min-width: 0;
    text-align: center;
    font-weight: 700;
    letter-spacing: normal;
  }

  .cart-drawer__view-cart {
    justify-self: start;
    align-self: center;
    display: inline-block;
    flex-shrink: 0;
    font-size: 0.72rem;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
    text-decoration-thickness: 1px;
    color: rgb(var(--color-foreground-rgb) / 0.55);
    white-space: nowrap;
    margin: 0;
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .cart-drawer__view-cart:hover,
  .cart-drawer__view-cart:focus-visible {
    color: #d23234;
  }

  @media screen and (min-width: 750px) {
    .cart-drawer__view-cart {
      font-size: 0.72rem;
      font-weight: 500;
      color: rgb(var(--color-foreground-rgb) / 0.42);
    }
  }

  .cart-drawer__close-button {
    justify-self: end;
  }

  .cart-drawer__header-center {
    justify-self: center;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.1;
    min-width: 0;
  }

  .cart-drawer__summary {
    background-color: var(--color-background);
    flex-shrink: 0;
    z-index: 3;
    padding: 0 16px max(12px, env(safe-area-inset-bottom, 0px));
    border-top: 1px solid rgba(0,0,0,0.05);
    box-shadow: none;
    transition: box-shadow 0.15s ease;
  }

  .cart-drawer__summary.cart-drawer__summary--scrolled {
    box-shadow: 0 -8px 20px rgb(0 0 0 / 0.08);
  }

  .cart-drawer__content {
    flex: 1 1 auto;
    min-height: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    overflow: hidden;
  }

  .cart-drawer__inner {
    height: 100%;
    min-height: 0;
    max-height: 100dvh;
    overflow: hidden;
  }

  /* Only line items scroll; shipping, add-ons, and checkout stay in view */
  .cart-drawer__body {
    flex: 1 1 auto;
    min-height: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }

  .cart-drawer__body > :not(.cart-drawer__items) {
    flex-shrink: 0;
  }

  .cart-drawer__items {
    flex: 1 1 auto;
    min-height: min(50dvh, 380px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    padding: 10px 0 24px;
    scroll-padding-top: 10px;
    scroll-padding-bottom: 24px;
  }

  .cart-drawer__items .bcc-cart-reminder {
    margin: 0 16px 8px;
  }

  .cart-drawer__items .cart-items__table-row:first-child {
    padding-top: 2px;
  }

  /* Condense line items inside the drawer */
  .cart-drawer__items .cart-items {
    --cart-item-price-width: 5.25rem;
  }

  .cart-drawer__items .cart-items__table-row {
    column-gap: 8px;
    padding-bottom: 4px;
    margin-bottom: 4px;
    grid-template-columns: 68px minmax(0, 1fr) minmax(var(--cart-item-price-width), auto);
  }

  .cart-drawer__items .cart-items__table-row:last-child {
    margin-bottom: 2px;
    padding-bottom: 2px;
  }

  .cart-drawer__items .cart-items__details > * + *,
  .cart-drawer__items .cart-items__bundle li {
    margin-block-start: 3px;
  }

  .cart-drawer__items .cart-items__details * {
    font-size: 0.9rem;
    line-height: 1.25;
  }

  .cart-drawer__items .cart-items__media-image {
    border-radius: 0;
    background: #ffffff;
  }

  .cart-drawer__items .cart-items__quantity {
    margin-block-start: 4px;
    gap: 6px;
  }

  .cart-drawer__items .cart-items__quantity .quantity-selector {
    flex: 0 1 7rem;
    height: 30px;
    min-height: 30px;
  }

  .cart-drawer__items .cart-items__remove {
    padding-inline: 6px;
    width: 30px;
    height: 30px;
    min-height: 30px;
  }

  .cart-free-shipping--drawer {
    margin: 0;
    padding: 8px 16px 10px;
    border-block-start: 1px solid rgba(0, 0, 0, 0.06);
    border-block-end: 1px solid rgba(0, 0, 0, 0.06);
  }

  .cart-free-shipping--drawer .cart-free-shipping__subline {
    font-size: 0.78rem;
  }

  .cart-free-shipping--drawer .cart-free-shipping__message {
    margin-block-end: 6px;
  }

  .cart-free-shipping--drawer .cart-free-shipping__track {
    height: 6px;
  }

  .cart-free-shipping--drawer .cart-free-shipping__subline {
    margin: 4px 0 0;
    text-align: center;
    font-size: 0.85rem;
    color: rgb(var(--color-foreground-rgb) / 0.65);
  }

  .cart-drawer-summary__meta {
    margin: 8px 0 12px;
    font-size: 0.85rem;
    color: rgb(var(--color-foreground-rgb) / 0.65);
  }

  .cart-drawer-summary__trust {
    margin: 10px 0 0;
    text-align: center;
    font-size: 0.8rem;
    color: rgb(var(--color-foreground-rgb) / 0.6);
  }

  .cart-drawer-summary__trust-mobile {
    display: none;
    margin: 6px 0 0;
    text-align: center;
    font-size: 0.72rem;
    font-weight: 500;
    color: rgb(var(--color-foreground-rgb) / 0.55);
  }

  .cart-drawer-summary__delivery {
    margin: 8px 0 0;
    text-align: center;
    font-size: 0.78rem;
    font-weight: 500;
    color: rgb(var(--color-foreground-rgb) / 0.65);
  }

  .cart-drawer-summary__reviews {
    margin: 8px 0 0;
    text-align: center;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: rgb(var(--color-foreground-rgb) / 0.7);
  }

  .cart-drawer-summary__extras {
    margin: 10px 0 0;
    border-top: 1px solid rgb(0 0 0 / 0.06);
    padding-top: 8px;
  }

  .cart-drawer-summary__extras > summary {
    cursor: pointer;
    list-style: none;
    font-size: 0.85rem;
    font-weight: 600;
    color: rgb(var(--color-foreground-rgb) / 0.7);
    padding: 2px 0;
  }

  .cart-drawer-summary__extras > summary::-webkit-details-marker {
    display: none;
  }

  .cart-drawer-summary__extras > summary::after {
    content: '+';
    float: right;
    font-weight: 700;
  }

  .cart-drawer-summary__extras[open] > summary::after {
    content: '–';
  }

  .cart-drawer-summary__extras-body {
    padding-top: 8px;
  }

  .cart-drawer-summary__lines {
    display: grid;
    gap: 8px;
  }

  .cart-drawer-summary__line {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    font-size: 0.95rem;
  }

  .cart-drawer-summary__line--total {
    font-weight: 700;
  }

  .cart-drawer-summary__shipping-free {
    color: #d23234;
    font-weight: 700;
  }

  .cart-drawer__empty-sub {
    margin: 8px 0 0;
    text-align: center;
    color: rgb(var(--color-foreground-rgb) / 0.7);
  }

  .cart-drawer__empty-actions {
    display: grid;
    gap: 10px;
    margin: 16px 16px 0;
  }

  .cart-drawer__content .bcc-cart-reminder {
    margin: 0 16px 8px;
    padding: 6px 10px;
    gap: 8px;
    border-radius: 0;
  }

  .cart-drawer__content .bcc-cart-reminder__ribbon {
    width: 22px;
    height: 22px;
  }

  .cart-drawer__content .bcc-cart-reminder__ribbon svg {
    width: 12px;
    height: 12px;
    transform: translateY(0.5px);
  }

  .cart-drawer__content .bcc-cart-reminder__headline,
  .cart-drawer__content .bcc-cart-reminder__headline--compact {
    font-size: 12px;
    line-height: 1.25;
  }

  .cart-drawer__content .bcc-cart-reminder__sub {
    display: none;
  }

  .cart-drawer__summary .cart-summary {
    padding-top: 10px;
    padding-bottom: 4px;
  }

  /* Tighten spacing between tax note and CTAs in drawer */
  .cart-drawer__summary .cart__summary-totals {
    gap: 14px;
  }

  .cart-drawer__summary .cart__total-container {
    row-gap: 4px;
  }

  .cart-drawer__summary .cart__summary-item.tax-note {
    margin-block: 0;
  }

  /* Drawer checkout button — layout only; brand colours in cart-pack-brand */
  .cart-drawer__summary .cart-drawer-summary__checkout.button {
    transform: none;
    width: 100%;
    min-height: 48px;
    height: clamp(48px, var(--height-buy-buttons), 55px);
  }

  @media screen and (max-width: 749px) {
    .cart-drawer-summary {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .cart-drawer-summary__meta,
    .cart-drawer-summary__delivery {
      margin: 0;
      font-size: 0.78rem;
    }

    .cart-drawer-summary__subscribe {
      margin: 0;
    }

    .cart-drawer-summary__trust {
      display: none;
    }

    .cart-drawer-summary__trust-mobile {
      display: block;
    }

    .cart-drawer .cart-reviews-rating {
      margin: 6px 0 0;
      font-size: 0.72rem;
      gap: 2px 4px;
    }

    .cart-drawer .cart-reviews-rating__stars svg {
      width: 11px;
      height: 11px;
    }

    .cart-drawer-summary__reviews {
      display: none;
    }

  }

  .cart-free-shipping--drawer .cart-free-shipping__amount-left {
    color: #d23234;
    font-weight: 700;
  }

  .cart-free-shipping--drawer .cart-free-shipping__line--success {
    color: #d23234;
  }

  .cart-free-shipping--drawer .cart-free-shipping__fill--complete {
    background: #d23234;
    box-shadow: none;
  }

  /* Hide accelerated payment buttons in drawer (they still exist at checkout) */
  .cart-drawer__summary .additional-checkout-buttons,
  .cart-drawer__summary shopify-accelerated-checkout-cart {
    display: none !important;
  }

  .cart-drawer__summary .cart-inline-trust--drawer {
    margin-block-start: 2px;
    padding-block: 2px 0;
    padding-block-end: 0; /* overrides base cart-inline-trust padding */
  }

  .cart-drawer__summary .additional-checkout-buttons {
    margin-block-end: 0;
  }

  .cart-drawer__summary shopify-accelerated-checkout-cart {
    margin-block-end: 0;
  }

  /* --- Discount label polish (drawer-only) --- */
  .cart-drawer__items .cart-items__details ul.list-unstyled li {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 2px 8px;
    border-radius: 999px;
    background: rgb(210 50 52 / 0.08);
    color: #b1262a;
    font-size: 0.75rem;
    font-weight: 600;
    line-height: 1.2;
    margin-top: 4px;
    letter-spacing: 0.01em;
  }

  .cart-drawer__items .cart-items__details ul.list-unstyled li::before {
    content: '⚡';
    font-size: 0.75rem;
  }

  /* --- Quantity stepper — compact in drawer --- */
  .cart-drawer__items .quantity-selector :is(.quantity-minus, .quantity-plus) {
    width: 30px;
    height: 30px;
    min-width: 30px;
    min-height: 30px;
  }

  .cart-drawer__items .quantity-selector input[type='number'] {
    height: 30px;
    min-height: 30px;
    min-width: 2ch;
    padding: 0;
    line-height: 1;
    color: var(--color-foreground);
    -webkit-text-fill-color: var(--color-foreground);
    font-weight: 600;
    font-size: 0.88rem;
    opacity: 1;
  }

  .cart-drawer__items .quantity-selector {
    border: 1px solid rgb(var(--color-foreground-rgb) / 0.18);
    border-radius: 0;
    background: var(--color-background);
    align-items: stretch;
  }

  .cart-drawer__items .quantity-selector :is(.quantity-minus, .quantity-plus) {
    color: var(--color-foreground);
  }

  .cart-drawer__items .quantity-selector .svg-wrapper,
  .cart-drawer__items .quantity-selector svg {
    width: 0.75rem;
    height: 0.75rem;
  }

  /* --- Just-added line item flash --- */
  .cart-items__table-row--just-added {
    animation: cart-line-flash 1.1s ease-out;
  }

  @keyframes cart-line-flash {
    0% { background: rgb(210 50 52 / 0.15); }
    100% { background: transparent; }
  }

  /* --- Price flash on quantity update (within drawer) --- */
  .cart-drawer__items text-component.is-flashing,
  .cart-drawer__items .cart-items__price.is-flashing {
    animation: cart-price-flash 0.6s ease-out;
  }

  @keyframes cart-price-flash {
    0% { transform: scale(1); color: inherit; }
    40% { transform: scale(1.08); color: #d23234; }
    100% { transform: scale(1); color: inherit; }
  }

  @media (prefers-reduced-motion: reduce) {
    .cart-items__table-row--just-added,
    .cart-drawer__items text-component.is-flashing,
    .cart-drawer__items .cart-items__price.is-flashing {
      animation: none;
    }
  }

  /* --- Subscribe & save upsell row --- */
  .cart-drawer-summary__subscribe {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 10px 0 12px;
    padding: 10px 12px;
    border: 1px solid rgb(0 0 0 / 0.08);
    border-radius: 10px;
    background: rgb(210 50 52 / 0.04);
    text-decoration: none;
    color: inherit;
    transition: background 0.15s ease, border-color 0.15s ease;
  }

  .cart-drawer-summary__subscribe:hover {
    background: rgb(210 50 52 / 0.08);
    border-color: rgb(210 50 52 / 0.3);
  }

  .cart-drawer-summary__subscribe-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #d23234;
    color: #fff;
    font-weight: 700;
  }

  .cart-drawer-summary__subscribe-text {
    display: flex;
    flex-direction: column;
    flex: 1;
    line-height: 1.2;
  }

  .cart-drawer-summary__subscribe-text strong {
    font-size: 0.9rem;
    font-weight: 700;
  }

  .cart-drawer-summary__subscribe-text span {
    font-size: 0.78rem;
    color: rgb(var(--color-foreground-rgb) / 0.65);
    margin-top: 2px;
  }

  .cart-drawer-summary__subscribe-arrow {
    flex-shrink: 0;
    color: rgb(var(--color-foreground-rgb) / 0.5);
    font-size: 1rem;
  }

  .cart-drawer-summary__shipping-threshold {
    color: #d23234;
    font-weight: 700;
  }

  /* --- Empty cart featured product card --- */
  .cart-drawer__empty-featured {
    margin: 16px 16px 0;
    padding: 12px;
    border: 1px solid rgb(0 0 0 / 0.08);
    border-radius: 12px;
    background: rgb(var(--color-foreground-rgb) / 0.02);
  }

  .cart-drawer__empty-featured-eyebrow {
    margin: 0 0 8px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 700;
    color: #d23234;
    text-align: center;
  }

  .cart-drawer__empty-featured-card {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit;
    margin-bottom: 10px;
  }

  .cart-drawer__empty-featured-image {
    width: 64px;
    height: 64px;
    object-fit: cover;
    border-radius: 8px;
    background: rgb(var(--color-foreground-rgb) / 0.03);
  }

  .cart-drawer__empty-featured-info {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
  }

  .cart-drawer__empty-featured-title {
    margin: 0;
    font-weight: 600;
    font-size: 0.95rem;
  }

  .cart-drawer__empty-featured-price {
    margin: 4px 0 0;
    font-size: 0.85rem;
    color: rgb(var(--color-foreground-rgb) / 0.65);
  }

  .cart-drawer__empty-featured-cta.button {
    width: 100%;
  }

  .cart-drawer__empty-link {
    text-align: center;
  }

  /* --- Removed item undo toast --- */
  .cart-drawer-toast {
    position: fixed;
    left: 50%;
    bottom: 24px;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px 10px 16px;
    background: #1a1a1a;
    color: #fff;
    border-radius: 999px;
    box-shadow: 0 10px 28px rgb(0 0 0 / 0.25);
    z-index: 9999;
    font-size: 0.9rem;
    animation: cart-toast-in 0.25s ease-out;
    max-width: calc(100vw - 32px);
  }

  .cart-drawer-toast__text {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 60vw;
  }

  .cart-drawer-toast__undo {
    background: transparent;
    border: 0;
    color: #ff7d7f;
    font-weight: 700;
    cursor: pointer;
    padding: 6px 8px;
    border-radius: 6px;
    font-size: 0.9rem;
  }

  .cart-drawer-toast__undo:hover {
    background: rgb(255 255 255 / 0.08);
  }

  .cart-drawer-toast--leaving {
    animation: cart-toast-out 0.2s ease-in forwards;
  }

  .cart-drawer-toast--success {
    background: #fff;
    color: var(--color-foreground);
    border: 1px solid rgb(210 50 52 / 0.35);
    box-shadow: 0 10px 28px rgb(0 0 0 / 0.12);
  }

  .cart-drawer-toast--success .cart-drawer-toast__text {
    font-weight: 600;
    color: #d23234;
    max-width: 72vw;
    white-space: normal;
  }

  @keyframes cart-toast-in {
    from { opacity: 0; transform: translate(-50%, 12px); }
    to { opacity: 1; transform: translate(-50%, 0); }
  }

  @keyframes cart-toast-out {
    from { opacity: 1; transform: translate(-50%, 0); }
    to { opacity: 0; transform: translate(-50%, 12px); }
  }

  /* --- Cart icon pulse on update --- */
  cart-icon .cart-bubble.cart-bubble--animating {
    animation: cart-bubble-pulse 0.55s ease-out;
  }

  @keyframes cart-bubble-pulse {
    0% { transform: scale(1); }
    35% { transform: scale(1.35); }
    100% { transform: scale(1); }
  }

  /* --- Pending: hide empty state flash while first item is adding --- */
  cart-drawer-component.cart-drawer--pending .cart-drawer--empty .cart-drawer__content {
    visibility: hidden;
  }

  cart-drawer-component.cart-drawer--pending .cart-drawer--empty .cart-drawer__inner::after {
    content: 'Adding to your cart…';
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: rgb(26 26 26 / 0.6);
    pointer-events: none;
  }

  /* --- Pending loader bar while /cart/add is in flight --- */
  cart-drawer-component .cart-drawer__inner {
    position: relative;
  }

  cart-drawer-component.cart-drawer--pending .cart-drawer__inner::before {
    content: '';
    position: absolute;
    inset: 0 0 auto 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #d23234 50%, transparent);
    background-size: 50% 100%;
    background-repeat: no-repeat;
    animation: cart-pending-bar 1s linear infinite;
    z-index: 10;
    pointer-events: none;
  }

  @keyframes cart-pending-bar {
    0% { background-position: -50% 0; }
    100% { background-position: 150% 0; }
  }

  @media (prefers-reduced-motion: reduce) {
    cart-drawer-component.cart-drawer--pending .cart-drawer__inner::before {
      animation: none;
      background-position: 50% 0;
    }
  }
/* END_SNIPPET:cart-drawer */

/* START_SNIPPET:cart-icon-component (INDEX:212) */
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;
    }
  }
/* END_SNIPPET:cart-icon-component */

/* START_SNIPPET:cart-pack-brand (INDEX:216) */
/* --- Canvas & structure --- */
  .cart-drawer__dialog.cart-pack-brand,
  .cart-page.cart-pack-brand {
    --cart-pack-red: #d23234;
    --cart-pack-green: #3d5c45;
    background: #ffffff;
  }

  .cart-drawer.cart-pack-brand .cart-drawer__header {
    border-bottom: 3px solid var(--cart-pack-red);
  }

  .cart-drawer.cart-pack-brand .cart-drawer__summary {
    border-top: 1px solid rgb(26 26 26 / 0.1);
    box-shadow: none;
    background: #ffffff;
    transition: box-shadow 0.15s ease;
  }

  .cart-drawer.cart-pack-brand .cart-drawer__summary.cart-drawer__summary--scrolled {
    box-shadow: 0 -6px 18px rgb(0 0 0 / 0.08);
  }

  .cart-pack-brand .cart-free-shipping--drawer,
  .cart-pack-brand .cart-free-shipping {
    background: #ffffff;
    border-color: rgb(26 26 26 / 0.08);
  }

  /* --- Line items --- */
  .cart-pack-line.cart-items__table-row {
    border-bottom: 1px solid rgb(26 26 26 / 0.08);
    padding-bottom: 12px;
    margin-bottom: 12px;
  }

  .cart-pack-brand .cart-items__media-container.cart-pack-line__media {
    position: relative;
    display: block;
    background: #ffffff;
    border: 1px solid rgb(26 26 26 / 0.1);
    border-top: 3px solid var(--cart-pack-red);
    overflow: visible !important;
  }

  .cart-pack-brand .cart-items__media-image {
    background: #ffffff !important;
    border-radius: 0 !important;
  }

  .cart-pack-line__media.is-flavour-cherry,
  .cart-pack-line__media.is-flavour-pear,
  .cart-pack-line__media.is-flavour-strawberry,
  .cart-pack-line__media.is-flavour-mango,
  .cart-pack-line__media.is-flavour-watermelon {
    overflow: visible;
  }

  .cart-pack-line__media.is-flavour-cherry::after,
  .cart-pack-line__media.is-flavour-pear::after,
  .cart-pack-line__media.is-flavour-strawberry::after,
  .cart-pack-line__media.is-flavour-mango::after,
  .cart-pack-line__media.is-flavour-watermelon::after {
    content: '';
    position: absolute;
    right: -0.15rem;
    bottom: -0.2rem;
    width: 2.4rem;
    height: 2.4rem;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right bottom;
    pointer-events: none;
    z-index: 2;
    opacity: 0.95;
  }

  .cart-pack-line__media.is-flavour-cherry::after {
    background-image: url({{ url_cherry | strip | json }});
  }
  .cart-pack-line__media.is-flavour-pear::after {
    background-image: url({{ url_pear | strip | json }});
  }
  .cart-pack-line__media.is-flavour-strawberry::after {
    background-image: url({{ url_strawberry | strip | json }});
  }
  .cart-pack-line__media.is-flavour-mango::after {
    background-image: url({{ url_mango | strip | json }});
  }
  .cart-pack-line__media.is-flavour-watermelon::after {
    background-image: url({{ url_watermelon | strip | json }});
  }

  .cart-pack-line .cart-items__title {
    font-weight: 800 !important;
    font-size: 0.92rem !important;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    line-height: 1.15 !important;
    text-decoration: none;
  }

  .cart-pack-line .cart-items__title:hover,
  .cart-pack-line .cart-items__title:focus-visible {
    text-decoration: underline;
    text-underline-offset: 2px;
  }

  .cart-pack-meta.pack-card-meta {
    margin: 0.35rem 0 0;
  }

  .cart-pack-meta .pack-card-meta__category {
    margin: 0 0 0.2rem;
    font-size: 0.62rem;
    color: var(--cart-pack-green);
    letter-spacing: 0.12em;
  }

  .cart-pack-meta .pack-card-meta__ingredients {
    margin: 0 0 0.15rem;
    font-size: 0.74rem;
    color: var(--cart-pack-green);
  }

  .cart-pack-meta .pack-card-meta__format {
    margin: 0;
    font-size: 0.72rem;
  }

  .cart-pack-meta .pack-benefits--compact {
    margin-top: 0.35rem;
  }

  .cart-pack-meta .pack-benefits--compact .pack-benefits__label {
    font-size: 0.62rem;
  }

  .cart-pack-meta .pack-card-meta__bcc {
    display: none;
  }

  .cart-pack-line .cart-items__line-best-before {
    margin-top: 0.45rem;
    max-width: none;
  }

  /* Drawer: keep line items scannable — title + ingredients + format only */
  .cart-drawer .cart-pack-meta .pack-card-meta__category,
  .cart-drawer .cart-pack-meta .pack-benefits {
    display: none;
  }

  .cart-drawer .cart-pack-meta.pack-card-meta {
    margin-top: 0.15rem;
    font-size: 0.7rem;
    line-height: 1.25;
    color: rgb(26 26 26 / 0.58);
  }

  .cart-drawer .cart-pack-meta .pack-card-meta__ingredients,
  .cart-drawer .cart-pack-meta .pack-card-meta__format {
    display: inline;
    margin: 0;
    font-size: inherit;
    line-height: inherit;
    color: inherit;
  }

  .cart-drawer .cart-pack-meta .pack-card-meta__ingredients::after {
    content: ' · ';
  }

  .cart-drawer .cart-pack-line.cart-items__table-row {
    transition: background 0.12s ease;
  }

  @media (hover: hover) {
    .cart-drawer .cart-pack-line.cart-items__table-row:hover {
      background: rgb(210 50 52 / 0.03);
    }
  }

  .cart-drawer .cart-pack-line .cart-items__title:focus-visible {
    outline: 2px solid #d23234;
    outline-offset: 2px;
  }

  .cart-drawer .cart-pack-line .cart-items__title {
    font-size: 0.88rem !important;
  }

  .cart-pack-brand .cart-items__per-unit-price {
    margin: 0;
    font-size: 0.7rem;
    font-weight: 600;
    line-height: 1.2;
    color: rgb(26 26 26 / 0.55);
  }

  .cart-pack-brand .cart-items__quantity .quantity-selector {
    border-radius: 0;
  }

  /* --- Upsell chips --- */
  .cart-pack-brand .cart-drawer__addon--pack {
    border-radius: 0;
    border: 1.5px solid rgb(26 26 26 / 0.14);
    min-height: 2.65rem;
    text-transform: uppercase;
    background: #ffffff;
  }

  .cart-pack-brand .cart-drawer__addon-label {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
  }

  @media (hover: hover) {
    .cart-pack-brand .cart-drawer__addon--pack:hover {
      box-shadow: 3px 3px 0 var(--cart-pack-red);
      transform: translateY(-1px);
    }
  }

  /* --- Summary & checkout --- */
  .cart-pack-brand .cart-drawer-summary__checkout.button,
  .cart-pack-brand .cart__checkout-button.button {
    border-radius: 0 !important;
    background: var(--cart-pack-red) !important;
    border: 2px solid var(--cart-pack-red) !important;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 0.82rem;
    font-weight: 800;
    width: 100%;
  }

  @media (hover: hover) {
    .cart-pack-brand .cart-drawer-summary__checkout.button:hover,
    .cart-pack-brand .cart__checkout-button.button:hover {
      background: #ffffff !important;
      color: var(--cart-pack-red) !important;
      box-shadow: 3px 3px 0 var(--cart-pack-red);
      transform: translateY(-1px);
    }
  }

  .cart-pack-brand .cart-drawer-summary__shipping-free {
    color: var(--cart-pack-red);
  }

  .cart-pack-brand .cart-free-shipping__line--success {
    color: var(--cart-pack-red);
    font-weight: 800;
    letter-spacing: 0.02em;
  }

  .cart-pack-brand .cart-free-shipping__fill--complete {
    background: var(--cart-pack-red);
  }

  /* --- Empty cart featured card --- */
  .cart-pack-brand .cart-drawer__empty-featured,
  .cart-pack-brand .cart-items__empty-featured {
    border: 1px solid rgb(26 26 26 / 0.12);
    border-top: 3px solid var(--cart-pack-red);
    border-radius: 0;
    background: #ffffff;
    box-shadow: 4px 4px 0 rgb(210 50 52 / 0.12);
  }

  .cart-pack-brand .cart-drawer__empty-featured-eyebrow,
  .cart-pack-brand .cart-items__empty-eyebrow {
    letter-spacing: 0.14em;
    color: var(--cart-pack-red);
  }

  .cart-pack-brand .cart-drawer__empty-featured-title,
  .cart-pack-brand .cart-items__empty-name {
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--cart-pack-red);
  }

  .cart-pack-brand .cart-drawer__empty-featured-cta.button,
  .cart-pack-brand .cart-items__empty-actions .button,
  .cart-pack-brand .cart-items__empty-cta.button {
    border-radius: 0;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
  }

  .cart-pack-brand .cart-items__empty-cta.button {
    background: var(--cart-pack-red);
    border: 2px solid var(--cart-pack-red);
    color: #fff;
  }

  @media (hover: hover) {
    .cart-pack-brand .cart-items__empty-cta.button:hover {
      background: #fff;
      color: var(--cart-pack-red);
    }
  }

  .cart-pack-brand .cart-items__empty-actions .button:not(.button--secondary) {
    background: var(--cart-pack-red);
    border: 2px solid var(--cart-pack-red);
    color: #fff;
  }

  .cart-pack-brand .cart-items__empty-actions .button--secondary {
    background: #fff;
    border: 2px solid var(--cart-pack-red);
    color: var(--cart-pack-red);
  }

  /* =========================================================
     Full cart page — match drawer pack system
     ========================================================= */

  .cart-page.cart-pack-brand {
    background: #ffffff;
  }

  .cart-page .cart-title {
    border-bottom: 3px solid var(--cart-pack-red);
    padding-bottom: 12px;
    margin-bottom: 4px;
  }

  .cart-page .cart-title h1 {
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }

  .cart-page .cart-title .cart-bubble {
    border-radius: 999px;
  }

  .cart-page:not(.cart-page--empty) .cart-page__more-blocks {
    display: none !important;
  }

  /* Empty full cart page — match drawer (no separate “Cart” title) */
  .cart-page--empty .cart-page__title,
  .cart-page--empty .cart-page__more-blocks {
    display: none !important;
  }

  .cart-page--empty .cart-items__empty-state {
    width: 100%;
    max-width: 420px;
    margin-inline: auto;
  }

  .cart-page--empty .cart-items__empty-heading {
    font-weight: 800;
    letter-spacing: 0.02em;
    text-align: center;
    border-bottom: 3px solid var(--cart-pack-red);
    padding-bottom: 12px;
    margin-block: 0 12px;
    width: 100%;
  }

  .cart-page--empty .cart-items__empty-sub {
    text-align: center;
  }

  .cart-page--empty .cart-page__items {
    width: 100%;
  }

  .cart-page .cart-free-shipping {
    margin-block-end: 12px;
    padding-block: 10px 12px;
    border-block: 1px solid rgb(26 26 26 / 0.08);
  }

  .cart-page .cart-free-shipping__message {
    margin-block-end: 8px;
  }

  .cart-page .bcc-cart-reminder {
    border-radius: 0;
    margin-block: 0 12px;
  }

  .cart-page .cart-pack-line.cart-items__table-row {
    transition: background 0.12s ease;
  }

  @media (hover: hover) {
    .cart-page .cart-pack-line.cart-items__table-row:hover {
      background: rgb(210 50 52 / 0.03);
    }
  }

  .cart-page .cart-items__quantity .quantity-selector {
    border-radius: 0;
    border: 1px solid rgb(var(--color-foreground-rgb) / 0.18);
  }

  .cart-page .cart-items__quantity .quantity-selector :is(.quantity-minus, .quantity-plus) {
    width: 32px;
    height: 32px;
    min-width: 32px;
    min-height: 32px;
  }

  .cart-page .cart-items__quantity .quantity-selector input[type='number'] {
    height: 32px;
    min-height: 32px;
    font-weight: 600;
  }

  .cart-page .cart__shipping-free {
    color: var(--cart-pack-red);
    font-weight: 800;
  }

  .cart-pack-brand .cart__summary-container,
  .cart-pack-brand .cart__summary-inner {
    border-radius: 0 !important;
  }

  .cart-pack-brand .cart__summary-container {
    background: #ffffff;
  }

  @media screen and (min-width: 750px) {
    .cart-pack-brand .cart__summary-container {
      border-left: 3px solid var(--cart-pack-red);
    }

    .cart-pack-brand .cart__summary-inner {
      background: #ffffff;
      gap: 1rem;
    }
  }

  .cart-pack-brand .cart__summary-totals {
    width: 100%;
    border-block-start: 1px solid rgb(26 26 26 / 0.08);
    padding-block-start: 12px;
  }

  .cart-pack-brand .cart__summary-breakdown {
    gap: 8px;
    margin-block-start: 0;
  }

  .cart-pack-brand .cart__summary-line {
    font-size: 0.95rem;
  }

  .cart-pack-brand .cart__total-value {
    font-size: 1.15rem;
    font-weight: 800;
  }

  .cart-pack-brand .cart__delivery-estimate {
    margin: 6px 0 0;
    font-size: 0.78rem;
    font-weight: 500;
    color: rgb(var(--color-foreground-rgb) / 0.65);
    text-align: left;
  }

  .cart-pack-brand .cart__tax-note-simple {
    font-size: 0.85rem;
    color: rgb(var(--color-foreground-rgb) / 0.65);
  }

  .cart-pack-brand .cart__trust-line {
    margin: 10px 0 0;
    text-align: center;
    font-size: 0.8rem;
    color: rgb(var(--color-foreground-rgb) / 0.6);
  }

  .cart-pack-brand .cart__trust-line-mobile {
    display: none;
    margin: 6px 0 0;
    text-align: center;
    font-size: 0.72rem;
    font-weight: 500;
    color: rgb(var(--color-foreground-rgb) / 0.55);
  }

  .cart-pack-brand .cart__ctas {
    width: 100%;
  }

  .cart-pack-brand .cart-reviews-rating {
    margin-top: 8px;
  }

  /* Mobile cart page — mirror drawer line-item density */
  @media screen and (max-width: 749px) {
    .cart-page .cart-items__table-row {
      column-gap: 8px;
      padding-bottom: 6px;
      margin-bottom: 6px;
      grid-template-columns: 68px minmax(0, 1fr) minmax(4.75rem, auto);
    }

    .cart-page .cart-pack-line .cart-items__title {
      font-size: 0.88rem !important;
    }

    .cart-page .cart-pack-meta .pack-card-meta__category,
    .cart-page .cart-pack-meta .pack-benefits {
      display: none;
    }

    .cart-page .cart-pack-meta.pack-card-meta {
      margin-top: 0.15rem;
      font-size: 0.7rem;
      line-height: 1.25;
      color: rgb(26 26 26 / 0.58);
    }

    .cart-page .cart-pack-meta .pack-card-meta__ingredients,
    .cart-page .cart-pack-meta .pack-card-meta__format {
      display: inline;
      margin: 0;
      font-size: inherit;
      line-height: inherit;
      color: inherit;
    }

    .cart-page .cart-pack-meta .pack-card-meta__ingredients::after {
      content: ' · ';
    }

    .cart-page .cart-items__quantity .quantity-selector {
      flex: 0 1 7rem;
      height: 30px;
      min-height: 30px;
    }

    .cart-page .cart-items__quantity .quantity-selector :is(.quantity-minus, .quantity-plus) {
      width: 30px;
      height: 30px;
      min-width: 30px;
      min-height: 30px;
    }

    .cart-page .cart-items__quantity .quantity-selector input[type='number'] {
      height: 30px;
      min-height: 30px;
      font-size: 0.88rem;
    }

    .cart-page .cart-items__remove {
      width: 30px;
      height: 30px;
      min-height: 30px;
      padding-inline: 6px;
    }

    .cart-pack-brand .cart__trust-line {
      display: none;
    }

    .cart-pack-brand .cart__trust-line-mobile {
      display: block;
    }

    .cart-pack-brand .cart-reviews-rating {
      margin-top: 6px;
      font-size: 0.72rem;
    }

    .cart-pack-brand .cart-reviews-rating__stars svg {
      width: 11px;
      height: 11px;
    }
  }

  /* Desktop cart page — full pack meta hierarchy */
  @media screen and (min-width: 750px) {
    .cart-page .cart-pack-meta .pack-card-meta__category {
      color: var(--cart-pack-green);
    }

    .cart-page .cart-items__table-row {
      padding-bottom: 14px;
      margin-bottom: 14px;
    }
  }

  /* Benefits pills block — square pack chips */
  .cart-page [class*='ai-benefits-pills-'] {
    padding-block: 16px 8px !important;
    gap: 6px !important;
    justify-content: center !important;
  }

  .cart-page [class*='ai-benefits-pill-'] {
    border-radius: 0 !important;
    border-color: var(--cart-pack-red) !important;
    font-size: 0.72rem !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 6px 10px !important;
  }

  .cart-page [class*='ai-benefits-pill-icon-'] svg {
    stroke: var(--cart-pack-red) !important;
  }
/* END_SNIPPET:cart-pack-brand */

/* START_SNIPPET:cart-products (INDEX:217) */
.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-items__table {
    width: 100%;
  }

  .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-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-child {
    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-2xs);
  }

  .cart-items__details * {
    font-size: var(--cart-font-size--sm);
  }

  .cart-items__subtitle {
    margin: 0;
    font-size: var(--cart-font-size--xs);
    color: rgb(var(--color-foreground-rgb) / var(--opacity-subdued-text));
  }

  .cart-items__low-stock {
    margin: 4px 0 0;
    font-size: var(--cart-font-size--xs);
    font-weight: 700;
    color: #d23234;
  }

  .cart-items__empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
    padding: 24px 16px;
    max-width: 420px;
    margin: 0 auto;
  }

  .cart-items__empty-heading {
    margin: 0;
  }

  .cart-items__empty-sub {
    margin: 0;
    color: rgb(var(--color-foreground-rgb) / 0.7);
  }

  .cart-items__empty-featured {
    width: 100%;
    margin: 16px 0 4px;
    padding: 12px;
  }

  .cart-items__empty-cta.button {
    width: 100%;
    margin-top: 12px;
  }

  .cart-items__empty-eyebrow {
    margin: 0 0 8px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #d23234;
  }

  .cart-items__empty-card {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit;
    text-align: left;
  }

  .cart-items__empty-img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    border-radius: 0;
    background: rgb(var(--color-foreground-rgb) / 0.03);
    border-top: 2px solid var(--cart-pack-red, #d23234);
  }

  .cart-items__empty-info {
    display: flex;
    flex-direction: column;
  }

  .cart-items__empty-name {
    font-weight: 600;
  }

  .cart-items__empty-price {
    color: rgb(var(--color-foreground-rgb) / 0.65);
    font-size: 0.9rem;
  }

  .cart-items__empty-actions {
    display: grid;
    gap: 10px;
    width: 100%;
    margin-top: 12px;
  }

  .cart-items__empty-login {
    font-size: 0.85rem;
    color: rgb(var(--color-foreground-rgb) / 0.7);
  }

  /* Line-level discount label rendered as a brand pill */
  .cart-items__details ul.list-unstyled[role='list'] li {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 2px 8px;
    border-radius: 999px;
    background: rgb(210 50 52 / 0.08);
    color: #b1262a;
    font-size: var(--cart-font-size--xs);
    font-weight: 600;
    line-height: 1.2;
    margin-top: 4px;
  }

  .cart-items__details ul.list-unstyled[role='list'] li::before {
    content: '⚡';
    font-size: 0.75em;
  }

  .cart-items__details a {
    text-decoration: none;
  }

  .cart-items__title {
    font-size: var(--cart-font-size--md);
    color: var(--color-foreground);
    text-transform: var(--product-title-case);
  }

  .cart-items__variant {
    display: inline-block;
  }

  .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 .quantity-selector {
    display: inline-flex;
    flex: 0 1 var(--quantity-selector-width);
    font-size: var(--cart-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(--cart-font-size--md);
  }

  .cart-items__price-stack {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.15rem;
  }

  .cart-items__per-unit-price {
    margin: 0;
    font-size: var(--cart-font-size--xs);
    font-weight: 600;
    line-height: 1.2;
    color: rgb(var(--color-foreground-rgb) / 0.58);
  }

  .cart-items__price-unit {
    font-size: var(--cart-font-size--xs);
  }

  .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(--cart-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-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;
      justify-content: center;
    }
  }

  .cart__original-total-container,
  .cart__total-container {
    display: flex;
    flex-direction: column;
  }

  .cart__total-container {
    row-gap: var(--gap-2xs);

    &:has(.cart__installments) {
      row-gap: var(--gap-xs);
    }
  }

  .cart__original-total-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__original-total-container, .cart__total-container)) {
      padding-block-start: 0;
      border-block-start: none;
    }

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

  .cart__original-total-container,
  .cart__original-total-container * {
    font-size: var(--cart-font-size--sm);
  }

  .cart__total {
    font-weight: var(--font-weight-bold);
  }

  .cart__total-label {
    font-size: var(--cart-font-size--sm);
  }

  .cart__total-value {
    font-size: var(--cart-font-size--2xl);
  }

  .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%;
  }

  .cart__ctas .cart__checkout-button {
    width: 100%;
    height: clamp(25px, var(--height-buy-buttons), 55px);
    padding-inline: var(--padding-4xl);
  }

  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);
  }

  .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(--cart-font-size--sm);
  }

  .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(--cart-font-size--sm);
    padding: max(4px, calc(var(--style-border-radius-inputs) * (1 - cos(45deg))));
  }

  .cart-note .svg-wrapper {
    height: var(--icon-size-sm);
    width: var(--icon-size-sm);
    margin: 0;
  }

  .cart-note .icon-plus {
    height: var(--icon-size-xs);
    width: var(--icon-size-xs);
  }

  /* 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__properties dt,
  .cart-items__properties dd {
    display: inline;
  }
/* END_SNIPPET:cart-products */

/* START_SNIPPET:cart-reviews-rating (INDEX:218) */
.cart-reviews-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2px 6px;
    margin: 10px 0 0;
    font-size: 0.82rem;
    font-weight: 600;
    color: rgb(var(--color-foreground-rgb) / 0.72);
  }

  .cart-reviews-rating__stars {
    display: inline-flex;
    align-items: center;
    gap: 1px;
  }

  .cart-reviews-rating__star {
    display: block;
  }

  .cart-reviews-rating__value {
    font-weight: 700;
    color: var(--color-foreground);
  }

  .cart-reviews-rating__count {
    color: rgb(var(--color-foreground-rgb) / 0.72);
    font-weight: 500;
  }
/* END_SNIPPET:cart-reviews-rating */

/* START_SNIPPET:cart-sober-shipping-nudge (INDEX:219) */
.cart-sober-ship-nudge {
    margin: 0.35rem 0 0;
    padding: 0.5rem 0.65rem;
    border-radius: 8px;
    background: rgb(210 50 52 / 0.08);
    border: 1px solid rgb(210 50 52 / 0.2);
    font-size: 0.82rem;
    line-height: 1.35;
    color: var(--color-foreground);
  }

  .cart-sober-ship-nudge strong {
    color: #d23234;
  }
/* END_SNIPPET:cart-sober-shipping-nudge */

/* START_SNIPPET:cart-summary (INDEX:220) */
.cart-actions {
    display: flex;
    flex-direction: column;
    gap: var(--gap-sm);
    border-block: 1px solid var(--color-border);
    padding-block: var(--padding-sm);
    margin-block-start: var(--margin-3xs);
  }

  .cart-actions__divider {
    border-block-start: 1px solid var(--color-border);
  }

  .cart__summary-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__installments {
    color: var(--color-foreground);
  }

  /* Checkout CTA — pack styles live in cart-pack-brand.liquid */
  .cart__summary-breakdown {
    display: grid;
    gap: var(--gap-2xs);
    margin-block-start: var(--margin-3xs);
  }

  .cart__summary-line {
    font-size: var(--cart-font-size--sm);
    color: rgb(var(--color-foreground-rgb) / 0.85);
  }

  .cart__shipping-free {
    color: #d23234;
    font-weight: var(--font-weight-bold);
  }
/* END_SNIPPET:cart-summary */

/* START_SNIPPET:collection-card (INDEX:222) */
.collection-card {
    --fixed-card-height: var(--height-small);
    flex: 1 1 var(--card-width-small);
    width: 100%;
    position: relative;
  }

  .collection-card > svg {
    height: 100%;
    width: 100%;
    aspect-ratio: var(--ratio);
  }

  .collection-card__inner {
    width: 100%;
    overflow: hidden;
    position: relative;
    gap: var(--collection-card-gap);
    display: flex;
    flex-direction: column;
  }

  .collection-card--image-bg .collection-card__inner {
    height: 100%;
  }

  .collection-card__inner {
    z-index: var(--layer-flat);
    pointer-events: none;

    a,
    button {
      /* only allow interactive elements to be clickable separate from .collection-card__link */
      pointer-events: auto;
    }
  }

  /* allow all blocks to be selectable in editor preview */
  .shopify-design-mode .collection-card__content * {
    pointer-events: auto;
  }

  .collection-card__content {
    position: relative;
    display: flex;
    height: 100%;
    width: 100%;
    max-width: 100%;
    gap: var(--collection-card-gap);
    flex-direction: column;
    align-items: var(--horizontal-alignment);
    justify-content: var(--vertical-alignment);
  }

  .collection-card__link {
    position: absolute;
    inset: 0;

    /* allows focus outline to have radius in supported browsers */
    border-radius: var(--border-radius);
  }

  /* 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);
  }

  /* 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 .image-block__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;
    }

    .collection-card__image {
      aspect-ratio: 99;
      height: 100%;
    }

    .collection-card__inner {
      display: flex;
      flex-direction: column;
      height: 100%;
    }

    .collection-card__content {
      flex-shrink: 0;
    }

    &:not(.collection-card--image-bg) .collection-card__content {
      height: auto;
    }
  }
/* END_SNIPPET:collection-card */

/* START_SNIPPET:collection-fridge-fill-info (INDEX:224) */
.col-ff-guide {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
  }

  .col-ff-guide__details {
    border: 1px solid rgb(0 0 0 / 0.12);
    border-radius: 22px;
    background: #fff;
    overflow: hidden;
  }

  .col-ff-guide__summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 18px;
  }

  .col-ff-guide__summary::-webkit-details-marker {
    display: none;
  }

  .col-ff-guide__title {
    font-size: clamp(18px, 2vw, 26px);
    line-height: 1.15;
    font-weight: 800;
  }

  .col-ff-guide__chev {
    flex: none;
    transition: transform 0.2s ease;
    font-size: 18px;
    line-height: 1;
    opacity: 0.8;
  }

  .col-ff-guide__details[open] .col-ff-guide__chev {
    transform: rotate(180deg);
  }

  .col-ff-guide__content {
    padding: 0 18px 18px;
  }

  .col-ff-guide__legend {
    margin: 0 0 0.55rem;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: -0.01em;
  }

  .col-ff-guide__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.45rem;
    align-items: stretch;
  }

  .col-ff-guide__card {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    height: 100%;
    min-width: 0;
    padding: 0.5rem 0.35rem 0.6rem;
    border: 1px solid rgb(var(--color-foreground-rgb) / 0.14);
    border-radius: 10px;
    background: var(--color-background);
    text-align: center;
  }

  .col-ff-guide__card.is-active {
    border-color: #d23234;
    border-width: 1.5px;
    padding: calc(0.5rem - 0.5px) calc(0.35rem - 0.5px) calc(0.6rem - 0.5px);
    box-shadow: 0 0 0 1px rgb(210 50 52 / 0.12);
  }

  .col-ff-guide__head {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 1.05rem;
    margin-bottom: 0.3rem;
  }

  .col-ff-guide__head-spacer {
    display: block;
    height: 1.05rem;
  }

  .col-ff-guide__badge {
    display: inline-block;
    max-width: 100%;
    padding: 1px 6px;
    border-radius: 4px;
    border: 1px solid rgb(var(--color-foreground-rgb) / 0.2);
    background: rgb(var(--color-foreground-rgb) / 0.06);
    color: rgb(var(--color-foreground-rgb) / 0.88);
    font-size: 0.5rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    line-height: 1.3;
    white-space: nowrap;
  }

  .col-ff-guide__badge--ship,
  .col-ff-guide__badge--best {
    border-color: rgb(210 50 52 / 0.35);
    background: rgb(210 50 52 / 0.08);
    color: #d23234;
  }

  .col-ff-guide__body {
    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.2rem;
    min-width: 0;
  }

  .col-ff-guide__qty {
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
  }

  .col-ff-guide__label {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--color-foreground);
    line-height: 1.25;
  }

  .col-ff-guide__note {
    display: block;
    min-height: 1.35em;
    margin-top: 2px;
    font-size: 0.58rem;
    font-weight: 700;
    line-height: 1.3;
    color: #d23234;
    text-align: center;
  }

  .col-ff-guide__footnote {
    margin: 0.85rem 0 0;
    font-size: 0.85rem;
    line-height: 1.5;
    color: rgb(var(--color-foreground-rgb) / 0.62);
    font-style: italic;
    text-align: center;
  }

  .col-ff-guide__cta-row {
    margin: 0.65rem 0 0;
    text-align: center;
  }

  .col-ff-guide__cta {
    font-size: 0.82rem;
    font-weight: 700;
    color: #d23234;
    text-decoration: none;
  }

  .col-ff-guide__cta:hover {
    text-decoration: underline;
    text-underline-offset: 2px;
  }

  @media screen and (min-width: 400px) {
    .col-ff-guide__grid {
      gap: 0.55rem;
    }

    .col-ff-guide__badge {
      font-size: 0.52rem;
    }
  }
/* END_SNIPPET:collection-fridge-fill-info */

/* START_SNIPPET:contact-form (INDEX:226) */
.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_SNIPPET:contact-form */

/* START_SNIPPET:disclosure-content (INDEX:228) */
.disclosure-content {
    display: grid;
    grid-template-rows: 1fr;
    /* stylelint-disable-next-line plugin/no-unsupported-browser-features */
    clip-path: inset(-5% -5% 0 -5%);
    opacity: 1;

    &[inert] {
      grid-template-rows: 0fr;
      opacity: 0;
    }

    & > * {
      min-height: 0;
    }
  }

  @media (prefers-reduced-motion: no-preference) {
    .disclosure-content {
      transition-property: grid-template-rows, opacity;
      transition-duration: var(--surface-transition-duration);
      transition-timing-function: var(--surface-transition-timing);
    }
  }
/* END_SNIPPET:disclosure-content */

/* START_SNIPPET:disclosure-trigger (INDEX:229) */
.disclosure-trigger {
    cursor: pointer;
    color: var(--color-foreground);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-block: var(--padding-sm);
    width: 100%;
    border: none;
    background: #0000;

    &[aria-expanded='true'] .horizontal {
      rotate: 90deg;
    }

    &:is(:hover, :focus-visible) {
      color: rgb(var(--color-foreground-rgb) / var(--opacity-subdued-text));
    }

    .horizontal {
      transform-box: fill-box;
      transform-origin: center;
    }

    svg {
      aspect-ratio: 1;
      width: var(--icon-size-xs);
    }
  }

  .disclosure-trigger__label {
    display: flex;
    align-items: flex-start;
    gap: var(--gap-2xs);
    font-size: var(--cart-font-size--sm);
  }

  @media (prefers-reduced-motion: no-preference) {
    .disclosure-trigger .horizontal {
      transition: rotate var(--surface-transition-duration) var(--surface-transition-timing);
    }
  }
/* END_SNIPPET:disclosure-trigger */

/* START_SNIPPET:divider (INDEX:230) */
.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-atc-buttons (INDEX:233) */
.product-card .add-to-cart-button:not([data-bis-trigger='true']),
  .product-recommendations .add-to-cart-button:not([data-bis-trigger='true']) {
    border-radius: 0 !important;
    border: 1px solid #1a1a1a !important;
    background: #ffffff !important;
    color: #d23234 !important;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
    font-size: 0.85rem;
    width: 100%;
    box-shadow: none !important;
    transition: transform 200ms ease, background 200ms ease, color 200ms ease;
  }

  .product-card .add-to-cart-button:not([data-bis-trigger='true']) .add-to-cart-icon,
  .product-card .add-to-cart-button:not([data-bis-trigger='true']) .add-to-cart-text--added,
  .product-recommendations .add-to-cart-button:not([data-bis-trigger='true']) .add-to-cart-icon,
  .product-recommendations .add-to-cart-button:not([data-bis-trigger='true']) .add-to-cart-text--added {
    display: none !important;
  }

  @media (hover: hover) {
    .product-card .add-to-cart-button:not([data-bis-trigger='true']):hover:not([disabled]):not([aria-disabled='true']),
    .product-recommendations
      .add-to-cart-button:not([data-bis-trigger='true']):hover:not([disabled]):not([aria-disabled='true']) {
      background: #d23234 !important;
      color: #ffffff !important;
      border-color: #d23234 !important;
      transform: translateY(-2px);
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .product-card .add-to-cart-button:not([data-bis-trigger='true']),
    .product-recommendations .add-to-cart-button:not([data-bis-trigger='true']),
    .product-card .add-to-cart-button:not([data-bis-trigger='true']):hover,
    .product-recommendations .add-to-cart-button:not([data-bis-trigger='true']):hover {
      transition: none;
      transform: none;
    }
  }
/* END_SNIPPET:editorial-atc-buttons */

/* START_SNIPPET:editorial-blog-grid (INDEX:234) */
.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 (max-width: 768px) {
    .editorial-blog__grid {
      display: flex;
      flex-direction: column;
      gap: var(--gap-2xl);
    }

    .editorial-blog__spacer {
      display: none;
    }

    .featured-blog-posts-card__image {
      min-height: 200px;
    }

    /* 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:235) */
.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 (max-width: 768px) {
    .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:236) */
.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 {
      height: 100%;
    }
  }

  .editorial-product__spacer {
    aspect-ratio: 1;
  }

  @media (max-width: 768px) {
    .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:facets-actions (INDEX:237) */
/* Facets - Actions */
  .facets__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
    );

    order: 1;
    position: sticky;
    bottom: 0;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: var(--gap-sm);
    background-image: var(--to-top-gradient-background);
    z-index: var(--facets-sticky-z-index);
    padding-block-start: var(--padding-xs);
    padding-block-end: var(--padding-md);
    padding-inline: var(--padding-lg);
    margin-top: auto;
  }

  .facets:not(.facets--drawer) .facets__actions {
    @media screen and (min-width: 750px) {
      position: static;
    }
  }

  .facets--vertical .facets__actions {
    padding-inline: 0;
    justify-content: center;
  }

  .facets--horizontal .facets__actions {
    @media screen and (min-width: 750px) {
      order: 0;
      bottom: auto;
      position: static;
      padding: 0;
      z-index: var(--layer-flat);
      flex-shrink: 0;
      align-items: center;
      margin-top: initial;
      background-image: none;
    }
  }

  .facets--horizontal .facets__actions--active::before {
    @media screen and (min-width: 750px) {
      content: '';
      border-inline-start: var(--style-border-width) solid var(--color-border);
      height: var(--font-paragraph--size);
      position: absolute;
    }
  }

  /* 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;
    }
  }

  .clear-filter:hover {
    text-decoration: underline;
    background-color: transparent;
  }

  /* Clear all button */
  .facets__clear-all {
    display: none;
    cursor: pointer;
    min-width: var(--facets-clear-all-min-width);
    transition: transform var(--animation-values), opacity var(--animation-values);
    opacity: 0;
    transform: translateY(100%);
    flex-grow: 1;
    padding-block: var(--padding-lg);
  }

  .facets:not(.facets--drawer) .facets__clear-all {
    box-shadow: none;
  }

  .facets--horizontal .facets__clear-all {
    @media screen and (min-width: 750px) {
      --facets-clear-all-min-width: var(--minimum-touch-target);
      --button-color: var(--color-primary);

      text-decoration: underline transparent 0.075em;
      text-underline-offset: 0.125em;
      width: auto;
      transform: none;
      opacity: 1;
      height: var(--minimum-touch-target);
      align-items: center;
      flex-grow: 0;
      transition: text-decoration-color var(--animation-speed) var(--animation-easing);
    }
  }

  .facets--horizontal .facets__clear-all:hover {
    @media screen and (min-width: 750px) {
      --button-color: var(--color-primary-hover);
    }
  }

  @starting-style {
    .facets__clear-all {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .facets__clear-all.active {
    transform: translateY(0);
    opacity: 1;
    display: grid;
  }

  .facets--horizontal .facets__clear-all.active {
    @media screen and (min-width: 750px) {
      padding-block: 0;
      padding-inline: var(--facets-form-horizontal-gap);
      background-color: transparent;
      position: static;
      transform: none;
    }
  }

  @starting-style {
    .facets__clear-all.active {
      opacity: 0;
      transform: translateY(100%);
    }

    .facets--horizontal .facets__clear-all.active {
      @media screen and (min-width: 750px) {
        opacity: 1;
        transform: none;
      }
    }
  }

  .facets__see-results {
    min-width: var(--facets-see-results-min-width);
    flex-grow: 1;
    padding-block: var(--padding-lg);
  }

  .facets:not(.facets--drawer) .facets__see-results {
    @media screen and (min-width: 750px) {
      display: none;
    }
  }
/* END_SNIPPET:facets-actions */

/* START_SNIPPET:filter-remove-buttons (INDEX:239) */
/* 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__clear-all-link {
    --button-color: var(--color-primary);

    border: none;
    background-color: transparent;
    padding: var(--padding-xs);
    min-width: fit-content;
    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);

    color: var(--button-color);
    text-decoration-color: var(--button-color);
  }

  .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-remove__pill-button {
    display: inline-flex;
    align-items: center;
    gap: var(--gap-3xs);
    width: 100%;
    color: inherit;
  }

  .facets--horizontal .facets-remove {
    @media screen and (min-width: 750px) {
      display: none;
    }
  }
/* END_SNIPPET:filter-remove-buttons */

/* START_SNIPPET:filters-toggle (INDEX:240) */
/* Facets - Toggle */
  .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 */
  .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%;
      }
    }
  }
/* END_SNIPPET:filters-toggle */

/* START_SNIPPET:gift-card-recipient-form (INDEX:245) */
.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 {
    /* 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;
    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;
    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) {
      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 */

/* START_SNIPPET:grid-density-controls (INDEX:246) */
.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;
    }
  }

  .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;
    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:247) */
.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:header-actions (INDEX:248) */
.cart-drawer {
    --cart-drawer-padding: var(--padding-lg) var(--padding-xl);
    --cart-drawer-padding-desktop: var(--padding-xl) var(--padding-2xl);
    --cart-font-size--2xs: var(--font-size--2xs);
    --cart-font-size--xs: var(--font-size--xs);
    --cart-font-size--sm: var(--font-size--sm);
    --cart-font-size--md: var(--font-size--md);
    --cart-font-size--2xl: var(--font-size--2xl);
  }

  .cart-drawer__dialog {
    position: fixed;
    inset: 0 0 0 auto;
    border-radius: 0;
    width: min(100vw, calc(var(--sidebar-width) * 1.35));
    max-width: 100vw;
    height: 100dvh;
    max-height: 100dvh;
    margin: 0;
    padding: 0;
    border-left: var(--style-border-drawer);
    box-shadow: var(--shadow-drawer);
    background-color: var(--color-background);
  }

  /* Override generic dialog-modal padding/animation so drawer stays viewport-locked */
  .cart-drawer__dialog.dialog-modal {
    padding: 0;
  }

  .cart-drawer__dialog.dialog-modal[open] {
    animation: var(--dialog-drawer-opening-animation) var(--animation-speed) var(--animation-easing) forwards;
    margin-top: 0;
  }

  @media screen and (min-width: 990px) {
    .cart-drawer__dialog {
      width: min(92vw, calc(var(--sidebar-width) * 1.5));
    }
  }

  .cart-drawer__dialog:modal {
    max-height: 100dvh;
    overflow: hidden;
  }

  .cart-drawer__inner {
    height: 100%;
    min-height: 0;
    max-height: 100dvh;
    overflow: hidden;
  }

  .cart-drawer__content {
    padding: 0;
    background-color: var(--color-background);
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    min-height: 0;
    overflow: hidden;
  }

  .cart-drawer__heading {
    display: flex;
    align-items: center;
    gap: var(--gap-xs);
  }

  .cart-drawer__close-button {
    margin-right: calc(var(--padding-sm) * -1);
  }

  .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 {
    flex-shrink: 0;
    background-color: var(--color-background);
  }

  .cart-drawer__summary .cart__summary-totals:not(:has(.cart__original-total-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);
    padding-top: 12px;
    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--empty .cart-drawer__header {
    justify-content: right;
    border-bottom: none;
    padding-bottom: 0;
  }

  .cart-drawer--empty .cart-drawer__heading {
    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;
  }

  header-actions {
    display: flex;

    @media screen and (max-width: 749px) {
      justify-self: flex-end;
    }
  }

  .header__column--right header-actions {
    margin-inline-start: calc(var(--gap-md) * -1);
  }

  .header-actions__action {
    --button-color: var(--color-foreground);

    cursor: pointer;
    display: flex;
    justify-content: center;
  }

  .header-actions__find-in-store {
    align-items: center;
    padding-inline: 10px;
    font-size: 0.84rem;
    font-weight: 700;
    color: var(--color-foreground);
    text-decoration: underline;
    text-underline-offset: 3px;
    white-space: nowrap;
  }

  /* Neobrutalist header CTA: 0-radius rectangle, 2px black border, and
     a black drop-shadow that's hidden at rest. On hover the button
     translates up + left and the shadow snaps in to look like the
     button has lifted off the page. On :active it settles back so the
     click feels like a press. */
  .header-actions__cta {
    --header-cta-shadow-offset: 5px;
    --header-cta-shadow-color: #1a1a1a;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 20px;
    margin-inline-end: 16px;
    border-radius: 0;
    background: #d23234;
    border: 2px solid #1a1a1a;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.84rem;
    font-weight: 700;
    line-height: 1;
    box-shadow: 0 0 0 var(--header-cta-shadow-color);
    transform: translate(0, 0);
    transition: background-color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
    will-change: transform, box-shadow;
  }

  .header-actions__cta:hover {
    background: #a82729;
    color: #ffffff;
    transform: translate(calc(var(--header-cta-shadow-offset) * -1), calc(var(--header-cta-shadow-offset) * -1));
    box-shadow: var(--header-cta-shadow-offset) var(--header-cta-shadow-offset) 0 var(--header-cta-shadow-color);
  }

  .header-actions__cta:focus-visible {
    outline: 2px solid #1a1a1a;
    outline-offset: 3px;
  }

  /* Press feedback — the button slides back into the shadow position so
     the click reads as a physical "press" rather than a click-through. */
  .header-actions__cta:active {
    transform: translate(0, 0);
    box-shadow: 0 0 0 var(--header-cta-shadow-color);
  }

  @media (prefers-reduced-motion: reduce) {
    .header-actions__cta,
    .header-actions__cta:hover,
    .header-actions__cta:active {
      transition: background-color 0.15s ease;
      transform: none;
      box-shadow: var(--header-cta-shadow-offset) var(--header-cta-shadow-offset) 0 var(--header-cta-shadow-color);
    }
  }

  @media screen and (min-width: 750px) and (max-width: 1199px) {
    .header-actions__cta {
      min-height: 36px;
      padding: 0 14px;
      margin-inline-end: 10px;
      font-size: 0.78rem;
    }
  }

  .header-actions__action .svg-wrapper {
    height: var(--button-size);
    width: var(--button-size);
  }

  .header-actions__action svg {
    width: var(--icon-size-md);
    height: var(--icon-size-md);
  }

  .header-actions__cart-icon {
    --cart-bubble-size: 20px;
    --cart-bubble-top: 4.5px;
    --cart-bubble-right: 2.5px;

    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);
  }

  .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);
  }

  .header-actions__cart-icon.header-actions__cart-icon--has-cart svg {
    /* Create donut mask where the cart bubble sits */
    mask: radial-gradient(
      calc(var(--cart-bubble-size) + 2px) at calc(100% - var(--cart-bubble-right)) var(--cart-bubble-top),
      transparent 45.45%,
      #fff 45.45%,
      #fff 100%
    );
  }

  .cart-drawer__heading .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: var(--font-size--xs);
  }

  .cart-bubble--animating .cart-bubble__background {
    animation: grow var(--animation-speed) var(--animation-easing);
  }

  .cart-bubble--animating .cart-bubble__text {
    animation: cartBubbleSlideIn var(--animation-speed) var(--animation-easing);
  }
/* END_SNIPPET:header-actions */

/* START_SNIPPET:header-drawer (INDEX:250) */
.header__icon--menu {
    position: initial;
  }

  @media screen and (min-width: 750px) {
    .header--desktop header-menu + .header__drawer header-drawer {
      display: none;
    }
  }

  .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);
  }

  .header__drawer {
    display: flex;
    min-height: 60px;
    align-items: center;

    @media screen and (min-width: 750px) {
      min-height: 0;
    }
  }

  .header--compact .header__drawer {
    min-height: var(--minimum-touch-target);
  }

  .menu-drawer__navigation {
    padding: 0;

    @media screen and (min-width: 750px) {
      margin-top: var(--drawer-header-desktop-top);
    }
  }

  /* Mobile drawer CTA — same neobrutalist treatment as the desktop
     header CTA. Touch devices don't really hover, so we render the
     black drop-shadow visible at rest (the brutalist look the user
     wants) and use :active to slide the button into the shadow on tap
     for a satisfying press. The right + bottom margins are reduced by
     the shadow offset so the visual block stays inside the drawer. */
  .menu-drawer__cta {
    --drawer-cta-shadow-offset: 5px;
    --drawer-cta-shadow-color: #1a1a1a;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: calc(100% - (var(--padding-lg) * 2) - var(--drawer-cta-shadow-offset));
    min-height: 48px;
    margin: 16px var(--padding-lg) calc(18px + var(--drawer-cta-shadow-offset));
    padding: 0 20px;
    border-radius: 0;
    background: #d23234;
    border: 2px solid #1a1a1a;
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1;
    box-shadow: var(--drawer-cta-shadow-offset) var(--drawer-cta-shadow-offset) 0 var(--drawer-cta-shadow-color);
    transform: translate(0, 0);
    transition: transform 0.12s ease, box-shadow 0.12s ease, background-color 0.15s ease;
  }

  .menu-drawer__cta:hover {
    background: #a82729;
    color: #ffffff;
  }

  .menu-drawer__cta:active {
    background: #a82729;
    transform: translate(var(--drawer-cta-shadow-offset), var(--drawer-cta-shadow-offset));
    box-shadow: 0 0 0 var(--drawer-cta-shadow-color);
  }

  .menu-drawer__cta:focus-visible {
    outline: 2px solid #1a1a1a;
    outline-offset: 3px;
  }

  @media (prefers-reduced-motion: reduce) {
    .menu-drawer__cta,
    .menu-drawer__cta:active {
      transition: background-color 0.15s ease;
      transform: none;
    }
  }

  details:not([open]) .header__icon--menu .header-drawer-icon--close {
    display: none;
  }

  details[open] .header__icon--menu .header-drawer-icon--close {
    @media screen and (min-width: 750px) {
      display: none;
    }
  }

  details[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;
    }

    .header__drawer--desktop & {
      height: 100vh;
    }
  }

  .menu-drawer:has(details[open]) {
    overflow: initial;
  }

  .menu-drawer__backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100dvh;
    border: 0;
    padding: 0;
    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;
    will-change: transform;
  }

  .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;
    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-start: 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-start: 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;
    padding: var(--padding-lg);
    will-change: transform;
  }

  .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);
    }
  }
/* END_SNIPPET:header-drawer */

/* START_SNIPPET:judgeme-pdp-store-rating (INDEX:261) */
.pdp-store-rating {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px 10px;
    margin: 0;
    font-family: var(--font-body--family, inherit);
    font-size: 0.95rem;
    line-height: 1.2;
    color: var(--color-foreground, #1a1a1a);
  }

  .pdp-store-rating__stars {
    display: inline-flex;
    align-items: center;
    gap: 1px;
    line-height: 0;
  }

  .pdp-store-rating__star {
    display: block;
  }

  .pdp-store-rating__value {
    font-weight: 700;
    color: var(--color-foreground, #1a1a1a);
  }

  .pdp-store-rating__count {
    color: rgb(26 26 26 / 0.72);
  }
/* END_SNIPPET:judgeme-pdp-store-rating */

/* START_SNIPPET:jumbo-text (INDEX:263) */
.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;
    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;
    white-space: pre;
    width: 100%;
    will-change: font-size;
    margin-left: var(--margin-left-nudge, 0);
    margin-right: var(--margin-right-nudge, 0);
    overflow: visible;
  }

  jumbo-text.ready {
    opacity: 1;
  }

  jumbo-text[data-cap-text='true'] {
    /* stylelint-disable-next-line plugin/no-unsupported-browser-features */
    text-box-edge: cap text;
  }

  .jumbo-text-space {
    display: inline-flex;
    width: 0.5ch;
  }

  :is(.jumbo-text-char, .jumbo-text-line) {
    display: inline-flex;
  }

  @media (prefers-reduced-motion: no-preference) {
    /* Blur effect */
    [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'],
    .ready[data-text-effect='reveal'] .jumbo-text-line {
      overflow: hidden;
    }

    .ready[data-text-effect='reveal'] .jumbo-text-char {
      transform: translateY(100%);
    }

    .jumbo-text-visible[data-text-effect='reveal'] .jumbo-text-char {
      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'],
    .jumbo-text-visible[data-text-effect='reveal'] .jumbo-text-line {
      overflow: visible;
      transition: overflow 0s linear 0.75s;
    }
  }
/* END_SNIPPET:jumbo-text */

/* START_SNIPPET:limited-edition-best-before (INDEX:266) */
.limited-edition-best-before {
    margin: 0;
    font-size: 0.82rem;
    line-height: 1.4;
    color: rgb(var(--color-foreground-rgb) / 0.72);
  }

  .cart-limited-best-before {
    margin: 0.35rem 0 0;
    padding: 0.45rem 0.65rem;
    border-radius: 8px;
    background: rgb(var(--color-foreground-rgb) / 0.04);
    border: 1px solid rgb(var(--color-foreground-rgb) / 0.1);
    font-size: 0.78rem;
    line-height: 1.35;
    color: rgb(var(--color-foreground-rgb) / 0.72);
  }

  .cart-items__line-best-before {
    margin: 0.35rem 0 0;
    padding: 0.4rem 0.55rem;
    border-radius: 6px;
    background: rgb(var(--color-foreground-rgb) / 0.04);
    border: 1px solid rgb(var(--color-foreground-rgb) / 0.1);
    font-size: 0.74rem;
    line-height: 1.35;
    color: rgb(var(--color-foreground-rgb) / 0.72);
    max-width: 28ch;
  }

  .pdp-limited-urgency .limited-edition-best-before {
    margin: 0.35rem 0 0;
    font-size: 0.82rem;
    color: rgb(var(--color-foreground-rgb) / 0.72);
  }
/* END_SNIPPET:limited-edition-best-before */

/* START_SNIPPET:list-filter (INDEX:268) */
.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(:has(.checkbox__input: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));
  }

  .facets .checkbox:has(.checkbox__input:checked):not(:has(.checkbox__input:disabled)):hover .icon-checkmark {
    background-color: rgb(var(--color-foreground-rgb) / var(--opacity-85));
  }

  .facets .checkbox:not(:has(.checkbox__input: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;
    opacity: 0;
    cursor: pointer;
  }

  /* Swatches */
  .facets__status--swatches {
    display: none;
  }

  .facets__swatch-wrapper {
    display: flex;
  }

  .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;

    &.variant-option--swatches-disabled,
    &:has(input:disabled) {
      cursor: not-allowed;
    }
  }

  .facets__inputs-wrapper .facets__inputs-list--swatches-grid label {
    cursor: pointer;
    word-break: break-word;
    white-space: normal;

    .variant-option--swatches-disabled &,
    .variant-option--swatches:has(input:disabled) & {
      cursor: not-allowed;
    }
  }

  .facets__inputs-wrapper .facets__inputs-list--swatches-grid .variant-option__button-label--has-swatch {
    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--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));
  }

  .variant-option--images {
    position: relative;
  }

  .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);

    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:not(:has(input:disabled)),
    &:has(input:checked) {
      --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);
    }

    &:has(input:disabled),
    &:has(input:disabled):hover {
      --image-facet-border-opacity: 0;

      opacity: var(--disabled-opacity);
      cursor: not-allowed;

      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);
      }
    }
  }

  .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);
  }

  /* 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;
  }

  .facets__image-label {
    width: 100%;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding-block-end: var(--padding-xs);
    cursor: pointer;

    .variant-option--images:has(input:disabled) & {
      cursor: not-allowed;
    }
  }

  .facets__inputs-list--swatches .variant-option__button-label:hover:not(:has(input:disabled)) {
    font-weight: 500;
  }

  .variant-option--images:not(:has(input:disabled)) .facets__image-label:hover {
    font-weight: 500;
  }
/* END_SNIPPET:list-filter */

/* START_SNIPPET:localization-form (INDEX:269) */
/* 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%;
  }

  .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 .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);
  }

  .drawer-localization__button .icon-flag,
  .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;
  }

  .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;
    color: var(--color-foreground);
  }

  .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;
    }
  }

  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;
    }
  }

  .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.localization-form__no-results {
    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);
  }

  .drawer-localization .country-filter {
    padding-block: 8px;
  }

  dropdown-localization-component .country-filter {
    position: relative;
    padding: 8px;
  }

  .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;

    &: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);
  }

  dropdown-localization-component .localization-form__select:hover {
    background-color: rgb(var(--color-primary-hover-rgb) / var(--opacity-8));
  }

  .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;
  }

  .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);
  }

  dropdown-localization-component {
    position: relative;
    background-color: transparent;
  }

  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
    :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,
  .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;
  }

  .header__column .localization-form__select {
    background-color: var(--header-bg-color);
  }

  .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:localization-form */

/* START_SNIPPET:media (INDEX:272) */
.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__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:279) */
.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:pack-benefit-icons (INDEX:280) */
.pack-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem 1rem;
    margin: 0.65rem 0 0;
    padding: 0;
    list-style: none;
  }

  .pack-benefits__item {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #3d5c45;
  }

  .pack-benefits__icon {
    display: inline-flex;
    color: #3d5c45;
    opacity: 0.9;
  }

  .pack-benefits--compact {
    gap: 0.45rem 0.65rem;
    margin-top: 0.35rem;
  }

  .pack-benefits--compact .pack-benefits__item {
    font-size: 0.65rem;
  }

  .pack-benefits--compact .pack-benefits__icon svg {
    width: 16px;
    height: 16px;
  }
/* END_SNIPPET:pack-benefit-icons */

/* START_SNIPPET:pagination-controls (INDEX:286) */
.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']):not(.pagination__link--gap):not(
        .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):not(.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):not(.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:pdp-fridge-fill-ladder (INDEX:290) */
.pdp-ff {
    border: 0;
    margin: -0.35rem 0 0.5rem;
    padding: 0;
    min-width: 0;
  }

  .pdp-ff-accordion {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
  }

  .pdp-ff-accordion__details {
    border: 1px solid rgb(0 0 0 / 0.12);
    border-radius: 22px;
    background: #fff;
    overflow: hidden;
  }

  .pdp-ff-accordion__summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 18px;
  }

  .pdp-ff-accordion__summary::-webkit-details-marker {
    display: none;
  }

  .pdp-ff-accordion__title {
    font-size: clamp(18px, 2vw, 26px);
    line-height: 1.15;
    font-weight: 800;
  }

  .pdp-ff-accordion__chev {
    flex: none;
    transition: transform 0.2s ease;
    font-size: 18px;
    line-height: 1;
    opacity: 0.8;
  }

  .pdp-ff-accordion__details[open] .pdp-ff-accordion__chev {
    transform: rotate(180deg);
  }

  .pdp-ff-accordion__content {
    padding: 0 18px 18px;
  }

  .pdp-ff-accordion .pdp-ff {
    margin-top: 0;
  }

  .pdp-ff__footnote {
    margin: 0.75rem 0 0;
    font-size: 0.85rem;
    line-height: 1.5;
    color: rgb(var(--color-foreground-rgb) / 0.62);
    font-style: italic;
    text-align: center;
  }

  .pdp-ff--static .pdp-ff__opt {
    cursor: default;
  }

  .pdp-ff__legend {
    padding: 0;
    margin: 0 0 0.35rem;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: -0.01em;
  }

  .pdp-ff__hint {
    margin: 0 0 0.55rem;
    font-size: 0.78rem;
    line-height: 1.35;
    color: rgb(var(--color-foreground-rgb) / 0.68);
  }

  .pdp-ff__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.45rem;
    align-items: stretch;
  }

  .pdp-ff__opt {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    height: 100%;
    min-width: 0;
    padding: 0.45rem 0.3rem 0.55rem;
    border: 1px solid rgb(var(--color-foreground-rgb) / 0.14);
    border-radius: 10px;
    background: var(--color-background);
    cursor: pointer;
    text-align: center;
    font: inherit;
    color: inherit;
    transition:
      border-color 0.15s ease,
      box-shadow 0.15s ease;
  }

  .pdp-ff__opt:hover {
    border-color: rgb(210 50 52 / 0.35);
  }

  .pdp-ff__opt.is-active {
    border-color: #d23234;
    border-width: 1.5px;
    padding: calc(0.45rem - 0.5px) calc(0.3rem - 0.5px) calc(0.55rem - 0.5px);
    box-shadow: 0 0 0 1px rgb(210 50 52 / 0.12);
  }

  .pdp-ff__head {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 1.05rem;
    margin-bottom: 0.3rem;
  }

  .pdp-ff__head-spacer {
    display: block;
    height: 1.05rem;
  }

  .pdp-ff__badge {
    display: inline-block;
    max-width: 100%;
    padding: 1px 5px;
    border-radius: 4px;
    border: 1px solid rgb(var(--color-foreground-rgb) / 0.2);
    background: rgb(var(--color-foreground-rgb) / 0.06);
    color: rgb(var(--color-foreground-rgb) / 0.88);
    font-size: 0.5rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .pdp-ff__badge--ship,
  .pdp-ff__badge--best {
    border-color: rgb(210 50 52 / 0.35);
    background: rgb(210 50 52 / 0.08);
    color: #d23234;
  }

  .pdp-ff__body {
    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    min-width: 0;
  }

  .pdp-ff__qty {
    font-size: 0.85rem;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
  }

  .pdp-ff__price {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
    width: 100%;
    font-variant-numeric: tabular-nums;
  }

  .pdp-ff__price-row {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: center;
    gap: 0.15rem 0.25rem;
    line-height: 1.15;
  }

  .pdp-ff__compare {
    font-size: 0.65rem;
    font-weight: 500;
    text-decoration: line-through;
    color: rgb(var(--color-foreground-rgb) / 0.4);
  }

  .pdp-ff__now {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-foreground);
  }

  .pdp-ff__save {
    display: inline-block;
    padding: 1px 5px;
    border-radius: 4px;
    background: rgb(210 50 52 / 0.09);
    font-size: 0.6rem;
    font-weight: 700;
    color: #d23234;
    line-height: 1.35;
    letter-spacing: 0.01em;
  }

  .pdp-ff__ship-nudge {
    display: block;
    min-height: 1.35em;
    margin-top: 2px;
    font-size: 0.58rem;
    font-weight: 700;
    line-height: 1.3;
    color: #d23234;
    text-align: center;
  }

  .pdp-ff__ship-nudge--spacer {
    visibility: hidden;
    pointer-events: none;
  }

  @media screen and (max-width: 359px) {
    .pdp-ff__compare {
      display: none;
    }

    .pdp-ff__price-row {
      justify-content: center;
    }
  }

  @media screen and (min-width: 400px) {
    .pdp-ff__grid {
      gap: 0.55rem;
    }

    .pdp-ff__opt {
      padding: 0.5rem 0.4rem 0.6rem;
    }

    .pdp-ff__opt.is-active {
      padding: calc(0.5rem - 0.5px) calc(0.4rem - 0.5px) calc(0.6rem - 0.5px);
    }

    .pdp-ff__badge {
      font-size: 0.52rem;
      padding-inline: 6px;
    }

    .pdp-ff__qty {
      font-size: 0.9rem;
    }

    .pdp-ff__now {
      font-size: 0.8rem;
    }

    .pdp-ff__save {
      font-size: 0.62rem;
    }
  }
/* END_SNIPPET:pdp-fridge-fill-ladder */

/* START_SNIPPET:pdp-limited-edition-urgency (INDEX:292) */
.pdp-limited-urgency {
    margin: -0.5rem 0 0.25rem;
    padding: 0.65rem 0.85rem;
    border-radius: 10px;
    background: rgb(210 50 52 / 0.08);
    border: 1px solid rgb(210 50 52 / 0.22);
  }

  .pdp-limited-urgency__stock {
    margin: 0;
    font-size: 0.9rem;
    font-weight: 700;
    color: #d23234;
  }
/* END_SNIPPET:pdp-limited-edition-urgency */

/* START_SNIPPET:pdp-price-summary-line (INDEX:294) */
.pdp-price-summary-line {
    margin: 0.35em 0 0;
    font-size: max(0.875rem, var(--font-size--sm, 0.875rem));
    line-height: 1.45;
    font-weight: 400;
    color: rgb(var(--color-foreground-rgb) / var(--opacity-subdued-text));
  }

  .pdp-price-summary-line__save {
    font-weight: 700;
    color: #d23234;
  }
/* END_SNIPPET:pdp-price-summary-line */

/* START_SNIPPET:pdp-purchase-trust-line (INDEX:295) */
.pdp-purchase-trust-line {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.4;
    color: rgb(var(--color-foreground-rgb) / 0.78);
  }
/* END_SNIPPET:pdp-purchase-trust-line */

/* START_SNIPPET:pdp-sober-bundle-contents (INDEX:297) */
.pdp-sober-bundle {
    margin: 0.35rem 0 0.15rem;
    padding: 0.75rem 0.9rem;
    border-radius: 10px;
    background: rgb(var(--color-foreground-rgb) / 0.04);
    border: 1px solid rgb(var(--color-foreground-rgb) / 0.08);
  }

  .pdp-sober-bundle__lead {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.45;
    color: var(--color-foreground, #1a1a1a);
  }

  .pdp-sober-bundle__lead strong {
    font-weight: 800;
  }

  .pdp-sober-bundle__value {
    margin: 0.35rem 0 0;
    font-size: 0.85rem;
    line-height: 1.4;
    font-weight: 600;
    color: #d23234;
  }
/* END_SNIPPET:pdp-sober-bundle-contents */

/* START_SNIPPET:pdp-sober-fb-faq (INDEX:298) */
.sober-fb-faq {
    width: 100%;
    padding: 2.5rem 0 3rem;
  }

  .sober-fb-faq__inner {
    width: min(720px, 100%);
    margin: 0 auto;
    padding: 0 var(--page-margin, 1.25rem);
  }

  .sober-fb-faq__heading {
    margin: 0 0 1.25rem;
    font-size: clamp(1.5rem, 3vw, 2rem);
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -0.02em;
  }

  .sober-fb-faq__item {
    border-top: 1px solid rgb(var(--color-foreground-rgb) / 0.12);
  }

  .sober-fb-faq__item:last-of-type {
    border-bottom: 1px solid rgb(var(--color-foreground-rgb) / 0.12);
  }

  .sober-fb-faq__item summary {
    list-style: none;
    cursor: pointer;
    padding: 1rem 0;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.35;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
  }

  .sober-fb-faq__item summary::-webkit-details-marker {
    display: none;
  }

  .sober-fb-faq__item summary::after {
    content: '+';
    flex-shrink: 0;
    font-size: 1.25rem;
    font-weight: 400;
    color: #d23234;
    line-height: 1;
  }

  .sober-fb-faq__item[open] summary::after {
    content: '−';
  }

  .sober-fb-faq__answer {
    padding: 0 0 1rem;
    font-size: 0.95rem;
    line-height: 1.55;
    color: rgb(var(--color-foreground-rgb) / 0.85);
  }

  .sober-fb-faq__answer p {
    margin: 0 0 0.65rem;
  }

  .sober-fb-faq__answer p:last-child {
    margin-bottom: 0;
  }

  .sober-fb-faq__answer a {
    color: #d23234;
    font-weight: 600;
  }

  .sober-fb-faq__bb {
    display: inline;
    font-size: inherit;
    color: inherit;
  }
/* END_SNIPPET:pdp-sober-fb-faq */

/* START_SNIPPET:pdp-trust-extras (INDEX:300) */
.pdp-trust-extras {
    margin: 0.5rem 0 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }

  .pdp-trust-extras__taste {
    margin: 0;
    padding: 0.7rem 0.9rem;
    border-radius: 10px;
    background: rgb(var(--color-foreground-rgb) / 0.04);
    font-size: 0.9rem;
    line-height: 1.45;
    color: rgb(var(--color-foreground-rgb) / 0.85);
  }

  .pdp-trust-extras__taste-icon {
    margin-right: 0.3rem;
  }

  .pdp-trust-extras__quote {
    margin: 0;
    padding-left: 0.9rem;
    border-left: 3px solid #d23234;
  }

  .pdp-trust-extras__stars {
    color: #f5a623;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
  }

  .pdp-trust-extras__quote blockquote {
    margin: 0.25rem 0 0;
    font-size: 0.95rem;
    line-height: 1.4;
    font-style: italic;
  }

  .pdp-trust-extras__quote figcaption {
    margin-top: 0.25rem;
    font-size: 0.8rem;
    color: rgb(var(--color-foreground-rgb) / 0.6);
  }
/* END_SNIPPET:pdp-trust-extras */

/* START_SNIPPET:predictive-search-products-list (INDEX:302) */
.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;
  }
/* END_SNIPPET:predictive-search-products-list */

/* START_SNIPPET:predictive-search-resource-carousel (INDEX:303) */
.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-resource-carousel */

/* START_SNIPPET:predictive-search (INDEX:304) */
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;
  }

  .predictive-search-results__inner {
    --title-font-size: var(--font-size--md);
    --title-margin-block: var(--margin-xs);
    --list-item-padding-block: var(--padding-sm);

    flex-grow: 1;
    overflow-y: auto;
    padding-block: var(--padding-lg);
    container-type: inline-size;
    color: var(--color-foreground);
  }

  .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:predictive-search */

/* START_SNIPPET:price-filter (INDEX:306) */
/* Price filter */
  .price-facet {
    container-type: inline-size;
    display: flex;
    flex-direction: column;
  }

  .facets__inputs-wrapper.price-facet__inputs-wrapper {
    flex-wrap: nowrap;
  }

  .price-facet__field {
    width: 50%;
    flex-grow: 0;
  }

  @container (max-width: 199px) {
    .facets__inputs-wrapper.price-facet__inputs-wrapper {
      flex-wrap: wrap;
      width: 100%;
    }

    .price-facet__inputs-wrapper .price-facet__field {
      width: 100%;
    }
  }

  .facets .facets__inputs-wrapper.price-facet__inputs-wrapper {
    padding: var(--style-border-width-inputs);
    gap: calc(var(--gap-sm) + (var(--style-border-width-inputs) * 2));
  }

  .facets--horizontal .facets__panel-content:has(.price-facet) {
    min-width: 360px;
  }

  .facets--horizontal .facets__inputs-wrapper.price-facet__inputs-wrapper {
    @media screen and (min-width: 750px) {
      padding: calc(var(--padding-md) + var(--style-border-width-inputs));
    }
  }

  .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);
  }

  .facets--horizontal .price-facet__highest-price {
    padding: 0 var(--padding-md) var(--padding-xs);
  }

  .field__label.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-card-badges (INDEX:309) */
.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);
  }

  /* Campaign / pre-order badge — brand red, square, used for the
     BCC × Watermelon limited-edition card. Detection: handle match or
     'pre-order' / 'bcc-campaign' product tag. */
  .product-badges__badge--limited {
    background: #d23234;
    color: #ffffff;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: 0;
    padding-block: 6px;
    padding-inline: 10px;
    font-size: 11px;
    line-height: 1;
    white-space: nowrap;
  }

  .product-badges__badge--campaign {
    background: #febed2;
    color: #1a1a1a;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: 0;
    border: 1px solid color-mix(in srgb, #1a1a1a 12%, #febed2);
    box-shadow: 0 2px 6px rgba(20, 0, 10, 0.08);
    padding-block: 6px;
    padding-inline: 10px;
    font-size: 11px;
    line-height: 1;
    white-space: nowrap;
  }
/* END_SNIPPET:product-card-badges */

/* START_SNIPPET:product-card-pack-meta (INDEX:311) */
.pack-card-meta {
    margin: 0.1rem 0 0.35rem;
  }

  .pack-card-meta__category {
    margin: 0 0 0.35rem;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgb(var(--color-foreground-rgb) / 0.55);
  }

  .pack-card-meta__ingredients {
    margin: 0 0 0.25rem;
    font-size: 0.82rem;
    line-height: 1.4;
    color: #3d5c45;
    font-weight: 500;
  }

  .pack-card-meta__format {
    margin: 0 0 0.15rem;
    font-size: 0.75rem;
    line-height: 1.35;
    color: rgb(var(--color-foreground-rgb) / 0.65);
  }

  .pack-card-meta__bcc {
    margin: 0.55rem 0 0;
    font-size: 0.72rem;
    line-height: 1.35;
    color: rgb(var(--color-foreground-rgb) / 0.8);
  }

  .pack-card-meta--shelf {
    margin: 0.05rem 0 0.25rem;
  }

  .pack-card-meta--shelf .pack-card-meta__category {
    margin-bottom: 0.25rem;
  }

  .pack-card-meta--shelf .pack-card-meta__ingredients {
    margin-bottom: 0;
  }

  .pack-card-meta--shelf .pack-card-meta__bcc {
    margin: 0.35rem 0 0;
    font-size: 0.7rem;
  }

  .pack-card-meta__bcc strong {
    color: #ad1457;
    font-weight: 700;
  }
/* END_SNIPPET:product-card-pack-meta */

/* START_SNIPPET:product-card-store-rating (INDEX:314) */
.product-card-store-rating {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px 6px;
    margin: 0.1rem 0 0.45rem;
    font-size: 0.78rem;
    line-height: 1.25;
    color: rgb(var(--color-foreground-rgb) / 0.78);
  }

  .product-card-store-rating__stars {
    display: inline-flex;
    align-items: center;
    gap: 0;
    line-height: 0;
  }

  .product-card-store-rating__value {
    font-weight: 700;
    color: var(--color-foreground);
  }

  .product-card-store-rating__count {
    color: rgb(var(--color-foreground-rgb) / 0.65);
  }

  .product-card:has(.product-card-store-rating) .jdgm-preview-badge {
    display: none !important;
  }
/* END_SNIPPET:product-card-store-rating */

/* START_SNIPPET:product-card-value-line (INDEX:316) */
.product-card-value-line {
    margin: 0.1rem 0 0;
    font-size: 0.78rem;
    line-height: 1.3;
  }

  .product-card-value-line__save {
    font-weight: 700;
    color: #d23234;
  }
/* END_SNIPPET:product-card-value-line */

/* START_SNIPPET:product-card (INDEX:318) */
product-card-link,
  :not(product-card-link) product-card {
    display: block;
    width: 100%;
    min-width: 0;
  }

  product-card {
    overflow: hidden;
  }

  .product-card__placeholder-image svg {
    height: 100%;
  }

  @media screen and (max-width: 749px) {
    .product-card slideshow-arrows .slideshow-control {
      display: none;
    }
  }

  :is(.product-card):has(swatches-variant-picker-component) .quick-add .variant-option--swatches {
    display: none;
  }

  :is(.product-card:not([data-no-swatch-selected])):has(.quick-add__product-form-component--single-option):has(
      swatches-variant-picker-component
    )
    .quick-add__button--choose {
    display: none;
  }

  :is(.product-card[data-no-swatch-selected]):has(.quick-add__product-form-component--single-option):has(
      swatches-variant-picker-component
    )
    add-to-cart-component {
    display: none;
  }

  :is(.product-card):has(.quick-add__product-form-component--multi-variant):not(:has(swatches-variant-picker-component))
    .quick-add__button--add {
    display: none;
  }

  :is(.product-card):has(.quick-add__product-form-component--single-variant) .card-gallery:hover {
    & .quick-add__button--choose {
      display: none;
    }

    & .quick-add__button--add {
      display: grid;
    }
  }

  .product-card[data-no-swatch-selected] slideshow-component[data-generic-media-size='1'] slideshow-arrows {
    display: none;
  }

  .product-card[data-no-swatch-selected]
    slideshow-component[data-generic-media-size='1']
    slideshow-arrows:has(+ slideshow-slides slideshow-slide[variant-image]:not([hidden])) {
    display: flex;
  }

  .product-card .variant-option__swatch svg {
    display: none;
  }

  .product-card [data-available-count='0'] ~ svg {
    display: block;
  }
/* END_SNIPPET:product-card */

/* START_SNIPPET:product-grid (INDEX:319) */
.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 {
    padding: var(--grid--margin--mobile);

    @media screen and (min-width: 750px) {
      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;
  }

  .collection-wrapper--full-width .main-collection-grid__title {
    margin-left: var(--page-margin);
  }

  .collection-wrapper--full-width-on-mobile .main-collection-grid__title {
    @media screen and (max-width: 749px) {
      margin-left: var(--page-margin);
    }
  }

  .main-collection-grid__helper-label {
    margin: 0 0 var(--padding-sm);
    color: rgb(var(--color-foreground-rgb) / var(--opacity-subdued-text));
    font-size: var(--font-size--xs);
    line-height: 1.35;
    font-weight: 500;
  }

  .main-collection-grid__trust-row {
    margin: 0 0 var(--padding-md);
    color: rgb(var(--color-foreground-rgb) / var(--opacity-subdued-text));
    font-size: var(--font-size--xs);
    line-height: 1.4;
    font-weight: 500;
  }

  .main-collection-grid__low-results {
    margin: 0 0 var(--padding-md);
    padding: var(--padding-sm) var(--padding-md);
    border: 1px solid rgb(var(--color-border-rgb) / var(--opacity-25));
    border-radius: var(--style-border-radius-inputs);
    background: rgb(var(--color-background-rgb) / 0.8);
  }

  .main-collection-grid__low-results-title {
    margin: 0 0 var(--padding-3xs);
  }

  .main-collection-grid__low-results-text {
    margin: 0;
    color: rgb(var(--color-foreground-rgb) / var(--opacity-subdued-text));
    font-size: var(--font-size--xs);
    line-height: 1.4;
  }

  .main-collection-grid__low-results-text a {
    color: inherit;
    text-decoration: underline;
  }
/* END_SNIPPET:product-grid */

/* START_SNIPPET:product-media (INDEX:321) */
.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;
      }
    }
  }

  ::view-transition-old(gallery-item),
  ::view-transition-new(gallery-item) {
    animation-duration: 0ms;
  }
/* END_SNIPPET:product-media */

/* START_SNIPPET:product-promo-chip (INDEX:322) */
.hp-fc-bcc-chip {
    display: inline-block;
    margin: 0.1rem 0 0.4rem;
    font-size: 0.78rem;
    font-weight: 600;
    line-height: 1.35;
    color: var(--color-foreground, #1a1a1a);
    opacity: 0.9;
    letter-spacing: 0.02em;
    text-decoration: none;
  }

  .product-card .hp-fc-bcc-chip {
    position: relative;
    z-index: 2;
    pointer-events: auto;
  }

  .hp-fc-bcc-chip strong {
    color: #ad1457;
    font-weight: 800;
  }

  @media (hover: hover) {
    .hp-fc-bcc-chip:hover,
    .hp-fc-bcc-chip:focus-visible {
      opacity: 1;
      text-decoration: underline;
      text-decoration-color: #ad1457;
      text-underline-offset: 0.15em;
    }

    .hp-fc-bcc-chip:hover strong,
    .hp-fc-bcc-chip:focus-visible strong {
      color: #8e1046;
    }
  }
/* END_SNIPPET:product-promo-chip */

/* START_SNIPPET:quick-add-modal (INDEX:327) */
.quick-add-modal {
    padding: 0;
    border: var(--style-border-popover);
    height: fit-content;
    overflow: hidden;
    min-height: 500px;
    box-shadow: 0 5px 30px rgb(0 0 0 / var(--opacity-15));

    @media screen and (max-width: 750px) {
      position: fixed;
      display: block;
      margin: auto 0 0 0;
      min-height: unset;
      max-width: 100%;
      border-radius: 0;
    }
  }

  .quick-add-modal[open] {
    @media screen and (min-width: 750px) {
      display: flex;
    }
  }

  .quick-add-modal .view-more-details__wrapper {
    @media screen and (max-width: 750px) {
      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);
  }

  .quick-add-modal__close:active {
    transform: scale(0.8);
  }

  .quick-add-modal__content {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    grid-template-rows: 100% 1fr;
    position: relative;
    max-width: var(--wide-content-width);
    overflow-y: auto;
    max-height: 100vh;

    @media screen and (max-width: 750px) {
      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: 750px) {
      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: 750px) {
      grid-column: 1 / -1;
    }
  }

  .quick-add-modal__content .variant-picker__form {
    display: block;
  }

  .quick-add-modal__content .variant-option + .variant-option {
    margin-top: var(--padding-lg);
  }

  .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;
    height: 100%;
    min-height: 0;

    dialog[open] & {
      animation: fadeSlideIn 0.3s var(--animation-timing-fade-in) both;
      animation-delay: 0.1s;
    }

    @media screen and (max-width: 750px) {
      grid-column: 2 / span 2;
      grid-row: span 1;
      overflow-y: auto;
      max-height: 100%;
      height: 100%;
    }
  }

  .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 .variant-picker {
    --product-swatches-padding-block-end: 0px;

    flex: 1 1 auto;
    overflow-y: auto;
    min-height: 0;
    padding-block-end: calc(
      var(--product-swatches-padding-block-end) + 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;
    /* Prevent overlap between title and close button */
    padding-inline: 0 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 .view-product-title {
    display: flex;
  }

  .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: min(var(--gap-2xl), var(--gap));
    }

    .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 .media-gallery--grid .product-media-container:first-child {
      border-top-right-radius: var(--style-border-radius-popover, 0);
    }

    .quick-add-modal__content .media-gallery--grid .product-media-container:last-child {
      border-bottom-right-radius: var(--style-border-radius-popover, 0);
    }
  }

  .quick-add-modal__content .product-details > .group-block {
    padding: var(--padding-2xl);
    max-height: 100%;
  }

  .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;
      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: 750px) {
      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 slideshow-controls {
    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 */

/* START_SNIPPET:quick-add (INDEX:328) */
/* Quick Add */
  .quick-add {
    --quick-add-offset: var(--padding-sm);
    --quick-add-top: calc(var(--quick-add-offset) + var(--padding-block-start));
    --quick-add-right: calc(var(--quick-add-offset) + var(--padding-inline-end));
    --quick-add-bottom: calc(var(--quick-add-offset) + var(--padding-block-end));
    --quick-add-left: calc(var(--quick-add-offset) + var(--padding-inline-end));

    position: absolute;
    display: var(--quick-add-mobile-display, none);
    flex-direction: column;
    justify-content: flex-end;
    inset: max(var(--quick-add-top), calc((var(--border-radius) + var(--quick-add-top)) * (1 - cos(45deg))))
      max(var(--quick-add-right), calc((var(--border-radius) + var(--quick-add-right)) * (1 - cos(45deg))))
      max(var(--quick-add-bottom), calc((var(--border-radius) + var(--quick-add-bottom)) * (1 - cos(45deg))))
      max(var(--quick-add-left), calc((var(--border-radius) + var(--quick-add-left)) * (1 - cos(45deg))));
    width: auto;
    height: auto;
    z-index: var(--layer-raised);
    cursor: default;
    pointer-events: none;

    @media screen and (min-width: 750px) {
      --quick-add-offset: var(--padding-md);

      display: var(--quick-add-display, flex);
    }
  }

  .quick-add .variant-option__button-label input[data-option-available='false'] {
    cursor: not-allowed;
  }

  .quick-add[class*='color-scheme-'] {
    background-color: transparent;
  }

  .quick-add__button {
    display: grid;
    padding: var(--padding-xs);
    align-items: center;
    background-color: var(--color-background);
    color: var(--color-foreground);
    border-color: transparent;
    box-shadow: var(--shadow-popover);
    pointer-events: all;
    position: relative;
    overflow: hidden;
    border-radius: 100px;

    @media screen and (min-width: 750px) {
      display: none;
      padding: var(--padding-xs) var(--padding-sm);
    }

    .quick-add[stay-visible] & {
      display: grid;
    }
  }

  .quick-add__button .add-to-cart-text {
    gap: 0;
    line-height: 1;
    grid-row: 1 / span 1;
    grid-column: 1 / span 1;
    animation: none;

    @media screen and (min-width: 750px) {
      /* offset button padding to show a round button in a collapsed state */
      margin-inline: calc(var(--padding-sm) * -1);
      padding-inline: var(--padding-xs);
    }
  }

  .quick-add__button .add-to-cart-text--added {
    position: relative;
    grid-row: 1 / span 1;
    grid-column: 1 / span 1;
    justify-self: end;
    line-height: 1;

    @media screen and (min-width: 750px) {
      width: 0;
    }
  }

  .quick-add__button .add-to-cart-text__content {
    width: 0;
    opacity: 0;
    transform: translateX(1em);
    transition: width var(--animation-speed) ease-in-out, opacity var(--animation-speed) ease-in-out,
      transform var(--animation-speed) ease-in-out;
    interpolate-size: allow-keywords;
    will-change: width, opacity, transform;
  }

  @container (min-width: 99px) {
    .quick-add[stay-visible] .add-to-cart-text,
    .quick-add__button:is(:focus, :hover) .add-to-cart-text {
      gap: var(--gap-2xs);

      @media screen and (min-width: 750px) {
        /* offset button padding to show a round button in a collapsed state */
        margin-inline: 0;
        padding-inline: 0;
      }
    }

    .quick-add[stay-visible] .add-to-cart-text__content,
    .quick-add__button:is(:focus, :hover) .add-to-cart-text__content {
      width: fit-content;
      opacity: 1;
      transform: translateX(0);
    }
  }

  .quick-add__button.atc-added .add-to-cart-text {
    opacity: 0;
  }

  .quick-add__button.atc-added .add-to-cart-text--added {
    opacity: 1;
    width: auto;

    @supports (width: calc-size(auto, size)) {
      width: calc-size(auto, size);
    }
  }

  .quick-add__button.atc-added .add-to-cart-text {
    animation-name: atc-fade-out;
  }

  .quick-add__button.atc-added .add-to-cart-text--added {
    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;
  }

  @keyframes atc-fade-in {
    from {
      opacity: 0;
      transform: translateX(1em);
      position: absolute;
    }

    to {
      opacity: 1;
      transform: translateX(0);
      position: inherit;
    }
  }

  @keyframes atc-fade-out {
    from {
      opacity: 1;
      transform: translateX(0);
      position: inherit;
    }

    to {
      opacity: 0;
      transform: translateX(-1em);
      position: absolute;
    }
  }
/* END_SNIPPET:quick-add */

/* START_SNIPPET:resource-card (INDEX:335) */
.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;
    }
  }

  .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;
  }

  .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:336) */
.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-block__image {
    object-fit: cover;
    width: 100%;
    height: 100%;
  }

  .resource-image--placeholder {
    width: 100%;
    height: 100%;
  }
/* END_SNIPPET:resource-image */

/* START_SNIPPET:resource-list-carousel (INDEX:337) */
.resource-list__carousel {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  @media screen and (max-width: 749px) {
    .resource-list__carousel {
      overflow-x: hidden;
    }
  }
/* END_SNIPPET:resource-list-carousel */

/* START_SNIPPET:search-modal (INDEX:340) */
/* Search modal style */
  .search-modal {
    --search-border-radius: var(--style-border-radius-popover);
    --search-border-width: var(--style-border-width);
  }

  .search-modal__button {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .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);
    }
  }
/* END_SNIPPET:search-modal */

/* START_SNIPPET:search (INDEX:341) */
.search-action {
    --search-border-radius: var(--style-border-radius-inputs);
    --search-border-width: var(--style-border-width-inputs);

    display: flex;
  }

  .header__column--center .search-action {
    width: auto;
    flex-grow: 1;
  }

  :is(.header__column--left, .header__column--center) .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);
    }
  }
/* END_SNIPPET:search */

/* START_SNIPPET:section (INDEX:342) */
.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:sorting (INDEX:360) */
.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: flex;
    right: 0;
    flex-direction: column;
    gap: var(--margin-3xs);
    padding: calc(var(--drawer-padding) / 2);
    color: var(--color-foreground);
    overflow-y: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;

    &::-webkit-scrollbar {
      display: none;
    }
  }

  .sorting-filter__option {
    cursor: pointer;
    display: grid;
    grid-template-columns: var(--icon-size-sm) 1fr;
    align-items: center;
    gap: var(--margin-2xs);
    min-width: 180px;
    min-height: var(--minimum-touch-target);
    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-mobile-wrapper .sorting-filter__options {
    border-radius: var(--style-border-radius-popover);
    position: absolute;
    top: 0;
    right: 0;
    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;
    padding: var(--padding-sm);
    gap: var(--gap-sm);
  }

  .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;
    }
  }

  .sorting-filter__options {
    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);
  }

  details[open] .sorting-filter__options {
    opacity: 1;
    block-size: auto;

    @starting-style {
      block-size: 0;
      opacity: 0;
      overflow-y: clip;
    }

    &:focus-within {
      overflow-y: visible;
    }
  }
/* END_SNIPPET:sorting */

/* START_SNIPPET:store-rating-trust-line (INDEX:364) */
.store-rating-trust-line {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px 6px;
    margin: 0;
    font-size: 0.8rem;
    line-height: 1.25;
  }

  .store-rating-trust-line--centered {
    justify-content: center;
    width: 100%;
  }

  .store-rating-trust-line--default {
    color: rgb(var(--color-foreground-rgb) / 0.78);
  }

  .store-rating-trust-line--default .store-rating-trust-line__value {
    font-weight: 700;
    color: var(--color-foreground);
  }

  .store-rating-trust-line--default .store-rating-trust-line__count {
    color: rgb(var(--color-foreground-rgb) / 0.65);
  }

  .store-rating-trust-line--on-brand,
  .store-rating-trust-line--on-brand .store-rating-trust-line__value,
  .store-rating-trust-line--on-brand .store-rating-trust-line__count {
    color: #fff;
  }

  .store-rating-trust-line--on-brand .store-rating-trust-line__value {
    font-weight: 700;
  }

  .store-rating-trust-line--on-brand .store-rating-trust-line__count {
    opacity: 0.92;
  }

  .store-rating-trust-line__stars {
    display: inline-flex;
    align-items: center;
    gap: 0;
    line-height: 0;
  }
/* END_SNIPPET:store-rating-trust-line */

/* START_SNIPPET:text (INDEX:370) */
: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-width: 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:381) */
.variant-picker {
    width: 100%;
  }

  .variant-picker__form {
    display: flex;
    flex-direction: column;
    gap: var(--padding-lg);
    width: 100%;
  }

  .variant-picker[data-shopify-visual-preview] {
    min-width: 300px;
    padding-inline-start: max(4px, var(--padding-inline-start));
  }

  .variant-option {
    --options-border-radius: var(--variant-picker-button-radius);
    --options-border-width: var(--variant-picker-button-border-width);
    --variant-option-padding-inline: var(--padding-md);
  }

  .variant-option--swatches {
    --options-border-radius: var(--variant-picker-swatch-radius);

    width: 100%;
  }

  .variant-option--swatches-disabled {
    pointer-events: none;
    cursor: not-allowed;
  }

  .variant-option--swatches > overflow-list {
    justify-content: var(--product-swatches-alignment);

    @media (max-width: 749px) {
      justify-content: var(--product-swatches-alignment-mobile);
    }
  }

  .variant-option--buttons {
    display: flex;
    flex-wrap: wrap;
    gap: var(--gap-sm);
    margin: 0;
    padding: 0;
    border: none;
  }

  .variant-option--buttons legend {
    padding: 0;
    margin-block-end: var(--margin-xs);
  }

  .variant-option__swatch-value {
    padding-inline-start: var(--padding-xs);
    color: rgb(var(--color-foreground-rgb) / var(--opacity-70));
  }

  @media (prefers-reduced-motion: no-preference) {
    .variant-option__button-label,
    .variant-option__select-wrapper,
    .variant-option__button-label::before,
    .variant-option__button-label::after,
    .variant-option__button-label:has([data-previous-checked='true'], [data-current-checked='true'])
      .variant-option__button-label__pill,
    .variant-option__button-label:not(.variant-option__button-label--has-swatch) svg line:last-of-type {
      transition-duration: var(--animation-speed);
      transition-timing-function: var(--animation-easing);
    }
    .variant-option__button-label__pill {
      transition-property: transform;
    }
    .variant-option__button-label:not(.variant-option__button-label--has-swatch) svg line:last-of-type {
      transition-property: clip-path;
    }
    .variant-option__button-label:has([data-previous-checked='true'], [data-current-checked='true'])
      .variant-option__button-label__pill {
      transition-property: transform;
    }
    .variant-option__button-label::after {
      transition-property: clip-path;
    }
    .variant-option__button-label::before {
      transition-property: border-color;
    }
    .variant-option__select-wrapper,
    .variant-option__button-label {
      transition-property: background-color, border-color, color;
    }
  }

  .variant-option__button-label {
    --variant-picker-stroke-color: var(--color-variant-border);
    cursor: pointer;
    display: flex;
    flex: 0 0 calc(3ch + 1.3em);
    align-items: center;
    position: relative;
    padding-block: var(--padding-sm);
    padding-inline: var(--padding-lg);
    border: var(--options-border-width) solid var(--color-variant-border);
    border-radius: var(--options-border-radius);
    overflow: clip;
    justify-content: center;
    min-height: calc(3ch + 1.3em);
    min-width: fit-content;
    white-space: nowrap;
    background-color: var(--color-variant-background);
    color: var(--color-variant-text);

    &:hover,
    &:hover:has([aria-disabled='true']):has([data-option-available='false']) {
      background-color: var(--color-variant-hover-background);
      border-color: var(--color-variant-hover-border);
      color: var(--color-variant-hover-text);
    }

    /* we need something like overflow-clip-margin to use the pseudoelement but it doesn't work in Safari */
    /* so instead use the layered background image trick */
    &:not(.variant-option__button-label--has-swatch):has([data-option-available='false']) {
      border-width: 0;
    }
    /* ::after/::before act as a fake border for the button style variant */
    /* ::after is the unavailable variant border that clips in */
    &:not(.variant-option__button-label--has-swatch)::before,
    &:has([data-option-available='false']):not(.variant-option__button-label--has-swatch)::after {
      content: '';
      position: absolute;
      inset: 0;
      border: var(--options-border-width) solid var(--color-selected-variant-border);
      border-radius: inherit;
      pointer-events: none;
      z-index: 2;
      /* stylelint-disable-next-line plugin/no-unsupported-browser-features */
      clip-path: inset(var(--clip, 0 0 0 0));
    }
    &:has([data-option-available='false']):not(.variant-option__button-label--has-swatch)::before {
      inset: 0;
    }
    &:not(.variant-option__button-label--has-swatch)::before {
      /* stylelint-disable-next-line plugin/no-unsupported-browser-features */
      clip-path: inset(0 0 0 0);
      border-color: var(--color-variant-border);
      inset: calc(var(--options-border-width) * -1);
    }
    &:has(:checked):not(.variant-option__button-label--has-swatch):not(:has([data-option-available='false']))::before {
      border-color: var(--color-selected-variant-border);
    }

    /* setting left/right accounts for variant buttons of different widths */
    &:not(:has(:checked)):has(~ label > :checked),
    &:has(:checked):has(~ label > [data-previous-checked='true']) {
      .variant-option__button-label__pill {
        right: 0;
        left: unset;
      }
    }

    &:has([data-previous-checked='true']) ~ label:has([data-current-checked='true']),
    &:has(:checked) ~ label {
      .variant-option__button-label__pill {
        left: 0;
        right: unset;
      }
    }

    &:not(:has(:checked)):has(~ label > :checked) {
      --pill-offset: calc(100% + 1px);
    }

    &:has(:checked) ~ label {
      --pill-offset: calc(-100% - 1px);
    }

    &:has([data-current-checked='true']):first-of-type
      ~ label:last-of-type:not(.variant-option__button-label--has-swatch),
    &:not(:has(:checked)):has(~ label > :checked):not(.variant-option__button-label--has-swatch) {
      --clip: 0 0 0 100%;
    }

    &:not(:has([data-current-checked='true'])):first-of-type:has(~ label:last-of-type > :checked):not(
        .variant-option__button-label--has-swatch
      ),
    &:has(:checked) ~ label:not(.variant-option__button-label--has-swatch) {
      --clip: 0 100% 0 0;
    }

    &:has([data-previous-checked='true'], [data-current-checked='true']) .variant-option__button-label__pill {
      width: max(var(--pill-width-current, 100%), var(--pill-width-previous, 100%));
    }
    @media screen and (min-width: 750px) {
      padding: var(--padding-xs) var(--variant-option-padding-inline);
    }
  }

  /* wrap around only for 3 or more variants in a row */
  /* the more complex selector rules here produce the wrap around effect for first/last variants */
  .variant-option--buttons:has(:nth-of-type(3)) {
    .variant-option__button-label:has([data-current-checked='true']):first-of-type ~ label:last-of-type {
      --pill-offset: calc(100% + 1px);
    }
    .variant-option__button-label:not(:has([data-current-checked='true'])):first-of-type:has(
        ~ label:last-of-type > :checked
      ) {
      --pill-offset: calc(-100% - 1px);
    }
  }

  .variant-option__button-label__pill {
    background: var(--color-selected-variant-background);
    position: absolute;
    top: calc(var(--options-border-width) * -1);
    bottom: calc(var(--options-border-width) * -1);
    border-radius: inherit;
    pointer-events: none;
    width: 100%;
    transform: translateX(var(--pill-offset, 0));
  }

  .variant-option__button-label__text {
    pointer-events: none;
    text-align: start;
    text-wrap: auto;
    z-index: 2;
  }

  .variant-option--equal-width-buttons {
    --variant-min-width: clamp(44px, calc(var(--variant-option-padding-inline) * 2 + var(--variant-ch)), 100%);

    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(var(--variant-min-width), 1fr));

    .variant-option__button-label {
      min-width: var(--variant-min-width);
    }

    .variant-option__button-label__text {
      text-align: center;
      text-wrap: balance;
    }
  }

  .variant-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);
  }

  .variant-option__button-label--has-swatch {
    --focus-outline-radius: var(--variant-picker-swatch-radius);

    padding: 0;
    border: none;
    display: block;
    flex-basis: auto;
    min-height: auto;
  }

  .variant-option__button-label:has(:checked) {
    color: var(--color-selected-variant-text);
    border-color: var(--color-selected-variant-border);
  }

  .variant-option__button-label:has(:checked):hover {
    border-color: var(--color-selected-variant-hover-border);
    color: var(--color-selected-variant-hover-text);

    .variant-option__button-label__pill {
      background-color: var(--color-selected-variant-hover-background);
    }
  }

  .variant-option__button-label:has([data-option-available='false']) {
    color: rgb(var(--color-variant-text-rgb) / var(--opacity-60));
  }

  .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;
  }

  .variant-option__button-label--has-swatch:hover {
    outline: var(--focus-outline-width) solid rgb(var(--color-foreground-rgb) / var(--opacity-35-55));
    outline-offset: var(--focus-outline-offset);
  }

  .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);
  }

  .variant-option__button-label--has-swatch:has(:checked) {
    --focus-outline: var(--focus-outline-width) solid var(--color-foreground);

    outline: var(--focus-outline);
    outline-offset: var(--focus-outline-offset);
  }

  /* This triggers iOS < 16.4. The outline bug is not recognized as a lack of @supports */
  @supports not (background-color: rgb(from red 150 g b / alpha)) {
    /** There is a bug in safari < 16.4 that causes the outline to not follow the elements border radius. This is a workaround. **/
    .variant-option__button-label--has-swatch:has(:checked),
    .variant-option__button-label:has(:focus-visible) .swatch,
    .facets__inputs-list--swatches-grid .variant-option__button-label--has-swatch:hover .swatch {
      outline: none;
      position: relative;
      overflow: visible;
    }

    .variant-option__button-label--has-swatch:has(:checked)::after,
    .variant-option__button-label:has(:focus-visible) .swatch::after,
    .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;
    }
  }

  .variant-option__button-label:has([data-option-available='false']):has(:checked) {
    background-color: inherit;
    color: rgb(var(--color-variant-text-rgb) / var(--opacity-60));
  }

  .variant-option__button-label input,
  .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;
    cursor: pointer;
    width: 100%;
    height: 100%;
  }

  .variant-option__button-label svg {
    position: absolute;
    left: var(--options-border-width);
    top: var(--options-border-width);
    height: calc(100% - (var(--options-border-width) * 2));
    width: calc(100% - (var(--options-border-width) * 2));
    cursor: pointer;
    pointer-events: none;
    stroke-width: var(--style-border-width);
    stroke: var(--variant-picker-stroke-color);
  }

  .variant-option__button-label:not(.variant-option__button-label--has-swatch) svg {
    stroke: var(--color-variant-border);

    line {
      stroke-width: var(--options-border-width);
    }

    line:last-of-type {
      /* stylelint-disable-next-line plugin/no-unsupported-browser-features */
      clip-path: inset(var(--clip, 0 0 0 0));
      stroke: rgb(var(--color-variant-text-rgb) / 1);
    }
  }

  .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--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:video (INDEX:384) */
.video-interaction-hint {
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: var(--layer-flat);
  }

  .video-interaction-hint:hover {
    opacity: 1;
  }
/* END_SNIPPET:video */