/** Shopify CDN: Minification failed

Line 12284:0 Unexpected "{"
Line 12284:1 Expected identifier but found "%"
Line 12284:16 Unexpected "minmax("
Line 12285:80 Unterminated string token
Line 12288:33 Expected identifier but found "%"

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* START_SECTION:eg-404 (INDEX:6) */
/* ----------------------------------------------------------------------
     Ergovanta 404. Tokens only. Navy #273755 (heading + primary CTA),
     charcoal #1A1A1A (body), off-white #F5F5F5, white, hairline #E5E5E5,
     muted #6B6B6B. Cormorant via var(--font-heading--family); Inter body.
     Centered, narrow column, generous whitespace, 4px radii, fades only.
     ---------------------------------------------------------------------- */
  .eg-404 {

    padding-block: var(--eg-404-padding-block-start, 96px) var(--eg-404-padding-block-end, 96px);
  }

  .eg-404__inner {
    width: 100%;
    max-width: 560px;
    margin-inline: auto;
    padding-inline: var(--page-margin, 20px);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
  }

  .eg-404__eyebrow {
    margin: 0;
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--eg-muted);
  }

  .eg-404__title {
    margin: 0;
    font-family: var(--font-heading--family);
    font-weight: 600;
    color: var(--eg-navy);
    font-size: clamp(2.5rem, 5vw, 3.75rem);
    line-height: 1.06;
    letter-spacing: 0.005em;
  }

  .eg-404__body {
    margin: 0;
    max-width: 460px;
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 17px;
    line-height: 1.6;
    color: var(--eg-charcoal);
  }

  /* Search: hairline field + navy submit, fade only. */
  .eg-404__search {
    display: flex;
    width: 100%;
    max-width: 420px;
    margin-block-start: 8px;
    border: 1px solid var(--eg-hairline);
    border-radius: 4px;
    background-color: #ffffff;
    overflow: hidden;
    transition: border-color var(--eg-fade) ease;
  }

  .eg-404__search:focus-within {
    border-color: var(--eg-navy);
  }

  .eg-404__search-label {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  .eg-404__search-input {
    flex: 1 1 auto;
    min-width: 0;
    border: 0;
    outline: none;
    background: transparent;
    padding: 12px 14px;
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 15px;
    line-height: 1.4;
    color: var(--eg-charcoal);
  }

  .eg-404__search-input::placeholder {
    color: var(--eg-muted);
  }

  .eg-404__search-submit {
    flex: 0 0 auto;
    border: 0;
    cursor: pointer;
    background-color: var(--eg-navy);
    color: #ffffff;
    padding-inline: 18px;
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.01em;
    transition: background-color var(--eg-fade) ease;
  }

  .eg-404__search-submit:hover,
  .eg-404__search-submit:focus-visible {
    background-color: #1f2d46;
  }

  /* Actions: one primary navy CTA + one quiet text link. */
  .eg-404__actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    margin-block-start: 8px;
  }

  .eg-404__btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding-inline: 32px;
    border-radius: 4px;
    background-color: var(--eg-navy);
    color: #ffffff;
    text-decoration: none;
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.01em;
    transition: background-color var(--eg-fade) ease;
  }

  .eg-404__btn-primary:hover,
  .eg-404__btn-primary:focus-visible {
    background-color: #1f2d46;
    color: #ffffff;
  }

  .eg-404__link {
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 14px;
    color: var(--eg-muted);
    text-decoration: none;
    transition: color var(--eg-fade) ease;
  }

  .eg-404__link:hover,
  .eg-404__link:focus-visible {
    color: var(--eg-navy);
  }

  /* Category links: quiet hairline-separated row. */
  .eg-404__categories {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px 18px;
    margin-block-start: 20px;
    padding-block-start: 20px;
    border-block-start: 1px solid var(--eg-hairline);
    width: 100%;
    max-width: 420px;
  }

  .eg-404__category {
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 13px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--eg-muted);
    text-decoration: none;
    transition: color var(--eg-fade) ease;
  }

  .eg-404__category:hover,
  .eg-404__category:focus-visible {
    color: var(--eg-navy);
  }

  @media screen and (max-width: 749px) {
    .eg-404 {
      padding-block: 64px 64px;
    }
    .eg-404__body { font-size: 16px; }
  }
/* END_SECTION:eg-404 */

/* START_SECTION:eg-about-cta (INDEX:7) */
.eg-cta {

    background-color: var(--eg-offwhite);
    padding-block: var(--eg-cta-pad-start, 88px) var(--eg-cta-pad-end, 88px);
  }
  .eg-cta__inner {
    width: 100%;
    max-width: 680px;
    margin-inline: auto;
    padding-inline: var(--page-margin, 20px);
    box-sizing: border-box;
    text-align: center;
  }
  .eg-cta__eyebrow {
    margin: 0 0 14px;
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--eg-muted, #6b6b6b);
  }
  .eg-cta__heading {
    margin: 0 0 24px;
    font-family: var(--font-heading--family);
    font-weight: 600;
    font-size: clamp(2rem, 4vw, 2.5rem);
    line-height: 1.12;
    letter-spacing: 0.012em;
    color: var(--eg-navy);
    text-wrap: balance;
  }
  .eg-cta__body {
    margin: 0;
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 20px;
    line-height: 1.55;
    color: var(--eg-charcoal);
    text-wrap: pretty;
  }
  .eg-cta__actions {
    margin-top: 32px;
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
  }
  .eg-cta__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding-inline: 28px;
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.01em;
    border-radius: 4px;
    text-decoration: none;
    transition: background-color 200ms ease, border-color 200ms ease, opacity 200ms ease;
  }
  .eg-cta__btn--primary {
    color: var(--eg-white);
    background-color: var(--eg-navy);
    border: 1px solid var(--eg-navy);
  }
  .eg-cta__btn--primary:hover,
  .eg-cta__btn--primary:focus-visible {
    background-color: var(--eg-navy-hover);
    border-color: var(--eg-navy-hover);
  }
  .eg-cta__btn--ghost {
    color: var(--eg-navy);
    background-color: transparent;
    border: 1px solid var(--eg-navy);
  }
  .eg-cta__btn--ghost:hover,
  .eg-cta__btn--ghost:focus-visible {
    background-color: rgba(39, 55, 85, 0.06);
  }

  @media screen and (max-width: 749px) {
    .eg-cta__body { font-size: 18px; }
    .eg-cta__btn { width: 100%; }
  }
  @media (prefers-reduced-motion: reduce) {
    .eg-cta__btn { transition: none; }
  }
/* END_SECTION:eg-about-cta */

/* START_SECTION:eg-about (INDEX:8) */
.eg-about {
  }

  .eg-about__hero-inner,
  .eg-about__etym-inner,
  .eg-about__note-inner,
  .eg-about__beliefs-inner {
    width: 100%;
    max-width: 1120px;
    margin-inline: auto;
    padding-inline: var(--page-margin, 20px);
    box-sizing: border-box;
  }

  .eg-about__eyebrow {
    margin: 0 0 18px;
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--eg-muted);
  }
  .eg-about__eyebrow--invert { color: rgba(255, 255, 255, 0.7); }

  /* 1. Opening (why-first) */
  .eg-about__hero {
    background-color: var(--eg-offwhite);
    padding-block: var(--eg-about-pad-start, 104px) 80px;
  }
  .eg-about__hero-heading {
    margin: 0;
    font-family: var(--font-heading--family);
    font-weight: 600;
    font-size: clamp(2.5rem, 5.5vw, 4rem);
    line-height: 1.06;
    letter-spacing: 0.012em;
    color: var(--eg-navy);
    text-wrap: balance;
    max-width: 20ch;
  }
  .eg-about__hero-lead {
    margin: 24px 0 0;
    max-width: 46rem;
  }
  .eg-about__hero-lead p {
    margin: 0 0 1em;
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 20px;
    line-height: 1.55;
    color: var(--eg-charcoal);
    text-wrap: pretty;
  }
  .eg-about__hero-lead p:last-child { margin-bottom: 0; }
  .eg-about__hero-thesis {
    margin: 28px 0 0;
    padding-top: 24px;
    border-top: 1px solid var(--eg-hairline);
    max-width: 40rem;
    font-family: var(--font-heading--family);
    font-weight: 600;
    font-size: clamp(1.5rem, 3vw, 2.125rem);
    line-height: 1.18;
    letter-spacing: 0.012em;
    color: var(--eg-navy);
    text-wrap: balance;
  }

  /* 2. Founder story (navy band) */
  .eg-about__note {
    background-color: var(--eg-navy);
    color: var(--eg-white);
    padding-block: 104px;
  }
  .eg-about__note-inner { max-width: 920px; }
  .eg-about__note-heading {
    margin: 18px 0 36px;
    font-family: var(--font-heading--family);
    font-weight: 600;
    font-size: clamp(2rem, 4vw, 2.75rem);
    line-height: 1.12;
    letter-spacing: 0.012em;
    color: var(--eg-white);
    text-wrap: balance;
  }
  .eg-about__note-body {
    max-width: 720px;
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 18px;
    line-height: 1.72;
    color: rgba(255, 255, 255, 0.86);
    text-wrap: pretty;
  }
  .eg-about__note-body p { margin: 0 0 1.25em; }
  .eg-about__note-body p:last-child { margin-bottom: 0; }
  .eg-about__pullquote {
    margin: 0.5em 0 0.9em;
    padding: 0;
    border: 0;
    max-width: 20ch;
    font-family: var(--font-heading--family);
    font-weight: 600;
    font-size: clamp(1.875rem, 3.4vw, 2.625rem);
    line-height: 1.16;
    letter-spacing: 0.012em;
    color: var(--eg-white);
    text-wrap: balance;
  }
  .eg-about__note-signoff {
    margin: 36px 0 0;
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.86);
  }

  /* 3. Etymology */
  .eg-about__etym {
    background-color: var(--eg-white);
    padding-block: 80px;
  }
  .eg-about__etym-inner {
    display: block;
  }
  .eg-about__etym-col {
    max-width: 760px;
  }
  .eg-about__lockup {
    font-family: var(--font-heading--family);
    font-weight: 600;
    font-size: clamp(3.5rem, 7vw, 6rem);
    line-height: 1;
    letter-spacing: 0.01em;
    color: var(--eg-navy);
    margin: 14px 0 24px;
  }
  .eg-about__lockup-b { color: var(--eg-muted); font-weight: 600; }
  .eg-about__etym-body {
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: var(--eg-charcoal);
    text-wrap: pretty;
  }
  .eg-about__etym-body p { margin: 0 0 1em; }
  .eg-about__etym-body p:last-child { margin-bottom: 0; }
  .eg-about__etym-body strong { color: var(--eg-navy); font-weight: 600; }
  .eg-about__etym-line {
    margin: 28px 0 0;
    font-family: var(--font-heading--family);
    font-weight: 600;
    font-size: clamp(1.5rem, 3vw, 2rem);
    line-height: 1.2;
    letter-spacing: 0.012em;
    color: var(--eg-navy);
    text-wrap: balance;
  }

  /* 4. What we stand for */
  .eg-about__beliefs {
    background-color: var(--eg-offwhite);
    padding-block: 88px;
  }
  .eg-about__beliefs-heading {
    margin: 8px 0 36px;
    font-family: var(--font-heading--family);
    font-weight: 600;
    font-size: clamp(2rem, 4vw, 2.5rem);
    line-height: 1.12;
    letter-spacing: 0.012em;
    color: var(--eg-navy);
    text-wrap: balance;
  }
  .eg-about__cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .eg-about__card {
    background-color: var(--eg-white);
    border: 1px solid var(--eg-hairline);
    border-radius: 4px;
    padding: 32px;
  }
  .eg-about__card-n {
    margin-bottom: 14px;
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.16em;
    color: var(--eg-navy);
  }
  .eg-about__card-t {
    margin: 0 0 10px;
    font-family: var(--font-heading--family);
    font-weight: 600;
    font-size: 1.375rem;
    line-height: 1.22;
    color: var(--eg-navy);
    text-wrap: balance;
  }
  .eg-about__card-d {
    margin: 0;
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 14.5px;
    line-height: 1.55;
    color: var(--eg-muted);
  }

  @media screen and (max-width: 990px) {
    .eg-about__cards { grid-template-columns: 1fr; gap: 16px; }
  }
  @media screen and (max-width: 749px) {
    .eg-about__hero-lead p { font-size: 18px; }
    .eg-about__note { padding-block: 80px; }
    .eg-about__note-body { font-size: 17px; }
  }
/* END_SECTION:eg-about */

/* START_SECTION:eg-article (INDEX:9) */
.eg-article {

    padding-block: var(--eg-article-pad-start, 40px) var(--eg-article-pad-end, 80px);
  }

  .eg-article__inner {
    width: 100%;
    max-width: var(--eg-read-width);
    margin-inline: auto;
    padding-inline: var(--page-margin, 20px);
  }

  /* Breadcrumb ------------------------------------------------------------ */
  .eg-article__breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 12px;
    line-height: 1.4;
    color: var(--eg-muted);
    margin-block-end: 24px;
  }

  .eg-article__crumb-link {
    color: var(--eg-muted);
    text-decoration: none;
    transition: color var(--eg-fade) ease;
  }

  .eg-article__crumb-link:hover,
  .eg-article__crumb-link:focus-visible {
    color: var(--eg-navy);
  }

  .eg-article__crumb-sep {
    color: var(--eg-hairline);
  }

  .eg-article__crumb-current {
    color: var(--eg-charcoal);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 60%;
  }

  /* Header ---------------------------------------------------------------- */
  .eg-article__header {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-block-end: 32px;
  }

  .eg-article__eyebrow {
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--eg-muted);
  }

  .eg-article__title {
    margin: 0;
    font-family: var(--font-heading--family);
    font-weight: 600;
    color: var(--eg-navy);
    font-size: clamp(2.25rem, 4.5vw, 3.5rem);
    line-height: 1.08;
    letter-spacing: 0.005em;
  }

  .eg-article__meta {
    margin: 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.4;
    color: var(--eg-muted);
    font-variant-numeric: tabular-nums;
  }

  .eg-article__meta-sep {
    color: var(--eg-hairline);
  }

  /* Featured image -------------------------------------------------------- */
  .eg-article__figure {
    margin: 0 0 40px;
  }

  .eg-article__image {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 4px;
    border: 1px solid var(--eg-hairline);
  }

  /* Reading column -------------------------------------------------------- */
  .eg-article__body {
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 18px;
    line-height: 1.75;
    color: var(--eg-charcoal);
  }

  .eg-article__body > :first-child {
    margin-block-start: 0;
  }

  .eg-article__body p {
    margin-block: 0 1.4em;
  }

  .eg-article__body h2 {
    font-family: var(--font-heading--family);
    font-weight: 600;
    color: var(--eg-navy);
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    line-height: 1.15;
    margin-block: 1.8em 0.5em;
  }

  .eg-article__body h3 {
    font-family: var(--font-heading--family);
    font-weight: 600;
    color: var(--eg-navy);
    font-size: clamp(1.4rem, 2.2vw, 1.6rem);
    line-height: 1.2;
    margin-block: 1.6em 0.4em;
  }

  .eg-article__body h4,
  .eg-article__body h5,
  .eg-article__body h6 {
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-weight: 600;
    color: var(--eg-navy);
    margin-block: 1.5em 0.4em;
    letter-spacing: 0.01em;
  }

  .eg-article__body a {
    color: var(--eg-navy);
    text-decoration: underline;
    text-underline-offset: 2px;
    text-decoration-thickness: 1px;
    transition: opacity var(--eg-fade) ease;
  }

  .eg-article__body a:hover {
    opacity: 0.7;
  }

  .eg-article__body ul,
  .eg-article__body ol {
    margin-block: 0 1.4em;
    padding-inline-start: 1.4em;
  }

  .eg-article__body li {
    margin-block-end: 0.5em;
  }

  .eg-article__body li::marker {
    color: var(--eg-muted);
  }

  .eg-article__body blockquote {
    margin: 1.8em 0;
    padding: 4px 0 4px 24px;
    border-inline-start: 2px solid var(--eg-navy);
    font-family: var(--font-heading--family);
    font-size: clamp(1.4rem, 2.4vw, 1.75rem);
    line-height: 1.35;
    color: var(--eg-navy);
    font-style: normal;
  }

  .eg-article__body blockquote p {
    margin-block-end: 0;
  }

  .eg-article__body img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 4px;
    border: 1px solid var(--eg-hairline);
    margin-block: 1.8em;
  }

  .eg-article__body figure {
    margin: 1.8em 0;
  }

  .eg-article__body figcaption {
    margin-block-start: 8px;
    font-size: 13px;
    color: var(--eg-muted);
    text-align: center;
  }

  .eg-article__body hr {
    border: none;
    border-top: 1px solid var(--eg-hairline);
    margin-block: 2.4em;
  }

  .eg-article__body table {
    width: 100%;
    border-collapse: collapse;
    margin-block: 1.6em;
    font-size: 16px;
  }

  .eg-article__body th,
  .eg-article__body td {
    border: 1px solid var(--eg-hairline);
    padding: 10px 12px;
    text-align: start;
  }

  .eg-article__body th {
    background-color: var(--eg-offwhite);
    color: var(--eg-navy);
    font-weight: 600;
  }

  /* Footer (share + back) ------------------------------------------------- */
  .eg-article__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    margin-block-start: 48px;
    padding-block-start: 24px;
    border-block-start: 1px solid var(--eg-hairline);
  }

  .eg-article__share {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 13px;
  }

  .eg-article__share-label {
    color: var(--eg-muted);
    letter-spacing: 0.04em;
  }

  .eg-article__share-link {
    color: var(--eg-navy);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color var(--eg-fade) ease;
  }

  .eg-article__share-link:hover {
    border-color: var(--eg-navy);
  }

  .eg-article__back {
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--eg-navy);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: opacity var(--eg-fade) ease;
  }

  .eg-article__back:hover {
    opacity: 0.7;
  }

  /* Related row ----------------------------------------------------------- */
  .eg-article__related {
    margin-block-start: 80px;
    border-block-start: 1px solid var(--eg-hairline);
    padding-block-start: 56px;
  }

  .eg-article__related-inner {
    width: 100%;
    max-width: var(--page-width, 1400px);
    margin-inline: auto;
    padding-inline: var(--page-margin, 20px);
  }

  .eg-article__related-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
    margin-block-end: 32px;
  }

  .eg-article__related-title {
    margin: 0;
    font-family: var(--font-heading--family);
    font-weight: 600;
    color: var(--eg-navy);
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    line-height: 1.1;
  }

  .eg-article__related-all {
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: var(--eg-navy);
    text-decoration: none;
    border-bottom: 1px solid var(--eg-navy);
    padding-block-end: 2px;
    white-space: nowrap;
    transition: opacity var(--eg-fade) ease;
  }

  .eg-article__related-all:hover {
    opacity: 0.7;
  }

  .eg-article__related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 32px;
  }

  @media screen and (min-width: 750px) and (max-width: 989px) {
    .eg-article__related-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media screen and (max-width: 749px) {
    .eg-article {
      padding-block: 28px 56px;
    }
    .eg-article__related {
      margin-block-start: 56px;
      padding-block-start: 40px;
    }
    .eg-article__related-grid {
      grid-template-columns: 1fr;
      gap: 32px;
    }
    .eg-article__body {
      font-size: 17px;
    }
  }

  /* Card (markup from snippets/eg-article-card.liquid), scoped to related row. */
  .eg-article .eg-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    height: 100%;
  }

  .eg-article .eg-card__media {
    position: relative;
    border: 1px solid var(--eg-hairline);
    border-radius: 4px;
    overflow: hidden;
    background-color: var(--eg-offwhite);
    aspect-ratio: 3 / 2;
    transition: box-shadow var(--eg-fade) ease, border-color var(--eg-fade) ease, transform var(--eg-fade) ease;
  }

  .eg-article .eg-card__img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .eg-article .eg-card__media-fallback {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(120% 120% at 50% 0%, #ffffff 0%, var(--eg-offwhite) 70%);
  }

  .eg-article .eg-card__media-mark {
    font-family: var(--font-heading--family);
    font-weight: 600;
    font-size: clamp(3rem, 6vw, 5rem);
    line-height: 1;
    color: var(--eg-navy);
    opacity: 0.16;
  }

  .eg-article .eg-card:hover .eg-card__media,
  .eg-article .eg-card:focus-visible .eg-card__media {
    box-shadow: var(--eg-shadow-soft);
    border-color: #d8dce4;
    transform: translateY(-2px);
  }

  .eg-article .eg-card__body {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-block-start: 16px;
  }

  .eg-article .eg-card__eyebrow {
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--eg-muted);
  }

  .eg-article .eg-card__title {
    margin: 0;
    font-family: var(--font-heading--family);
    font-weight: 600;
    color: var(--eg-navy);
    font-size: 1.5rem;
    line-height: 1.16;
    letter-spacing: 0.005em;
    transition: color var(--eg-fade) ease;
  }

  .eg-article .eg-card:hover .eg-card__title {
    color: #1b2840;
  }

  .eg-article .eg-card__meta {
    margin: 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 13px;
    line-height: 1.4;
    color: var(--eg-muted);
    font-variant-numeric: tabular-nums;
  }

  .eg-article .eg-card__meta-sep {
    color: var(--eg-hairline);
  }

  .eg-article .eg-card__excerpt {
    margin: 0;
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 15px;
    line-height: 1.55;
    color: var(--eg-charcoal);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  /* Comments -------------------------------------------------------------- */
  .eg-article__comments {
    margin-block-start: 72px;
  }

  .eg-article__comments-inner {
    width: 100%;
    max-width: var(--eg-read-width);
    margin-inline: auto;
    padding-inline: var(--page-margin, 20px);
  }

  .eg-article__comments-title {
    margin: 0 0 24px;
    font-family: var(--font-heading--family);
    font-weight: 600;
    color: var(--eg-navy);
    font-size: clamp(1.5rem, 2.5vw, 1.875rem);
    line-height: 1.15;
  }

  .eg-article__comment-list {
    list-style: none;
    margin: 0 0 32px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .eg-article__comment {
    padding-block-end: 24px;
    border-block-end: 1px solid var(--eg-hairline);
  }

  .eg-article__comment-body {
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.65;
    color: var(--eg-charcoal);
  }

  .eg-article__comment-byline {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-block-start: 10px;
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 13px;
    color: var(--eg-muted);
  }

  .eg-article__comment-author {
    color: var(--eg-navy);
    font-weight: 500;
  }

  .eg-article__comment-sep {
    color: var(--eg-hairline);
  }

  .eg-article__comment-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-block-end: 32px;
  }

  .eg-article__comment-pagination a,
  .eg-article__comment-pagination .current {
    color: var(--eg-navy);
    padding: 4px 10px;
  }
/* END_SECTION:eg-article */

/* START_SECTION:eg-blog (INDEX:10) */
.eg-blog {

    padding-block: var(--eg-blog-pad-start, 56px) var(--eg-blog-pad-end, 72px);
  }

  .eg-blog__inner {
    width: 100%;
    max-width: var(--page-width, 1400px);
    margin-inline: auto;
    padding-inline: var(--page-margin, 20px);
  }

  /* Header ---------------------------------------------------------------- */
  .eg-blog__header {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 760px;
    margin-block-end: 48px;
  }

  .eg-blog__eyebrow {
    margin: 0;
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--eg-muted);
  }

  .eg-blog__title {
    margin: 0;
    font-family: var(--font-heading--family);
    font-weight: 600;
    color: var(--eg-navy);
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.05;
    letter-spacing: 0.005em;
  }

  .eg-blog__intro {
    margin: 0;
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 17px;
    line-height: 1.6;
    color: var(--eg-charcoal);
  }

  /* Controls: filter pills + guides cross-link ---------------------------- */
  .eg-blog__controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    margin-block-end: 32px;
  }

  .eg-blog__filters {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
  }

  .eg-blog__pill {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding-inline: 16px;
    border: 1px solid var(--eg-hairline);
    border-radius: 999px;
    background-color: #ffffff;
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.2;
    color: var(--eg-charcoal);
    text-decoration: none;
    transition: border-color var(--eg-fade) ease, background-color var(--eg-fade) ease, color var(--eg-fade) ease;
  }

  .eg-blog__pill:hover,
  .eg-blog__pill:focus-visible {
    border-color: var(--eg-navy);
  }

  .eg-blog__pill--on {
    background-color: var(--eg-navy);
    border-color: var(--eg-navy);
    color: #ffffff;
  }

  .eg-blog__guides {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 36px;
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: var(--eg-navy);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color var(--eg-fade) ease, opacity var(--eg-fade) ease;
  }

  .eg-blog__guides:hover,
  .eg-blog__guides:focus-visible {
    border-bottom-color: var(--eg-navy);
  }

  .eg-blog__guides-arrow {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    transition: transform var(--eg-fade) ease;
  }

  @media (prefers-reduced-motion: no-preference) {
    .eg-blog__guides:hover .eg-blog__guides-arrow,
    .eg-blog__guides:focus-visible .eg-blog__guides-arrow {
      transform: translateX(3px);
    }
  }

  .eg-blog__filter-status {
    margin: 0 0 24px;
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.5;
    color: var(--eg-muted);
  }

  .eg-blog__filter-status strong {
    color: var(--eg-navy);
    font-weight: 600;
  }

  .eg-blog__filter-clear {
    margin-inline-start: 12px;
    color: var(--eg-navy);
    text-decoration: none;
    border-bottom: 1px solid var(--eg-navy);
    padding-block-end: 1px;
    transition: opacity var(--eg-fade) ease;
  }

  .eg-blog__filter-clear:hover {
    opacity: 0.7;
  }

  /* Grid ------------------------------------------------------------------ */
  .eg-blog__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 32px;
  }

  @media screen and (min-width: 750px) and (max-width: 989px) {
    .eg-blog__grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 36px 28px;
    }
  }

  @media screen and (max-width: 749px) {
    .eg-blog {
      padding-block: 36px 48px;
    }
    .eg-blog__header {
      margin-block-end: 32px;
    }
    .eg-blog__controls {
      gap: 12px;
    }
    .eg-blog__grid {
      grid-template-columns: 1fr;
      gap: 32px;
    }
  }

  /* Featured lead --------------------------------------------------------- */
  .eg-blog__lead {
    margin-block-end: 48px;
  }

  @media screen and (max-width: 749px) {
    .eg-blog__lead {
      margin-block-end: 32px;
    }
  }

  /* ----------------------------------------------------------------------
     Card (markup from snippets/eg-article-card.liquid). Scoped to .eg-blog.
     Mirrored in sections/eg-article.liquid for the related row.
     ---------------------------------------------------------------------- */
  .eg-blog .eg-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    height: 100%;
  }

  .eg-blog .eg-card__media {
    position: relative;
    border: 1px solid var(--eg-hairline);
    border-radius: 4px;
    overflow: hidden;
    background-color: var(--eg-offwhite);
    aspect-ratio: 3 / 2;
    transition: box-shadow var(--eg-fade) ease, border-color var(--eg-fade) ease, transform var(--eg-fade) ease;
  }

  .eg-blog .eg-card__img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* Graceful fallback when an article has no featured image: a calm off-white
     panel carrying the brand initial in Cormorant navy at low emphasis. */
  .eg-blog .eg-card__media-fallback {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
      radial-gradient(120% 120% at 50% 0%, #ffffff 0%, var(--eg-offwhite) 70%);
  }

  .eg-blog .eg-card__media-mark {
    font-family: var(--font-heading--family);
    font-weight: 600;
    font-size: clamp(3rem, 6vw, 5rem);
    line-height: 1;
    color: var(--eg-navy);
    opacity: 0.16;
  }

  .eg-blog .eg-card:hover .eg-card__media,
  .eg-blog .eg-card:focus-visible .eg-card__media {
    box-shadow: var(--eg-shadow-soft);
    border-color: #d8dce4;
    transform: translateY(-2px);
  }

  @media (prefers-reduced-motion: reduce) {
    .eg-blog .eg-card__media,
    .eg-blog .eg-card__title,
    .eg-blog__guides-arrow {
      transition: none;
    }
    .eg-blog .eg-card:hover .eg-card__media,
    .eg-blog .eg-card:focus-visible .eg-card__media {
      transform: none;
    }
  }

  .eg-blog .eg-card__body {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-block-start: 16px;
  }

  .eg-blog .eg-card__eyebrow {
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--eg-muted);
  }

  .eg-blog .eg-card__title {
    margin: 0;
    font-family: var(--font-heading--family);
    font-weight: 600;
    color: var(--eg-navy);
    font-size: 1.5rem;
    line-height: 1.16;
    letter-spacing: 0.005em;
    transition: color var(--eg-fade) ease;
  }

  .eg-blog .eg-card:hover .eg-card__title {
    color: #1b2840;
  }

  .eg-blog .eg-card__meta {
    margin: 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 13px;
    line-height: 1.4;
    color: var(--eg-muted);
    font-variant-numeric: tabular-nums;
  }

  .eg-blog .eg-card__meta-sep {
    color: var(--eg-hairline);
  }

  .eg-blog .eg-card__excerpt {
    margin: 0;
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 15px;
    line-height: 1.55;
    color: var(--eg-charcoal);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  /* Featured lead card: side-by-side on desktop, larger title + excerpt. */
  @media screen and (min-width: 750px) {
    .eg-blog__lead .eg-card--lead {
      display: grid;
      grid-template-columns: 1.4fr 1fr;
      gap: 40px;
      align-items: center;
    }
    .eg-blog__lead .eg-card--lead .eg-card__media {
      aspect-ratio: 16 / 10;
    }
    .eg-blog__lead .eg-card--lead .eg-card__body {
      padding-block-start: 0;
      gap: 12px;
    }
    .eg-blog__lead .eg-card--lead .eg-card__title {
      font-size: clamp(2rem, 3vw, 2.75rem);
      line-height: 1.1;
    }
    .eg-blog__lead .eg-card--lead .eg-card__excerpt {
      font-size: 17px;
      line-height: 1.6;
      -webkit-line-clamp: 3;
    }
  }

  /* Pagination ------------------------------------------------------------ */
  .eg-blog__pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-block-start: 56px;
  }

  .eg-blog__page-list {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .eg-blog__page {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding-inline: 12px;
    border: 1px solid var(--eg-hairline);
    border-radius: 4px;
    background-color: #ffffff;
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 14px;
    color: var(--eg-navy);
    text-decoration: none;
    font-variant-numeric: tabular-nums;
    transition: border-color var(--eg-fade) ease, background-color var(--eg-fade) ease, color var(--eg-fade) ease;
  }

  a.eg-blog__page:hover,
  a.eg-blog__page:focus-visible {
    border-color: var(--eg-navy);
  }

  .eg-blog__page--current {
    background-color: var(--eg-navy);
    border-color: var(--eg-navy);
    color: #ffffff;
  }

  .eg-blog__page--gap {
    border-color: transparent;
    background-color: transparent;
    color: var(--eg-muted);
  }

  .eg-blog__page--prev,
  .eg-blog__page--next {
    color: var(--eg-navy);
  }

  /* Newsletter band ------------------------------------------------------- */
  .eg-blog__news {
    margin-block-start: 72px;
    background-color: var(--eg-navy);
    border-radius: 4px;
    padding: 64px 32px;
  }

  .eg-blog__news-inner {
    max-width: 520px;
    margin-inline: auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .eg-blog__news-eyebrow {
    margin: 0;
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgb(255 255 255 / 0.55);
  }

  .eg-blog__news-heading {
    margin: 0;
    font-family: var(--font-heading--family);
    font-weight: 600;
    color: #ffffff;
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    line-height: 1.1;
  }

  .eg-blog__news-text {
    margin: 0 0 8px;
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: rgb(255 255 255 / 0.82);
  }

  .eg-blog__news-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .eg-blog__news-label {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
    border: 0;
  }

  .eg-blog__news-field {
    display: flex;
    gap: 10px;
    width: 100%;
    max-width: 440px;
  }

  .eg-blog__news-input {
    flex: 1;
    min-width: 0;
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 15px;
    line-height: 1.2;
    padding: 14px 16px;
    border: 1px solid rgb(255 255 255 / 0.3);
    border-radius: 4px;
    background-color: rgb(255 255 255 / 0.06);
    color: #ffffff;
    transition: border-color var(--eg-fade) ease;
  }

  .eg-blog__news-input::placeholder {
    color: rgb(255 255 255 / 0.5);
  }

  .eg-blog__news-input:focus-visible {
    outline: none;
    border-color: rgb(255 255 255 / 0.7);
  }

  .eg-blog__news-button {
    flex-shrink: 0;
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.2;
    padding: 14px 24px;
    border: 1px solid #ffffff;
    border-radius: 4px;
    background-color: #ffffff;
    color: var(--eg-navy);
    cursor: pointer;
    transition: opacity var(--eg-fade) ease;
  }

  .eg-blog__news-button:hover,
  .eg-blog__news-button:focus-visible {
    opacity: 0.86;
  }

  .eg-blog__news-message {
    margin: 4px 0 0;
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.5;
  }

  .eg-blog__news-message--success {
    color: #ffffff;
  }

  .eg-blog__news-message--error {
    color: #f3c7c7;
  }

  @media screen and (max-width: 749px) {
    .eg-blog__news {
      margin-block-start: 48px;
      padding: 48px 24px;
    }
    .eg-blog__news-field {
      flex-direction: column;
    }
    .eg-blog__news-button {
      width: 100%;
    }
  }

  /* Empty state ----------------------------------------------------------- */
  .eg-blog__empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    padding-block: 72px;
  }

  .eg-blog__empty-title {
    margin: 0;
    font-family: var(--font-heading--family);
    font-weight: 600;
    color: var(--eg-navy);
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    line-height: 1.1;
  }

  .eg-blog__empty-text {
    margin: 0;
    max-width: 460px;
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--eg-muted);
  }

  .eg-blog__empty-link {
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: var(--eg-navy);
    text-decoration: none;
    border-bottom: 1px solid var(--eg-navy);
    padding-block-end: 2px;
    transition: opacity var(--eg-fade) ease;
  }

  .eg-blog__empty-link:hover {
    opacity: 0.7;
  }
/* END_SECTION:eg-blog */

/* START_SECTION:eg-brand-close (INDEX:11) */
.eg-close { background-color: var(--color-background); color: var(--color-foreground); }
  .eg-close__inner {
    max-width: 42rem;
    margin-inline: auto;
    padding-inline: 20px;
    text-align: center;
  }
  .eg-close__eyebrow {
    font-family: var(--font-body--family);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--color-foreground);
    opacity: 0.75;
    margin: 0 0 20px;
  }
  .eg-close__etymology {
    font-family: var(--font-heading--family);
    color: var(--color-foreground-heading);
    font-size: clamp(1.5rem, 3.5vw, 2.125rem);
    line-height: 1.3;
    margin: 0 0 16px;
  }
  .eg-close__line {
    font-family: var(--font-heading--family);
    color: var(--color-foreground-heading);
    font-size: clamp(1.125rem, 2.4vw, 1.5rem);
    line-height: 1.4;
    opacity: 0.9;
    margin: 0;
  }
/* END_SECTION:eg-brand-close */

/* START_SECTION:eg-buying-guide (INDEX:13) */
.eg-guide {

    padding-block: var(--eg-guide-pad-start, 0px) var(--eg-guide-pad-end, 0px);
    background-color: var(--eg-white);
  }

  .eg-guide__eyebrow {
    margin: 0 0 16px;
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--eg-muted);
  }

  /* 1. Hero */
  .eg-guide__hero {
    background-color: var(--eg-white);
    padding-block: 72px 40px;
  }
  .eg-guide__hero-inner {
    width: 100%;
    max-width: 860px;
    margin-inline: auto;
    padding-inline: var(--page-margin, 20px);
    box-sizing: border-box;
  }
  .eg-guide__crumb {
    margin-bottom: 26px;
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 13px;
    line-height: 1.4;
    color: var(--eg-muted);
  }
  .eg-guide__crumb a {
    color: var(--eg-muted);
    text-decoration: none;
    transition: color 120ms ease;
  }
  .eg-guide__crumb a:hover { color: var(--eg-navy); }
  .eg-guide__crumb-sep { margin-inline: 10px; color: #c9c9c9; }
  .eg-guide__title {
    margin: 0;
    font-family: var(--font-heading--family);
    font-weight: 600;
    font-size: clamp(2.5rem, 5.5vw, 3.75rem);
    line-height: 1.04;
    letter-spacing: 0.012em;
    color: var(--eg-navy);
    text-wrap: balance;
  }
  .eg-guide__stand {
    margin: 22px 0 0;
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 21px;
    line-height: 1.55;
    color: var(--eg-charcoal);
    max-width: 40rem;
    text-wrap: pretty;
  }
  .eg-guide__byline {
    margin-top: 26px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 13px;
    color: var(--eg-muted);
  }
  .eg-guide__byline-author { color: var(--eg-navy); font-weight: 500; }
  .eg-guide__dot {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background-color: #c9c9c9;
  }

  /* 2. Cover */
  .eg-guide__cover-wrap {
    width: 100%;
    max-width: 1140px;
    margin-inline: auto;
    padding-inline: var(--page-margin, 20px);
    box-sizing: border-box;
    margin-bottom: 56px;
  }
  .eg-guide__cover {
    aspect-ratio: 21 / 9;
    border-radius: 4px;
    overflow: hidden;
    background-color: var(--eg-offwhite);
  }
  .eg-guide__cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .eg-guide__cover--empty {
    border: 1px solid var(--eg-hairline);
  }

  /* 3. Article body */
  .eg-guide__article {
    width: 100%;
    max-width: var(--eg-measure);
    margin-inline: auto;
    padding-inline: var(--page-margin, 20px);
    box-sizing: border-box;
  }
  .eg-guide__h2 {
    margin: 52px 0 18px;
    font-family: var(--font-heading--family);
    font-weight: 600;
    font-size: clamp(1.875rem, 3.6vw, 2.125rem);
    line-height: 1.15;
    letter-spacing: 0.012em;
    color: var(--eg-navy);
    text-wrap: balance;
  }
  .eg-guide__h3 {
    margin: 34px 0 10px;
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: 0.01em;
    color: var(--eg-navy);
  }
  .eg-guide__prose {
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 18px;
    line-height: 1.72;
    color: var(--eg-charcoal);
    text-wrap: pretty;
  }
  .eg-guide__prose > :first-child { margin-top: 0; }
  .eg-guide__prose p { margin: 0 0 20px; }
  .eg-guide__prose p:last-child { margin-bottom: 0; }
  .eg-guide__prose strong { color: var(--eg-navy); font-weight: 600; }
  .eg-guide__prose a {
    color: var(--eg-navy);
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-color: #c9c9c9;
  }
  .eg-guide__prose--cap p:first-of-type::first-letter {
    initial-letter: 2;
    -webkit-initial-letter: 2;
    font-family: var(--font-heading--family);
    font-weight: 600;
    color: var(--eg-navy);
    margin-right: 10px;
  }

  .eg-guide__pull {
    margin: 40px 0;
    padding: 6px 0 6px 28px;
    border: 0;
    border-left: 2px solid var(--eg-navy);
  }
  .eg-guide__pull p {
    margin: 0;
    font-family: var(--font-heading--family);
    font-weight: 500;
    font-size: clamp(1.5rem, 3vw, 1.625rem);
    line-height: 1.4;
    color: var(--eg-navy);
    text-wrap: balance;
  }

  /* 4. Inline product callout */
  .eg-guide__callout {
    display: flex;
    gap: 20px;
    align-items: center;
    margin: 32px 0;
    padding: 18px;
    border: 1px solid var(--eg-hairline);
    border-radius: 4px;
    text-decoration: none;
    transition: box-shadow 180ms ease, border-color 180ms ease;
  }
  .eg-guide__callout:hover,
  .eg-guide__callout:focus-visible {
    box-shadow: 0 8px 22px -12px rgba(39, 55, 85, 0.22);
    border-color: #d8d8d8;
  }
  .eg-guide__callout-img {
    flex: none;
    width: 88px;
    height: 88px;
    border-radius: 4px;
    overflow: hidden;
    background-color: var(--eg-offwhite);
  }
  .eg-guide__callout-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .eg-guide__callout-info { flex: 1 1 auto; min-width: 0; }
  .eg-guide__callout-k {
    display: block;
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--eg-muted);
  }
  .eg-guide__callout-t {
    display: block;
    margin: 7px 0 4px;
    font-family: var(--font-heading--family);
    font-weight: 600;
    font-size: 19px;
    line-height: 1.2;
    color: var(--eg-navy);
  }
  .eg-guide__callout-why {
    display: block;
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 13px;
    line-height: 1.5;
    color: var(--eg-muted);
  }
  .eg-guide__callout-pr {
    flex: none;
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--eg-navy);
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
  }

  /* 5. Comparison table */
  .eg-guide__compare {
    background-color: var(--eg-white);
  }
  .eg-guide__compare-inner {
    width: 100%;
    max-width: 960px;
    margin: 56px auto;
    padding-inline: var(--page-margin, 20px);
    box-sizing: border-box;
  }
  .eg-guide__compare-h {
    margin: 0 0 24px;
    font-family: var(--font-heading--family);
    font-weight: 600;
    font-size: clamp(1.75rem, 3.2vw, 1.875rem);
    line-height: 1.15;
    letter-spacing: 0.012em;
    color: var(--eg-navy);
    text-wrap: balance;
  }
  .eg-guide__table-scroll { width: 100%; overflow-x: auto; }
  .eg-guide__table {
    width: 100%;
    border-collapse: collapse;
    min-width: 560px;
  }
  .eg-guide__table th,
  .eg-guide__table td {
    text-align: left;
    padding: 16px 18px;
    border-bottom: 1px solid #eaeaea;
    vertical-align: top;
  }
  .eg-guide__table thead th {
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--eg-muted);
    border-bottom: 1px solid #d8d8d8;
  }
  .eg-guide__table td {
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.55;
    color: var(--eg-charcoal);
  }
  .eg-guide__table-type {
    font-weight: 500 !important;
    color: var(--eg-navy) !important;
    white-space: nowrap;
  }

  /* 6. Shop this guide */
  .eg-guide__shop {
    background-color: var(--eg-offwhite);
    margin-top: 56px;
  }
  .eg-guide__shop-inner {
    width: 100%;
    max-width: 1140px;
    margin-inline: auto;
    padding: 64px var(--page-margin, 20px);
    box-sizing: border-box;
  }
  .eg-guide__shop-h {
    margin: 0 0 32px;
    font-family: var(--font-heading--family);
    font-weight: 600;
    font-size: clamp(2rem, 4vw, 2.125rem);
    line-height: 1.1;
    letter-spacing: 0.012em;
    color: var(--eg-navy);
    text-wrap: balance;
  }
  .eg-guide__strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
  .eg-guide__pcard {
    display: block;
    background-color: var(--eg-white);
    border: 1px solid var(--eg-hairline);
    border-radius: 4px;
    overflow: hidden;
    text-decoration: none;
    transition: box-shadow 180ms ease;
  }
  .eg-guide__pcard:hover,
  .eg-guide__pcard:focus-visible {
    box-shadow: 0 8px 22px -12px rgba(39, 55, 85, 0.22);
  }
  .eg-guide__pcard-img {
    display: block;
    aspect-ratio: 1 / 1;
    background-color: #f0f0f0;
  }
  .eg-guide__pcard-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .eg-guide__pcard-meta { display: block; padding: 14px 16px 16px; }
  .eg-guide__pcard-t {
    display: block;
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.3;
    color: var(--eg-charcoal);
  }
  .eg-guide__pcard-pr {
    display: block;
    margin-top: 8px;
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--eg-navy);
    font-variant-numeric: tabular-nums;
  }
  .eg-guide__shop-cta { margin-top: 32px; }

  .eg-guide__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding-inline: 28px;
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.01em;
    border-radius: 4px;
    text-decoration: none;
    transition: background-color 200ms ease, border-color 200ms ease;
  }
  .eg-guide__btn--primary {
    color: var(--eg-white);
    background-color: var(--eg-navy);
    border: 1px solid var(--eg-navy);
  }
  .eg-guide__btn--primary:hover,
  .eg-guide__btn--primary:focus-visible {
    background-color: var(--eg-navy-hover);
    border-color: var(--eg-navy-hover);
  }

  /* 7. Keep reading */
  .eg-guide__related {
    background-color: var(--eg-white);
  }
  .eg-guide__related-inner {
    width: 100%;
    max-width: 1140px;
    margin-inline: auto;
    padding: 64px var(--page-margin, 20px) 40px;
    box-sizing: border-box;
  }
  .eg-guide__related .eg-guide__eyebrow { margin-bottom: 18px; }
  .eg-guide__rcards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .eg-guide__rcard {
    display: block;
    padding: 24px;
    border: 1px solid var(--eg-hairline);
    border-radius: 4px;
    text-decoration: none;
    transition: box-shadow 180ms ease;
  }
  .eg-guide__rcard:hover,
  .eg-guide__rcard:focus-visible {
    box-shadow: 0 8px 22px -12px rgba(39, 55, 85, 0.22);
  }
  .eg-guide__rcard-k {
    display: block;
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--eg-muted);
  }
  .eg-guide__rcard-t {
    margin: 12px 0 8px;
    font-family: var(--font-heading--family);
    font-weight: 600;
    font-size: 22px;
    line-height: 1.2;
    color: var(--eg-navy);
    text-wrap: balance;
  }
  .eg-guide__rcard-d {
    margin: 0;
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 13px;
    line-height: 1.5;
    color: var(--eg-muted);
  }

  @media screen and (max-width: 990px) {
    .eg-guide__strip { grid-template-columns: repeat(2, 1fr); }
    .eg-guide__rcards { grid-template-columns: 1fr; gap: 16px; }
  }
  @media screen and (max-width: 749px) {
    .eg-guide__hero { padding-block: 48px 32px; }
    .eg-guide__stand { font-size: 18px; }
    .eg-guide__callout { flex-wrap: wrap; }
    .eg-guide__callout-pr { width: 100%; }
    .eg-guide__shop-inner,
    .eg-guide__related-inner { padding-block: 48px; }
  }
  @media (prefers-reduced-motion: reduce) {
    .eg-guide__crumb a,
    .eg-guide__callout,
    .eg-guide__pcard,
    .eg-guide__rcard,
    .eg-guide__btn { transition: none; }
  }
/* END_SECTION:eg-buying-guide */

/* START_SECTION:eg-category-strip (INDEX:15) */
.eg-cat {

    padding-block: var(--eg-cat-pad-block-start, 88px) var(--eg-cat-pad-block-end, 24px);
    scroll-margin-top: 88px;
  }

  .eg-cat__inner {
    width: 100%;
    max-width: var(--page-width, 1400px);
    margin-inline: auto;
    padding-inline: var(--page-margin, 20px);
  }

  .eg-cat__head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 28px;
  }

  .eg-cat__head-text {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-width: 540px;
  }

  .eg-cat__eyebrow {
    margin: 0;
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--eg-muted);
  }

  .eg-cat__heading {
    margin: 0;
    max-width: 540px;
    font-family: var(--font-heading--family);
    font-weight: 600;
    font-size: 36px;
    line-height: 1.18;
    letter-spacing: 0.01em;
    color: var(--eg-navy);
    text-wrap: balance;
  }

  .eg-cat__view-all {
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--eg-navy);
    text-decoration: underline;
    text-underline-offset: 4px;
    white-space: nowrap;
    transition: color 200ms ease;
  }
  .eg-cat__view-all span { margin-inline-start: 4px; }
  .eg-cat__view-all:hover,
  .eg-cat__view-all:focus-visible { color: #1b2840; }

  .eg-cat__grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
  }

  .eg-cat__tile { display: flex; }

  .eg-cat__card {
    display: flex;
    flex-direction: column;
    width: 100%;
    border: 1px solid var(--eg-hairline);
    border-radius: 4px;
    overflow: hidden;
    background-color: var(--eg-white);
    text-decoration: none;
    transition: box-shadow 200ms ease, border-color 200ms ease, transform 200ms ease;
  }

  .eg-cat__card:hover,
  .eg-cat__card:focus-visible {
    box-shadow: var(--eg-shadow-soft);
    border-color: #d8dce4;
    transform: translateY(-2px);
  }

  .eg-cat__media {
    display: block;
    aspect-ratio: 4 / 3;
    background-color: var(--eg-offwhite);
  }

  .eg-cat__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .eg-cat__img--placeholder {
    background-color: var(--eg-offwhite);
  }

  .eg-cat__card-body {
    display: flex;
    flex-direction: column;
    padding: 14px 16px 16px;
  }

  .eg-cat__name {
    font-family: var(--font-heading--family);
    font-weight: 600;
    font-size: 1.0625rem;
    line-height: 1.2;
    color: var(--eg-navy);
  }

  .eg-cat__sub {
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 12px;
    line-height: 1.4;
    color: var(--eg-muted);
    margin-top: 2px;
  }

  @media screen and (min-width: 990px) and (max-width: 1199px) {
    .eg-cat__grid { grid-template-columns: repeat(4, 1fr); }
  }

  @media screen and (min-width: 750px) and (max-width: 989px) {
    .eg-cat__grid { grid-template-columns: repeat(3, 1fr); }
  }

  @media screen and (max-width: 749px) {
    .eg-cat__grid { grid-template-columns: repeat(2, 1fr); }
  }
/* END_SECTION:eg-category-strip */

/* START_SECTION:eg-collection-header (INDEX:17) */
/* ----------------------------------------------------------------------
     Ergovanta collection header + collection page polish.
     Tokens only. Brand: navy #273755 (heading/link/active), charcoal #1A1A1A
     (body), off-white #F5F5F5 (surface), white, hairline #E5E5E5, muted #6B6B6B.
     Headings use the self-hosted Cormorant via var(--font-heading--family).
     Body, UI, and price use Inter via var(--font-body--family).
     ---------------------------------------------------------------------- */

  .eg-collection-header {

    padding-block: var(--eg-header-padding-block-start, 48px) var(--eg-header-padding-block-end, 32px);
  }

  .eg-collection-header__inner {
    width: 100%;
    max-width: var(--page-width, 1400px);
    margin-inline: auto;
    padding-inline: var(--page-margin, 20px);
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  /* Breadcrumb */
  .eg-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 12px;
    line-height: 1.4;
    color: var(--eg-muted);
  }

  .eg-breadcrumb__link {
    color: var(--eg-muted);
    text-decoration: none;
    transition: color var(--eg-fade) ease;
  }

  .eg-breadcrumb__link:hover,
  .eg-breadcrumb__link:focus-visible {
    color: var(--eg-navy);
  }

  .eg-breadcrumb__sep {
    color: var(--eg-hairline);
  }

  .eg-breadcrumb__current {
    color: var(--eg-charcoal);
  }

  /* Eyebrow */
  .eg-eyebrow {
    margin: 0;
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--eg-muted);
  }

  /* H1 */
  .eg-collection-header__title {
    margin: 0;
    font-family: var(--font-heading--family);
    font-weight: 600;
    color: var(--eg-navy);
    font-size: clamp(2.25rem, 4vw, 3.5rem);
    line-height: 1.08;
    letter-spacing: 0.005em;
  }

  /* Intro */
  .eg-collection-header__intro {
    max-width: 720px;
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 17px;
    line-height: 1.6;
    color: var(--eg-charcoal);
  }

  .eg-collection-header__intro > :first-child { margin-block-start: 0; }
  .eg-collection-header__intro > :last-child { margin-block-end: 0; }
  .eg-collection-header__intro a { color: var(--eg-navy); }

  @media screen and (max-width: 749px) {
    .eg-collection-header {
      padding-block: 32px 24px;
    }
    .eg-collection-header__intro { font-size: 16px; }
  }

  /* ----------------------------------------------------------------------
     Product grid: 3 columns desktop, 2 tablet, 1 mobile.
     The native grid <ul class="product-grid"> drives desktop columns through
     --product-grid-columns-desktop. We override that token at our breakpoints
     so the count is deterministic regardless of card-size autofill.
     ---------------------------------------------------------------------- */
  @media screen and (min-width: 990px) {
    .main-collection-grid .product-grid:is(.product-grid--grid) {
      --product-grid-columns-desktop: repeat(3, 1fr);
    }
  }

  @media screen and (min-width: 750px) and (max-width: 989px) {
    .main-collection-grid .product-grid:is(.product-grid--grid) {
      --product-grid-columns-desktop: repeat(2, 1fr);
    }
  }

  @media screen and (max-width: 749px) {
    .main-collection-grid .product-grid {
      --mobile-columns: 1;
      grid-template-columns: 1fr;
    }
  }

  /* ----------------------------------------------------------------------
     Product card: square image, hairline card, soft hover lift, tabular price.
     ---------------------------------------------------------------------- */

  /* Lock the card image to 1:1 (reinforces image_ratio square on the block). */
  .main-collection-grid .card-gallery {
    --gallery-aspect-ratio: 1;
    border-radius: 4px;
    overflow: hidden;
  }

  .main-collection-grid .card-gallery .product-media-container,
  .main-collection-grid .card-gallery .product-media {
    aspect-ratio: 1 / 1;
  }

  .main-collection-grid .card-gallery .product-media img,
  .main-collection-grid .card-gallery .product-media-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* Card container: hairline frame, soft low shadow on hover, fade only. */
  .main-collection-grid .product-card .product-card__content {
    border: 1px solid var(--eg-hairline, #e5e5e5);
    border-radius: 4px;
    overflow: hidden;
    background-color: #ffffff;
    transition: box-shadow var(--eg-fade, 200ms) ease, border-color var(--eg-fade, 200ms) ease;
  }

  .main-collection-grid .product-card:hover .product-card__content,
  .main-collection-grid .product-card:focus-within .product-card__content {
    box-shadow: var(--eg-shadow-soft, 0 8px 24px rgb(39 55 85 / 0.06));
    border-color: #d8dce4;
  }

  /* Title: Inter 500, navy. The product-title block renders an rte wrapper. */
  .main-collection-grid .product-card .product-title,
  .main-collection-grid .product-card .product-title * {
    font-family: var(--font-body--family), 'Inter', sans-serif;
    color: #273755;
  }
  .main-collection-grid .product-card .product-title {
    font-weight: 500;
  }

  /* Price: Inter, tabular figures. */
  .main-collection-grid .product-card .price,
  .main-collection-grid .product-card .price * {
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-variant-numeric: tabular-nums;
  }
  .main-collection-grid .product-card .price {
    color: #1a1a1a;
  }

  /* Pad the card body slightly so text is not flush to the hairline. */
  .main-collection-grid .product-card .product-card__content {
    padding: 0 0 12px;
  }
  .main-collection-grid .product-card .product-card__content > :not(.card-gallery) {
    padding-inline: 12px;
  }

  /* ----------------------------------------------------------------------
     Filters and sort: hairline chips, navy active state, 200ms fade.
     Horizontal facets render each filter trigger as <summary class="facets__summary">
     with <span class="facets__label">. We give those triggers a chip shell.
     ---------------------------------------------------------------------- */
  @media screen and (min-width: 750px) {
    .facets--horizontal .facets__item .facets__summary,
    .facets--horizontal .sorting-filter .facets__summary {
      border: 1px solid var(--eg-hairline, #e5e5e5);
      border-radius: 4px;
      padding-inline: 12px;
      height: auto;
      min-height: 36px;
      color: #273755;
      background-color: #ffffff;
      transition: border-color 200ms ease, background-color 200ms ease, color 200ms ease;
    }

    .facets--horizontal .facets__item .facets__summary:hover,
    .facets--horizontal .sorting-filter .facets__summary:hover {
      border-color: #273755;
    }

    /* Chip label color, navy. */
    .facets--horizontal .facets__summary .facets__label {
      color: #273755;
      margin-inline-end: 6px;
    }

    /* Active filter group (has a selected value): navy outline, navy text. */
    .facets--horizontal .facets__item:has(.facets__bubble) .facets__summary,
    .facets--horizontal .facets__item:has(input:checked) .facets__summary {
      border-color: #273755;
      box-shadow: inset 0 0 0 1px #273755;
    }

    /* Open trigger reads as active too. */
    .facets--horizontal .facets__panel[open] .facets__summary {
      border-color: #273755;
      box-shadow: inset 0 0 0 1px #273755;
    }
  }

  /* The count bubble inside an active chip: navy fill, white text. */
  .facets--horizontal .facets__summary .facets__bubble {
    background-color: #273755;
    color: #ffffff;
    border-radius: 4px;
    padding-inline: 6px;
    min-width: 1.25em;
    text-align: center;
  }

  /* Dropdown panel: hairline border, soft shadow, fade in only (no bounce). */
  .facets--horizontal .facets__panel-content {
    border: 1px solid var(--eg-hairline, #e5e5e5);
    border-radius: 4px;
    box-shadow: 0 8px 24px rgb(39 55 85 / 0.08);
  }

  /* Selected value pills inside a panel: navy fill, white text.
     (Horizon already flips short-label pills to foreground-fill on check;
     scheme-1 foreground is navy, so this mostly aligns. We pin it explicitly
     to guarantee navy regardless of the active scheme.) */
  .facets__pill-input:checked + .facets__pill-label {
    background-color: #273755;
    color: #ffffff;
    box-shadow: inset 0 0 0 1px #273755;
    border-radius: 4px;
  }

  .facets__pill-label {
    border-radius: 4px;
    transition: background-color 200ms ease, color 200ms ease, box-shadow 200ms ease;
  }

  /* Clear-all and clear links: navy. */
  .facets__clear-all-link,
  .facets__clear-all,
  .clear-filter {
    color: #273755;
  }

  /* Active selected chips in the remove row (mobile/vertical): navy outline. */
  .facets-remove__pill {
    border: 1px solid var(--eg-hairline, #e5e5e5);
    border-radius: 4px;
    color: #273755;
  }

  /* Sort selected option mark stays navy. */
  .sorting-filter__option[aria-selected="true"] .sorting-filter__label {
    color: #273755;
  }

  /* Grid the results with a calm opacity fade when filters update (no bounce).
     facets.js toggles loading state on the results list; fade the grid. */
  .product-grid-container[loading] .main-collection-grid,
  results-list[loading] .product-grid {
    opacity: 0.55;
    transition: opacity 200ms ease;
  }
  .main-collection-grid .product-grid {
    transition: opacity 200ms ease;
  }

  /* Mobile touch targets at least 44px on the filter toggle and sort. */
  @media screen and (max-width: 749px) {
    .facets-toggle__button,
    .sorting-filter__select-wrapper,
    .facets__summary {
      min-height: 44px;
    }
  }

  /* ----------------------------------------------------------------------
     Empty state: calm, centered, on-brand (no raw "no products" styling).
     ---------------------------------------------------------------------- */
  .main-collection-grid__empty {
    padding-block: 64px;
    gap: 12px;
  }

  .main-collection-grid__empty-title {
    font-family: var(--font-heading--family);
    color: #273755;
    font-weight: 600;
  }

  .main-collection-grid__empty p {
    font-family: var(--font-body--family), 'Inter', sans-serif;
    color: #6b6b6b;
    font-size: 16px;
  }

  .main-collection-grid__empty-link {
    color: #273755;
  }
/* END_SECTION:eg-collection-header */

/* START_SECTION:eg-collection-hero (INDEX:18) */
/* ----------------------------------------------------------------------
     Ergovanta collection hero + collection page polish.
     Tokens only. Brand: navy #273755 (heading / link / active), charcoal
     #1A1A1A (body), off-white #F5F5F5 (surface), white, hairline #E5E5E5,
     muted #6B6B6B. Headings use the self-hosted Cormorant via
     var(--font-heading--family). Body, UI and price use Inter via
     var(--font-body--family).
     ---------------------------------------------------------------------- */

  .eg-collection-hero {

    position: relative;
    isolation: isolate;
    padding-block: var(--eg-hero-pad-start, 56px) var(--eg-hero-pad-end, 36px);
  }

  /* TYPE mode: clean off-white band. */
  .eg-collection-hero--type {
    background-color: var(--eg-offwhite);
  }

  /* IMAGE mode: the picture is positioned absolutely behind the inner copy. */
  .eg-collection-hero--image {
    background-color: var(--eg-navy);
    padding-block: clamp(72px, 12vw, 132px) clamp(36px, 6vw, 64px);
  }

  .eg-collection-hero__media {
    position: absolute;
    inset: 0;
    z-index: -1;
    overflow: hidden;
  }

  .eg-collection-hero__img,
  .eg-collection-hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
  }

  /* Soft navy scrim: heavier at the bottom-left where the copy sits, so the
     light type stays legible without flattening the image. */
  .eg-collection-hero__scrim {
    position: absolute;
    inset: 0;
    background:
      linear-gradient(
        to top,
        rgb(39 55 85 / 0.78) 0%,
        rgb(39 55 85 / 0.55) 38%,
        rgb(39 55 85 / 0.28) 70%,
        rgb(39 55 85 / 0.18) 100%
      );
  }

  .eg-collection-hero__inner {
    position: relative;
    width: 100%;
    max-width: var(--page-width, 1400px);
    margin-inline: auto;
    padding-inline: var(--page-margin, 20px);
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  /* Breadcrumb */
  .eg-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 12px;
    line-height: 1.4;
    color: var(--eg-muted);
  }

  .eg-breadcrumb__link {
    color: var(--eg-muted);
    text-decoration: none;
    transition: color var(--eg-fade) ease;
  }

  .eg-breadcrumb__link:hover,
  .eg-breadcrumb__link:focus-visible {
    color: var(--eg-navy);
  }

  .eg-breadcrumb__sep {
    color: var(--eg-hairline);
  }

  .eg-breadcrumb__current {
    color: var(--eg-charcoal);
  }

  /* H1 */
  .eg-collection-hero__title {
    margin: 0;
    font-family: var(--font-heading--family);
    font-weight: 600;
    color: var(--eg-navy);
    font-size: clamp(2.25rem, 3.5vw, 3rem);
    line-height: 1.06;
    letter-spacing: 0.015em;
  }

  /* Intro */
  .eg-collection-hero__intro {
    max-width: 660px;
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 17px;
    line-height: 1.6;
    color: var(--eg-charcoal);
  }

  .eg-collection-hero__intro > :first-child { margin-block-start: 0; }
  .eg-collection-hero__intro > :last-child { margin-block-end: 0; }
  .eg-collection-hero__intro a { color: var(--eg-navy); }

  /* ----------------------------------------------------------------------
     Browse by category (Shop all only). Native <details> disclosure, no JS.
     ---------------------------------------------------------------------- */
  .eg-collection-hero__browse {
    position: relative;
    display: inline-block;
    margin-top: 18px;
  }

  .eg-collection-hero__browse-trigger {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    list-style: none;
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #273755;
    border: 1px solid rgb(39 55 85 / 0.22);
    border-radius: 4px;
    padding: 10px 16px;
    user-select: none;
  }

  .eg-collection-hero__browse-trigger::-webkit-details-marker {
    display: none;
  }

  .eg-collection-hero__browse-trigger:hover {
    border-color: #273755;
  }

  .eg-collection-hero__browse-chev {
    width: 16px;
    height: 16px;
    transition: transform 200ms ease;
  }

  details[open] .eg-collection-hero__browse-chev {
    transform: rotate(180deg);
  }

  .eg-collection-hero__browse-menu {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    z-index: 20;
    min-width: 260px;
    background: #ffffff;
    border: 1px solid #E5E5E5;
    border-radius: 4px;
    box-shadow: 0 12px 30px rgb(39 55 85 / 0.12);
    padding: 8px;
    display: grid;
  }

  .eg-collection-hero__browse-menu a {
    display: block;
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 14px;
    color: #273755;
    text-decoration: none;
    padding: 9px 12px;
    border-radius: 4px;
  }

  .eg-collection-hero__browse-menu a:hover {
    background: #F5F5F5;
  }

  /* ----------------------------------------------------------------------
     IMAGE mode color overrides: light type over the scrim.
     ---------------------------------------------------------------------- */
  .eg-collection-hero--image .eg-breadcrumb,
  .eg-collection-hero--image .eg-breadcrumb__link,
  .eg-collection-hero--image .eg-breadcrumb__current {
    color: rgb(255 255 255 / 0.82);
  }

  .eg-collection-hero--image .eg-breadcrumb__sep {
    color: rgb(255 255 255 / 0.4);
  }

  .eg-collection-hero--image .eg-breadcrumb__link:hover,
  .eg-collection-hero--image .eg-breadcrumb__link:focus-visible,
  .eg-collection-hero--image .eg-breadcrumb__current {
    color: #ffffff;
  }

  .eg-collection-hero--image .eg-collection-hero__title,
  .eg-collection-hero--image .eg-collection-hero__intro,
  .eg-collection-hero--image .eg-collection-hero__intro a {
    color: #ffffff;
  }

  .eg-collection-hero--image .eg-collection-hero__intro {
    color: rgb(255 255 255 / 0.92);
  }

  @media screen and (max-width: 749px) {
    .eg-collection-hero {
      padding-block: 36px 28px;
    }
    .eg-collection-hero--image {
      padding-block: 56px 32px;
    }
    .eg-collection-hero__intro { font-size: 16px; }
  }

  /* ----------------------------------------------------------------------
     Product grid: 3 columns desktop, 2 tablet, 1 mobile.
     The native grid <ul class="product-grid"> drives desktop columns through
     --product-grid-columns-desktop. We override that token at our breakpoints
     so the count is deterministic regardless of card-size autofill.
     ---------------------------------------------------------------------- */
  @media screen and (min-width: 990px) {
    .main-collection-grid .product-grid:is(.product-grid--grid) {
      --product-grid-columns-desktop: repeat(3, 1fr);
    }
  }

  @media screen and (min-width: 750px) and (max-width: 989px) {
    .main-collection-grid .product-grid:is(.product-grid--grid) {
      --product-grid-columns-desktop: repeat(2, 1fr);
    }
  }

  @media screen and (max-width: 749px) {
    .main-collection-grid .product-grid {
      --mobile-columns: 1;
      grid-template-columns: 1fr;
    }
  }

  /* ----------------------------------------------------------------------
     Product card: square image, hairline card, soft hover lift, tabular price.
     ---------------------------------------------------------------------- */

  /* Lock the card image to 1:1 (reinforces image_ratio square on the block). */
  .main-collection-grid .card-gallery {
    --gallery-aspect-ratio: 1;
    border-radius: 4px;
    overflow: hidden;
  }

  .main-collection-grid .card-gallery .product-media-container,
  .main-collection-grid .card-gallery .product-media {
    aspect-ratio: 1 / 1;
  }

  .main-collection-grid .card-gallery .product-media img,
  .main-collection-grid .card-gallery .product-media-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* Card container: hairline frame, soft low shadow on hover, fade only. */
  .main-collection-grid .product-card .product-card__content {
    border: 1px solid var(--eg-hairline, #e5e5e5);
    border-radius: 4px;
    overflow: hidden;
    background-color: #ffffff;
    transition: box-shadow var(--eg-fade, 200ms) ease, border-color var(--eg-fade, 200ms) ease;
  }

  .main-collection-grid .product-card:hover .product-card__content,
  .main-collection-grid .product-card:focus-within .product-card__content {
    box-shadow: var(--eg-shadow-soft, 0 8px 24px rgb(39 55 85 / 0.06));
    border-color: #d8dce4;
  }

  /* Title: Cormorant (heading family), navy. The product-title block renders an
     rte wrapper; the block's own type_preset custom sets size / family, this
     just guarantees the brand color and family if the preset is ever cleared. */
  .main-collection-grid .product-card .product-title,
  .main-collection-grid .product-card .product-title * {
    font-family: var(--font-heading--family);
    color: #273755;
  }

  /* Price: Inter, tabular figures. */
  .main-collection-grid .product-card .price,
  .main-collection-grid .product-card .price * {
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-variant-numeric: tabular-nums;
  }
  .main-collection-grid .product-card .price {
    color: #1a1a1a;
  }

  /* Pad the card body slightly so text is not flush to the hairline. */
  .main-collection-grid .product-card .product-card__content {
    padding: 0 0 12px;
  }
  .main-collection-grid .product-card .product-card__content > :not(.card-gallery) {
    padding-inline: 12px;
  }

  /* ======================================================================
     EG COLLECTION FILTER + SORT BAR  (Ergovanta design kit)
     ----------------------------------------------------------------------
     This is the SINGLE source of truth for the collection facet/sort bar.
     Target (from design-system/ui_kits/.../ProductGrid.jsx CollectionView):
       - one horizontal bar above the grid with a 1px hairline (#E5E5E5) on
         top AND bottom, 16px block padding, margin-bottom 32px;
       - LEFT  = the facets rendered as rounded PILLS;
       - RIGHT = a small "N products" count + the Sort dropdown.
     FilterPill: radius 999px; padding 6px 14px; 1px #E5E5E5 hairline;
       transparent bg; navy #273755 text; Inter 12px / 500 / 0.02em;
       when the facet has an active selection OR its dropdown is open ->
       navy #273755 fill + white text + navy border; 200ms fade.
     Everything below is desktop (>=750px); mobile uses the drawer toggle,
     styled near the end. Tweak knobs are the --egf-* custom properties.
     "Lighting type" is removed structurally in blocks/filters.liquid
     (search that file for "eg_hide_facet"), not hidden here. The grid-density
     (view layout) toggle is also removed structurally in that file.
     ====================================================================== */
  @media screen and (min-width: 750px) {
    /* knobs live on the bar element (single class is fine for custom props) */
    .facets--horizontal {
      --egf-navy: #273755;
      --egf-hairline: #e5e5e5;
      --egf-muted: #6b6b6b;
      --egf-pill-radius: 999px;
      --egf-pill-pad: 6px 14px;
      --egf-pill-font: 12px;
      --egf-pill-height: 32px;
    }

    /* the bar itself: hairline top + bottom, 16px block padding, 32px gap below.
       Selector is boosted (.product-grid-container .facets.facets--horizontal)
       so it beats Horizon's own single-class `.facets--horizontal { border:none;
       padding-block: ... }` rule, which loads later in the cascade. */
    .product-grid-container .facets.facets--horizontal {
      border-top: 1px solid var(--egf-hairline);
      border-bottom: 1px solid var(--egf-hairline);
      padding-block: 16px;
      margin-bottom: 32px;
      column-gap: 16px;
      row-gap: 8px;
    }

    /* let the filters sit left and the count+sort flock right */
    .facets--horizontal .facets__form-wrapper,
    .facets--horizontal .facets__form {
      width: 100%;
      align-items: center;
    }

    /* FILTER PILL: style the disclosure summary (the clickable trigger).
       The summary keeps toggling its value dropdown on click; only its look
       changes here. */
    .facets--horizontal .facets__item .facets__summary {
      box-sizing: border-box;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      height: var(--egf-pill-height);
      min-height: var(--egf-pill-height);
      padding: var(--egf-pill-pad);
      border: 1px solid var(--egf-hairline);
      border-radius: var(--egf-pill-radius);
      background-color: transparent;
      color: var(--egf-navy);
      font-family: var(--font-body--family), 'Inter', sans-serif;
      font-size: var(--egf-pill-font);
      font-weight: 500;
      letter-spacing: 0.02em;
      line-height: 1;
      white-space: nowrap;
      cursor: pointer;
      transition: background-color var(--eg-fade) ease, border-color var(--eg-fade) ease,
        color var(--eg-fade) ease;
    }

    /* keep the label + caret in the pill navy and quiet (no theme opacity dim) */
    .facets--horizontal .facets__item .facets__summary,
    .facets--horizontal .facets__item .facets__summary .facets__label {
      color: var(--egf-navy);
    }
    .facets--horizontal .facets__item .facets__summary .facets__label {
      margin-inline-end: 0;
      font: inherit;
      letter-spacing: inherit;
    }
    .facets--horizontal .facets__item .facets__summary .icon-caret {
      color: var(--egf-navy);
      margin-block: 0;
    }

    /* the theme dims summaries via opacity on hover-of-siblings; cancel that so
       our pills always read full-strength */
    .facets--horizontal .facets__filters-wrapper:hover .facets__summary,
    .facets--horizontal .facets__filters-wrapper:has(.facets__panel[open]) .facets__summary,
    .facets--horizontal .facets__filters-wrapper .facets__summary {
      opacity: 1;
    }

    /* hover: navy hairline */
    .facets--horizontal .facets__item .facets__summary:hover {
      border-color: var(--egf-navy);
    }

    /* ACTIVE (a value is selected) OR OPEN (dropdown showing) -> navy fill */
    .facets--horizontal .facets__item:has(input:checked) .facets__summary,
    .facets--horizontal .facets__item:has(.facets__bubble) .facets__summary,
    .facets--horizontal .facets__item:has([data-testid="price-filter"]) .facets__panel:has(.facets__status .hide-when-empty:not(:empty)) > .facets__summary,
    .facets--horizontal .facets__panel[open] > .facets__summary {
      background-color: var(--egf-navy);
      border-color: var(--egf-navy);
      color: #ffffff;
    }
    .facets--horizontal .facets__item:has(input:checked) .facets__summary .facets__label,
    .facets--horizontal .facets__item:has(.facets__bubble) .facets__summary .facets__label,
    .facets--horizontal .facets__panel[open] > .facets__summary .facets__label,
    .facets--horizontal .facets__item:has(input:checked) .facets__summary .icon-caret,
    .facets--horizontal .facets__item:has(.facets__bubble) .facets__summary .icon-caret,
    .facets--horizontal .facets__panel[open] > .facets__summary .icon-caret {
      color: #ffffff;
    }

    /* the active-count bubble inside a pill: subtle white chip on the navy fill */
    .facets--horizontal .facets__summary .facets__bubble {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 1.25em;
      padding-inline: 6px;
      border-radius: 999px;
      background-color: rgb(255 255 255 / 0.22);
      color: #ffffff;
      font-size: 11px;
      line-height: 1.4;
    }

    /* dropdown panel: hairline card, soft navy-tinted shadow */
    .facets--horizontal .facets__panel-content {
      border: 1px solid var(--egf-hairline);
      border-radius: 4px;
      box-shadow: 0 8px 24px rgb(39 55 85 / 0.08);
      background-color: #ffffff;
    }

    /* value pills inside a dropdown keep the same navy-on-select language */
    .facets__pill-label {
      border-radius: 999px;
      transition: background-color var(--eg-fade) ease, color var(--eg-fade) ease,
        box-shadow var(--eg-fade) ease;
    }
    .facets__pill-input:checked + .facets__pill-label {
      background-color: var(--egf-navy);
      color: #ffffff;
      box-shadow: inset 0 0 0 1px var(--egf-navy);
    }

    /* RIGHT side: "N products" count, Inter 12px muted #6B6B6B */
    .facets--horizontal .products-count-wrapper {
      margin-left: auto;
      color: var(--egf-muted);
      font-family: var(--font-body--family), 'Inter', sans-serif;
      font-size: 12px;
      font-weight: 500;
      letter-spacing: 0.02em;
      font-variant-numeric: tabular-nums;
    }

    /* SORT control: minimal, label muted, value navy, no pill chrome */
    .facets--horizontal .sorting-filter .facets__summary {
      border: none;
      background: transparent;
      padding-inline: 0;
      height: var(--minimum-touch-target);
      color: var(--egf-navy);
      font-family: var(--font-body--family), 'Inter', sans-serif;
      font-size: 12px;
      font-weight: 500;
      letter-spacing: 0.02em;
    }
    .facets--horizontal .sorting-filter .facets__summary .facets__label {
      color: var(--egf-muted);
      margin-inline-end: 6px;
      font: inherit;
      letter-spacing: inherit;
    }
    .facets--horizontal .sorting-filter .facets__summary .icon-caret {
      color: var(--egf-navy);
    }
    .sorting-filter__option[aria-selected="true"] .sorting-filter__label {
      color: var(--egf-navy);
      font-weight: 500;
    }
  }

  /* shared (all breakpoints) accents so the chips read on-brand in the drawer too */
  .facets__clear-all-link,
  .facets__clear-all,
  .clear-filter {
    color: #273755;
  }

  .facets-remove__pill {
    border: 1px solid var(--eg-hairline, #e5e5e5);
    border-radius: 999px;
    color: #273755;
  }

  /* Calm opacity fade when filters update (no bounce). */
  .product-grid-container[loading] .main-collection-grid,
  results-list[loading] .product-grid {
    opacity: 0.55;
    transition: opacity 200ms ease;
  }
  .main-collection-grid .product-grid {
    transition: opacity 200ms ease;
  }

  /* Mobile touch targets at least 44px on the filter toggle and sort. */
  @media screen and (max-width: 749px) {
    .facets-toggle__button,
    .sorting-filter__select-wrapper,
    .facets__summary {
      min-height: 44px;
    }
  }

  /* ----------------------------------------------------------------------
     Empty state: calm, centered, on-brand.
     ---------------------------------------------------------------------- */
  .main-collection-grid__empty {
    padding-block: 64px;
    gap: 12px;
  }

  .main-collection-grid__empty-title {
    font-family: var(--font-heading--family);
    color: #273755;
    font-weight: 600;
  }

  .main-collection-grid__empty p {
    font-family: var(--font-body--family), 'Inter', sans-serif;
    color: #6b6b6b;
    font-size: 16px;
  }

  .main-collection-grid__empty-link {
    color: #273755;
  }

  /* Collection card: title prominent (Cormorant ~22px navy), price subordinate (~14px), per the kit. */
  .main-collection-grid .product-card .text-block,
  .main-collection-grid .product-card .text-block p {
    font-size: 1.375rem !important;
    line-height: 1.2;
    font-family: var(--font-heading--family);
    color: #273755;
  }
  .main-collection-grid .product-card .price,
  .main-collection-grid .product-card .price * {
    font-size: 0.875rem;
  }

  /* MOBILE AUDIT FIX (2026-06-21): on the 2-up phone grid (~165px tiles) the
     forced 1.375rem (22px) title wraps long product names to 3-5 ragged lines.
     Lower it to the ~13px the card author intended. Same selector + !important
     + later source order beats the desktop rule, only inside this breakpoint.
     Desktop unchanged. */
  @media screen and (max-width: 749px) {
    .main-collection-grid .product-card .text-block,
    .main-collection-grid .product-card .text-block p {
      font-size: 0.8125rem !important;
      line-height: 1.2 !important;
    }
  }
/* END_SECTION:eg-collection-hero */

/* START_SECTION:eg-color-row (INDEX:19) */
.eg-color-row {
    background-color: var(--color-background);
    color: var(--color-foreground);
  }
  .eg-color-row__inner {
    max-width: 87.5rem;
    margin-inline: auto;
    padding-inline: 20px;
  }
  .eg-color-row__head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 28px;
  }
  .eg-color-row__head-right {
    flex: none;
    display: flex;
    align-items: center;
    gap: 18px;
  }
  .eg-color-row__eyebrow {
    font-family: var(--font-body--family);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    line-height: 1.3;
    color: #6B6B6B;
    margin: 0 0 12px;
  }
  .eg-color-row__heading {
    font-family: var(--font-heading--family);
    font-weight: 600;
    color: #273755;
    font-size: 2.25rem;
    line-height: 1.18;
    letter-spacing: 0.005em;
    margin: 0;
    max-width: 560px;
    text-wrap: balance;
  }
  .eg-color-row__nav {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .eg-color-row__navbtn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    flex: none;
    padding: 0;
    border-radius: 999px;
    border: 1px solid #E5E5E5;
    background-color: #FFFFFF;
    color: #273755;
    cursor: pointer;
    transition: border-color 180ms ease, color 180ms ease, opacity 180ms ease, background-color 180ms ease;
  }
  .eg-color-row__navbtn:hover {
    border-color: #273755;
    background-color: #273755;
    color: #FFFFFF;
  }
  .eg-color-row__navbtn:focus-visible {
    outline: 2px solid #273755;
    outline-offset: 2px;
  }
  .eg-color-row__navbtn:disabled,
  .eg-color-row__navbtn[aria-disabled="true"] {
    opacity: 0.35;
    cursor: default;
    pointer-events: none;
  }
  .eg-color-row__navbtn svg {
    display: block;
  }
  .eg-color-row__viewall {
    flex: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-body--family);
    font-size: 0.875rem;
    font-weight: 500;
    color: #273755;
    text-decoration: underline;
    text-underline-offset: 4px;
    white-space: nowrap;
    transition: opacity 180ms ease;
  }
  .eg-color-row__viewall:hover {
    opacity: 0.7;
  }
  .eg-color-row__arrow {
    font-size: 1em;
    line-height: 1;
  }

  .eg-color-row__track {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: nowrap;
    gap: 16px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 20px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .eg-color-row__track::-webkit-scrollbar {
    display: none;
  }
  .eg-color-row__item {
    display: flex;
    flex: 0 0 240px;
    width: 240px;
    scroll-snap-align: start;
  }
  .eg-color-row__card {
    display: flex;
    flex-direction: column;
    width: 100%;
    background-color: #FFFFFF;
    border: 1px solid #E5E5E5;
    border-radius: 4px;
    overflow: hidden;
    color: inherit;
    text-decoration: none;
    transition: border-color 180ms ease, box-shadow 180ms ease;
  }
  .eg-color-row__card:hover {
    border-color: #273755;
    box-shadow: 0 6px 18px rgb(39 55 85 / 0.08);
  }
  .eg-color-row__media {
    position: relative;
    overflow: hidden;
    background-color: #F5F5F5;
    aspect-ratio: 1 / 1;
  }
  .eg-color-row__img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 320ms ease;
  }
  .eg-color-row__img--empty {
    background: linear-gradient(135deg, #F5F5F5, #E5E5E5);
  }
  .eg-color-row__card:hover .eg-color-row__img {
    transform: scale(1.03);
  }
  .eg-color-row__copy {
    padding: 16px 18px 20px;
  }
  .eg-color-row__title {
    font-family: var(--font-heading--family);
    font-weight: 600;
    color: #273755;
    font-size: 1.25rem;
    line-height: 1.2;
    letter-spacing: 0.005em;
    margin: 0 0 6px;
    text-wrap: balance;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .eg-color-row__price {
    font-family: var(--font-body--family);
    font-weight: 500;
    color: #1A1A1A;
    font-size: 1rem;
    line-height: 1.3;
    margin: 0;
    font-variant-numeric: tabular-nums;
  }
  .eg-color-row__empty {
    font-family: var(--font-body--family);
    font-size: 0.875rem;
    color: #6B6B6B;
    margin: 0;
  }

  @media (prefers-reduced-motion: reduce) {
    .eg-color-row__img {
      transition: none;
    }
    .eg-color-row__card:hover .eg-color-row__img {
      transform: none;
    }
  }
  @media screen and (min-width: 750px) and (max-width: 989px) {
    .eg-color-row__heading {
      font-size: 1.85rem;
    }
  }
  @media screen and (max-width: 749px) {
    .eg-color-row__item {
      flex: 0 0 74vw;
      width: 74vw;
      max-width: 280px;
    }
    .eg-color-row__navbtn {
      width: 40px;
      height: 40px;
    }
  }
  @media screen and (max-width: 479px) {
    .eg-color-row__head {
      gap: 16px;
    }
    .eg-color-row__heading {
      font-size: 1.625rem;
    }
    .eg-color-row__head-right {
      gap: 12px;
    }
  }
/* END_SECTION:eg-color-row */

/* START_SECTION:eg-contact-form (INDEX:21) */
.eg-contact {

    padding-block: var(--eg-contact-pad-start, 88px) var(--eg-contact-pad-end, 96px);
  }

  .eg-contact__inner {
    width: 100%;
    max-width: 1100px;
    margin-inline: auto;
    padding-inline: var(--page-margin, 20px);
    box-sizing: border-box;
  }

  /* 1. Quiet hero (centered) */
  .eg-contact__head {
    max-width: 60ch;
    margin-inline: auto;
    margin-block-end: 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 18px;
  }

  .eg-contact__eyebrow {
    margin: 0;
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--eg-muted);
  }

  .eg-contact__heading {
    margin: 0;
    font-family: var(--font-heading--family);
    font-weight: 600;
    font-size: clamp(2.85rem, 5.6vw, 4.25rem);
    line-height: 1.02;
    letter-spacing: 0.012em;
    color: var(--eg-navy);
    text-wrap: balance;
  }

  /* Brand "we built" line: leads the page, larger than body, Cormorant navy */
  .eg-contact__brand-line {
    margin: 0;
    font-family: var(--font-heading--family);
    font-weight: 500;
    font-size: clamp(1.375rem, 2.6vw, 1.75rem);
    line-height: 1.32;
    letter-spacing: 0.004em;
    color: var(--eg-navy);
    text-wrap: pretty;
    max-width: 40ch;
  }

  .eg-contact__intro {
    margin: 0;
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: var(--eg-muted);
    text-wrap: pretty;
    max-width: 50ch;
  }

  .eg-contact__cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-block-start: 14px;
  }
  .eg-contact__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding-inline: 34px;
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.01em;
    color: var(--eg-white);
    background-color: var(--eg-navy);
    border: 1px solid var(--eg-navy);
    border-radius: 4px;
    text-decoration: none;
    transition: background-color 200ms ease, border-color 200ms ease;
  }
  .eg-contact__btn:hover,
  .eg-contact__btn:focus-visible {
    background-color: var(--eg-navy-hover);
    border-color: var(--eg-navy-hover);
    outline: none;
  }

  /* Office line: matching Office + Email tap chips, sit above the social grid */
  .eg-contact__office {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 16px;
    margin-block-end: 40px;
  }
  .eg-contact__office-link {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 14px 26px;
    background-color: var(--eg-white);
    border: 1px solid var(--eg-hairline);
    border-radius: 999px;
    text-decoration: none;
    transition: border-color 200ms ease, background-color 200ms ease, transform 200ms ease, box-shadow 200ms ease;
  }
  .eg-contact__office-link:hover,
  .eg-contact__office-link:focus-visible {
    border-color: var(--eg-navy);
    background-color: var(--eg-offwhite);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(39, 55, 85, 0.10);
    outline: none;
  }
  .eg-contact__office-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    flex: 0 0 auto;
    color: var(--eg-navy);
    background-color: var(--eg-offwhite);
    border: 1px solid var(--eg-hairline);
    border-radius: 50%;
    transition: background-color 200ms ease, border-color 200ms ease, color 200ms ease;
  }
  .eg-contact__office-link:hover .eg-contact__office-icon,
  .eg-contact__office-link:focus-visible .eg-contact__office-icon {
    background-color: var(--eg-navy);
    border-color: var(--eg-navy);
    color: var(--eg-white);
  }
  .eg-contact__office-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    text-align: left;
  }
  .eg-contact__office-label {
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--eg-muted);
  }
  .eg-contact__office-value {
    font-family: var(--font-heading--family);
    font-weight: 600;
    font-size: clamp(1.375rem, 2.6vw, 1.75rem);
    line-height: 1.1;
    letter-spacing: 0.01em;
    color: var(--eg-navy);
  }
  .eg-contact__office-sub {
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: 0.01em;
    color: var(--eg-muted);
  }

  /* 2. Social: centered grid of large square tiles with platform names, promoted high */
  .eg-contact__social-wrap {
    margin-block-end: 56px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 26px;
  }
  .eg-contact__social-label {
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--eg-muted);
  }
  .eg-contact__social {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, 132px);
    grid-auto-rows: 132px;
    gap: 16px;
    justify-content: center;
  }
  .eg-contact__social-link {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    height: 100%;
    border: 1px solid var(--eg-hairline);
    border-radius: 4px;
    color: var(--eg-navy);
    background-color: var(--eg-white);
    text-decoration: none;
    transition: border-color 200ms ease, background-color 200ms ease, color 200ms ease, transform 200ms ease, box-shadow 200ms ease;
  }
  .eg-contact__social-link:hover,
  .eg-contact__social-link:focus-visible {
    border-color: var(--eg-navy);
    background-color: var(--eg-navy);
    color: var(--eg-white);
    transform: translateY(-3px);
    box-shadow: 0 8px 22px rgba(39, 55, 85, 0.16);
    outline: none;
  }
  .eg-contact__social-icon {
    display: block;
    transition: color 200ms ease;
  }
  .eg-contact__social-name {
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.02em;
    line-height: 1.1;
    color: currentColor;
    text-align: center;
  }

  /* 3. Founder pull-quote */
  .eg-contact__founder {
    margin: 0 auto 64px;
    max-width: 50ch;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 22px;
    padding-block: 40px;
    border-top: 1px solid var(--eg-hairline);
    border-bottom: 1px solid var(--eg-hairline);
  }
  .eg-contact__quote-mark {
    color: var(--eg-navy);
    opacity: 0.22;
  }
  .eg-contact__founder-quote {
    margin: 0;
    font-family: var(--font-heading--family);
    font-weight: 500;
    font-size: clamp(1.5rem, 3vw, 2.0625rem);
    line-height: 1.3;
    letter-spacing: 0.004em;
    color: var(--eg-navy);
    text-wrap: pretty;
  }
  .eg-contact__founder-name {
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--eg-muted);
  }

  /* 4. Contact form area */
  .eg-contact__layout {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: 56px;
    align-items: start;
  }
  /* Solo: form only, centered at a comfortable reading width */
  .eg-contact__layout--solo {
    grid-template-columns: minmax(0, 1fr);
    max-width: 640px;
    margin-inline: auto;
  }

  .eg-contact__aside {
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-width: 0;
  }

  /* Channel cards (Text / DM / Email) */
  .eg-contact__channels {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .eg-contact__channel {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px clamp(16px, 2.2vw, 22px);
    background-color: var(--eg-white);
    border: 1px solid var(--eg-hairline);
    border-radius: 4px;
    text-decoration: none;
    transition: border-color 200ms ease, background-color 200ms ease, transform 200ms ease, box-shadow 200ms ease;
  }
  .eg-contact__channel:hover,
  .eg-contact__channel:focus-visible {
    border-color: var(--eg-navy);
    background-color: var(--eg-offwhite);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(39, 55, 85, 0.08);
    outline: none;
  }
  .eg-contact__channel-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    flex: 0 0 auto;
    color: var(--eg-navy);
    background-color: var(--eg-offwhite);
    border: 1px solid var(--eg-hairline);
    border-radius: 50%;
    transition: background-color 200ms ease, border-color 200ms ease, color 200ms ease;
  }
  .eg-contact__channel:hover .eg-contact__channel-icon,
  .eg-contact__channel:focus-visible .eg-contact__channel-icon {
    background-color: var(--eg-navy);
    border-color: var(--eg-navy);
    color: var(--eg-white);
  }
  .eg-contact__channel-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
  }
  .eg-contact__channel-label {
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--eg-muted);
  }
  .eg-contact__channel-value {
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: clamp(1.0625rem, 1.7vw, 1.1875rem);
    font-weight: 500;
    line-height: 1.25;
    letter-spacing: 0.004em;
    color: var(--eg-charcoal);
    word-break: break-word;
  }

  /* Form column */
  .eg-contact__main {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 0;
  }
  .eg-contact__form-heading {
    margin: 0;
    font-family: var(--font-heading--family);
    font-weight: 600;
    font-size: clamp(1.625rem, 2.8vw, 2.125rem);
    line-height: 1.12;
    letter-spacing: 0.012em;
    color: var(--eg-navy);
  }
  .eg-contact__form-subhead {
    margin: 0 0 12px;
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 15px;
    line-height: 1.55;
    color: var(--eg-muted);
  }

  .eg-contact__panel {
    background-color: var(--eg-white);
    border: 1px solid var(--eg-hairline);
    border-radius: 4px;
    padding: clamp(20px, 4vw, 36px);
  }

  .eg-contact__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }
  .eg-contact__field {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }
  .eg-contact__field--full { grid-column: 1 / -1; }

  .eg-contact__field-label {
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.3;
    color: var(--eg-charcoal);
  }

  .eg-contact__input {
    width: 100%;
    box-sizing: border-box;
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 15px;
    line-height: 1.4;
    color: var(--eg-charcoal);
    background-color: var(--eg-white);
    border: 1px solid var(--eg-hairline);
    border-radius: 4px;
    padding: 11px 12px;
    transition: border-color 200ms ease, box-shadow 200ms ease;
    appearance: none;
  }
  .eg-contact__input::placeholder { color: var(--eg-muted); }
  .eg-contact__input:focus,
  .eg-contact__input:focus-visible {
    outline: none;
    border-color: var(--eg-navy);
    box-shadow: 0 0 0 2px rgba(39, 55, 85, 0.18);
  }
  .eg-contact__textarea {
    resize: vertical;
    min-height: 150px;
  }

  .eg-contact__hp {
    position: absolute !important;
    left: -9999px !important;
    width: 1px;
    height: 1px;
    overflow: hidden;
  }

  .eg-contact__actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-block-start: 22px;
  }
  .eg-contact__submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding-inline: 30px;
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.01em;
    color: var(--eg-white);
    background-color: var(--eg-navy);
    border: 1px solid var(--eg-navy);
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 200ms ease, border-color 200ms ease;
  }
  .eg-contact__submit:hover,
  .eg-contact__submit:focus-visible {
    background-color: var(--eg-navy-hover);
    border-color: var(--eg-navy-hover);
  }
  .eg-contact__disclaimer {
    margin: 0;
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 13px;
    line-height: 1.5;
    color: var(--eg-muted);
  }

  .eg-contact__errors {
    margin-block-end: 18px;
    padding: 12px 14px;
    border: 1px solid var(--eg-hairline);
    border-radius: 4px;
    background-color: var(--eg-offwhite);
  }
  .eg-contact__errors p {
    margin: 0;
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 14px;
    color: var(--eg-charcoal);
  }

  .eg-contact__success {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 8px 0;
    outline: none;
  }
  .eg-contact__success-title {
    margin: 0;
    font-family: var(--font-heading--family);
    font-weight: 600;
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    line-height: 1.2;
    color: var(--eg-navy);
  }

  @media screen and (max-width: 990px) {
    .eg-contact__layout { grid-template-columns: 1fr; gap: 40px; }
  }
  @media screen and (max-width: 749px) {
    .eg-contact__grid { grid-template-columns: 1fr; }
    .eg-contact__submit { width: 100%; }
    .eg-contact__btn { width: 100%; }
    .eg-contact__cta { gap: 14px; }
    .eg-contact__office { flex-direction: column; align-items: stretch; }
    .eg-contact__office-link { width: 100%; justify-content: center; }
    .eg-contact__social { grid-template-columns: repeat(3, 1fr); grid-auto-rows: auto; width: 100%; max-width: 360px; }
    .eg-contact__social-link { min-height: 112px; }
  }

  @media (prefers-reduced-motion: reduce) {
    .eg-contact__input,
    .eg-contact__submit,
    .eg-contact__btn,
    .eg-contact__office-link,
    .eg-contact__office-icon,
    .eg-contact__channel,
    .eg-contact__channel-icon,
    .eg-contact__social-link,
    .eg-contact__social-icon { transition: none; transform: none; }
  }
/* END_SECTION:eg-contact-form */

/* START_SECTION:eg-curated-grid (INDEX:22) */
.eg-curated {

    padding-block: var(--eg-curated-pad-block-start, 72px) var(--eg-curated-pad-block-end, 72px);
    scroll-margin-top: 88px;
  }

  .eg-curated__inner {
    width: 100%;
    max-width: var(--page-width, 1400px);
    margin-inline: auto;
    padding-inline: var(--page-margin, 20px);
    display: flex;
    flex-direction: column;
    gap: 28px;
  }

  .eg-curated__head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
  }

  .eg-curated__head-text {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .eg-curated__eyebrow {
    margin: 0;
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--eg-muted);
  }

  .eg-curated__heading {
    margin: 0;
    font-family: var(--font-heading--family);
    font-weight: 600;
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    line-height: 1.1;
    color: var(--eg-navy);
  }

  .eg-curated__view-all {
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: var(--eg-navy);
    text-decoration: none;
    white-space: nowrap;
    transition: color 200ms ease;
  }
  .eg-curated__view-all span { margin-inline-start: 4px; }
  .eg-curated__view-all:hover,
  .eg-curated__view-all:focus-visible { color: #1b2840; text-decoration: underline; }

  .eg-curated__grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .eg-curated__card { display: flex; }

  .eg-curated__card-link {
    display: flex;
    flex-direction: column;
    width: 100%;
    border: 1px solid var(--eg-hairline);
    border-radius: 4px;
    overflow: hidden;
    background-color: var(--eg-white);
    text-decoration: none;
    transition: box-shadow 200ms ease, border-color 200ms ease;
  }

  .eg-curated__card-link:hover,
  .eg-curated__card-link:focus-visible {
    box-shadow: var(--eg-shadow-soft);
    border-color: #d8dce4;
  }

  .eg-curated__media {
    display: block;
    aspect-ratio: 1 / 1;
    background-color: var(--eg-offwhite);
  }

  .eg-curated__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .eg-curated__img--placeholder {
    background-color: var(--eg-offwhite);
  }

  .eg-curated__card-body {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 12px 12px 14px;
  }

  .eg-curated__title {
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.4;
    color: var(--eg-navy);
  }

  .eg-curated__price {
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 14px;
    font-variant-numeric: tabular-nums;
    color: var(--eg-charcoal);
  }

  .eg-curated__card--look .eg-curated__look-link {
    background-color: var(--eg-navy);
    border-color: var(--eg-navy);
    justify-content: center;
    min-height: 100%;
  }

  .eg-curated__look-body {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 28px 24px;
    aspect-ratio: auto;
  }

  .eg-curated__look-eyebrow {
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.66);
  }

  .eg-curated__look-heading {
    font-family: var(--font-heading--family);
    font-weight: 600;
    font-size: 1.5rem;
    line-height: 1.12;
    color: var(--eg-white);
  }

  .eg-curated__look-cta {
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: var(--eg-white);
  }
  .eg-curated__look-cta span { margin-inline-start: 4px; }

  .eg-curated__empty {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 56px 24px;
    border: 1px solid var(--eg-hairline);
    border-radius: 4px;
    background-color: var(--eg-white);
  }

  .eg-curated__empty-title {
    margin: 0;
    font-family: var(--font-heading--family);
    font-weight: 600;
    font-size: 1.5rem;
    color: var(--eg-navy);
  }

  .eg-curated__empty-link {
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: var(--eg-navy);
    text-decoration: none;
  }
  .eg-curated__empty-link span { margin-inline-start: 4px; }
  .eg-curated__empty-link:hover,
  .eg-curated__empty-link:focus-visible { text-decoration: underline; }

  @media screen and (min-width: 750px) and (max-width: 989px) {
    .eg-curated__grid { grid-template-columns: repeat(2, 1fr); }
  }

  @media screen and (max-width: 749px) {
    .eg-curated__grid { grid-template-columns: 1fr; }
  }
/* END_SECTION:eg-curated-grid */

/* START_SECTION:eg-digital-teaser (INDEX:24) */
.eg-digital-teaser {

    padding-block: var(--eg-teaser-pad-block-start, 96px) var(--eg-teaser-pad-block-end, 96px);
  }

  .eg-digital-teaser__inner {
    width: 100%;
    max-width: var(--page-width, 1400px);
    margin-inline: auto;
    padding-inline: var(--page-margin, 20px);
  }

  .eg-digital-teaser__head {
    max-width: 60ch;
  }

  .eg-digital-teaser__eyebrow {
    margin: 0;
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--eg-accent, #c28a3c);
  }

  .eg-digital-teaser__hairline {
    display: block;
    width: 56px;
    height: 1px;
    margin-block-start: 16px;
    background-color: var(--eg-accent, #c28a3c);
    opacity: 0.9;
  }

  .eg-digital-teaser__headline {
    margin: 0;
    margin-block-start: 20px;
    max-width: 18ch;
    font-family: var(--font-heading--family);
    font-weight: 600;
    font-size: clamp(2.25rem, 4.8vw, 3.75rem);
    line-height: 1.05;
    letter-spacing: 0.004em;
    color: var(--color-foreground-heading, #273755);
  }

  .eg-digital-teaser__supporting {
    margin: 0;
    margin-block-start: 20px;
    max-width: 56ch;
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: var(--color-foreground, #1a1a1a);
  }

  .eg-digital-teaser__coming {
    margin: 0;
    margin-block-start: 48px;
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--eg-muted, #6b6b6b);
  }

  .eg-digital-teaser__cards {
    list-style: none;
    margin: 0;
    margin-block-start: 20px;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .eg-digital-teaser__card {
    border: 1px solid var(--eg-hairline, #e5e5e5);
    border-radius: 4px;
    padding: 28px 24px;
    background-color: var(--eg-white, #ffffff);
    min-height: 100%;
  }

  .eg-digital-teaser__card-title {
    margin: 0;
    font-family: var(--font-heading--family);
    font-weight: 600;
    font-size: clamp(1.5rem, 2.2vw, 1.875rem);
    line-height: 1.12;
    color: var(--color-foreground-heading, #273755);
  }

  .eg-digital-teaser__card-sub {
    margin: 0;
    margin-block-start: 10px;
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 15px;
    line-height: 1.55;
    color: var(--eg-muted, #6b6b6b);
  }

  .eg-digital-teaser__capture {
    margin-block-start: 56px;
    max-width: 620px;
  }

  .eg-digital-teaser__capture-heading {
    margin: 0;
    font-family: var(--font-heading--family);
    font-weight: 600;
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    line-height: 1.1;
    color: var(--color-foreground-heading, #273755);
  }

  .eg-digital-teaser__capture-sub {
    margin: 0;
    margin-block-start: 12px;
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.55;
    color: var(--color-foreground, #1a1a1a);
  }

  .eg-digital-teaser__form {
    margin-block-start: 24px;
  }

  .eg-digital-teaser__label {
    display: block;
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.2;
    color: var(--color-foreground, #1a1a1a);
    margin-block-end: 8px;
  }

  .eg-digital-teaser__controls {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: stretch;
  }

  .eg-digital-teaser__input {
    flex: 1 1 260px;
    min-width: 0;
    height: 48px;
    padding-inline: 16px;
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.2;
    color: var(--eg-charcoal, #1a1a1a);
    background-color: var(--eg-white, #ffffff);
    border: 1px solid var(--eg-hairline, #e5e5e5);
    border-radius: 4px;
    transition: border-color 200ms ease, box-shadow 200ms ease;
  }

  .eg-digital-teaser__input::placeholder {
    color: var(--eg-muted, #6b6b6b);
    opacity: 1;
  }

  .eg-digital-teaser__input:focus,
  .eg-digital-teaser__input:focus-visible {
    outline: none;
    border-color: var(--eg-navy, #273755);
    box-shadow: 0 0 0 3px rgba(39, 55, 85, 0.12);
  }

  .eg-digital-teaser__submit {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding-inline: 28px;
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.01em;
    color: var(--eg-white, #ffffff);
    background-color: var(--eg-navy, #273755);
    border: 1px solid var(--eg-navy, #273755);
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 200ms ease, border-color 200ms ease;
  }

  .eg-digital-teaser__submit:hover,
  .eg-digital-teaser__submit:focus-visible {
    background-color: var(--eg-navy-hover, #1b2840);
    border-color: var(--eg-navy-hover, #1b2840);
    color: var(--eg-white, #ffffff);
  }

  .eg-digital-teaser__submit:focus-visible {
    outline: 2px solid var(--eg-navy, #273755);
    outline-offset: 2px;
  }

  .eg-digital-teaser__disclaimer {
    margin: 0;
    margin-block-start: 12px;
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 13px;
    line-height: 1.5;
    color: var(--eg-muted, #6b6b6b);
  }

  .eg-digital-teaser__success {
    margin: 0;
    padding: 16px 20px;
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: var(--eg-navy, #273755);
    background-color: var(--eg-offwhite, #f5f5f5);
    border: 1px solid var(--eg-hairline, #e5e5e5);
    border-radius: 4px;
  }

  .eg-digital-teaser__form-error {
    margin: 0;
    margin-block-end: 16px;
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.5;
    color: #8a2f2f;
  }

  @media screen and (max-width: 749px) {
    .eg-digital-teaser {
      padding-block: 64px 64px;
    }
    .eg-digital-teaser__cards {
      grid-template-columns: 1fr;
    }
    .eg-digital-teaser__supporting {
      font-size: 17px;
    }
    .eg-digital-teaser__controls {
      flex-direction: column;
      align-items: stretch;
    }
    .eg-digital-teaser__input {
      flex: 1 1 auto;
    }
    .eg-digital-teaser__submit {
      width: 100%;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .eg-digital-teaser__input,
    .eg-digital-teaser__submit {
      transition: none;
    }
  }
/* END_SECTION:eg-digital-teaser */

/* START_SECTION:eg-faq (INDEX:27) */
.eg-faq-page {
  }

  .eg-faq-page__hero-inner,
  .eg-faq-page__body-inner,
  .eg-faq-page__contact-inner {
    width: 100%;
    margin-inline: auto;
    padding-inline: var(--page-margin, 20px);
    box-sizing: border-box;
  }
  .eg-faq-page__hero-inner { max-width: 1120px; }
  .eg-faq-page__body-inner { max-width: 60rem; }
  .eg-faq-page__contact-inner { max-width: 36rem; text-align: center; }

  .eg-faq-page__eyebrow {
    margin: 0 0 18px;
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--eg-muted);
  }
  .eg-faq-page__eyebrow--center { color: var(--color-foreground); opacity: 0.62; }

  /* 1. Hero */
  .eg-faq-page__hero {
    background-color: var(--color-background);
    color: var(--color-foreground);
    padding-block: var(--eg-faq-pad-start, 104px) 72px;
  }
  .eg-faq-page__hero-heading {
    margin: 0;
    font-family: var(--font-heading--family);
    font-weight: 600;
    font-size: clamp(2.5rem, 5.5vw, 4rem);
    line-height: 1.06;
    letter-spacing: 0.012em;
    color: var(--color-foreground-heading);
    text-wrap: balance;
    max-width: 20ch;
  }
  .eg-faq-page__hero-sub {
    margin: 24px 0 0;
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 20px;
    line-height: 1.55;
    color: var(--color-foreground);
    max-width: 42rem;
    text-wrap: pretty;
  }
  .eg-faq-page__hero-sub p { margin: 0; }
  .eg-faq-page__hero-sub a {
    color: var(--eg-navy);
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 4px;
  }

  /* 2. Grouped accordion */
  .eg-faq-page__body {
    background-color: var(--color-background);
    color: var(--color-foreground);
    padding-block: 24px 80px;
  }
  .eg-faq-page__group { margin-bottom: 48px; }
  .eg-faq-page__group:last-child { margin-bottom: 0; }
  .eg-faq-page__group-heading {
    margin: 0 0 14px;
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--eg-navy);
  }
  .eg-faq-page__list { border-top: 1px solid var(--eg-hairline); }
  .eg-faq-page__item { border-bottom: 1px solid var(--eg-hairline); }
  .eg-faq-page__q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    cursor: pointer;
    list-style: none;
    padding: 22px 0;
    font-family: var(--font-heading--family);
    font-size: 1.375rem;
    line-height: 1.3;
    color: var(--color-foreground-heading);
  }
  .eg-faq-page__q::-webkit-details-marker { display: none; }
  .eg-faq-page__mark {
    position: relative;
    flex: 0 0 auto;
    width: 14px;
    height: 14px;
  }
  .eg-faq-page__mark::before,
  .eg-faq-page__mark::after {
    content: '';
    position: absolute;
    background-color: var(--eg-muted);
    transition: opacity 0.2s ease;
  }
  .eg-faq-page__mark::before { top: 6px; left: 0; width: 14px; height: 2px; }
  .eg-faq-page__mark::after { top: 0; left: 6px; width: 2px; height: 14px; }
  .eg-faq-page__item[open] .eg-faq-page__mark::after { opacity: 0; }
  .eg-faq-page__a {
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-foreground);
    padding: 0 0 22px;
    max-width: 52rem;
    text-wrap: pretty;
  }
  .eg-faq-page__a p { margin: 0 0 0.75em; }
  .eg-faq-page__a p:last-child { margin-bottom: 0; }
  .eg-faq-page__a a {
    color: var(--eg-navy);
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 3px;
  }

  /* 3. Closing contact band */
  .eg-faq-page__contact {
    background-color: var(--color-background);
    color: var(--color-foreground);
    padding-block: 80px var(--eg-faq-pad-end, 96px);
  }
  .eg-faq-page__contact-heading {
    margin: 0 0 16px;
    font-family: var(--font-heading--family);
    font-weight: 600;
    font-size: clamp(2rem, 4vw, 2.5rem);
    line-height: 1.12;
    letter-spacing: 0.012em;
    color: var(--color-foreground-heading);
    text-wrap: balance;
  }
  .eg-faq-page__contact-body {
    margin: 0;
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 20px;
    line-height: 1.55;
    color: var(--color-foreground);
    text-wrap: pretty;
  }
  .eg-faq-page__contact-actions { margin-top: 24px; }
  .eg-faq-page__pill {
    display: inline-block;
    background-color: var(--eg-navy);
    color: var(--eg-white);
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.04em;
    padding: 14px 28px;
    border-radius: 4px;
    text-decoration: none;
  }
  .eg-faq-page__pill:hover { background-color: #1b2840; }

  @media screen and (max-width: 749px) {
    .eg-faq-page__hero-sub { font-size: 18px; }
    .eg-faq-page__q { font-size: 1.25rem; }
    .eg-faq-page__contact-body { font-size: 18px; }
  }
/* END_SECTION:eg-faq */

/* START_SECTION:eg-feed (INDEX:28) */
.eg-feed {

    padding-block: var(--eg-feed-pad-start, 88px) var(--eg-feed-pad-end, 96px);
  }

  .eg-feed__inner {
    width: 100%;
    max-width: 1120px;
    margin-inline: auto;
    padding-inline: var(--page-margin, 20px);
    box-sizing: border-box;
  }

  .eg-feed__head {
    max-width: 66ch;
    margin-block-end: 32px;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .eg-feed__eyebrow {
    margin: 0;
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: lowercase;
    color: var(--eg-muted);
  }

  .eg-feed__heading {
    margin: 0;
    font-family: var(--font-heading--family);
    font-weight: 600;
    font-size: clamp(2.25rem, 4.6vw, 3.25rem);
    line-height: 1.05;
    letter-spacing: 0.012em;
    color: var(--eg-navy);
    text-wrap: balance;
  }

  .eg-feed__intro {
    margin: 0;
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: clamp(1.0625rem, 1.7vw, 1.1875rem);
    line-height: 1.6;
    color: var(--eg-charcoal);
    text-wrap: pretty;
    max-width: 52ch;
  }

  /* Channel buttons: crisp navy-chip cards, hover inverts to full navy */
  .eg-feed__social-wrap {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .eg-feed__social-label {
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--eg-muted);
  }
  .eg-feed__social {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
  .eg-feed__social-link {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 13px 16px;
    min-height: 62px;
    box-sizing: border-box;
    border: 1px solid var(--eg-hairline);
    border-radius: 4px;
    color: var(--eg-charcoal);
    background-color: var(--eg-white);
    text-decoration: none;
    transition: border-color 180ms ease, background-color 180ms ease, color 180ms ease;
  }
  .eg-feed__social-link:hover,
  .eg-feed__social-link:focus-visible {
    border-color: var(--eg-navy);
    background-color: var(--eg-navy);
    color: var(--eg-white);
    outline: none;
  }
  .eg-feed__social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    flex: 0 0 auto;
    border-radius: 4px;
    background-color: var(--eg-navy);
    color: var(--eg-white);
    transition: background-color 180ms ease, color 180ms ease;
  }
  .eg-feed__social-link:hover .eg-feed__social-icon,
  .eg-feed__social-link:focus-visible .eg-feed__social-icon {
    background-color: var(--eg-white);
    color: var(--eg-navy);
  }
  .eg-feed__social-icon svg { display: block; }
  .eg-feed__social-name {
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.005em;
    line-height: 1.2;
  }

  @media screen and (max-width: 749px) {
    .eg-feed__social { grid-template-columns: repeat(2, 1fr); }
  }
  @media screen and (max-width: 459px) {
    .eg-feed__social { grid-template-columns: 1fr; }
  }

  @media (prefers-reduced-motion: reduce) {
    .eg-feed__social-link,
    .eg-feed__social-icon { transition: none; }
  }
/* END_SECTION:eg-feed */

/* START_SECTION:eg-footer-capture (INDEX:29) */
.eg-fcap { background: var(--eg-navy); border-bottom: 1px solid rgba(255,255,255,.14); }
.eg-fcap__in { max-width: 1320px; margin: 0 auto; padding: 48px 24px; display: grid; gap: 24px; align-items: center; }
@media (min-width: 900px) { .eg-fcap__in { grid-template-columns: 1fr 1fr; gap: 64px; } }
.eg-fcap__eyebrow { font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.62); font-weight: 500; margin: 0 0 12px; font-family: var(--eg-font-body); }
.eg-fcap__h { font-family: var(--eg-font-display); font-weight: 600; font-size: clamp(24px, 3vw, 34px); line-height: 1.12; color: var(--eg-white); margin: 0 0 10px; text-wrap: balance; }
.eg-fcap__sub { font-size: 14px; color: rgba(255,255,255,.72); margin: 0; max-width: 46ch; font-family: var(--eg-font-body); line-height: 1.55; }
.eg-fcap__points { list-style: none; margin: 16px 0 0; padding: 0; font-family: var(--eg-font-body); }
.eg-fcap__points li { font-size: 13.5px; color: rgba(255,255,255,.82); padding: 5px 0 5px 20px; position: relative; }
.eg-fcap__points li::before { content: ''; position: absolute; left: 0; top: 12px; width: 8px; height: 2px; background: var(--eg-accent); }
/* Klaviyo styles its own text via inline styles (dark ink, unreadable on navy).
   A paper card under the mounted embed makes the form + consent language legible
   without fighting Klaviyo's inline styles with !important. The card only paints
   once the form actually mounts, so a failed embed leaves no empty box. */
.eg-fcap__form { min-height: 56px; }
.eg-fcap__form > div:not(:empty) { background: var(--eg-paper); border-radius: var(--eg-radius); padding: 18px 20px; }
/* END_SECTION:eg-footer-capture */

/* START_SECTION:eg-for-business (INDEX:30) */
.eg-fb{--eg-navy:#273755;--eg-navy-hover:#1b2840;--eg-charcoal:#1a1a1a;--eg-offwhite:#f5f5f5;--eg-white:#ffffff;--eg-hairline:#e5e5e5;--eg-muted:#6b6b6b;--eg-accent:#c28a3c;padding-block:var(--eg-fb-pad-block-start,96px) var(--eg-fb-pad-block-end,96px)}.eg-fb__inner{width:100%;max-width:1180px;margin-inline:auto;padding-inline:var(--page-margin,20px)}.eg-fb__intro{display:flex;flex-direction:column;align-items:flex-start;max-width:64ch}.eg-fb__eyebrow{margin:0;font-family:var(--font-body--family),'Inter',sans-serif;font-size:12px;font-weight:500;line-height:1.2;letter-spacing:0.16em;text-transform:uppercase;color:var(--eg-muted)}.eg-fb__hairline{display:block;width:56px;height:1px;margin-block-start:16px;background-color:var(--eg-accent);opacity:0.9}.eg-fb__heading{margin:0;margin-block-start:20px;max-width:18ch;font-family:var(--font-heading--family);font-weight:600;font-size:clamp(2.25rem,4.6vw,3.5rem);line-height:1.05;letter-spacing:0.004em;color:var(--eg-navy)}.eg-fb__intro-text{margin:0;margin-block-start:20px;max-width:56ch;font-family:var(--font-body--family),'Inter',sans-serif;font-size:18px;line-height:1.6;color:var(--eg-charcoal)}.eg-fb__grid{display:grid;grid-template-columns:repeat(var(--eg-fb-card-count,3),minmax(0,300px));gap:24px;margin-block-start:48px;width:100%;margin-inline:auto;justify-content:center}.eg-fb__cell{display:flex}.eg-fb__card{display:flex;flex-direction:column;align-items:flex-start;width:100%;height:100%;gap:12px;padding:28px;background-color:var(--eg-white);border:1px solid var(--eg-hairline);border-radius:4px;text-decoration:none;transition:transform 200ms ease,box-shadow 200ms ease,border-color 200ms ease}a.eg-fb__card:hover,a.eg-fb__card:focus-visible{transform:translateY(-3px);border-color:#d4d4d4;box-shadow:0 12px 28px rgba(39,55,85,0.1);outline:none}a.eg-fb__card:focus-visible{outline:2px solid var(--eg-navy);outline-offset:3px}.eg-fb__card--static{cursor:default}.eg-fb__media{display:block;width:100%;aspect-ratio:4 / 5;margin-block-end:4px;overflow:hidden;border-radius:4px;background-color:var(--eg-offwhite)}.eg-fb__media-img{display:block;width:100%;height:100%;object-fit:cover;object-position:center;transition:transform 320ms ease}a.eg-fb__card:hover .eg-fb__media-img,a.eg-fb__card:focus-visible .eg-fb__media-img{transform:scale(1.03)}.eg-fb__status{display:inline-flex;align-items:center;font-family:var(--font-body--family),'Inter',sans-serif;font-size:11px;font-weight:500;line-height:1;letter-spacing:0.1em;text-transform:uppercase;padding:6px 10px;border-radius:999px}.eg-fb__status--available{color:var(--eg-navy);background-color:var(--eg-offwhite);border:1px solid var(--eg-hairline)}.eg-fb__status--soon{color:var(--eg-muted);background-color:transparent;border:1px solid var(--eg-hairline)}.eg-fb__card-title{margin:0;font-family:var(--font-heading--family);font-weight:600;font-size:clamp(1.5rem,2.2vw,1.875rem);line-height:1.1;color:var(--eg-navy)}.eg-forbiz__lockup{display:inline-flex;align-items:center;gap:12px;color:inherit}.eg-forbiz__lk-word{font-family:var(--font-heading--family);font-weight:600;font-size:1.35rem;line-height:1;letter-spacing:0.01em}.eg-forbiz__lk-rule{display:inline-block;width:1px;height:18px;background:currentColor;opacity:0.55;flex:0 0 auto}.eg-forbiz__lk-mod{font-family:var(--font-body--family),'Inter',sans-serif;font-weight:500;font-size:14px;letter-spacing:0.14em;text-transform:uppercase}.eg-fb__card-blurb{margin:0;font-family:var(--font-body--family),'Inter',sans-serif;font-size:15px;line-height:1.55;color:var(--eg-charcoal)}.eg-fb__card-go{display:inline-flex;align-items:center;justify-content:center;gap:8px;margin-block-start:auto;padding:12px 20px;min-height:44px;border:1px solid var(--eg-hairline);border-radius:4px;font-family:var(--font-body--family),'Inter',sans-serif;font-size:14px;font-weight:600;letter-spacing:0.02em;color:var(--eg-white);background-color:var(--eg-navy);transition:background-color 200ms ease}a.eg-fb__card:hover .eg-fb__card-go,a.eg-fb__card:focus-visible .eg-fb__card-go{background-color:var(--eg-navy-hover)}.eg-fb__card-go svg{transition:transform 200ms ease}a.eg-fb__card:hover .eg-fb__card-go svg,a.eg-fb__card:focus-visible .eg-fb__card-go svg{transform:translateX(3px)}.eg-fb__closing{margin:0;margin-block-start:40px;font-family:var(--font-body--family),'Inter',sans-serif;font-size:16px;line-height:1.6;color:var(--eg-muted)}.eg-fb__closing-link{color:var(--eg-navy);text-decoration:underline;text-underline-offset:0.2em;text-decoration-thickness:1px;transition:color 200ms ease}.eg-fb__closing-link:hover,.eg-fb__closing-link:focus-visible{color:var(--eg-navy-hover)}@media screen and (max-width:1100px){.eg-fb__grid{grid-template-columns:repeat(auto-fit,minmax(220px,1fr));max-width:760px}.eg-fb__media{aspect-ratio:3 / 4}}@media screen and (max-width:760px){.eg-fb__grid{grid-template-columns:repeat(auto-fit,minmax(180px,1fr));gap:16px;max-width:520px}.eg-fb{padding-block:64px 64px}.eg-fb__intro-text{font-size:17px}.eg-fb__card{padding:20px}}@media screen and (max-width:540px){.eg-fb__grid{grid-template-columns:1fr;max-width:420px}.eg-fb__media{aspect-ratio:16 / 10}.eg-fb__card{padding:24px}}@media (prefers-reduced-motion:reduce){.eg-fb__card,.eg-fb__card-go,.eg-fb__card-go svg,.eg-fb__media-img,.eg-fb__closing-link{transition:none}a.eg-fb__card:hover,a.eg-fb__card:focus-visible{transform:none}a.eg-fb__card:hover .eg-fb__media-img,a.eg-fb__card:focus-visible .eg-fb__media-img{transform:none}}
/* END_SECTION:eg-for-business */

/* START_SECTION:eg-gift-card (INDEX:31) */
.eg-gc {
  }

  .eg-gc__hero-inner,
  .eg-gc__denoms-inner,
  .eg-gc__how-inner,
  .eg-gc__close-inner {
    width: 100%;
    margin-inline: auto;
    padding-inline: var(--page-margin, 20px);
    box-sizing: border-box;
    max-width: 1120px;
  }

  .eg-gc__eyebrow {
    margin: 0 0 18px;
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--eg-muted);
  }

  .eg-gc__h2 {
    margin: 0 0 36px;
    font-family: var(--font-heading--family);
    font-weight: 600;
    font-size: clamp(2rem, 4vw, 2.375rem);
    line-height: 1.12;
    letter-spacing: 0.012em;
    color: var(--color-foreground-heading);
    text-wrap: balance;
  }
  .eg-gc__h2--tight { margin: 8px 0 36px; }

  .eg-gc__body {
    margin: 0;
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 17px;
    line-height: 1.6;
    color: var(--color-foreground);
    text-wrap: pretty;
  }
  .eg-gc__body--spaced { margin-top: 18px; }
  .eg-gc__inline-link {
    color: var(--eg-navy);
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 3px;
  }

  /* Shared navy pill */
  .eg-gc__pill {
    display: inline-block;
    background-color: var(--eg-navy);
    color: var(--eg-white);
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.04em;
    padding: 14px 28px;
    border-radius: 4px;
    text-decoration: none;
    transition: background-color 0.2s ease;
  }
  .eg-gc__pill:hover { background-color: var(--eg-navy-90); }

  /* 1. Hero */
  .eg-gc__hero {
    background-color: var(--color-background);
    color: var(--color-foreground);
    padding-block: var(--eg-gc-pad-start, 120px) 88px;
  }
  .eg-gc__hero-heading {
    margin: 0;
    font-family: var(--font-heading--family);
    font-weight: 600;
    font-size: clamp(2.5rem, 5.5vw, 4rem);
    line-height: 1.06;
    letter-spacing: 0.012em;
    color: var(--color-foreground-heading);
    text-wrap: balance;
    max-width: 14ch;
  }
  .eg-gc__hero-sub {
    margin: 24px 0 0;
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 20px;
    line-height: 1.55;
    color: var(--color-foreground);
    max-width: 42rem;
    text-wrap: pretty;
  }
  .eg-gc__hero-actions { margin-top: 32px; }

  /* 2. Denominations */
  .eg-gc__denoms {
    background-color: var(--color-background);
    color: var(--color-foreground);
    padding-block: 80px;
  }
  .eg-gc__cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
  .eg-gc__denom { display: flex; flex-direction: column; }
  .eg-gc__face {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    aspect-ratio: 1.586 / 1;
    padding: 7%;
    box-sizing: border-box;
    background-color: var(--eg-navy);
    color: var(--eg-white);
    border-radius: 4px;
    overflow: hidden;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  .eg-gc__face:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(39, 55, 85, 0.18);
  }
  .eg-gc__face-border {
    position: absolute;
    inset: 14px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 4px;
    pointer-events: none;
  }
  .eg-gc__face-guilloche {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.05) 0 2px,
      transparent 2px 18px
    );
    pointer-events: none;
  }
  .eg-gc__face-top {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
  .eg-gc__face-wordmark {
    font-family: var(--font-heading--family);
    font-weight: 600;
    font-size: clamp(0.95rem, 1.4vw, 1.15rem);
    line-height: 1;
    letter-spacing: 0.01em;
    color: var(--eg-offwhite);
  }
  .eg-gc__face-cipher {
    width: 16px;
    height: 16px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    opacity: 0.7;
  }
  .eg-gc__face-cipher::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    margin: 6px 0 0 6px;
    background-color: rgba(255, 255, 255, 0.85);
    border-radius: 50%;
  }
  .eg-gc__face-amount {
    position: relative;
    z-index: 2;
    font-family: var(--font-heading--family);
    font-weight: 600;
    font-size: 44px;
    line-height: 1;
    letter-spacing: 0.005em;
    color: var(--eg-white);
  }
  .eg-gc__face-cur {
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.65);
    margin-left: 5px;
    vertical-align: top;
  }
  .eg-gc__face-label {
    position: relative;
    z-index: 2;
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
  }
  .eg-gc__denom-desc {
    margin: 14px 0 0;
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 13px;
    line-height: 1.5;
    color: var(--eg-muted);
  }

  /* 3. How it works */
  .eg-gc__how {
    background-color: var(--color-background);
    color: var(--color-foreground);
    padding-block: 80px;
  }
  .eg-gc__steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
  .eg-gc__step {
    background-color: var(--eg-white);
    border: 1px solid var(--eg-hairline);
    border-radius: 4px;
    padding: 32px;
    box-sizing: border-box;
  }
  .eg-gc__step-n {
    display: block;
    margin-bottom: 14px;
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.16em;
    color: var(--eg-navy);
  }
  .eg-gc__step-title {
    margin: 0 0 10px;
    font-family: var(--font-heading--family);
    font-weight: 600;
    font-size: 1.375rem;
    line-height: 1.22;
    color: var(--color-foreground-heading);
    text-wrap: balance;
  }
  .eg-gc__step-body {
    margin: 0;
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 14.5px;
    line-height: 1.55;
    color: var(--eg-muted);
  }

  /* 4. Two-column closing */
  .eg-gc__close {
    background-color: var(--color-background);
    color: var(--color-foreground);
    padding-block: 80px var(--eg-gc-pad-end, 96px);
  }
  .eg-gc__close-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
  }
  .eg-gc__fineprint {
    background-color: var(--eg-offwhite);
    border-radius: 4px;
    padding: 36px 40px;
    box-sizing: border-box;
  }
  .eg-gc__fineprint-heading {
    margin: 0 0 18px;
    font-family: var(--font-heading--family);
    font-weight: 600;
    font-size: 1.375rem;
    line-height: 1.2;
    color: var(--eg-navy);
  }
  .eg-gc__fineprint-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.7;
    color: var(--eg-charcoal);
  }
  .eg-gc__fineprint-list li {
    padding: 8px 0;
    border-bottom: 1px solid var(--eg-hairline);
  }
  .eg-gc__fineprint-list li:last-child { border-bottom: 0; }
  .eg-gc__fineprint-list a {
    color: var(--eg-navy);
    text-decoration: underline;
    text-underline-offset: 3px;
  }

  @media screen and (max-width: 989px) {
    .eg-gc__cards { grid-template-columns: repeat(2, 1fr); }
    .eg-gc__steps { grid-template-columns: repeat(2, 1fr); }
    .eg-gc__close-inner { grid-template-columns: 1fr; gap: 40px; }
  }
  @media screen and (max-width: 749px) {
    .eg-gc__hero-sub { font-size: 18px; }
    .eg-gc__face-amount { font-size: 38px; }
  }

  @media (prefers-reduced-motion: reduce) {
    .eg-gc__pill,
    .eg-gc__face { transition: none; }
    .eg-gc__face:hover { transform: none; }
  }
/* END_SECTION:eg-gift-card */

/* START_SECTION:eg-guides-index (INDEX:32) */
.eg-guides {

    padding-block: var(--eg-guides-pad-start, 56px) var(--eg-guides-pad-end, 72px);
  }

  .eg-guides__inner {
    width: 100%;
    max-width: var(--page-width, 1400px);
    margin-inline: auto;
    padding-inline: var(--page-margin, 20px);
  }

  /* Header ---------------------------------------------------------------- */
  .eg-guides__header {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 760px;
    margin-block-end: 48px;
  }

  .eg-guides__eyebrow {
    margin: 0;
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--eg-muted);
  }

  .eg-guides__title {
    margin: 0;
    font-family: var(--font-heading--family);
    font-weight: 600;
    color: var(--eg-navy);
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.05;
    letter-spacing: 0.005em;
  }

  .eg-guides__intro {
    margin: 0;
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 17px;
    line-height: 1.6;
    color: var(--eg-charcoal);
  }

  /* Grid ------------------------------------------------------------------ */
  .eg-guides__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
  }

  @media screen and (max-width: 749px) {
    .eg-guides {
      padding-block: 36px 48px;
    }
    .eg-guides__header {
      margin-block-end: 32px;
    }
    .eg-guides__grid {
      grid-template-columns: 1fr;
    }
  }

  /* Card ------------------------------------------------------------------ */
  .eg-guides__card {
    display: flex;
    flex-direction: column;
    gap: 12px;
    height: 100%;
    padding: 28px;
    background-color: #ffffff;
    border: 1px solid var(--eg-hairline);
    border-radius: 4px;
    transition: border-color var(--eg-fade) ease, box-shadow var(--eg-fade) ease, transform var(--eg-fade) ease;
  }

  .eg-guides__card:hover,
  .eg-guides__card:focus-within {
    border-color: #d8dce4;
    box-shadow: 0 1px 2px rgb(39 55 85 / 0.04), 0 10px 30px rgb(39 55 85 / 0.08);
    transform: translateY(-2px);
  }

  @media (prefers-reduced-motion: reduce) {
    .eg-guides__card,
    .eg-guides__arrow {
      transition: none;
    }
    .eg-guides__card:hover,
    .eg-guides__card:focus-within {
      transform: none;
    }
  }

  .eg-guides__card-title {
    margin: 0;
    font-family: var(--font-heading--family);
    font-weight: 600;
    color: var(--eg-navy);
    font-size: 1.625rem;
    line-height: 1.16;
    letter-spacing: 0.005em;
  }

  .eg-guides__card-text {
    margin: 0;
    flex: 1 1 auto;
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 15px;
    line-height: 1.55;
    color: var(--eg-charcoal);
  }

  .eg-guides__card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    align-self: flex-start;
    margin-block-start: 4px;
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: var(--eg-navy);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color var(--eg-fade) ease;
  }

  .eg-guides__card-link:hover,
  .eg-guides__card-link:focus-visible {
    border-bottom-color: var(--eg-navy);
  }

  .eg-guides__arrow {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    transition: transform var(--eg-fade) ease;
  }

  @media (prefers-reduced-motion: no-preference) {
    .eg-guides__card-link:hover .eg-guides__arrow,
    .eg-guides__card-link:focus-visible .eg-guides__arrow,
    .eg-guides__all:hover .eg-guides__arrow,
    .eg-guides__all:focus-visible .eg-guides__arrow {
      transform: translateX(3px);
    }
  }

  /* Footer link ----------------------------------------------------------- */
  .eg-guides__footer {
    margin-block-start: 40px;
  }

  .eg-guides__all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: var(--eg-navy);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color var(--eg-fade) ease;
  }

  .eg-guides__all:hover,
  .eg-guides__all:focus-visible {
    border-bottom-color: var(--eg-navy);
  }
/* END_SECTION:eg-guides-index */

/* START_SECTION:eg-header (INDEX:33) */
.header-section:has(> #header-component[sticky]) { position: sticky; top: 0; z-index: 60; }
#header-group:has(#header-component[sticky]) { display: contents; }
.eg-hd { display: block; }
.eg-hd__bar { background: rgba(255,255,255,.97); backdrop-filter: blur(10px); border-bottom: 1px solid var(--eg-border); transition: box-shadow 200ms var(--eg-ease); }
.eg-hd--scrolled .eg-hd__bar { box-shadow: var(--eg-shadow-soft); }
.eg-hd__in { max-width: 1320px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; gap: 24px; height: 64px; }
.eg-hd__logo { display: block; flex-shrink: 0; line-height: 0; text-decoration: none; }
.eg-hd__logo img { height: 30px; width: auto; }
.eg-hd__wordmark { font-family: var(--eg-font-display); font-weight: 600; font-size: 24px; letter-spacing: .02em; color: var(--eg-navy); line-height: 1; }
.eg-hd__logo:focus-visible { outline: 2px solid var(--eg-navy); outline-offset: 4px; }
@media (max-width: 520px) { .eg-hd__logo img { height: 25px; } .eg-hd__wordmark { font-size: 21px; } }

.eg-hd__nav { display: none; align-items: center; gap: 4px; margin-left: 24px; }
@media (min-width: 1000px) { .eg-hd__nav { display: flex; } }
.eg-hd__navitem { position: relative; }
.eg-hd__navlink { background: none; border: 0; font-family: var(--eg-font-body); font-size: 13.5px; color: var(--eg-ink); cursor: pointer; padding: 12px; display: flex; align-items: center; gap: 5px; text-decoration: none; border-radius: var(--eg-radius); transition: color 200ms var(--eg-ease); }
.eg-hd__navlink:hover, .eg-hd__navlink[aria-expanded="true"] { color: var(--eg-navy); }
.eg-hd__navlink svg { color: var(--eg-muted); transition: transform 200ms var(--eg-ease); }
.eg-hd__navlink[aria-expanded="true"] svg { transform: rotate(180deg); }
.eg-hd__navlink:focus-visible { outline: 2px solid var(--eg-navy); outline-offset: -2px; }
.eg-hd__dd { position: absolute; top: calc(100% + 6px); left: 0; background: var(--eg-white); border: 1px solid var(--eg-border); border-radius: var(--eg-radius); box-shadow: 0 8px 24px rgb(39 55 85 / .10); padding: 24px; display: none; z-index: 70; }
.eg-hd__dd[open] { display: block; }
.eg-hd__ddcols { display: grid; gap: 24px 32px; }
.eg-hd__ddcols.cols-1 { grid-template-columns: minmax(190px, 1fr); }
.eg-hd__ddcols.cols-2 { grid-template-columns: repeat(2, minmax(160px, 1fr)); }
.eg-hd__ddcols.cols-3 { grid-template-columns: repeat(3, minmax(150px, 1fr)); }
.eg-hd__ddcols.cols-4 { grid-template-columns: repeat(4, minmax(150px, 1fr)); }
.eg-hd__ddcols.cols-5 { grid-template-columns: repeat(5, minmax(150px, 1fr)); }
.eg-hd__ddg h4 { font-family: var(--eg-font-body); font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--eg-muted); margin: 0 0 12px; font-weight: 500; }
.eg-hd__ddg a { display: block; font-size: 13.5px; text-decoration: none; color: var(--eg-ink); padding: 5px 0; transition: color 200ms var(--eg-ease); white-space: nowrap; }
.eg-hd__ddg a:hover { color: var(--eg-navy); }
.eg-hd__ddg a:focus-visible { outline: 2px solid var(--eg-navy); outline-offset: 2px; }

.eg-hd__sp { margin-left: auto; display: flex; align-items: center; gap: 8px; }
.eg-hd__icb { background: none; border: 0; cursor: pointer; color: var(--eg-ink); padding: 8px; border-radius: var(--eg-radius); display: flex; align-items: center; position: relative; transition: color 200ms var(--eg-ease); }
.eg-hd__icb:hover { color: var(--eg-navy); }
.eg-hd__icb:focus-visible { outline: 2px solid var(--eg-navy); outline-offset: -2px; }
.eg-hd__burger { display: flex; }
@media (min-width: 1000px) { .eg-hd__burger { display: none; } }

.eg-hd__drawer { position: fixed; inset: 0; z-index: 80; display: none; }
.eg-hd__drawer[open] { display: block; }
.eg-hd__scrim { position: absolute; inset: 0; background: rgba(26,26,26,.5); }
.eg-hd__panel { position: absolute; top: 0; right: 0; bottom: 0; width: min(88vw, 340px); background: var(--eg-white); padding: 24px; overflow-y: auto; display: flex; flex-direction: column; gap: 12px; }
.eg-hd__panel > a.flat { text-decoration: none; font-size: 16px; padding: 12px 0; border-bottom: 1px solid var(--eg-border); color: var(--eg-ink); }
.eg-hd__panel details summary { font-family: var(--eg-font-body); font-size: 16px; font-weight: 400; cursor: pointer; padding: 12px 0; border-bottom: 1px solid var(--eg-border); list-style: none; display: flex; justify-content: space-between; align-items: center; }
.eg-hd__panel details summary::-webkit-details-marker { display: none; }
.eg-hd__panel details summary::after { content: "+"; color: var(--eg-muted); }
.eg-hd__panel details[open] summary::after { content: "\2212"; }
.eg-hd__panel .sub { display: flex; flex-direction: column; padding: 0 0 12px; }
.eg-hd__panel .sub > a { font-size: 14px; color: var(--eg-muted); text-decoration: none; padding: 8px 0 8px 16px; }
.eg-hd__panel .sub > a.allof { color: var(--eg-navy); font-weight: 500; }
/* Second level: the column groups the desktop menu already has. */
.eg-hd__panel details.lvl2 { margin-left: 16px; border-bottom: 1px solid var(--eg-border); }
.eg-hd__panel details.lvl2:last-child { border-bottom: 0; }
.eg-hd__panel details.lvl2 > summary { font-size: 13.5px; color: var(--eg-ink); padding: 10px 0;
  border-bottom: 0; letter-spacing: .02em; }
.eg-hd__panel details.lvl2 > summary::after { font-size: 15px; }
.eg-hd__panel .sub2 { display: flex; flex-direction: column; padding: 0 0 10px 12px; }
.eg-hd__panel .sub2--two { display: grid; grid-template-columns: 1fr 1fr; gap: 0 10px; }
.eg-hd__panel .sub2 a { font-size: 13.5px; color: var(--eg-muted); text-decoration: none; padding: 7px 0; }
.eg-hd__panel .sub2 a:hover { color: var(--eg-navy); }
/* Touch targets: 44px is the floor, and these were 24. */
.eg-hd__panel .sub > a, .eg-hd__panel .sub2 a { min-height: 34px; display: flex; align-items: center; }
.eg-hd__dclose { align-self: flex-end; background: none; border: 1px solid var(--eg-border); border-radius: var(--eg-radius-pill); width: 36px; height: 36px; cursor: pointer; font-size: 18px; line-height: 1; color: var(--eg-ink); }

/* Keep Horizon's header-actions looking native inside the new bar */
.eg-hd .header-actions { display: flex; align-items: center; gap: 8px; }

/* Cart button: Horizon's cart-icon + bubble, normalized to the bar's icon system */
.eg-hd .header-actions__action { background: none; border: 0; cursor: pointer; padding: 8px; border-radius: var(--eg-radius); color: var(--eg-ink); display: flex; align-items: center; position: relative; transition: color 200ms var(--eg-ease); font-family: var(--eg-font-body); }
.eg-hd .header-actions__action:hover { color: var(--eg-navy); }
.eg-hd .header-actions__cart-icon { display: flex; position: relative; --icon-stroke-width: 1.6px; }
.eg-hd .header-actions__cart-icon .svg-wrapper svg { width: 21px; height: 21px; display: block; }
.eg-hd .cart-bubble { position: absolute; top: -5px; right: -7px; width: 16px; height: 16px; }
.eg-hd .cart-bubble__background { position: absolute; inset: 0; background: var(--eg-navy); border-radius: var(--eg-radius-pill); }
.eg-hd .cart-bubble__text { position: relative; display: flex; align-items: center; justify-content: center; width: 100%; height: 100%; color: var(--eg-white); font-size: 10px; font-weight: 600; line-height: 1; }
.eg-hd .eg-header-localization__button { font-size: 12.5px; color: var(--eg-muted); gap: 4px; }
.eg-hd .eg-header-localization__button:hover { color: var(--eg-navy); }

/* Search modal: clean panel + input typography (renders sitewide from theme.liquid) */
.search-modal .search-modal__content { border: 1px solid var(--eg-border); border-radius: var(--eg-radius); box-shadow: 0 24px 64px rgb(39 55 85 / .18); max-width: 680px; width: min(92vw, 680px); margin-top: 9vh; padding: 0; overflow: hidden; }
.search-modal .predictive-search-form__header { border-bottom: 1px solid var(--eg-border); background: var(--eg-white); }
.search-modal .search-input { font-family: var(--eg-font-body); font-size: 17px; padding: 18px 20px; border: 0; width: 100%; color: var(--eg-ink); background: var(--eg-white); }
.search-modal .search-input:focus { outline: none; }
.search-modal .search-input::placeholder { color: var(--eg-muted); }
.search-modal .predictive-search__icon { color: var(--eg-muted); }
.search-modal .predictive-search__icon svg { width: 18px; height: 18px; }
/* Search modal on phones (George 07-31: "start to scroll and images with text
   overlaid come on, it looks broken"). Root cause: the dialog had no height
   cap, so results spilled past the viewport and the PAGE scrolled behind the
   open modal, dragging hero/section imagery under the translucent panel. The
   panel now owns its height and scrolls internally, and results render as a
   plain thumbnail + text list instead of container-query cards. */
/* 2026-08-03: this rule MUST stay scoped to [open]. Unscoped, two classes beat
   the UA's `dialog:not([open]) { display: none }`, so the CLOSED dialog rendered
   in normal flow below the footer — ~745px of dead space on every page, with
   the search input as document.activeElement on load, which parked the viewport
   at the bottom of the site. Horizon's own rule is scoped the same way
   (snippets/search-modal.liquid). */
.search-modal .search-modal__content[open] { display: flex; flex-direction: column; max-height: 86dvh; }
.search-modal .predictive-search-form__header { flex: 0 0 auto; position: sticky; top: 0; z-index: 2; }
.search-modal .predictive-search-results,
.search-modal predictive-search-results { flex: 1 1 auto; overflow-y: auto; -webkit-overflow-scrolling: touch; overscroll-behavior: contain; background: var(--eg-white); }
@media (max-width: 749px) {
  .search-modal .search-modal__content { width: 100vw; max-width: 100vw; margin-top: 0; max-height: 100dvh; height: 100dvh; border-radius: 0; border: 0; }
  .search-modal .predictive-search-results__wrapper-products,
  .search-modal .predictive-search-results__list { display: flex !important; flex-direction: column; gap: 2px; width: 100%; }
  .search-modal .predictive-search-results__card { width: 100% !important; max-width: 100% !important; margin: 0 !important; }
  .search-modal .predictive-search-results__card--product { display: flex; align-items: center; gap: 12px; padding: 10px 16px; border-bottom: 1px solid var(--eg-border); }
  .search-modal .predictive-search-results__card--product img { width: 52px !important; height: 52px !important; object-fit: cover; border-radius: var(--eg-radius); flex: 0 0 auto; }
  .search-modal .predictive-search-results__card--product .resource-card__content,
  .search-modal .predictive-search-results__card--product .resource-card__text { position: static !important; transform: none !important; background: none !important; padding: 0 !important; text-align: left; }
  .search-modal .predictive-search-results__card--product * { color: var(--eg-ink); }
}
/* END_SECTION:eg-header */

/* START_SECTION:eg-hero (INDEX:35) */
.eg-hero {
    position: relative;
    width: 100%;
  }
  .eg-hero__panel {
    position: relative;
    width: 100%;
    min-height: 680px;
    background-color: #273755;
    overflow: hidden;
    isolation: isolate;
  }
  .eg-hero__image {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 60%;
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    z-index: 1;
  }
  .eg-hero__bridge {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      95deg,
      #273755 0%,
      #273755 36%,
      rgba(39, 55, 85, 0.92) 44%,
      rgba(39, 55, 85, 0.2) 58%,
      rgba(39, 55, 85, 0) 70%
    );
    z-index: 2;
  }
  /* Mobile-only extra scrim; off on desktop. */
  .eg-hero__scrim {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: none;
  }
  .eg-hero__content {
    position: relative;
    z-index: 3;
    max-width: var(--page-width, 1400px);
    margin: 0 auto;
    padding: 120px 32px;
    box-sizing: border-box;
    min-height: 680px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .eg-hero__inner {
    max-width: 560px;
  }
  .eg-hero__overline {
    font-family: var(--font-body--family);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.78);
    margin: 0 0 24px;
  }
  .eg-hero__heading {
    font-family: var(--font-heading--family);
    font-weight: 600;
    font-size: clamp(36px, 5vw, 60px);
    line-height: 1.08;
    letter-spacing: 0.012em;
    color: #ffffff;
    margin: 0;
    text-wrap: balance;
    padding-bottom: 4px;
  }
  .eg-hero__ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 36px;
  }
  .eg-hero__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 14px 30px;
    font-family: var(--font-body--family);
    font-size: 15px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.01em;
    text-decoration: none;
    cursor: pointer;
    transition: opacity 0.2s ease, background-color 0.2s ease;
  }
  .eg-hero__btn--primary {
    background-color: #ffffff;
    color: #273755;
    border: 1px solid #ffffff;
  }
  .eg-hero__btn--primary:hover {
    opacity: 0.9;
  }
  .eg-hero__btn--secondary {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.5);
  }
  .eg-hero__btn--secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
  }
  @media screen and (max-width: 749px) {
    .eg-hero__panel {
      min-height: 560px;
    }
    .eg-hero__image {
      width: 100%;
      background-position: center;
    }
    /* Bridge fades top-to-bottom on mobile so the headline sits on navy. */
    .eg-hero__bridge {
      background: linear-gradient(
        180deg,
        rgba(39, 55, 85, 0.95) 0%,
        rgba(39, 55, 85, 0.78) 45%,
        rgba(39, 55, 85, 0.55) 100%
      );
    }
    .eg-hero__scrim {
      display: block;
      background: linear-gradient(
        160deg,
        rgba(39, 55, 85, 0.6) 0%,
        rgba(39, 55, 85, 0.6) 100%
      );
    }
    .eg-hero__content {
      min-height: 560px;
      padding: 72px 24px;
      align-items: center;
      text-align: center;
    }
    .eg-hero__inner {
      max-width: 520px;
    }
    .eg-hero__ctas {
      justify-content: center;
    }
  }
/* END_SECTION:eg-hero */

/* START_SECTION:eg-home-business (INDEX:36) */
.eg-home-biz {
    background-color: #273755;
    color: #ffffff;
  }
  .eg-home-biz__inner {
    width: 100%;
    max-width: var(--page-width, 1400px);
    margin-inline: auto;
    padding-inline: var(--page-margin, 20px);
  }
  .eg-home-biz__head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 36px;
  }
  .eg-home-biz__head-text { max-width: 600px; }
  .eg-home-biz__eyebrow {
    margin: 0 0 12px;
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgb(255 255 255 / 0.72);
  }
  .eg-home-biz__heading {
    margin: 0;
    font-family: var(--font-heading--family);
    font-weight: 600;
    font-size: clamp(1.85rem, 4vw, 2.25rem);
    line-height: 1.14;
    letter-spacing: 0.01em;
    color: #ffffff;
    text-wrap: balance;
  }
  .eg-home-biz__intro {
    margin: 12px 0 0;
    max-width: 40rem;
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 0.9375rem;
    line-height: 1.55;
    color: rgb(255 255 255 / 0.78);
  }
  .eg-home-biz__view-all {
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #ffffff;
    text-decoration: underline;
    text-underline-offset: 4px;
    white-space: nowrap;
  }
  .eg-home-biz__view-all span { margin-inline-start: 4px; }
  .eg-home-biz__grid {
    list-style: none;
    margin: 0 auto;
    padding: 0;
    max-width: 1180px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }
  .eg-home-biz__cell { display: flex; flex: 1 1 240px; max-width: 320px; min-width: 0; }
  .eg-home-biz__card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    min-height: 300px;
    text-decoration: none;
    color: inherit;
    padding: 22px;
    border: 1px solid rgb(255 255 255 / 0.14);
    border-radius: 4px;
    background: rgb(255 255 255 / 0.03);
    overflow: hidden;
    transition: border-color 240ms ease, transform 240ms ease, box-shadow 240ms ease;
  }
  .eg-home-biz__card:hover {
    border-color: rgb(255 255 255 / 0.38);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgb(0 0 0 / 0.25);
  }
  .eg-home-biz__media { position: absolute; inset: 0; z-index: 0; }
  .eg-home-biz__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 360ms ease;
  }
  .eg-home-biz__card:hover .eg-home-biz__img { transform: scale(1.04); }
  .eg-home-biz__scrim {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(39, 55, 85, 0.30) 0%, rgba(39, 55, 85, 0.55) 52%, rgba(39, 55, 85, 0.86) 100%);
  }
  .eg-home-biz__lockup {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
  }
  .eg-home-biz__lk-word {
    font-family: var(--font-heading--family);
    font-weight: 600;
    font-size: 1.15rem;
    line-height: 1;
    letter-spacing: 0.01em;
    color: #ffffff;
    white-space: nowrap;
  }
  .eg-home-biz__lk-rule {
    display: inline-block;
    width: 1px;
    height: 15px;
    background: rgb(255 255 255 / 0.5);
    flex: 0 0 auto;
  }
  .eg-home-biz__lk-mod {
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-weight: 500;
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #ffffff;
    white-space: nowrap;
  }
  .eg-home-biz__body { position: relative; z-index: 2; display: flex; flex-direction: column; margin-top: auto; }
  .eg-home-biz__desc {
    display: block;
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 0.8125rem;
    line-height: 1.45;
    color: rgb(255 255 255 / 0.82);
  }
  .eg-home-biz__cta {
    display: block;
    margin-top: 14px;
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgb(255 255 255 / 0.8);
    transition: color 240ms ease;
  }
  .eg-home-biz__cta span { margin-inline-start: 4px; }
  .eg-home-biz__card:hover .eg-home-biz__cta { color: #ffffff; }
  @media screen and (min-width: 750px) and (max-width: 989px) {
    .eg-home-biz__cell { flex: 1 1 44%; max-width: none; }
  }
  @media screen and (max-width: 749px) {
    .eg-home-biz__grid { gap: 10px; }
    .eg-home-biz__cell { flex: 1 1 44%; max-width: none; }
    .eg-home-biz__card { min-height: 200px; padding: 16px; }
    .eg-home-biz__lk-word { font-size: 1rem; }
    .eg-home-biz__desc { font-size: 0.75rem; }
  }
/* END_SECTION:eg-home-business */

/* START_SECTION:eg-home-editorial (INDEX:37) */
.eg-home-editorial {
    background-color: var(--color-background);
    color: var(--color-foreground);
  }
  .eg-home-editorial__inner {
    max-width: 46rem;
    margin-inline: auto;
    padding-inline: 20px;
  }
  .eg-home-editorial__card {
    background: #F5F5F5;
    border-radius: 4px;
    padding: 22px 26px;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .eg-home-editorial__eyebrow {
    font-family: var(--font-body--family);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #6B6B6B;
    margin: 0;
  }
  .eg-home-editorial__heading {
    font-family: var(--font-heading--family);
    font-weight: 600;
    color: #273755;
    font-size: 1.375rem;
    line-height: 1.18;
    letter-spacing: 0.01em;
    max-width: 540px;
    margin: 0;
    text-wrap: balance;
  }
  .eg-home-editorial__body {
    font-family: var(--font-body--family);
    font-weight: 400;
    color: #1A1A1A;
    font-size: 0.8125rem;
    line-height: 1.5;
    max-width: 540px;
  }
  .eg-home-editorial__body p { margin: 0; }
  .eg-home-editorial__cta-row {
    margin: 4px 0 0;
  }
  .eg-home-editorial__cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-body--family);
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    color: #273755;
    text-decoration: underline;
    text-underline-offset: 4px;
    transition: opacity 120ms ease;
  }
  .eg-home-editorial__cta:hover { opacity: 0.7; }
  .eg-home-editorial__arrow { font-size: 1em; line-height: 1; }
  @media (prefers-reduced-motion: reduce) {
    .eg-home-editorial__cta { transition: none; }
  }
/* END_SECTION:eg-home-editorial */

/* START_SECTION:eg-home-etymology (INDEX:38) */
.eg-home-etym {
    background-color: var(--color-background);
    color: var(--color-foreground);
  }
  .eg-home-etym__inner {
    max-width: 44rem;
    margin-inline: auto;
    padding-inline: 20px;
  }
  .eg-home-etym__eyebrow {
    font-family: var(--font-body--family);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #6B6B6B;
    margin: 0 0 14px;
  }
  .eg-home-etym__lockup {
    font-family: var(--font-heading--family);
    font-weight: 600;
    font-size: 4rem;
    line-height: 1;
    letter-spacing: 0.01em;
    color: #273755;
    margin: 0 0 24px;
  }
  .eg-home-etym__lk-vanta {
    color: #6B6B6B;
    font-weight: 500;
  }
  .eg-home-etym__def {
    font-family: var(--font-body--family);
    font-size: 1rem;
    line-height: 1.6;
    color: #273755;
    margin: 0 0 16px;
  }
  .eg-home-etym__def:last-of-type {
    margin-bottom: 0;
  }
  .eg-home-etym__def strong { font-weight: 600; }
  .eg-home-etym__close {
    font-family: var(--font-heading--family);
    font-weight: 500;
    font-size: 1.85rem;
    line-height: 1.25;
    letter-spacing: 0.005em;
    color: #273755;
    margin: 28px 0 0;
    text-wrap: balance;
  }
  @media screen and (max-width: 749px) {
    .eg-home-etym__lockup {
      font-size: 2.5rem;
    }
    .eg-home-etym__close {
      font-size: 1.5rem;
    }
  }
/* END_SECTION:eg-home-etymology */

/* START_SECTION:eg-home-insights (INDEX:39) */
.eg-home-ins {
  background-color: var(--color-background);
  color: var(--color-foreground);
}
.eg-home-ins__inner {
  width: 100%;
  max-width: var(--page-width, 1400px);
  margin-inline: auto;
  padding-inline: var(--page-margin, 20px);
}
.eg-home-ins__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.eg-home-ins__head-text {
  max-width: 600px;
}
.eg-home-ins__eyebrow {
  margin: 0 0 12px;
  font-family: var(--font-body--family), 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #6B6B6B;
}
.eg-home-ins__heading {
  margin: 0;
  font-family: var(--font-heading--family);
  font-weight: 600;
  font-size: clamp(1.85rem, 4vw, 2.25rem);
  line-height: 1.14;
  letter-spacing: 0.01em;
  color: #273755;
  text-wrap: balance;
}
.eg-home-ins__view-all {
  font-family: var(--font-body--family), 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #273755;
  text-decoration: underline;
  text-underline-offset: 4px;
  white-space: nowrap;
}
.eg-home-ins__view-all span {
  margin-inline-start: 4px;
}
.eg-home-ins__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.eg-home-ins__cell {
  display: flex;
}
.eg-home-ins__card {
  display: flex;
  flex-direction: column;
  width: 100%;
  text-decoration: none;
  color: inherit;
}
.eg-home-ins__media {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 3 / 2;
  background-color: #F5F5F5;
  margin-bottom: 16px;
}
.eg-home-ins__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 320ms ease;
}
.eg-home-ins__card:hover .eg-home-ins__img {
  transform: scale(1.04);
}
.eg-home-ins__date {
  display: block;
  font-family: var(--font-body--family), 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6B6B6B;
  margin-bottom: 8px;
}
.eg-home-ins__title {
  display: block;
  font-family: var(--font-heading--family);
  font-weight: 600;
  font-size: 1.375rem;
  line-height: 1.2;
  letter-spacing: 0.005em;
  color: #273755;
}
.eg-home-ins__excerpt {
  display: block;
  margin-top: 8px;
  font-family: var(--font-body--family), 'Inter', sans-serif;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: #4A4A4A;
}
.eg-home-ins__more {
  display: inline-block;
  margin-top: 12px;
  font-family: var(--font-body--family), 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #273755;
}
.eg-home-ins__card:hover .eg-home-ins__more {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.eg-home-ins__empty {
  font-family: var(--font-body--family), 'Inter', sans-serif;
  color: #6B6B6B;
}
@media screen and (max-width: 989px) {
  .eg-home-ins__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 749px) {
  .eg-home-ins__grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
}
/* END_SECTION:eg-home-insights */

/* START_SECTION:eg-home-rooms (INDEX:40) */
.eg-home-rooms {
    background-color: var(--color-background);
    color: var(--color-foreground);
  }
  .eg-home-rooms__inner {
    max-width: 80rem;
    margin-inline: auto;
    padding-inline: 20px;
  }
  .eg-home-rooms__head {
    margin-bottom: 36px;
  }
  .eg-home-rooms__eyebrow {
    font-family: var(--font-body--family);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgb(var(--color-foreground-rgb) / 0.65);
    margin: 0 0 14px;
  }
  .eg-home-rooms__heading {
    font-family: var(--font-heading--family);
    color: var(--color-foreground-heading);
    font-size: clamp(1.85rem, 4vw, 2.25rem);
    line-height: 1.12;
    letter-spacing: 0.01em;
    margin: 0;
    text-wrap: balance;
  }
  .eg-home-rooms__intro {
    font-family: var(--font-body--family);
    color: rgb(var(--color-foreground-rgb) / 0.75);
    font-size: 0.9375rem;
    line-height: 1.5;
    margin: 12px 0 0;
    max-width: 38rem;
  }
  .eg-home-rooms__grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
  }
  .eg-home-rooms__tile {
    display: block;
    position: relative;
    color: inherit;
  }
  .eg-home-rooms__media {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    background-color: var(--color-foreground-subdued, #f5f5f5);
    aspect-ratio: 1 / 1;
  }
  .eg-home-rooms__img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 320ms ease;
  }
  .eg-home-rooms__img--empty {
    background: linear-gradient(135deg, rgb(var(--color-foreground-rgb) / 0.05), rgb(var(--color-foreground-rgb) / 0.12));
  }
  .eg-home-rooms__tile:hover .eg-home-rooms__img {
    transform: scale(1.03);
  }
  .eg-home-rooms__tag {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    display: inline-block;
    border-radius: 999px;
    padding: 5px 11px;
    font-family: var(--font-body--family);
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    line-height: 1;
    text-decoration: none;
    color: #273755;
    background-color: rgb(245 245 245 / 0.92);
    border: 1px solid rgb(229 229 229 / 0.9);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    transition: background-color 180ms ease, color 180ms ease;
  }
  a.eg-home-rooms__tag:hover {
    background-color: #273755;
    color: #ffffff;
    border-color: #273755;
  }
  .eg-home-rooms__tag--static {
    cursor: default;
  }
  .eg-home-rooms__copy {
    padding-top: 14px;
  }
  .eg-home-rooms__name {
    font-family: var(--font-heading--family);
    color: var(--color-foreground-heading);
    font-size: 1.25rem;
    line-height: 1.2;
    letter-spacing: 0.01em;
    margin: 0 0 4px;
  }
  .eg-home-rooms__link {
    color: inherit;
    text-decoration: none;
  }
  .eg-home-rooms__link::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
  }
  .eg-home-rooms__link:hover {
    text-decoration: underline;
    text-underline-offset: 2px;
  }
  .eg-home-rooms__tagline {
    font-family: var(--font-body--family);
    color: rgb(var(--color-foreground-rgb) / 0.6);
    font-size: 0.875rem;
    line-height: 1.45;
    margin: 0;
  }
  @media (prefers-reduced-motion: reduce) {
    .eg-home-rooms__img,
    .eg-home-rooms__tag {
      transition: none;
    }
    .eg-home-rooms__tile:hover .eg-home-rooms__img {
      transform: none;
    }
  }
  @media screen and (min-width: 990px) and (max-width: 1199px) {
    .eg-home-rooms__grid {
      grid-template-columns: repeat(4, 1fr);
    }
  }
  @media screen and (min-width: 750px) and (max-width: 989px) {
    .eg-home-rooms__grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }
  @media screen and (max-width: 749px) {
    .eg-home-rooms__grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  @media screen and (max-width: 479px) {
    .eg-home-rooms__grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 14px;
    }
    .eg-home-rooms__name {
      font-size: 1.0625rem;
    }
    .eg-home-rooms__tagline {
      font-size: 0.8125rem;
    }
  }
/* END_SECTION:eg-home-rooms */

/* START_SECTION:eg-hosp-categories (INDEX:41) */
.eg-hcat {

    padding-block: var(--eg-hcat-pad-block-start, 72px) var(--eg-hcat-pad-block-end, 32px);
  }

  .eg-hcat__inner {
    width: 100%;
    max-width: var(--page-width, 1400px);
    margin-inline: auto;
    padding-inline: var(--page-margin, 20px);
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .eg-hcat__head {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 58ch;
  }

  .eg-hcat__eyebrow {
    margin: 0;
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--eg-muted);
  }

  .eg-hcat__heading {
    margin: 0;
    font-family: var(--font-heading--family);
    font-weight: 600;
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    line-height: 1.1;
    color: var(--eg-navy);
    text-wrap: balance;
  }

  .eg-hcat__lead {
    margin: 0;
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 17px;
    line-height: 1.62;
    color: var(--eg-charcoal);
    text-wrap: pretty;
  }

  .eg-hcat__bar {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    border-block-end: 1px solid var(--eg-hairline);
  }

  .eg-hcat__tab {
    box-sizing: border-box;
    display: inline-flex;
    align-items: baseline;
    gap: 10px;
    padding: 14px 22px;
    margin-block-end: -1px;
    background-color: transparent;
    border: 0;
    border-block-end: 2px solid transparent;
    cursor: pointer;
    font-family: var(--font-body--family), 'Inter', sans-serif;
    transition: border-color 160ms ease, color 160ms ease;
  }

  .eg-hcat__kicker {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: var(--eg-muted);
    font-variant-numeric: tabular-nums;
  }

  .eg-hcat__label {
    font-family: var(--font-heading--family);
    font-weight: 600;
    font-size: 1.4rem;
    line-height: 1.05;
    letter-spacing: 0.004em;
    color: var(--eg-muted);
  }

  .eg-hcat__tab:hover .eg-hcat__label,
  .eg-hcat__tab:hover .eg-hcat__kicker {
    color: var(--eg-navy);
  }

  .eg-hcat__tab.is-active {
    border-block-end-color: var(--eg-navy);
  }

  .eg-hcat__tab.is-active .eg-hcat__label,
  .eg-hcat__tab.is-active .eg-hcat__kicker {
    color: var(--eg-navy);
  }

  .eg-hcat__tab:focus-visible {
    outline: 2px solid var(--eg-navy);
    outline-offset: 2px;
    border-radius: 4px;
  }

  .eg-hcat__note {
    margin: 0;
    max-width: 64ch;
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.55;
    color: var(--eg-muted);
  }

  @media screen and (max-width: 749px) {
    /* All three rooms visible at once: an equal-width segmented control. */
    .eg-hcat__bar {
      gap: 4px;
      flex-wrap: nowrap;
    }
    .eg-hcat__tab {
      flex: 1 1 0;
      min-width: 0;
      flex-direction: column;
      align-items: center;
      justify-content: flex-end;
      gap: 3px;
      padding: 10px 4px;
      text-align: center;
    }
    .eg-hcat__kicker { font-size: 10px; letter-spacing: 0.1em; }
    .eg-hcat__label { font-size: 13px; line-height: 1.1; white-space: nowrap; }
  }

  @media (prefers-reduced-motion: reduce) {
    .eg-hcat__tab { transition: none; }
  }
/* END_SECTION:eg-hosp-categories */

/* START_SECTION:eg-hosp-filter-bar (INDEX:43) */
.eg-hfilter {
 padding-block: var(--eg-hfilter-pad-block-start, 24px) var(--eg-hfilter-pad-block-end, 8px);
 }

 .eg-hfilter__inner {
 width: 100%;
 max-width: var(--page-width, 1400px);
 margin-inline: auto;
 padding-inline: var(--page-margin, 20px);
 display: flex;
 flex-direction: column;
 gap: 14px;
 }

 .eg-hfilter__bar {
 display: flex;
 flex-wrap: wrap;
 align-items: center;
 gap: 12px 18px;
 }

 .eg-hfilter__label {
 font-family: var(--font-body--family), 'Inter', sans-serif;
 font-size: 12px;
 font-weight: 600;
 letter-spacing: 0.14em;
 text-transform: uppercase;
 color: var(--eg-muted);
 }

 .eg-hfilter__status {
 display: inline-flex;
 align-items: center;
 gap: 12px;
 margin-inline-start: auto;
 }

 .eg-hfilter__count {
 font-family: var(--font-body--family), 'Inter', sans-serif;
 font-size: 13px;
 color: var(--eg-muted);
 }

 .eg-hfilter__clear {
 font-family: var(--font-body--family), 'Inter', sans-serif;
 font-size: 13px;
 font-weight: 600;
 color: var(--eg-navy);
 background: none;
 border: none;
 border-bottom: 1px solid currentColor;
 padding: 0 0 1px;
 cursor: pointer;
 line-height: 1.2;
 }
 .eg-hfilter__clear:hover,
 .eg-hfilter__clear:focus-visible { color: var(--eg-navy-hover); }

 .eg-hfilter__toggle {
 display: none;
 align-items: center;
 gap: 8px;
 font-family: var(--font-body--family), 'Inter', sans-serif;
 font-size: 13px;
 font-weight: 600;
 color: var(--eg-navy);
 background-color: var(--eg-white);
 border: 1px solid var(--eg-hairline);
 border-radius: 999px;
 padding: 8px 16px;
 cursor: pointer;
 }
 .eg-hfilter__toggle-icon { font-size: 15px; line-height: 1; }

 .eg-hfilter__groups {
 display: flex;
 flex-wrap: wrap;
 align-items: flex-start;
 gap: 16px 28px;
 }

 .eg-hfilter__sizes {
 display: flex;
 flex-wrap: wrap;
 align-items: flex-start;
 gap: 16px 28px;
 }

 .eg-hfilter__group {
 display: flex;
 flex-wrap: wrap;
 align-items: center;
 gap: 8px 10px;
 }

 .eg-hfilter__group-label {
 font-family: var(--font-body--family), 'Inter', sans-serif;
 font-size: 12px;
 font-weight: 600;
 letter-spacing: 0.1em;
 text-transform: uppercase;
 color: var(--eg-muted);
 }

 .eg-hfilter__chips {
 display: flex;
 flex-wrap: wrap;
 gap: 8px;
 }

 .eg-hfilter__chip {
 font-family: var(--font-body--family), 'Inter', sans-serif;
 font-size: 13px;
 font-weight: 500;
 line-height: 1;
 color: var(--eg-navy);
 background-color: var(--eg-offwhite);
 border: 1px solid var(--eg-hairline);
 border-radius: 999px;
 padding: 8px 16px;
 cursor: pointer;
 transition: background-color 160ms ease, color 160ms ease, border-color 160ms ease;
 -webkit-appearance: none;
 appearance: none;
 }

 .eg-hfilter__chip:hover,
 .eg-hfilter__chip:focus-visible { border-color: var(--eg-navy); }
 .eg-hfilter__chip:focus-visible { outline: 2px solid var(--eg-navy); outline-offset: 2px; }

 .eg-hfilter__chip[aria-pressed='true'] {
 background-color: var(--eg-navy);
 border-color: var(--eg-navy);
 color: var(--eg-white);
 }
 .eg-hfilter__chip[aria-pressed='true']:hover {
 background-color: var(--eg-navy-hover);
 border-color: var(--eg-navy-hover);
 }

 /* color swatch dot inside the color chips */
 .eg-hfilter__chip--color { display: inline-flex; align-items: center; gap: 7px; }
 .eg-hfilter__dot {
 width: 11px;
 height: 11px;
 border-radius: 50%;
 border: 1px solid rgb(39 55 85 / 0.25);
 flex: none;
 }

 .eg-hfilter__range {
 display: inline-flex;
 align-items: center;
 gap: 6px;
 }
 .eg-hfilter__range-field { display: inline-flex; }
 .eg-hfilter__num {
 width: 64px;
 font-family: var(--font-body--family), 'Inter', sans-serif;
 font-size: 13px;
 color: var(--eg-charcoal);
 background-color: var(--eg-white);
 border: 1px solid var(--eg-hairline);
 border-radius: 4px;
 padding: 7px 8px;
 -moz-appearance: textfield;
 }
 .eg-hfilter__num:focus-visible { outline: 2px solid var(--eg-navy); outline-offset: 1px; border-color: var(--eg-navy); }
 .eg-hfilter__num::-webkit-outer-spin-button,
 .eg-hfilter__num::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
 .eg-hfilter__range-dash { color: var(--eg-muted); }
 .eg-hfilter__unit { font-size: 12px; color: var(--eg-muted); }

 .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;
 }

 /* Card hidden by the active filter. */
 .eg-hgrid__card.eg-hfilter-hidden { display: none !important; }

 @media screen and (max-width: 749px) {
 .eg-hfilter__toggle { display: inline-flex; }
 .eg-hfilter__groups { display: none; }
 .eg-hfilter[data-open='true'] .eg-hfilter__groups { display: flex; flex-direction: column; }
 .eg-hfilter__status { margin-inline-start: 0; width: 100%; justify-content: space-between; }
 }
/* END_SECTION:eg-hosp-filter-bar */

/* START_SECTION:eg-hosp-product-grid (INDEX:44) */
.eg-hgrid {

    padding-block: var(--eg-hgrid-pad-block-start, 72px) var(--eg-hgrid-pad-block-end, 72px);
    scroll-margin-top: 88px;
  }

  .eg-hgrid__inner {
    width: 100%;
    max-width: var(--page-width, 1400px);
    margin-inline: auto;
    padding-inline: var(--page-margin, 20px);
    display: flex;
    flex-direction: column;
    gap: 28px;
  }

  .eg-hgrid__head {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 58ch;
  }

  .eg-hgrid__eyebrow {
    margin: 0;
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--eg-muted);
  }

  .eg-hgrid__heading {
    margin: 0;
    font-family: var(--font-heading--family);
    font-weight: 600;
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    line-height: 1.1;
    color: var(--eg-navy);
  }

  .eg-hgrid__intro {
    margin: 0;
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 17px;
    line-height: 1.62;
    color: var(--eg-charcoal);
  }

  .eg-hgrid__grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(var(--eg-hgrid-cols, 4), 1fr);
    gap: 20px;
  }

  .eg-hgrid__card { display: flex; }

  .eg-hgrid__card-link {
    display: flex;
    flex-direction: column;
    width: 100%;
    border: 1px solid var(--eg-hairline);
    border-radius: 4px;
    overflow: hidden;
    background-color: var(--eg-white);
    text-decoration: none;
    transition: box-shadow 200ms ease, border-color 200ms ease;
  }

  .eg-hgrid__card-link:hover,
  .eg-hgrid__card-link:focus-visible {
    box-shadow: var(--eg-shadow-soft);
    border-color: #d8dce4;
  }

  .eg-hgrid__media {
    position: relative;
    display: block;
    aspect-ratio: 4 / 5;
    background-color: var(--eg-offwhite);
  }

  .eg-hgrid__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .eg-hgrid__img--placeholder {
    background-color: var(--eg-offwhite);
  }

  /* Sub-brand corner lockup on each card image. */
  .eg-hgrid__lockup {
    position: absolute;
    left: 8px;
    bottom: 8px;
    display: inline-flex;
    align-items: baseline;
    gap: 5px;
    padding: 4px 8px;
    border-radius: 4px;
    background-color: rgb(39 55 85 / 0.78);
    pointer-events: none;
  }
  .eg-hgrid__lockup-brand {
    font-family: var(--font-heading--family);
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0.01em;
    color: #f4f1ea;
    line-height: 1;
  }
  .eg-hgrid__lockup-sep { color: rgb(244 241 234 / 0.7); font-size: 10px; line-height: 1; }
  .eg-hgrid__lockup-vert {
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 8.5px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgb(244 241 234 / 0.92);
    line-height: 1;
  }

  .eg-hgrid__title {
    font-family: var(--font-heading--family);
    font-weight: 600;
    font-size: 1.25rem;
    line-height: 1.18;
    color: var(--eg-navy);
    padding: 14px 14px 16px;
  }

  .eg-hgrid__foot {
    display: flex;
  }

  .eg-hgrid__view-all {
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: var(--eg-navy);
    text-decoration: none;
    transition: color 200ms ease;
  }
  .eg-hgrid__view-all span { margin-inline-start: 4px; }
  .eg-hgrid__view-all:hover,
  .eg-hgrid__view-all:focus-visible { color: #1b2840; text-decoration: underline; }

  /* Card hidden by the active filter (shared with eg-hosp-filter-bar). */
  .eg-hgrid__card.eg-hfilter-hidden { display: none !important; }

  @media screen and (min-width: 750px) and (max-width: 989px) {
    .eg-hgrid__grid { grid-template-columns: repeat(2, 1fr); }
  }

  @media screen and (max-width: 749px) {
    .eg-hgrid__grid { grid-template-columns: 1fr; }
  }
/* END_SECTION:eg-hosp-product-grid */

/* START_SECTION:eg-in-situ (INDEX:46) */
.eg-insitu {
    background-color: var(--color-background);
    color: var(--color-foreground);
  }

  .eg-insitu__inner {
    width: 100%;
    max-width: var(--page-width, 80rem);
    margin-inline: auto;
    padding-inline: var(--page-margin, 20px);
  }

  /* Header */
  .eg-insitu__head { max-width: 46rem; margin-bottom: 40px; }
  .eg-insitu__eyebrow {
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 0.75rem; font-weight: 500; letter-spacing: 0.16em;
    text-transform: uppercase; color: var(--eg-muted); margin: 0 0 16px;
  }
  .eg-insitu__heading {
    font-family: var(--font-heading--family); color: var(--eg-navy);
    font-weight: 600; font-size: clamp(2.25rem, 5vw, 3.5rem);
    line-height: 1.06; letter-spacing: 0.005em; margin: 0; text-wrap: balance;
  }
  .eg-insitu__intro {
    font-family: var(--font-body--family), 'Inter', sans-serif;
    color: var(--eg-charcoal); font-size: 1.0625rem; line-height: 1.6;
    margin: 16px 0 0; max-width: 38rem; text-wrap: pretty;
  }

  /* Wall: responsive grid (only renders when submission blocks are added) */
  .eg-insitu__wall {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 40px;
  }
  .eg-insitu__tile { display: flex; flex-direction: column; }
  .eg-insitu__media-link {
    display: block; text-decoration: none; color: inherit; border-radius: 4px;
  }
  .eg-insitu__media-link:focus-visible { outline: 2px solid var(--eg-navy); outline-offset: 3px; }
  .eg-insitu__media {
    position: relative; aspect-ratio: 1 / 1; overflow: hidden;
    border-radius: 4px; border: 1px solid var(--eg-hairline);
    background: var(--eg-offwhite);
  }
  .eg-insitu__img { display: block; width: 100%; height: 100%; object-fit: cover; }
  .eg-insitu__placeholder {
    position: absolute; inset: 0;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 12px; background: var(--eg-offwhite);
  }
  .eg-insitu__glyph { color: var(--eg-muted); opacity: 0.8; }
  .eg-insitu__placeholder-label {
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 0.75rem; letter-spacing: 0.08em; text-transform: uppercase;
    color: var(--eg-muted);
  }

  /* Credit row */
  .eg-insitu__credit {
    display: flex; align-items: flex-start; gap: 11px;
    padding: 13px 2px 0;
  }
  .eg-insitu__avatar {
    flex: none; width: 34px; height: 34px; border-radius: 50%;
    background: var(--eg-navy); color: #ffffff;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 0.8125rem; font-weight: 600; line-height: 1;
  }
  .eg-insitu__meta { display: flex; flex-direction: column; min-width: 0; }
  .eg-insitu__name {
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 0.9375rem; font-weight: 500; line-height: 1.3; color: var(--eg-charcoal);
  }
  .eg-insitu__handle {
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 0.8125rem; line-height: 1.4; color: var(--eg-muted);
  }
  .eg-insitu__loc {
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 0.8125rem; line-height: 1.4; color: var(--eg-muted);
  }
  .eg-insitu__featuring {
    margin-top: 3px;
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 0.75rem; line-height: 1.4; color: var(--eg-muted);
    font-style: italic;
  }

  /* Submit yours CTA band */
  .eg-insitu__cta {
    margin-top: 56px; padding: 40px;
    border: 1px solid var(--eg-hairline); border-radius: 4px;
    background: var(--eg-offwhite); text-align: center;
  }
  .eg-insitu__cta-heading {
    margin: 0; font-family: var(--font-heading--family); color: var(--eg-navy);
    font-weight: 600; font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    line-height: 1.1; letter-spacing: 0.005em; text-wrap: balance;
  }
  .eg-insitu__cta-text {
    margin: 14px auto 0; max-width: 34rem;
    font-family: var(--font-body--family), 'Inter', sans-serif;
    color: var(--eg-charcoal); font-size: 1.0625rem; line-height: 1.6;
    text-wrap: pretty;
  }
  .eg-insitu__channels {
    list-style: none; margin: 22px 0 0; padding: 0;
    display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
    gap: 10px 28px;
  }
  .eg-insitu__channel {
    display: inline-flex; align-items: baseline; gap: 7px;
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 0.9375rem; line-height: 1.4;
  }
  .eg-insitu__channel-label {
    font-size: 0.6875rem; font-weight: 600; letter-spacing: 0.1em;
    text-transform: uppercase; color: var(--eg-muted);
  }
  .eg-insitu__channel-value {
    color: var(--eg-navy); font-weight: 500; text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color var(--eg-fade) ease;
  }
  a.eg-insitu__channel-value:hover { border-bottom-color: var(--eg-navy); }
  a.eg-insitu__channel-value:focus-visible { outline: 2px solid var(--eg-navy); outline-offset: 2px; }
  .eg-insitu__cta-actions {
    margin-top: 24px;
    display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
    gap: 12px;
  }
  .eg-insitu__cta-btn {
    display: inline-flex; align-items: center; justify-content: center;
    background: var(--eg-navy); color: #ffffff; text-decoration: none;
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 0.9375rem; font-weight: 500; letter-spacing: 0.01em;
    padding: 13px 26px; border-radius: 4px; border: 1px solid var(--eg-navy);
    transition: background var(--eg-fade) ease, border-color var(--eg-fade) ease, color var(--eg-fade) ease;
  }
  .eg-insitu__cta-btn:hover { background: var(--eg-navy-deep); border-color: var(--eg-navy-deep); }
  .eg-insitu__cta-btn:focus-visible { outline: 2px solid var(--eg-navy); outline-offset: 2px; }
  .eg-insitu__cta-btn--alt { background: transparent; color: var(--eg-navy); }
  .eg-insitu__cta-btn--alt:hover { background: var(--eg-navy); color: #ffffff; border-color: var(--eg-navy); }
  .eg-insitu__cta-dm {
    margin: 14px 0 0;
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 0.875rem; color: var(--eg-muted);
  }
  .eg-insitu__cta-dm a { color: var(--eg-navy); font-weight: 500; text-decoration: none; border-bottom: 1px solid transparent; transition: border-color var(--eg-fade) ease; }
  .eg-insitu__cta-dm a:hover { border-bottom-color: var(--eg-navy); }
  .eg-insitu__cta-hashtag {
    margin: 18px 0 0;
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 0.8125rem; letter-spacing: 0.06em; color: var(--eg-muted);
  }

  /* Responsive */
  @media screen and (min-width: 750px) {
    .eg-insitu__wall { grid-template-columns: repeat(2, 1fr); }
  }
  @media screen and (min-width: 990px) {
    .eg-insitu__wall { grid-template-columns: repeat(3, 1fr); }
  }
  @media screen and (max-width: 749px) {
    .eg-insitu__head { margin-bottom: 30px; }
    .eg-insitu__cta { padding: 30px 22px; }
    .eg-insitu__channels { flex-direction: column; gap: 12px; }
  }
/* END_SECTION:eg-in-situ */

/* START_SECTION:eg-judgeme-brand (INDEX:47) */
/* Stars: on + half navy, off hairline */
  .jdgm-star.jdgm--on,
  .jdgm-star.jdgm--half { color: #273755 !important; }
  .jdgm-star.jdgm--off { color: #E5E5E5 !important; }

  /* Body / UI typography: Inter */
  .jdgm-widget,
  .jdgm-widget *,
  .jdgm-prev-badge,
  .jdgm-all-reviews-widget * {
    font-family: var(--font-body--family), 'Inter', sans-serif !important;
  }

  /* Widget headings / titles: Cormorant, navy */
  .jdgm-rev-widg__title,
  .jdgm-all-reviews-rating {
    font-family: var(--font-heading--family) !important;
    color: #273755 !important;
  }

  /* Primary buttons + active pagination */
  .jdgm-write-rev-link,
  .jdgm-submit-rev,
  .jdgm-paginate__page.jdgm-curr {
    background-color: #273755 !important;
    color: #FFFFFF !important;
    border: 1px solid #273755 !important;
    border-radius: 4px !important;
    font-weight: 500 !important;
  }
  .jdgm-write-rev-link:hover,
  .jdgm-submit-rev:hover,
  .jdgm-paginate__page.jdgm-curr:hover {
    background-color: #1b2840 !important;
    border-color: #1b2840 !important;
  }

  /* Histogram bars */
  .jdgm-histogram__bar-content { background-color: #273755 !important; }

  /* Borders / structure to hairline + square (4px) */
  .jdgm-rev,
  .jdgm-rev-widg,
  .jdgm-all-reviews-widget,
  .jdgm-histogram { border-color: #E5E5E5 !important; }

  .jdgm-rev,
  .jdgm-rev-widg__summary,
  .jdgm-form input,
  .jdgm-form textarea,
  .jdgm-form select { border-radius: 4px !important; }

  /* Author navy, review title charcoal */
  .jdgm-rev__author { color: #273755 !important; }
  .jdgm-rev__title { color: #1A1A1A !important; }
/* END_SECTION:eg-judgeme-brand */

/* START_SECTION:eg-lead-form (INDEX:48) */
.eg-lead {

    padding-block: var(--eg-lead-pad-block-start, 80px) var(--eg-lead-pad-block-end, 96px);
  }

  .eg-lead__inner {
    width: 100%;
    max-width: 920px;
    margin-inline: auto;
    padding-inline: var(--page-margin, 20px);
    display: flex;
    flex-direction: column;
    gap: 28px;
  }

  .eg-lead__intro {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 60ch;
  }

  .eg-lead__eyebrow {
    margin: 0;
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--eg-muted);
  }

  .eg-lead__heading {
    margin: 0;
    font-family: var(--font-heading--family);
    font-weight: 600;
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    line-height: 1.1;
    color: var(--eg-navy);
  }

  .eg-lead__subhead {
    margin: 0;
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 17px;
    line-height: 1.6;
    color: var(--eg-charcoal);
  }

  .eg-lead__panel {
    background-color: var(--eg-white);
    border: 1px solid var(--eg-hairline);
    border-radius: 4px;
    padding: clamp(20px, 4vw, 36px);
  }

  .eg-lead__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }

  .eg-lead__field {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  .eg-lead__field--full {
    grid-column: 1 / -1;
  }

  .eg-lead__label {
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.3;
    color: var(--eg-charcoal);
  }

  .eg-lead__input {
    width: 100%;
    box-sizing: border-box;
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 15px;
    line-height: 1.4;
    color: var(--eg-charcoal);
    background-color: var(--eg-white);
    border: 1px solid var(--eg-hairline);
    border-radius: 4px;
    padding: 11px 12px;
    transition: border-color 200ms ease, box-shadow 200ms ease;
    appearance: none;
  }

  .eg-lead__input::placeholder {
    color: var(--eg-muted);
  }

  .eg-lead__input:focus,
  .eg-lead__input:focus-visible {
    outline: none;
    border-color: var(--eg-navy);
    box-shadow: 0 0 0 2px rgba(39, 55, 85, 0.18);
  }

  .eg-lead__textarea {
    resize: vertical;
    min-height: 112px;
  }

  .eg-lead__select-wrap {
    position: relative;
    display: block;
  }

  .eg-lead__select {
    width: 100%;
    box-sizing: border-box;
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 15px;
    line-height: 1.4;
    color: var(--eg-charcoal);
    background-color: var(--eg-white);
    border: 1px solid var(--eg-hairline);
    border-radius: 4px;
    padding: 11px 40px 11px 12px;
    appearance: none;
    cursor: pointer;
    transition: border-color 200ms ease, box-shadow 200ms ease;
  }

  .eg-lead__select:focus,
  .eg-lead__select:focus-visible {
    outline: none;
    border-color: var(--eg-navy);
    box-shadow: 0 0 0 2px rgba(39, 55, 85, 0.18);
  }

  .eg-lead__select-caret {
    position: absolute;
    top: 50%;
    inset-inline-end: 12px;
    transform: translateY(-50%);
    display: inline-flex;
    pointer-events: none;
  }

  .eg-lead__hp {
    position: absolute !important;
    left: -9999px !important;
    width: 1px;
    height: 1px;
    overflow: hidden;
  }

  .eg-lead__actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-block-start: 22px;
  }

  .eg-lead__submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding-inline: 28px;
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.01em;
    color: var(--eg-white);
    background-color: var(--eg-navy);
    border: 1px solid var(--eg-navy);
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 200ms ease, border-color 200ms ease;
  }

  .eg-lead__submit:hover,
  .eg-lead__submit:focus-visible {
    background-color: var(--eg-navy-hover);
    border-color: var(--eg-navy-hover);
  }

  .eg-lead__disclaimer {
    margin: 0;
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 13px;
    line-height: 1.5;
    color: var(--eg-muted);
  }

  .eg-lead__errors {
    margin-block-end: 18px;
    padding: 12px 14px;
    border: 1px solid var(--eg-hairline);
    border-radius: 4px;
    background-color: var(--eg-offwhite);
  }
  .eg-lead__errors p {
    margin: 0;
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 14px;
    color: var(--eg-charcoal);
  }

  .eg-lead__success {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 8px 0;
    outline: none;
  }
  .eg-lead__success-title {
    margin: 0;
    font-family: var(--font-heading--family);
    font-weight: 600;
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    line-height: 1.2;
    color: var(--eg-navy);
  }

  @media screen and (max-width: 749px) {
    .eg-lead__grid { grid-template-columns: 1fr; }
    .eg-lead__submit { width: 100%; }
    .eg-lead__subhead { font-size: 16px; }
  }

  @media (prefers-reduced-motion: reduce) {
    .eg-lead__input,
    .eg-lead__select,
    .eg-lead__submit { transition: none; }
  }
/* END_SECTION:eg-lead-form */

/* START_SECTION:eg-local-colors (INDEX:49) */
.eg-local {

    padding-block: var(--eg-local-pad-start, 80px) var(--eg-local-pad-end, 80px);
  }

  .eg-local__inner {
    width: 100%;
    max-width: var(--page-width, 1400px);
    margin-inline: auto;
    padding-inline: var(--page-margin, 20px);
    display: flex;
    flex-direction: column;
    gap: 40px;
  }

  .eg-local__head {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 60ch;
  }

  .eg-local__eyebrow {
    margin: 0;
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--eg-accent, #273755);
  }

  .eg-local__headline {
    margin: 0;
    max-width: 22ch;
    font-family: var(--font-heading--family);
    font-weight: 600;
    font-size: clamp(1.875rem, 3.4vw, 2.75rem);
    line-height: 1.08;
    letter-spacing: 0.004em;
    color: var(--eg-navy);
    text-wrap: balance;
  }

  .eg-local__lead {
    margin: 0;
    max-width: 58ch;
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: var(--eg-charcoal);
    text-wrap: pretty;
  }

  .eg-local__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px 24px;
  }

  .eg-local__row {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .eg-local__swatches {
    display: flex;
    align-items: stretch;
    gap: 10px;
    width: 100%;
    height: 96px;
  }

  .eg-local__chip {
    flex: 1 1 0;
    min-width: 0;
    height: 100%;
    border-radius: 4px;
    box-shadow: inset 0 0 0 1px rgba(26, 26, 26, 0.06), 0 1px 2px rgb(39 55 85 / 0.05), 0 10px 24px rgb(39 55 85 / 0.08);
  }

  .eg-local__text {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  .eg-local__name {
    font-family: var(--font-heading--family);
    font-weight: 600;
    font-size: clamp(1.5rem, 2.4vw, 1.875rem);
    line-height: 1.1;
    color: var(--eg-navy);
  }

  .eg-local__foot {
    display: flex;
    padding-top: 8px;
  }

  .eg-local__cta {
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: var(--eg-navy);
    text-decoration: none;
    transition: color 200ms ease;
  }
  .eg-local__cta span { margin-inline-start: 4px; }
  .eg-local__cta:hover,
  .eg-local__cta:focus-visible { color: #1b2840; text-decoration: underline; }

  @media screen and (min-width: 1200px) {
    .eg-local__list { grid-template-columns: repeat(4, 1fr); }
  }

  @media screen and (min-width: 750px) and (max-width: 1199px) {
    .eg-local__list { grid-template-columns: repeat(2, 1fr); }
    .eg-local__swatches { height: 104px; }
  }

  @media screen and (max-width: 749px) {
    .eg-local__inner { gap: 32px; }
    .eg-local__lead { font-size: 17px; }
    .eg-local__list { grid-template-columns: repeat(2, 1fr); gap: 24px 16px; }
    .eg-local__swatches { height: 80px; gap: 8px; }
    .eg-local__chip { border-radius: 4px; }
  }

  @media screen and (max-width: 479px) {
    .eg-local__list { grid-template-columns: 1fr; gap: 28px; }
    .eg-local__swatches { height: 88px; }
  }
/* END_SECTION:eg-local-colors */

/* START_SECTION:eg-pdp-accordion (INDEX:54) */
.eg-acc { background-color: var(--color-background); color: var(--color-foreground); }
  .eg-acc__inner { max-width: 46rem; margin-inline: auto; box-sizing: border-box; padding-inline: 20px; }
  .eg-acc__heading {
    font-family: var(--font-heading--family), 'Cormorant Garamond', serif;
    color: #273755;
    font-size: clamp(1.5rem, 3vw, 1.875rem);
    line-height: 1.15;
    letter-spacing: 0.01em;
    margin: 0 0 20px;
  }
  .eg-acc__list { border-top: 1px solid #e5e5e5; }
  .eg-acc__item { border-bottom: 1px solid #e5e5e5; }
  .eg-acc__h { margin: 0; }
  .eg-acc__trigger {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    appearance: none;
    background: none;
    border: 0;
    cursor: pointer;
    text-align: left;
    padding: 18px 0;
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 1.0625rem;
    font-weight: 500;
    color: #273755;
  }
  .eg-acc__trigger:focus-visible { outline: 2px solid #273755; outline-offset: 3px; }
  .eg-acc__label { min-width: 0; }
  .eg-acc__mark { position: relative; flex: 0 0 auto; width: 14px; height: 14px; }
  .eg-acc__mark::before,
  .eg-acc__mark::after {
    content: '';
    position: absolute;
    background-color: #273755;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }
  .eg-acc__mark::before { top: 6px; left: 0; width: 14px; height: 2px; }
  .eg-acc__mark::after { top: 0; left: 6px; width: 2px; height: 14px; }
  .eg-acc__trigger[aria-expanded="true"] .eg-acc__mark::after { opacity: 0; transform: rotate(90deg); }

  /* Animated open/close via grid-template-rows. */
  .eg-acc__panel {
    display: grid;
    grid-template-rows: 1fr;
  }
  .eg-acc__panel[hidden] { display: grid; grid-template-rows: 0fr; }
  @media (prefers-reduced-motion: no-preference) {
    .eg-acc__panel { transition: grid-template-rows 0.32s cubic-bezier(0.22, 0.61, 0.36, 1); }
  }
  .eg-acc__panel-inner {
    overflow: hidden;
    min-height: 0;
    padding-block-end: 20px;
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #1a1a1a;
  }
  .eg-acc__panel[hidden] .eg-acc__panel-inner { padding-block-end: 0; }

  .eg-acc__rte > :first-child { margin-top: 0; }
  .eg-acc__rte > :last-child { margin-bottom: 0; }
  .eg-acc__rte p { margin: 0 0 0.85rem; }
  .eg-acc__rte strong { font-weight: 600; }

  /* metafield key_features renders as <p><strong>Label:</strong> value</p> lines */
  .eg-acc__specs p { margin: 0 0 6px; }
  .eg-acc__specs p:last-child { margin-bottom: 0; }

  /* manual schema spec rows */
  .eg-acc__spectable { margin: 0; }
  .eg-acc__specrow {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 16px;
    padding: 12px 0;
    border-bottom: 1px solid #ededed;
  }
  .eg-acc__specrow:last-child { border-bottom: 0; }
  .eg-acc__specrow dt { margin: 0; font-size: 0.75rem; letter-spacing: 0.04em; text-transform: uppercase; color: #6b6b6b; }
  .eg-acc__specrow dd { margin: 0; font-size: 1rem; line-height: 1.5; color: #1a1a1a; }
  .eg-acc__specrow--single { grid-template-columns: 1fr; }
  @media (max-width: 540px) {
    .eg-acc__specrow { grid-template-columns: 1fr; gap: 2px; }
  }
/* END_SECTION:eg-pdp-accordion */

/* START_SECTION:eg-pdp-bundle (INDEX:56) */
.eg-bundle { background-color: var(--color-background); }
  .eg-bundle__inner { margin-inline: auto; box-sizing: border-box; padding-inline: 20px; }
  .eg-bundle__eyebrow {
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #6b6b6b;
    margin: 0 0 10px;
  }
  .eg-bundle__heading {
    font-family: var(--font-heading--family), 'Cormorant Garamond', serif;
    font-weight: 600;
    font-size: clamp(1.6rem, 3vw, 2.1rem);
    line-height: 1.15;
    color: #273755;
    margin: 0 0 6px;
  }
  .eg-bundle__subtext {
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 0.9375rem;
    line-height: 1.5;
    color: #6b6b6b;
    margin: 0 0 22px;
    max-width: 40rem;
  }
  .eg-bundle__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
    align-items: start;
  }
  @media screen and (min-width: 900px) {
    .eg-bundle__grid { grid-template-columns: minmax(0, 1.6fr) minmax(260px, 0.9fr); gap: 32px; }
  }
  .eg-bundle__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1px;
    background: #e5e5e5;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    overflow: hidden;
  }
  .eg-bundle__item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    background: #f5f3ef;
  }
  .eg-bundle__item--current { background: #fff; }
  .eg-bundle__thumb {
    flex: 0 0 auto;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    overflow: hidden;
  }
  .eg-bundle__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .eg-bundle__meta { min-width: 0; display: flex; flex-direction: column; gap: 3px; }
  .eg-bundle__name {
    font-family: var(--font-heading--family), 'Cormorant Garamond', serif;
    font-size: 1.0625rem;
    line-height: 1.25;
    color: #273755;
    text-decoration: none;
  }
  a.eg-bundle__name:hover { color: #1d2c45; text-decoration: underline; text-underline-offset: 2px; }
  .eg-bundle__price {
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 0.8125rem;
    font-variant-numeric: tabular-nums;
    color: #6b6b6b;
  }
  .eg-bundle__tag {
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #6b6b6b;
  }
  .eg-bundle__panel {
    background: #273755;
    border-radius: 4px;
    padding: 22px 22px 20px;
    color: #fff;
    position: sticky;
    top: 90px;
  }
  .eg-bundle__set { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; margin-bottom: 16px; }
  .eg-bundle__set-label {
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #cfd6e2;
  }
  .eg-bundle__set-count { display: block; font-weight: 400; letter-spacing: 0.04em; text-transform: none; color: #9aa6bd; margin-top: 2px; }
  .eg-bundle__set-price {
    font-family: var(--font-heading--family), 'Cormorant Garamond', serif;
    font-size: 1.75rem;
    line-height: 1;
    color: #fff;
    font-variant-numeric: tabular-nums;
  }
  .eg-bundle__add {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 18px;
    border: 1px solid #fff;
    border-radius: 4px;
    background: #fff;
    color: #273755;
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.18s ease, color 0.18s ease;
  }
  .eg-bundle__add:hover { background: transparent; color: #fff; }
  .eg-bundle.is-loading .eg-bundle__add { opacity: 0.7; pointer-events: none; }
  .eg-bundle__add-spinner { display: none; width: 14px; height: 14px; border: 2px solid currentColor; border-top-color: transparent; border-radius: 50%; animation: eg-bundle-spin 0.7s linear infinite; }
  .eg-bundle.is-loading .eg-bundle__add-spinner { display: inline-block; }
  @keyframes eg-bundle-spin { to { transform: rotate(360deg); } }
  .eg-bundle__volume {
    margin: 14px 0 0;
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 0.8125rem;
    line-height: 1.4;
    color: #cfd6e2;
    text-align: center;
  }
  .eg-bundle__feedback {
    margin: 10px 0 0;
    min-height: 1em;
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 0.8125rem;
    line-height: 1.4;
    color: #e7ecf4;
    text-align: center;
  }
  @media (prefers-reduced-motion: reduce) {
    .eg-bundle__add-spinner { animation: none; }
  }
/* END_SECTION:eg-pdp-bundle */

/* START_SECTION:eg-pdp-contact (INDEX:59) */
.eg-contact { background-color: var(--color-background); color: var(--color-foreground); }
  .eg-contact__inner {
    max-width: 40rem;
    margin-inline: auto;
    padding-inline: 20px;
  }
  .eg-contact__eyebrow {
    font-family: var(--font-body--family);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #6B6B6B;
    margin: 0 0 12px;
    text-align: center;
  }
  .eg-contact__heading {
    font-family: var(--font-heading--family);
    color: var(--color-foreground-heading);
    font-size: clamp(1.75rem, 3.6vw, 2.25rem);
    line-height: 1.15;
    letter-spacing: 0.01em;
    margin: 0 0 12px;
    text-align: center;
  }
  .eg-contact__subtext {
    font-family: var(--font-body--family);
    color: #6B6B6B;
    font-size: 1.0625rem;
    line-height: 1.6;
    margin: 0 0 24px;
    text-align: center;
  }
  .eg-contact__form {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .eg-contact__row {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  @media screen and (min-width: 600px) {
    .eg-contact__row { flex-direction: row; }
    .eg-contact__row .eg-contact__field { flex: 1 1 0; }
  }
  .eg-contact__field {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }
  .eg-contact__label {
    font-family: var(--font-body--family);
    font-size: 0.8125rem;
    color: #6B6B6B;
  }
  .eg-contact__input {
    width: 100%;
    box-sizing: border-box;
    font-family: var(--font-body--family);
    font-size: 1rem;
    color: var(--color-foreground);
    background-color: var(--color-background);
    padding: 12px 14px;
    border: 1px solid #E5E5E5;
    border-radius: 4px;
    -webkit-font-smoothing: antialiased;
  }
  .eg-contact__input:focus {
    outline: none;
    border-color: #273755;
    box-shadow: 0 0 0 1px #273755;
  }
  .eg-contact__textarea {
    resize: vertical;
    min-height: 120px;
  }
  .eg-contact__submit {
    align-self: flex-start;
    font-family: var(--font-body--family);
    font-size: 0.9375rem;
    letter-spacing: 0.02em;
    color: #FFFFFF;
    background-color: #273755;
    border: 1px solid #273755;
    border-radius: 4px;
    padding: 14px 32px;
    cursor: pointer;
    transition: background-color 0.12s ease;
  }
  .eg-contact__submit:hover { background-color: #3B4A66; }
  .eg-contact__success {
    font-family: var(--font-body--family);
    font-size: 1.0625rem;
    line-height: 1.6;
    color: var(--color-foreground-heading);
    margin: 0;
    text-align: center;
  }
  .eg-contact__error {
    font-family: var(--font-body--family);
    font-size: 0.9375rem;
    line-height: 1.5;
    color: #b3261e;
    margin: 0;
  }
/* END_SECTION:eg-pdp-contact */

/* START_SECTION:eg-pdp-detail (INDEX:60) */
.eg-section {
    background-color: var(--color-background);
    color: var(--color-foreground);
  }
  .eg-section__inner {
    max-width: 46rem;
    margin-inline: auto;
    padding-inline: 20px;
  }
  .eg-section__eyebrow {
    font-family: var(--font-body--family);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #6B6B6B;
    margin: 0 0 12px;
  }
  .eg-section__heading {
    font-family: var(--font-heading--family);
    color: var(--color-foreground-heading);
    font-size: clamp(1.75rem, 3.6vw, 2.25rem);
    line-height: 1.15;
    letter-spacing: 0.01em;
    margin: 0 0 16px;
  }
  .eg-section__body {
    font-family: var(--font-body--family);
    color: var(--color-foreground);
    font-size: 1.0625rem;
    line-height: 1.6;
    max-width: 40rem;
  }
  .eg-section__body p { margin: 0 0 1rem; }
  .eg-section__body p:last-child { margin-bottom: 0; }
/* END_SECTION:eg-pdp-detail */

/* START_SECTION:eg-pdp-faq (INDEX:62) */
.eg-faq { background-color: var(--color-background); color: var(--color-foreground); }
  .eg-faq__inner { max-width: 46rem; margin-inline: auto; padding-inline: 20px; }
  .eg-faq .eg-section__eyebrow {
    font-family: var(--font-body--family);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #6B6B6B;
    margin: 0 0 12px;
  }
  .eg-faq .eg-section__heading {
    font-family: var(--font-heading--family);
    color: var(--color-foreground-heading);
    font-size: clamp(1.75rem, 3.6vw, 2.25rem);
    line-height: 1.15;
    letter-spacing: 0.01em;
    margin: 0 0 24px;
  }
  .eg-faq__list { border-top: 1px solid #E5E5E5; }
  .eg-faq__item { border-bottom: 1px solid #E5E5E5; }
  .eg-faq__q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    cursor: pointer;
    list-style: none;
    padding: 20px 0;
    font-family: var(--font-body--family);
    font-size: 1.0625rem;
    color: var(--color-foreground-heading);
  }
  .eg-faq__q::-webkit-details-marker { display: none; }
  .eg-faq__mark {
    position: relative;
    flex: 0 0 auto;
    width: 14px;
    height: 14px;
  }
  .eg-faq__mark::before,
  .eg-faq__mark::after {
    content: '';
    position: absolute;
    background-color: var(--color-foreground);
    transition: opacity 0.2s ease;
  }
  .eg-faq__mark::before { top: 6px; left: 0; width: 14px; height: 2px; }
  .eg-faq__mark::after { top: 0; left: 6px; width: 2px; height: 14px; }
  .eg-faq__item[open] .eg-faq__mark::after { opacity: 0; }
  .eg-faq__a {
    font-family: var(--font-body--family);
    font-size: 1.0625rem;
    line-height: 1.6;
    color: var(--color-foreground);
    padding: 0 0 20px;
    max-width: 40rem;
  }
  .eg-faq__a p { margin: 0; }
/* END_SECTION:eg-pdp-faq */

/* START_SECTION:eg-pdp-glance (INDEX:63) */
.eg-glance { background-color: var(--color-background); }
  .eg-glance__inner { margin-inline: auto; box-sizing: border-box; padding-inline: 20px; }
  .eg-glance__eyebrow {
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #6b6b6b;
    margin: 0 0 14px;
  }
  .eg-glance__row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    background: #e5e5e5;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    overflow: hidden;
  }
  @media screen and (min-width: 750px) {
    .eg-glance__row { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .eg-glance__row:has(.eg-glance__item:nth-child(3):last-child) { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .eg-glance__row:has(.eg-glance__item:nth-child(2):last-child) { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  }
  .eg-glance__item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: #f5f3ef;
    padding: 16px 18px;
  }
  .eg-glance__label {
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #6b6b6b;
  }
  .eg-glance__value {
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 0.9375rem;
    line-height: 1.4;
    color: #1a1a1a;
  }
/* END_SECTION:eg-pdp-glance */

/* START_SECTION:eg-pdp-in-room (INDEX:64) */
.eg-room2{background-color:var(--color-background)}.eg-room2 .eg-series__inner{width:100%;max-width:87.5rem;margin-inline:auto;box-sizing:border-box;padding-inline:20px}.eg-room2 .eg-series__head{display:flex;align-items:flex-end;justify-content:space-between;gap:16px 24px;margin-bottom:18px}.eg-room2 .eg-series__head-left{min-width:0}.eg-room2 .eg-series__head-right{flex:none;display:flex;align-items:center;gap:16px}.eg-room2 .eg-series__nav{display:flex;align-items:center;gap:10px}.eg-room2 .eg-series__eyebrow{font-family:var(--font-body--family),'Inter',sans-serif;font-size:0.6875rem;font-weight:600;letter-spacing:0.16em;text-transform:uppercase;color:#6b6b6b;margin:0 0 8px}.eg-room2 .eg-series__heading{font-family:var(--font-heading--family),'Cormorant Garamond',serif;font-weight:600;font-size:clamp(1.5rem,2.8vw,2rem);line-height:1.15;color:#273755;margin:0}.eg-room2 .eg-series__all{flex:none;font-family:var(--font-body--family),'Inter',sans-serif;font-size:0.75rem;font-weight:600;letter-spacing:0.08em;text-transform:uppercase;color:#273755;text-decoration:none;white-space:nowrap}.eg-room2 .eg-series__all:hover{color:#1d2c45;text-decoration:underline;text-underline-offset:3px}.eg-room2 .eg-series__viewport{position:relative}.eg-room2 .eg-series__navbtn{display:inline-flex;align-items:center;justify-content:center;width:40px;height:40px;flex:none;padding:0;border:0;border-radius:50%;background-color:#273755;color:#ffffff;box-shadow:0 2px 10px rgb(39 55 85 / 0.28);cursor:pointer;transition:background-color 0.18s ease,opacity 0.18s ease;appearance:none;-webkit-appearance:none}.eg-room2 .eg-series__navbtn svg{display:block}.eg-room2 .eg-series__navbtn:hover{background-color:#1d2c45}.eg-room2 .eg-series__navbtn:focus-visible{outline:2px solid #273755;outline-offset:2px}.eg-room2 .eg-series__navbtn:disabled,.eg-room2 .eg-series__navbtn[aria-disabled="true"]{opacity:0.35;cursor:default;pointer-events:none}.eg-room2 .eg-series__track{list-style:none;margin:0;padding:0 0 4px;display:flex;flex-wrap:nowrap;gap:16px;overflow-x:auto;overflow-y:hidden;scroll-snap-type:x mandatory;scroll-padding-inline:0;-webkit-overflow-scrolling:touch;scrollbar-width:none;-ms-overflow-style:none}.eg-room2 .eg-series__track::-webkit-scrollbar{display:none}.eg-room2 .eg-series__item{display:flex;flex:0 0 180px;width:180px;scroll-snap-align:start}.eg-room2 .eg-series__card{display:flex;flex-direction:column;width:100%;text-decoration:none}.eg-room2 .eg-series__media{display:block;aspect-ratio:1 / 1;background:#f5f3ef;border:1px solid #e5e5e5;border-radius:4px;overflow:hidden;margin-bottom:10px}.eg-room2 .eg-series__media img{width:100%;height:100%;object-fit:cover;display:block;transition:transform 0.35s ease}.eg-room2 .eg-series__card:hover .eg-series__media img{transform:scale(1.03)}.eg-room2 .eg-series__copy{display:block}.eg-room2 .eg-series__name{display:block;font-family:var(--font-heading--family),'Cormorant Garamond',serif;font-size:1.0625rem;line-height:1.25;color:#273755;margin-bottom:2px}.eg-room2 .eg-series__card:hover .eg-series__name{color:#1d2c45}.eg-room2 .eg-series__price{display:block;font-family:var(--font-body--family),'Inter',sans-serif;font-size:0.8125rem;font-variant-numeric:tabular-nums;color:#6b6b6b}@media screen and (min-width:750px){.eg-room2 .eg-series__item{flex-basis:200px;width:200px}}@media screen and (max-width:749px){.eg-room2 .eg-series__head{align-items:flex-start;flex-wrap:wrap;gap:10px 16px}.eg-room2 .eg-series__head-left{flex:1 1 60%;min-width:0}.eg-room2 .eg-series__head-right{flex:0 0 auto;margin-left:auto;gap:12px}.eg-room2 .eg-series__item{flex:0 0 60vw;width:60vw;max-width:240px}.eg-room2 .eg-series__navbtn{width:34px;height:34px}}@media (prefers-reduced-motion:reduce){.eg-room2 .eg-series__media img{transition:none}.eg-room2 .eg-series__card:hover .eg-series__media img{transform:none}}
/* END_SECTION:eg-pdp-in-room */

/* START_SECTION:eg-pdp-recently-viewed (INDEX:66) */
.eg-recent { background-color: var(--color-background); color: var(--color-foreground); }
  .eg-recent[hidden] { display: none; }
  .eg-recent__inner {
    width: 100%;
    max-width: 87.5rem;
    margin-inline: auto;
    padding-inline: 20px;
    box-sizing: border-box;
  }
  /* Header row: heading on the left, prev/next arrow pair on the right, sitting
     ABOVE the card rail (matches the homepage eg-product-row head). */
  .eg-recent__head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px 24px;
    margin-bottom: 24px;
  }
  .eg-recent__heading {
    font-family: var(--font-heading--family);
    color: var(--color-foreground-heading);
    font-size: clamp(1.5rem, 3.5vw, 1.875rem);
    line-height: 1.15;
    letter-spacing: 0.01em;
    margin: 0;
    min-width: 0;
  }
  .eg-recent__nav {
    flex: none;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  /* Horizontal scroll rail. Cards have a fixed width so the row overflows and
     scrolls; the prev/next arrows live in the header row above. */
  .eg-recent__rail {
    position: relative;
  }
  .eg-recent__track {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: nowrap;
    gap: 16px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 0;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .eg-recent__track::-webkit-scrollbar { display: none; }
  .eg-recent__item {
    display: flex;
    flex: 0 0 240px;
    width: 240px;
    scroll-snap-align: start;
  }
  /* Navy arrow pills in the header row, above the cards. */
  .eg-recent__navbtn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    flex: none;
    padding: 0;
    border-radius: 999px;
    border: 1px solid #E5E5E5;
    background-color: #273755;
    color: #FFFFFF;
    cursor: pointer;
    box-shadow: 0 2px 8px rgb(39 55 85 / 0.20);
    transition: background-color 180ms ease, color 180ms ease, opacity 180ms ease, border-color 180ms ease;
  }
  .eg-recent__navbtn:hover {
    background-color: #1d2c46;
    border-color: #273755;
  }
  .eg-recent__navbtn:focus-visible {
    outline: 2px solid #273755;
    outline-offset: 2px;
  }
  .eg-recent__navbtn[hidden] { display: none; }
  .eg-recent__navbtn:disabled,
  .eg-recent__navbtn[aria-disabled="true"] {
    opacity: 0.35;
    cursor: default;
    pointer-events: none;
  }
  .eg-recent__navbtn svg { display: block; }
  @media screen and (max-width: 749px) {
    /* Roughly 1.3 cards visible so the shelf reads as swipeable; the arrow pair
       stays in the header row above the cards, visible without scrolling. */
    .eg-recent__head {
      align-items: center;
      gap: 12px;
    }
    .eg-recent__nav { gap: 8px; }
    .eg-recent__item {
      flex: 0 0 74vw;
      width: 74vw;
      max-width: 280px;
    }
    .eg-recent__navbtn {
      width: 40px;
      height: 40px;
    }
  }

  /* Card matches the homepage eg-product-row card exactly:
     bordered white box, 1:1 media, padded copy, Cormorant title,
     Inter price, hover lift + image zoom. */
  .eg-recent__card {
    display: flex;
    flex-direction: column;
    width: 100%;
    background-color: #FFFFFF;
    border: 1px solid #E5E5E5;
    border-radius: 4px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: border-color 180ms ease, box-shadow 180ms ease;
  }
  .eg-recent__card:hover {
    border-color: #273755;
    box-shadow: 0 6px 18px rgb(39 55 85 / 0.08);
  }
  .eg-recent__media {
    position: relative;
    display: block;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 1 / 1;
    background-color: #F5F5F5;
  }
  .eg-recent__media img,
  img.eg-recent__media {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 320ms ease;
  }
  .eg-recent__card:hover .eg-recent__media img,
  .eg-recent__card:hover img.eg-recent__media {
    transform: scale(1.03);
  }
  .eg-recent__copy {
    padding: 16px 18px 20px;
  }
  .eg-recent__title {
    font-family: var(--font-heading--family);
    font-weight: 600;
    color: #273755;
    font-size: 1.25rem;
    line-height: 1.2;
    letter-spacing: 0.005em;
    margin: 0 0 6px;
    text-wrap: balance;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .eg-recent__price {
    font-family: var(--font-body--family);
    font-weight: 500;
    color: #1A1A1A;
    font-size: 1rem;
    line-height: 1.3;
    margin: 0;
    font-variant-numeric: tabular-nums;
  }
  @media (prefers-reduced-motion: reduce) {
    .eg-recent__media img,
    img.eg-recent__media { transition: none; }
    .eg-recent__card:hover .eg-recent__media img,
    .eg-recent__card:hover img.eg-recent__media { transform: none; }
  }
/* END_SECTION:eg-pdp-recently-viewed */

/* START_SECTION:eg-pdp-reveals (INDEX:68) */
/* Only apply the hidden start-state when the engine has marked the
     document ready AND motion is allowed. This guarantees that if the
     section is removed (or JS fails), nothing stays invisible. */
  @media (prefers-reduced-motion: no-preference) {
    html.eg-reveals-ready [data-eg-reveal] {
      opacity: 0;
      transform: translateY(18px);
      transition: opacity 0.6s cubic-bezier(0.22, 0.61, 0.36, 1), transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
      will-change: opacity, transform;
    }
    html.eg-reveals-ready [data-eg-reveal].eg-reveal-on {
      opacity: 1;
      transform: none;
    }
  }
/* END_SECTION:eg-pdp-reveals */

/* START_SECTION:eg-pdp-reviews (INDEX:69) */
.eg-reviews { background-color: var(--color-background); color: var(--color-foreground); }
  .eg-reviews__inner { max-width: 46rem; margin-inline: auto; padding-inline: 20px; }
  .eg-reviews__heading {
    font-family: var(--font-heading--family);
    color: var(--color-foreground-heading);
    font-size: clamp(1.5rem, 3.5vw, 1.75rem);
    line-height: 1.15;
    margin: 0 0 0.75rem;
  }
  .eg-reviews__placeholder {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-body--family);
  }
  .eg-reviews__stars {
    color: var(--color-primary);
    font-size: 1rem;
    letter-spacing: 0.12em;
  }
  .eg-reviews__note {
    font-size: 0.875rem;
    color: var(--color-foreground);
    opacity: 0.7;
  }
/* END_SECTION:eg-pdp-reviews */

/* START_SECTION:eg-pdp-room (INDEX:70) */
.eg-room { background-color: var(--color-background); color: var(--color-foreground); }
  .eg-room__inner { max-width: 64rem; margin-inline: auto; padding-inline: 20px; }
  .eg-room .eg-section__eyebrow {
    font-family: var(--font-body--family);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #6B6B6B;
    margin: 0 0 12px;
  }
  .eg-room .eg-section__heading {
    font-family: var(--font-heading--family);
    color: var(--color-foreground-heading);
    font-size: clamp(1.75rem, 3.6vw, 2.25rem);
    line-height: 1.15;
    letter-spacing: 0.01em;
    margin: 0 0 16px;
  }
  .eg-room .eg-section__body {
    font-family: var(--font-body--family);
    color: var(--color-foreground);
    font-size: 1.0625rem;
    line-height: 1.6;
    max-width: 40rem;
    margin-bottom: 40px;
  }
  .eg-room .eg-section__body p { margin: 0; }
  .eg-room__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  @media (min-width: 750px) {
    .eg-room__grid { grid-template-columns: repeat(3, 1fr); gap: 32px; }
  }
  .eg-room__cell { overflow: hidden; border-radius: 0; }
  .eg-room__img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 0;
    object-fit: cover;
  }
/* END_SECTION:eg-pdp-room */

/* START_SECTION:eg-pdp-series (INDEX:71) */
.eg-series{background-color:var(--color-background)}.eg-series__inner{width:100%;max-width:87.5rem;margin-inline:auto;box-sizing:border-box;padding-inline:20px;display:grid;gap:44px}.eg-series__head{display:flex;align-items:flex-end;justify-content:space-between;gap:16px 24px;margin-bottom:18px}.eg-series__head-left{min-width:0}.eg-series__head-right{flex:none;display:flex;align-items:center;gap:16px}.eg-series__nav{display:flex;align-items:center;gap:10px}.eg-series__eyebrow{font-family:var(--font-body--family),'Inter',sans-serif;font-size:0.6875rem;font-weight:600;letter-spacing:0.16em;text-transform:uppercase;color:#6b6b6b;margin:0 0 8px}.eg-series__heading{font-family:var(--font-heading--family),'Cormorant Garamond',serif;font-weight:600;font-size:clamp(1.5rem,2.8vw,2rem);line-height:1.15;color:#273755;margin:0}.eg-series__all{flex:none;font-family:var(--font-body--family),'Inter',sans-serif;font-size:0.75rem;font-weight:600;letter-spacing:0.08em;text-transform:uppercase;color:#273755;text-decoration:none;white-space:nowrap}.eg-series__all:hover{color:#1d2c45;text-decoration:underline;text-underline-offset:3px}.eg-series__viewport{position:relative}.eg-series__navbtn{display:inline-flex;align-items:center;justify-content:center;width:40px;height:40px;flex:none;padding:0;border:0;border-radius:50%;background-color:#273755;color:#ffffff;box-shadow:0 2px 10px rgb(39 55 85 / 0.28);cursor:pointer;transition:background-color 0.18s ease,opacity 0.18s ease;appearance:none;-webkit-appearance:none}.eg-series__navbtn svg{display:block}.eg-series__navbtn:hover{background-color:#1d2c45}.eg-series__navbtn:focus-visible{outline:2px solid #273755;outline-offset:2px}.eg-series__navbtn:disabled,.eg-series__navbtn[aria-disabled="true"]{opacity:0.35;cursor:default;pointer-events:none}.eg-series__track{list-style:none;margin:0;padding:0 0 4px;display:flex;flex-wrap:nowrap;gap:16px;overflow-x:auto;overflow-y:hidden;scroll-snap-type:x mandatory;scroll-padding-inline:0;-webkit-overflow-scrolling:touch;scrollbar-width:none;-ms-overflow-style:none}.eg-series__track::-webkit-scrollbar{display:none}.eg-series__item{display:flex;flex:0 0 180px;width:180px;scroll-snap-align:start}.eg-series__card{display:flex;flex-direction:column;width:100%;text-decoration:none}.eg-series__media{display:block;aspect-ratio:1 / 1;background:#f5f3ef;border:1px solid #e5e5e5;border-radius:4px;overflow:hidden;margin-bottom:10px}.eg-series__media img{width:100%;height:100%;object-fit:cover;display:block;transition:transform 0.35s ease}.eg-series__card:hover .eg-series__media img{transform:scale(1.03)}.eg-series__copy{display:block}.eg-series__name{display:block;font-family:var(--font-heading--family),'Cormorant Garamond',serif;font-size:1.0625rem;line-height:1.25;color:#273755;margin-bottom:2px}.eg-series__card:hover .eg-series__name{color:#1d2c45}.eg-series__price{display:block;font-family:var(--font-body--family),'Inter',sans-serif;font-size:0.8125rem;font-variant-numeric:tabular-nums;color:#6b6b6b}@media screen and (min-width:750px){.eg-series__item{flex-basis:200px;width:200px}}@media screen and (max-width:749px){.eg-series__head{align-items:flex-start;flex-wrap:wrap;gap:10px 16px}.eg-series__head-left{flex:1 1 60%;min-width:0}.eg-series__head-right{flex:0 0 auto;margin-left:auto;gap:12px}.eg-series__item{flex:0 0 60vw;width:60vw;max-width:240px}.eg-series__navbtn{width:34px;height:34px}}@media (prefers-reduced-motion:reduce){.eg-series__media img{transition:none}.eg-series__card:hover .eg-series__media img{transform:none}}
/* END_SECTION:eg-pdp-series */

/* START_SECTION:eg-pdp-specs (INDEX:72) */
.eg-specs { background-color: var(--color-background); color: var(--color-foreground); }
  .eg-specs__inner { max-width: 46rem; margin-inline: auto; padding-inline: 20px; }
  .eg-specs .eg-section__eyebrow {
    font-family: var(--font-body--family);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #6B6B6B;
    margin: 0 0 12px;
  }
  .eg-specs .eg-section__heading {
    font-family: var(--font-heading--family);
    color: var(--color-foreground-heading);
    font-size: clamp(1.75rem, 3.6vw, 2.25rem);
    line-height: 1.15;
    letter-spacing: 0.01em;
    margin: 0 0 24px;
  }
  .eg-specs__table {
    margin: 0;
    font-family: var(--font-body--family);
    border-top: 1px solid #E5E5E5;
  }
  .eg-specs__row {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid #E5E5E5;
  }
  .eg-specs__row dt {
    margin: 0;
    font-size: 0.75rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #6B6B6B;
  }
  .eg-specs__row dd {
    margin: 0;
    font-size: 1.0625rem;
    line-height: 1.5;
    color: var(--color-foreground);
  }
  @media (max-width: 540px) {
    .eg-specs__row { grid-template-columns: 1fr; gap: 4px; }
  }
/* END_SECTION:eg-pdp-specs */

/* START_SECTION:eg-pdp-sticky-bar (INDEX:73) */
.eg-stickybar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 30;
    background: #ffffff;
    border-top: 1px solid #e5e5e5;
    box-shadow: 0 -6px 24px rgba(39, 55, 85, 0.08);
    transform: translateY(110%);
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
  }
  .eg-stickybar[hidden] { display: none; }
  @media (prefers-reduced-motion: no-preference) {
    .eg-stickybar {
      transition: transform 0.32s cubic-bezier(0.22, 0.61, 0.36, 1), opacity 0.32s ease, visibility 0s linear 0.32s;
    }
  }
  .eg-stickybar.is-visible {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
  }
  @media (prefers-reduced-motion: no-preference) {
    .eg-stickybar.is-visible { transition: transform 0.32s cubic-bezier(0.22, 0.61, 0.36, 1), opacity 0.32s ease, visibility 0s; }
  }
  /* When the bar is on screen, reserve its height at the page bottom so the
     footer, the contact-form Send button, and any last-section content clear
     it instead of hiding behind it. Toggled from the bar's show()/hide() JS. */
  body.eg-stickybar-open { padding-bottom: 76px; }
  @media screen and (max-width: 749px) {
    body.eg-stickybar-open { padding-bottom: 72px; }
  }
  .eg-stickybar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-block: 10px;
    margin-inline: auto;
    box-sizing: border-box;
  }
  .eg-stickybar__product {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
    flex: 1 1 auto;
  }
  .eg-stickybar__thumb {
    flex: 0 0 auto;
    width: 48px;
    height: 48px;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    overflow: hidden;
    background: #f5f3ef;
  }
  .eg-stickybar__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .eg-stickybar__text { display: flex; flex-direction: column; min-width: 0; gap: 2px; }
  .eg-stickybar__title {
    font-family: var(--font-heading--family), 'Cormorant Garamond', serif;
    font-size: 1.0625rem;
    line-height: 1.2;
    color: #273755;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 42vw;
  }
  .eg-stickybar__meta { display: flex; align-items: baseline; gap: 10px; min-width: 0; }
  .eg-stickybar__price {
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 0.9375rem;
    font-weight: 600;
    color: #1a1a1a;
    white-space: nowrap;
  }
  .eg-stickybar__price-sale { color: #1a1a1a; }
  .eg-stickybar__price-was { color: #6b6b6b; font-weight: 400; margin-inline-start: 6px; }
  .eg-stickybar__variant {
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 0.78rem;
    color: #6b6b6b;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 28vw;
  }
  .eg-stickybar__btn {
    flex: 0 0 auto;
    appearance: none;
    border: 1px solid #273755;
    background: #273755;
    color: #ffffff;
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    padding: 12px 26px;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.18s ease, opacity 0.18s ease;
    min-width: 150px;
  }
  .eg-stickybar__btn:hover { background: #1d2c45; }
  .eg-stickybar__btn:disabled { opacity: 0.45; cursor: not-allowed; }
  .eg-stickybar__btn.is-loading { opacity: 0.7; pointer-events: none; }
  .eg-stickybar__btn.is-added { background: #1a1a1a; border-color: #1a1a1a; }

  @media screen and (max-width: 749px) {
    .eg-stickybar__inner { padding-inline: 14px; gap: 10px; }
    .eg-stickybar__title { max-width: 38vw; font-size: 1rem; }
    .eg-stickybar__variant { display: none; }
    .eg-stickybar__btn { min-width: 0; padding: 12px 20px; }
  }
  @media screen and (max-width: 389px) {
    .eg-stickybar__thumb { width: 40px; height: 40px; }
    .eg-stickybar__title { max-width: 34vw; }
  }
/* END_SECTION:eg-pdp-sticky-bar */

/* START_SECTION:eg-pdp-story (INDEX:74) */
.eg-story { background-color: var(--color-background); color: var(--color-foreground); }
  .eg-story__inner { max-width: 48rem; margin-inline: auto; padding-inline: 20px; }
  .eg-story__eyebrow {
    font-family: var(--font-body--family);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgb(var(--color-foreground-rgb) / 0.7);
    margin: 0 0 16px;
  }
  .eg-story .eg-section__heading {
    font-family: var(--font-heading--family);
    color: var(--color-foreground-heading);
    font-size: clamp(2.125rem, 4.5vw, 2.5rem);
    line-height: 1.12;
    letter-spacing: 0.01em;
    margin: 0 0 20px;
  }
  .eg-story .eg-section__body {
    font-family: var(--font-body--family);
    color: var(--color-foreground);
    font-size: 1.0625rem;
    line-height: 1.6;
    max-width: 42rem;
  }
  .eg-story .eg-section__body p { margin: 0; }
/* END_SECTION:eg-pdp-story */

/* START_SECTION:eg-pdp-trust-band (INDEX:75) */
.eg-tband { background-color: #f5f3ef; }
  .eg-tband__inner { margin-inline: auto; box-sizing: border-box; padding-inline: 20px; }
  .eg-tband__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px 16px;
  }
  .eg-tband__list[data-count="3"] { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  @media screen and (min-width: 750px) {
    .eg-tband__list { grid-template-columns: repeat(4, minmax(0, 1fr)); align-items: start; }
    .eg-tband__list[data-count="3"] { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .eg-tband__item { position: relative; padding-inline: 22px; justify-content: center; }
    .eg-tband__item + .eg-tband__item::before {
      content: '';
      position: absolute;
      left: 0;
      top: 50%;
      transform: translateY(-50%);
      width: 1px;
      height: 34px;
      background: #e0ddd5;
    }
  }
  .eg-tband__item {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .eg-tband__icon { flex: 0 0 auto; width: 24px; height: 24px; color: #273755; }
  .eg-tband__icon svg { width: 100%; height: 100%; display: block; }
  .eg-tband__text { display: flex; flex-direction: column; gap: 1px; min-width: 0; }
  .eg-tband__title {
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 1.3;
    color: #1a1a1a;
  }
  .eg-tband__sub {
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 0.75rem;
    line-height: 1.35;
    color: #6b6b6b;
  }
/* END_SECTION:eg-pdp-trust-band */

/* START_SECTION:eg-pdp-volume (INDEX:76) */
.eg-vol { background-color: var(--color-background); }
  .eg-vol__inner { margin-inline: auto; box-sizing: border-box; padding-inline: 20px; }
  .eg-vol__eyebrow {
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #6b6b6b;
    margin: 0 0 8px;
  }
  .eg-vol__heading {
    font-family: var(--font-heading--family), 'Cormorant Garamond', serif;
    font-weight: 600;
    font-size: clamp(1.5rem, 2.8vw, 1.95rem);
    line-height: 1.15;
    color: #273755;
    margin: 0 0 18px;
  }
  .eg-vol__tiers {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }
  @media screen and (min-width: 640px) {
    .eg-vol__tiers { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  }
  .eg-vol__tier {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: left;
    appearance: none;
    cursor: pointer;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    padding: 16px 16px 14px;
    transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  }
  .eg-vol__tier:hover { border-color: #c8cdd6; }
  .eg-vol__tier.is-active {
    border-color: #273755;
    box-shadow: inset 0 0 0 1px #273755;
    background: #fbfaf8;
  }
  .eg-vol__tier:focus-visible { outline: 2px solid #273755; outline-offset: 2px; }
  .eg-vol__tier--feature { border-color: #cdd4e0; }
  .eg-vol__flag {
    position: absolute;
    top: -9px;
    left: 16px;
    background: #273755;
    color: #fff;
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 0.625rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 3px 8px;
    border-radius: 4px;
  }
  .eg-vol__tier-top { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
  .eg-vol__tier-qty {
    font-family: var(--font-heading--family), 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    line-height: 1;
    color: #273755;
  }
  .eg-vol__tier-tag {
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 0.625rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #6b6b6b;
  }
  .eg-vol__tier-tag--save { color: #2f6a44; }
  .eg-vol__tier-price { display: flex; align-items: baseline; gap: 6px; flex-wrap: wrap; }
  .eg-vol__per {
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 1.0625rem;
    font-weight: 600;
    font-variant-numeric: tabular-nums;
    color: #1a1a1a;
  }
  .eg-vol__per-unit {
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 0.75rem;
    color: #6b6b6b;
  }
  .eg-vol__was {
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 0.8125rem;
    font-variant-numeric: tabular-nums;
    color: #9a9a9a;
  }
  .eg-vol__tier-foot {
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 0.75rem;
    line-height: 1.4;
    color: #6b6b6b;
    font-variant-numeric: tabular-nums;
  }
  .eg-vol__note {
    margin: 14px 0 0;
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 0.75rem;
    line-height: 1.5;
    color: #6b6b6b;
  }
  .eg-vol__note--pending { color: #8a8a8a; font-style: italic; }
/* END_SECTION:eg-pdp-volume */

/* START_SECTION:eg-press (INDEX:77) */
.eg-press {
  }

  .eg-press__hero-inner,
  .eg-press__boiler-inner,
  .eg-press__assets-inner,
  .eg-press__cov-inner,
  .eg-press__cta-inner {
    width: 100%;
    max-width: 1120px;
    margin-inline: auto;
    padding-inline: var(--page-margin, 20px);
    box-sizing: border-box;
  }

  .eg-press__eyebrow {
    margin: 0 0 16px;
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--eg-muted);
  }
  .eg-press__h2 {
    margin: 8px 0 24px;
    font-family: var(--font-heading--family);
    font-weight: 600;
    font-size: clamp(2rem, 4vw, 2.75rem);
    line-height: 1.12;
    letter-spacing: 0.012em;
    color: var(--eg-navy);
    text-wrap: balance;
  }
  .eg-press__h3 {
    margin: 0 0 10px;
    font-family: var(--font-heading--family);
    font-weight: 600;
    font-size: 1.5rem;
    line-height: 1.2;
    color: var(--eg-navy);
    text-wrap: balance;
  }

  /* 1. Hero */
  .eg-press__hero {
    background-color: var(--eg-offwhite);
    padding-block: var(--eg-press-pad-start, 104px) 80px;
  }
  .eg-press__hero-heading {
    margin: 0;
    font-family: var(--font-heading--family);
    font-weight: 600;
    font-size: clamp(2.5rem, 5.5vw, 4rem);
    line-height: 1.06;
    letter-spacing: 0.012em;
    color: var(--eg-navy);
    text-wrap: balance;
    max-width: 18ch;
  }
  .eg-press__hero-sub {
    margin: 24px 0 0;
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 20px;
    line-height: 1.55;
    color: var(--eg-charcoal);
    max-width: 44rem;
    text-wrap: pretty;
  }
  .eg-press__hero-link {
    color: var(--eg-navy);
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 4px;
  }

  /* 2. Boilerplate */
  .eg-press__boiler {
    background-color: var(--eg-white);
    padding-block: 80px;
  }
  .eg-press__boiler-inner { max-width: 820px; }
  .eg-press__boiler-body {
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: var(--eg-charcoal);
    text-wrap: pretty;
  }
  .eg-press__boiler-body p { margin: 0 0 1em; }
  .eg-press__boiler-body p:last-child { margin-bottom: 0; }
  .eg-press__boiler-body strong { color: var(--eg-navy); font-weight: 600; }

  /* 3. Assets */
  .eg-press__assets {
    background-color: var(--eg-offwhite);
    padding-block: 80px;
  }
  .eg-press__assets-card {
    background-color: var(--eg-white);
    border: 1px solid var(--eg-hairline);
    border-radius: 4px;
    padding: clamp(28px, 4vw, 44px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
  }
  .eg-press__assets-copy { max-width: 56ch; }
  .eg-press__assets-d {
    margin: 0;
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--eg-charcoal);
    text-wrap: pretty;
  }

  /* 4. Coverage */
  .eg-press__cov {
    background-color: var(--eg-white);
    padding-block: 80px;
  }
  .eg-press__cov-list {
    margin-top: 8px;
    display: flex;
    flex-direction: column;
  }
  .eg-press__cov-item {
    display: grid;
    grid-template-columns: 220px 1fr auto;
    gap: 24px;
    align-items: baseline;
    padding: 22px 0;
    border-top: 1px solid var(--eg-hairline);
    text-decoration: none;
  }
  .eg-press__cov-item:last-child { border-bottom: 1px solid var(--eg-hairline); }
  .eg-press__cov-outlet {
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--eg-navy);
  }
  .eg-press__cov-headline {
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: var(--eg-charcoal);
  }
  .eg-press__cov-date {
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 13px;
    color: var(--eg-muted);
    white-space: nowrap;
  }
  .eg-press__cov-empty {
    margin-top: 8px;
    border: 1px dashed var(--eg-hairline);
    border-radius: 4px;
    padding: 36px;
    background-color: var(--eg-offwhite);
  }
  .eg-press__cov-empty-text {
    margin: 0;
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--eg-muted);
    text-wrap: pretty;
    max-width: 60ch;
  }

  /* 5. Closing band */
  .eg-press__cta {
    background-color: var(--eg-navy);
    padding-block: 88px var(--eg-press-pad-end, 88px);
  }
  .eg-press__cta-inner {
    max-width: 680px;
    text-align: center;
  }
  .eg-press__cta-heading {
    margin: 0 0 18px;
    font-family: var(--font-heading--family);
    font-weight: 600;
    font-size: clamp(2rem, 4vw, 2.5rem);
    line-height: 1.12;
    letter-spacing: 0.012em;
    color: var(--eg-white);
    text-wrap: balance;
  }
  .eg-press__cta-body {
    margin: 0;
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 20px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.86);
    text-wrap: pretty;
  }
  .eg-press__cta-actions {
    margin-top: 28px;
    display: flex;
    justify-content: center;
  }

  /* Buttons */
  .eg-press__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding-inline: 28px;
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.01em;
    border-radius: 4px;
    text-decoration: none;
    transition: background-color 200ms ease, border-color 200ms ease;
  }
  .eg-press__btn--primary {
    color: var(--eg-white);
    background-color: var(--eg-navy);
    border: 1px solid var(--eg-navy);
  }
  .eg-press__btn--primary:hover,
  .eg-press__btn--primary:focus-visible {
    background-color: var(--eg-navy-hover);
    border-color: var(--eg-navy-hover);
  }
  .eg-press__cta .eg-press__btn--primary {
    color: var(--eg-navy);
    background-color: var(--eg-white);
    border-color: var(--eg-white);
  }
  .eg-press__cta .eg-press__btn--primary:hover,
  .eg-press__cta .eg-press__btn--primary:focus-visible {
    background-color: var(--eg-offwhite);
    border-color: var(--eg-offwhite);
  }

  @media screen and (max-width: 749px) {
    .eg-press__cov-item { grid-template-columns: 1fr; gap: 6px; }
    .eg-press__hero-sub { font-size: 18px; }
    .eg-press__cta-body { font-size: 18px; }
    .eg-press__assets-card { flex-direction: column; align-items: flex-start; }
  }
  @media (prefers-reduced-motion: reduce) {
    .eg-press__btn { transition: none; }
  }
/* END_SECTION:eg-press */

/* START_SECTION:eg-pricing-tiers (INDEX:78) */
.eg-pricing {

    padding-block: var(--eg-pricing-pad-start, 56px) var(--eg-pricing-pad-end, 56px);
  }

  .eg-pricing__inner {
    width: 100%;
    max-width: var(--page-width, 1400px);
    margin-inline: auto;
    padding-inline: var(--page-margin, 20px);
    display: flex;
    flex-direction: column;
    gap: 36px;
  }

  .eg-pricing__head {
    display: flex;
    flex-direction: column;
    gap: 14px;
    max-width: 64ch;
  }

  .eg-pricing__eyebrow {
    margin: 0;
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--eg-accent, #273755);
  }

  .eg-pricing__headline {
    margin: 0;
    max-width: 22ch;
    font-family: var(--font-heading--family);
    font-weight: 600;
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    line-height: 1.1;
    color: var(--eg-navy);
    text-wrap: balance;
  }

  .eg-pricing__lead {
    margin: 0;
    max-width: 60ch;
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: var(--eg-charcoal);
    text-wrap: pretty;
  }

  .eg-pricing__tiers {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }

  .eg-pricing__tier {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 24px 22px;
    background-color: var(--eg-white);
    border: 1px solid var(--eg-hairline);
    border-radius: 4px;
  }

  .eg-pricing__tier-label {
    margin: 0;
    font-family: var(--font-heading--family);
    font-weight: 600;
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    line-height: 1.12;
    color: var(--eg-navy);
  }

  .eg-pricing__tier-count {
    margin: 0;
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--eg-accent, #273755);
  }

  .eg-pricing__tier-line {
    margin: 0;
    margin-block-start: 4px;
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 15px;
    line-height: 1.55;
    color: var(--eg-charcoal);
  }

  .eg-pricing__terms {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 12px 48px;
    padding-block-start: 28px;
    border-block-start: 1px solid var(--eg-hairline);
  }

  .eg-pricing__term {
    display: flex;
    flex-direction: column;
    gap: 4px;
    max-width: 42ch;
  }

  .eg-pricing__term-label {
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--eg-muted);
  }

  .eg-pricing__term-detail {
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.55;
    color: var(--eg-charcoal);
  }

  .eg-pricing__call {
    margin: 0;
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 15px;
    line-height: 1.5;
    color: var(--eg-muted);
  }

  @media screen and (max-width: 989px) {
    .eg-pricing__tiers {
      grid-template-columns: repeat(2, 1fr);
    }
    .eg-pricing__lead { font-size: 17px; }
  }

  @media screen and (max-width: 599px) {
    .eg-pricing__tiers {
      grid-template-columns: 1fr;
    }
  }
/* END_SECTION:eg-pricing-tiers */

/* START_SECTION:eg-product-row (INDEX:80) */
.eg-product-row {
    background-color: var(--color-background);
    color: var(--color-foreground);
  }
  .eg-product-row__inner {
    max-width: 87.5rem;
    margin-inline: auto;
    padding-inline: 20px;
  }
  .eg-product-row__head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 28px;
  }
  .eg-product-row__head-right {
    flex: none;
    display: flex;
    align-items: center;
    gap: 18px;
  }
  .eg-product-row__eyebrow {
    font-family: var(--font-body--family);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    line-height: 1.3;
    color: #6B6B6B;
    margin: 0 0 12px;
  }
  .eg-product-row__heading {
    font-family: var(--font-heading--family);
    font-weight: 600;
    color: #273755;
    font-size: 2.25rem;
    line-height: 1.18;
    letter-spacing: 0.005em;
    margin: 0;
    max-width: 560px;
    text-wrap: balance;
  }
  .eg-product-row__nav {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .eg-product-row__navbtn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    flex: none;
    padding: 0;
    border-radius: 999px;
    border: 1px solid #E5E5E5;
    background-color: #FFFFFF;
    color: #273755;
    cursor: pointer;
    transition: border-color 180ms ease, color 180ms ease, opacity 180ms ease, background-color 180ms ease;
  }
  .eg-product-row__navbtn:hover {
    border-color: #273755;
    background-color: #273755;
    color: #FFFFFF;
  }
  .eg-product-row__navbtn:focus-visible {
    outline: 2px solid #273755;
    outline-offset: 2px;
  }
  .eg-product-row__navbtn:disabled,
  .eg-product-row__navbtn[aria-disabled="true"] {
    opacity: 0.35;
    cursor: default;
    pointer-events: none;
  }
  .eg-product-row__navbtn svg {
    display: block;
  }
  .eg-product-row__viewall {
    flex: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-body--family);
    font-size: 0.875rem;
    font-weight: 500;
    color: #273755;
    text-decoration: underline;
    text-underline-offset: 4px;
    white-space: nowrap;
    transition: opacity 180ms ease;
  }
  .eg-product-row__viewall:hover {
    opacity: 0.7;
  }
  .eg-product-row__arrow {
    font-size: 1em;
    line-height: 1;
  }

  /* Single horizontal scroll shelf. Cards sit in one flex row inside a
     scroll-snapping track that overflows and scrolls on both mobile and
     desktop. No grid. Arrow buttons drive scrollTo() on desktop, with an
     instant fallback when smooth scroll is unavailable. */
  .eg-product-row__track {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: nowrap;
    gap: 16px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 20px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .eg-product-row__track::-webkit-scrollbar {
    display: none;
  }
  .eg-product-row__item {
    display: flex;
    flex: 0 0 240px;
    width: 240px;
    scroll-snap-align: start;
  }
  .eg-product-row__card {
    display: flex;
    flex-direction: column;
    width: 100%;
    background-color: #FFFFFF;
    border: 1px solid #E5E5E5;
    border-radius: 4px;
    overflow: hidden;
    color: inherit;
    text-decoration: none;
    transition: border-color 180ms ease, box-shadow 180ms ease;
  }
  .eg-product-row__card:hover {
    border-color: #273755;
    box-shadow: 0 6px 18px rgb(39 55 85 / 0.08);
  }
  .eg-product-row__media {
    position: relative;
    overflow: hidden;
    background-color: #F5F5F5;
    aspect-ratio: 1 / 1;
  }
  .eg-product-row__img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 320ms ease;
  }
  .eg-product-row__img--empty {
    background: linear-gradient(135deg, #F5F5F5, #E5E5E5);
  }
  .eg-product-row__card:hover .eg-product-row__img {
    transform: scale(1.03);
  }
  .eg-product-row__copy {
    padding: 16px 18px 20px;
  }
  .eg-product-row__title {
    font-family: var(--font-heading--family);
    font-weight: 600;
    color: #273755;
    font-size: 1.25rem;
    line-height: 1.2;
    letter-spacing: 0.005em;
    margin: 0 0 6px;
    text-wrap: balance;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .eg-product-row__price {
    font-family: var(--font-body--family);
    font-weight: 500;
    color: #1A1A1A;
    font-size: 1rem;
    line-height: 1.3;
    margin: 0;
    font-variant-numeric: tabular-nums;
  }
  .eg-product-row__empty {
    font-family: var(--font-body--family);
    font-size: 0.875rem;
    color: #6B6B6B;
    margin: 0;
  }

  @media (prefers-reduced-motion: reduce) {
    .eg-product-row__img {
      transition: none;
    }
    .eg-product-row__card:hover .eg-product-row__img {
      transform: none;
    }
  }
  @media screen and (min-width: 750px) and (max-width: 989px) {
    .eg-product-row__heading {
      font-size: 1.85rem;
    }
  }
  @media screen and (max-width: 749px) {
    /* Roughly 1.3 cards visible so the shelf is obviously swipeable. The
       arrows stay available but swiping is the primary affordance here. */
    .eg-product-row__item {
      flex: 0 0 74vw;
      width: 74vw;
      max-width: 280px;
    }
    .eg-product-row__navbtn {
      width: 40px;
      height: 40px;
    }
  }
  @media screen and (max-width: 479px) {
    .eg-product-row__head {
      gap: 16px;
    }
    .eg-product-row__heading {
      font-size: 1.625rem;
    }
    .eg-product-row__head-right {
      gap: 12px;
    }
  }
/* END_SECTION:eg-product-row */

/* START_SECTION:eg-room-explore (INDEX:82) */
.eg-room-explore {
    --eg-fade: 220ms;

    background-color: var(--color-background);
    color: var(--color-foreground);
  }

  .eg-room-explore__inner {
    width: 100%;
    max-width: var(--page-width, 80rem);
    margin-inline: auto;
    padding-inline: var(--page-margin, 20px);
  }

  /* Header */
  .eg-room-explore__head {
    margin-bottom: 36px;
  }
  .eg-room-explore__eyebrow {
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--eg-muted);
    margin: 0 0 14px;
  }
  .eg-room-explore__heading {
    font-family: var(--font-heading--family);
    color: var(--eg-navy);
    font-weight: 600;
    font-size: clamp(1.85rem, 4vw, 2.5rem);
    line-height: 1.1;
    letter-spacing: 0.005em;
    margin: 0;
    text-wrap: balance;
  }

  /* Grid: 3 columns desktop, 2 tablet, 1 mobile. */
  .eg-room-explore__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px 28px;
  }

  .eg-room-explore__card {
    position: relative;
    display: flex;
    flex-direction: column;
  }

  .eg-room-explore__link {
    display: block;
    text-decoration: none;
    color: inherit;
  }

  .eg-room-explore__media {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    border: 1px solid var(--eg-hairline);
    background-color: var(--eg-offwhite);
    aspect-ratio: 3 / 2;
    transition: box-shadow var(--eg-fade) ease, border-color var(--eg-fade) ease, transform var(--eg-fade) ease;
  }
  .eg-room-explore__img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 420ms ease;
  }
  .eg-room-explore__img--empty {
    background: linear-gradient(135deg, rgb(39 55 85 / 0.05), rgb(39 55 85 / 0.12));
  }

  /* Soft hover lift (fade only, no bounce). */
  .eg-room-explore__card:hover .eg-room-explore__media,
  .eg-room-explore__card:focus-within .eg-room-explore__media {
    box-shadow: var(--eg-shadow-soft);
    border-color: #d8dce4;
    transform: translateY(-2px);
  }
  .eg-room-explore__card:hover .eg-room-explore__img {
    transform: scale(1.03);
  }

  /* Room name below the scene. */
  .eg-room-explore__name {
    display: block;
    padding-top: 16px;
    font-family: var(--font-heading--family);
    color: var(--eg-navy);
    font-weight: 600;
    font-size: 1.375rem;
    line-height: 1.16;
    letter-spacing: 0.005em;
    transition: color var(--eg-fade) ease;
  }
  .eg-room-explore__card:hover .eg-room-explore__name,
  .eg-room-explore__card:focus-within .eg-room-explore__name {
    color: var(--eg-charcoal);
  }

  @media screen and (min-width: 750px) and (max-width: 989px) {
    .eg-room-explore__grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 32px 24px;
    }
    .eg-room-explore__name { font-size: 1.25rem; }
  }

  @media screen and (max-width: 749px) {
    .eg-room-explore__head {
      margin-bottom: 28px;
    }
    .eg-room-explore__grid {
      grid-template-columns: 1fr;
      gap: 28px;
    }
    .eg-room-explore__name { font-size: 1.25rem; }
  }

  @media (prefers-reduced-motion: reduce) {
    .eg-room-explore__media,
    .eg-room-explore__img {
      transition: none;
    }
    .eg-room-explore__card:hover .eg-room-explore__media { transform: none; }
    .eg-room-explore__card:hover .eg-room-explore__img { transform: none; }
  }
/* END_SECTION:eg-room-explore */

/* START_SECTION:eg-room-lookbook (INDEX:83) */
.eg-room-lookbook {
    background-color: var(--color-background);
    color: var(--color-foreground);
  }
  .eg-room-lookbook__inner {
    max-width: 80rem;
    margin-inline: auto;
    padding-inline: 20px;
  }
  .eg-room-lookbook__head {
    margin-bottom: 32px;
  }
  .eg-room-lookbook__eyebrow {
    font-family: var(--font-body--family);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgb(var(--color-foreground-rgb) / 0.65);
    margin: 0 0 14px;
  }
  .eg-room-lookbook__heading {
    font-family: var(--font-heading--family);
    color: var(--color-foreground-heading);
    font-size: clamp(1.85rem, 4vw, 2.25rem);
    line-height: 1.12;
    letter-spacing: 0.01em;
    margin: 0;
    text-wrap: balance;
  }
  .eg-room-lookbook__intro {
    font-family: var(--font-body--family);
    color: rgb(var(--color-foreground-rgb) / 0.75);
    font-size: 0.9375rem;
    line-height: 1.5;
    margin: 12px 0 0;
    max-width: 40rem;
  }
  .eg-room-lookbook__rail-wrap {
    overflow: hidden;
  }
  .eg-room-lookbook__rail {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    padding-block: 4px 18px;
    padding-inline: max(20px, calc((100% - 80rem) / 2 + 20px));
  }
  .eg-room-lookbook__rail::-webkit-scrollbar { height: 6px; }
  .eg-room-lookbook__rail::-webkit-scrollbar-thumb { background: rgb(var(--color-foreground-rgb) / 0.2); border-radius: 999px; }
  .eg-room-lookbook__card {
    flex: 0 0 auto;
    width: clamp(260px, 30vw, 380px);
    scroll-snap-align: start;
    color: inherit;
    text-decoration: none;
    display: block;
  }
  .eg-room-lookbook__media {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    background-color: var(--color-foreground-subdued, #f5f5f5);
    aspect-ratio: 4 / 5;
  }
  .eg-room-lookbook__img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 320ms ease;
  }
  .eg-room-lookbook__img--empty {
    background: linear-gradient(135deg, rgb(var(--color-foreground-rgb) / 0.05), rgb(var(--color-foreground-rgb) / 0.12));
  }
  a.eg-room-lookbook__card:hover .eg-room-lookbook__img {
    transform: scale(1.03);
  }
  .eg-room-lookbook__copy {
    padding-top: 14px;
  }
  .eg-room-lookbook__name {
    font-family: var(--font-heading--family);
    color: var(--color-foreground-heading);
    font-size: 1.25rem;
    line-height: 1.2;
    letter-spacing: 0.01em;
    margin: 0 0 4px;
  }
  a.eg-room-lookbook__card:hover .eg-room-lookbook__name {
    text-decoration: underline;
    text-underline-offset: 2px;
  }
  .eg-room-lookbook__caption {
    font-family: var(--font-body--family);
    color: rgb(var(--color-foreground-rgb) / 0.6);
    font-size: 0.875rem;
    line-height: 1.45;
    margin: 0;
  }
  @media (prefers-reduced-motion: reduce) {
    .eg-room-lookbook__img { transition: none; }
    a.eg-room-lookbook__card:hover .eg-room-lookbook__img { transform: none; }
  }
  @media screen and (max-width: 749px) {
    .eg-room-lookbook__rail { padding-inline: 20px; }
    .eg-room-lookbook__card { width: 76vw; }
    .eg-room-lookbook__name { font-size: 1.0625rem; }
  }
/* END_SECTION:eg-room-lookbook */

/* START_SECTION:eg-rooms-hub (INDEX:84) */
.eg-rooms-hub {
    --eg-fade: 220ms;

    background-color: var(--color-background);
    color: var(--color-foreground);
  }

  .eg-rooms-hub__inner {
    width: 100%;
    max-width: var(--page-width, 80rem);
    margin-inline: auto;
    padding-inline: var(--page-margin, 20px);
  }

  /* Header */
  .eg-rooms-hub__head {
    max-width: 46rem;
    margin-bottom: 48px;
  }
  .eg-rooms-hub__eyebrow {
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--eg-muted);
    margin: 0 0 16px;
  }
  .eg-rooms-hub__heading {
    font-family: var(--font-heading--family);
    color: var(--eg-navy);
    font-weight: 600;
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    line-height: 1.06;
    letter-spacing: 0.005em;
    margin: 0;
    text-wrap: balance;
  }
  .eg-rooms-hub__intro {
    font-family: var(--font-body--family), 'Inter', sans-serif;
    color: var(--eg-charcoal);
    font-size: 1.0625rem;
    line-height: 1.6;
    margin: 16px 0 0;
    max-width: 38rem;
  }

  /* Grid: 3 columns desktop, 2 tablet, 1 mobile. Larger cards than home tiles. */
  .eg-rooms-hub__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 44px 28px;
  }

  .eg-rooms-hub__card {
    position: relative;
    display: flex;
    flex-direction: column;
    scroll-margin-top: 96px;
  }

  .eg-rooms-hub__link-wrap {
    position: relative;
    z-index: 1;
    display: block;
    text-decoration: none;
    color: inherit;
  }

  .eg-rooms-hub__media {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    border: 1px solid var(--eg-hairline);
    background-color: var(--eg-offwhite);
    aspect-ratio: 3 / 2;
    transition: box-shadow var(--eg-fade) ease, border-color var(--eg-fade) ease, transform var(--eg-fade) ease;
  }
  .eg-rooms-hub__img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 420ms ease;
  }
  .eg-rooms-hub__img--empty {
    background: linear-gradient(135deg, rgb(39 55 85 / 0.05), rgb(39 55 85 / 0.12));
  }

  /* Sub-brand pill. Sits above the card media link so its own tap goes to the
     sub-brand page; the rest of the card still opens the room. Matches the
     homepage pill: navy text, off-white surface, hairline, rounded. */
  .eg-rooms-hub__tag {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    display: inline-block;
    border-radius: 999px;
    padding: 6px 12px;
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    line-height: 1;
    text-decoration: none;
    color: var(--eg-navy);
    background-color: rgb(245 245 245 / 0.92);
    border: 1px solid rgb(229 229 229 / 0.9);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease;
  }
  a.eg-rooms-hub__tag:hover,
  a.eg-rooms-hub__tag:focus-visible {
    background-color: var(--eg-navy);
    color: #ffffff;
    border-color: var(--eg-navy);
  }
  .eg-rooms-hub__tag--static {
    cursor: default;
  }

  /* Soft hover lift on the whole card (fade only, no bounce). */
  .eg-rooms-hub__card:hover .eg-rooms-hub__media,
  .eg-rooms-hub__card:focus-within .eg-rooms-hub__media {
    box-shadow: var(--eg-shadow-soft);
    border-color: #d8dce4;
    transform: translateY(-2px);
  }
  .eg-rooms-hub__card:hover .eg-rooms-hub__img {
    transform: scale(1.03);
  }

  /* Copy */
  .eg-rooms-hub__copy {
    padding-top: 18px;
  }
  .eg-rooms-hub__name {
    font-family: var(--font-heading--family);
    color: var(--eg-navy);
    font-weight: 600;
    font-size: 1.625rem;
    line-height: 1.14;
    letter-spacing: 0.005em;
    margin: 0 0 6px;
  }
  .eg-rooms-hub__name-link {
    color: inherit;
    text-decoration: none;
    transition: color var(--eg-fade) ease;
  }
  .eg-rooms-hub__name-link:hover,
  .eg-rooms-hub__name-link:focus-visible {
    color: var(--eg-charcoal);
  }
  .eg-rooms-hub__tagline {
    font-family: var(--font-body--family), 'Inter', sans-serif;
    color: var(--eg-muted);
    font-size: 0.9375rem;
    line-height: 1.5;
    margin: 0 0 14px;
    max-width: 26rem;
  }

  /* The single primary action per card. Quiet link, navy, arrow nudges on hover. */
  .eg-rooms-hub__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    color: var(--eg-navy);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    padding-bottom: 1px;
    transition: border-color var(--eg-fade) ease, color var(--eg-fade) ease;
  }
  .eg-rooms-hub__cta:hover,
  .eg-rooms-hub__cta:focus-visible {
    border-bottom-color: var(--eg-navy);
  }
  .eg-rooms-hub__cta-arrow {
    transition: transform var(--eg-fade) ease;
  }
  .eg-rooms-hub__cta:hover .eg-rooms-hub__cta-arrow,
  .eg-rooms-hub__cta:focus-visible .eg-rooms-hub__cta-arrow {
    transform: translateX(3px);
  }

  @media screen and (min-width: 750px) and (max-width: 989px) {
    .eg-rooms-hub__grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 40px 24px;
    }
    .eg-rooms-hub__name { font-size: 1.5rem; }
  }

  @media screen and (max-width: 749px) {
    .eg-rooms-hub__head {
      margin-bottom: 36px;
    }
    .eg-rooms-hub__grid {
      grid-template-columns: 1fr;
      gap: 36px;
    }
    .eg-rooms-hub__intro { font-size: 1rem; }
    .eg-rooms-hub__name { font-size: 1.5rem; }
  }

  @media (prefers-reduced-motion: reduce) {
    .eg-rooms-hub__media,
    .eg-rooms-hub__img,
    .eg-rooms-hub__tag,
    .eg-rooms-hub__cta-arrow {
      transition: none;
    }
    .eg-rooms-hub__card:hover .eg-rooms-hub__media { transform: none; }
    .eg-rooms-hub__card:hover .eg-rooms-hub__img { transform: none; }
  }
/* END_SECTION:eg-rooms-hub */

/* START_SECTION:eg-seasonal-colors (INDEX:85) */
.eg-seasonal {

    padding-block: var(--eg-seasonal-pad-start, 80px) var(--eg-seasonal-pad-end, 80px);
  }

  .eg-seasonal__inner {
    width: 100%;
    max-width: var(--page-width, 1400px);
    margin-inline: auto;
    padding-inline: var(--page-margin, 20px);
    display: flex;
    flex-direction: column;
    gap: 40px;
  }

  .eg-seasonal__head {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 60ch;
  }

  .eg-seasonal__eyebrow {
    margin: 0;
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--eg-accent, #273755);
  }

  .eg-seasonal__headline {
    margin: 0;
    max-width: 22ch;
    font-family: var(--font-heading--family);
    font-weight: 600;
    font-size: clamp(1.875rem, 3.4vw, 2.75rem);
    line-height: 1.08;
    letter-spacing: 0.004em;
    color: var(--eg-navy);
    text-wrap: balance;
  }

  .eg-seasonal__lead {
    margin: 0;
    max-width: 58ch;
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: var(--eg-charcoal);
    text-wrap: pretty;
  }

  .eg-seasonal__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px 24px;
  }

  .eg-seasonal__row {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .eg-seasonal__swatches {
    display: flex;
    align-items: stretch;
    gap: 10px;
    width: 100%;
    height: 96px;
  }

  .eg-seasonal__chip {
    flex: 1 1 0;
    min-width: 0;
    height: 100%;
    border-radius: 4px;
    box-shadow: inset 0 0 0 1px rgba(26, 26, 26, 0.06), 0 1px 2px rgb(39 55 85 / 0.05), 0 10px 24px rgb(39 55 85 / 0.08);
  }

  .eg-seasonal__text {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  .eg-seasonal__season {
    font-family: var(--font-heading--family);
    font-weight: 600;
    font-size: clamp(1.5rem, 2.4vw, 1.875rem);
    line-height: 1.1;
    color: var(--eg-navy);
  }

  .eg-seasonal__note {
    margin: 0;
    max-width: 40ch;
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 15px;
    line-height: 1.55;
    color: var(--eg-charcoal);
  }

  /* By season palettes */
  .eg-seasonal__seasonset {
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding-top: 40px;
    border-top: 1px solid var(--eg-hairline);
  }

  .eg-seasonal__subhead {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 60ch;
  }

  .eg-seasonal__subkicker {
    margin: 0;
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--eg-accent, #273755);
  }

  .eg-seasonal__subheading {
    margin: 0;
    max-width: 24ch;
    font-family: var(--font-heading--family);
    font-weight: 600;
    font-size: clamp(1.5rem, 2.6vw, 2.125rem);
    line-height: 1.1;
    letter-spacing: 0.004em;
    color: var(--eg-navy);
    text-wrap: balance;
  }

  .eg-seasonal__subnote {
    margin: 0;
    max-width: 58ch;
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--eg-charcoal);
    text-wrap: pretty;
  }

  .eg-seasonal__seasonlist {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px 24px;
  }

  .eg-seasonal__seasoncard {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .eg-seasonal__palette {
    display: flex;
    align-items: stretch;
    gap: 0;
    width: 100%;
    height: 72px;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: inset 0 0 0 1px rgba(26, 26, 26, 0.08), 0 1px 2px rgb(39 55 85 / 0.05), 0 10px 24px rgb(39 55 85 / 0.08);
  }

  .eg-seasonal__pchip {
    flex: 1 1 0;
    min-width: 0;
    height: 100%;
    box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.14);
  }

  .eg-seasonal__pchip:first-child {
    box-shadow: none;
  }

  @media screen and (min-width: 750px) and (max-width: 1199px) {
    .eg-seasonal__list { grid-template-columns: repeat(2, 1fr); }
    .eg-seasonal__swatches { height: 104px; }
    .eg-seasonal__seasonlist { grid-template-columns: repeat(2, 1fr); }
    .eg-seasonal__palette { height: 80px; }
  }

  @media screen and (max-width: 749px) {
    .eg-seasonal__inner { gap: 32px; }
    .eg-seasonal__lead { font-size: 17px; }
    .eg-seasonal__list { grid-template-columns: 1fr; gap: 32px; }
    .eg-seasonal__swatches { height: 88px; }
    .eg-seasonal__seasonset { gap: 28px; padding-top: 32px; }
    .eg-seasonal__seasonlist { grid-template-columns: 1fr; gap: 28px; }
    .eg-seasonal__palette { height: 76px; }
  }
/* END_SECTION:eg-seasonal-colors */

/* START_SECTION:eg-subbrand-hero (INDEX:90) */
.eg-subbrand-hero {

    position: relative;
    isolation: isolate;
    display: flex;
    align-items: center;
    overflow: hidden;
    min-height: var(--eg-hero-min-height, 520px);
    padding-block: var(--eg-hero-pad-block-start, 96px) var(--eg-hero-pad-block-end, 96px);
  }

  .eg-subbrand-hero--fallback {
    background-color: var(--eg-navy);
    background-image:
      radial-gradient(120% 80% at 18% 8%, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0) 60%),
      radial-gradient(120% 90% at 100% 100%, rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0) 55%),
      linear-gradient(160deg, #2c3d5e 0%, #273755 52%, #1f2c45 100%);
  }

  .eg-subbrand-hero__media {
    position: absolute;
    inset: 0;
    z-index: -2;
  }

  .eg-subbrand-hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .eg-subbrand-hero__scrim {
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(
      180deg,
      rgba(39, 55, 85, var(--eg-scrim-top, 0.7)) 0%,
      rgba(31, 44, 69, calc(var(--eg-scrim-top, 0.7) * 0.82)) 42%,
      rgba(20, 29, 46, var(--eg-scrim-bottom, 0.88)) 100%
    );
  }

  .eg-subbrand-hero--fallback .eg-subbrand-hero__scrim {
    background: linear-gradient(
      180deg,
      rgba(39, 55, 85, 0) 0%,
      rgba(31, 44, 69, 0.12) 60%,
      rgba(20, 29, 46, 0.34) 100%
    );
  }

  .eg-subbrand-hero__inner {
    width: 100%;
    max-width: var(--page-width, 1400px);
    margin-inline: auto;
    padding-inline: var(--page-margin, 20px);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    color: var(--eg-white);
  }

  .eg-subbrand-hero__lockup {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 18px;
    color: inherit;
  }

  .eg-sbh-lk-word {
    font-family: var(--font-heading--family);
    font-weight: 600;
    font-size: 1.35rem;
    line-height: 1;
    letter-spacing: 0.01em;
  }

  .eg-sbh-lk-rule {
    display: inline-block;
    width: 1px;
    height: 18px;
    background: currentColor;
    opacity: 0.55;
    flex: 0 0 auto;
  }

  .eg-sbh-lk-mod {
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
  }

  .eg-subbrand-hero__eyebrow {
    margin: 0;
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--eg-accent, #273755);
  }

  .eg-subbrand-hero__hairline {
    display: block;
    width: 56px;
    height: 1px;
    margin-block-start: 16px;
    background-color: var(--eg-accent, #273755);
    opacity: 0.9;
  }

  .eg-subbrand-hero__headline {
    margin: 0;
    margin-block-start: 20px;
    max-width: 16ch;
    font-family: var(--font-heading--family);
    font-weight: 600;
    font-size: clamp(2.5rem, 5.4vw, 4.25rem);
    line-height: 1.04;
    letter-spacing: 0.004em;
    color: var(--eg-white);
  }

  .eg-subbrand-hero__supporting {
    margin: 0;
    margin-block-start: 20px;
    max-width: 52ch;
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.86);
  }

  .eg-subbrand-hero__ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-block-start: 32px;
  }

  .eg-subbrand-hero__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding-inline: 24px;
    border-radius: 4px;
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.01em;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 200ms ease, color 200ms ease, border-color 200ms ease;
  }

  .eg-subbrand-hero__cta--primary {
    background-color: var(--eg-navy);
    color: var(--eg-white);
    border: 1px solid var(--eg-navy);
  }

  .eg-subbrand-hero__cta--primary:hover,
  .eg-subbrand-hero__cta--primary:focus-visible {
    background-color: #1b2840;
    border-color: #1b2840;
    color: var(--eg-white);
  }

  .eg-subbrand-hero__cta--secondary {
    background-color: transparent;
    color: var(--eg-white);
    border: 1px solid rgba(255, 255, 255, 0.7);
  }

  .eg-subbrand-hero__cta--secondary:hover,
  .eg-subbrand-hero__cta--secondary:focus-visible {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--eg-white);
    color: var(--eg-white);
  }

  .eg-subbrand-hero__office {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 40px;
    margin-block-start: 28px;
  }

  .eg-subbrand-hero__office-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
  }

  .eg-subbrand-hero__office-label {
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.66);
  }

  .eg-subbrand-hero__office-descriptor {
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.3;
    color: rgba(255, 255, 255, 0.7);
  }

  .eg-subbrand-hero__office-value {
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 0.01em;
    color: var(--eg-white);
    text-decoration: none;
    transition: opacity 200ms ease;
  }

  .eg-subbrand-hero__office-value:hover,
  .eg-subbrand-hero__office-value:focus-visible {
    opacity: 0.85;
    text-decoration: underline;
  }

  @media screen and (max-width: 749px) {
    .eg-subbrand-hero {
      min-height: 0;
      padding-block: 64px 64px;
    }
    .eg-subbrand-hero__supporting { font-size: 17px; }
    .eg-subbrand-hero__cta { width: 100%; }
  }

  @media (prefers-reduced-motion: reduce) {
    .eg-subbrand-hero__cta { transition: none; }
    .eg-subbrand-hero__office-value { transition: none; }
  }
/* END_SECTION:eg-subbrand-hero */

/* START_SECTION:eg-subbrand-proof (INDEX:93) */
.eg-proof {

    padding-block: var(--eg-proof-pad-block-start, 56px) var(--eg-proof-pad-block-end, 56px);
  }

  .eg-proof__inner {
    width: 100%;
    max-width: var(--page-width, 1400px);
    margin-inline: auto;
    padding-inline: var(--page-margin, 20px);
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .eg-proof__heading {
    margin: 0;
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--eg-muted);
  }

  .eg-proof__grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .eg-proof__tile {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 28px 24px;
    background-color: var(--eg-white);
    border: 1px solid var(--eg-hairline);
    border-radius: 4px;
  }

  .eg-proof__value {
    margin: 0;
    font-family: var(--font-heading--family);
    font-weight: 600;
    font-size: clamp(1.5rem, 2.4vw, 2rem);
    line-height: 1.1;
    color: var(--eg-navy);
  }

  .eg-proof__label {
    margin: 0;
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 15px;
    line-height: 1.55;
    color: var(--eg-charcoal);
  }

  @media screen and (max-width: 989px) {
    .eg-proof__grid {
      grid-template-columns: 1fr;
    }
  }
/* END_SECTION:eg-subbrand-proof */

/* START_SECTION:eg-sustainability (INDEX:94) */
.eg-sus {
  }

  .eg-sus__hero-inner,
  .eg-sus__thesis-inner,
  .eg-sus__stance-inner,
  .eg-sus__honest-inner,
  .eg-sus__band-inner {
    width: 100%;
    max-width: 1120px;
    margin-inline: auto;
    padding-inline: var(--page-margin, 20px);
    box-sizing: border-box;
  }

  .eg-sus__eyebrow {
    margin: 0 0 16px;
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--eg-muted);
  }
  .eg-sus__h2 {
    margin: 8px 0 36px;
    font-family: var(--font-heading--family);
    font-weight: 600;
    font-size: clamp(2rem, 4vw, 2.75rem);
    line-height: 1.12;
    letter-spacing: 0.012em;
    color: var(--eg-navy);
    text-wrap: balance;
  }

  /* 1. Hero */
  .eg-sus__hero {
    background-color: var(--eg-offwhite);
    padding-block: var(--eg-sus-pad-start, 104px) 80px;
  }
  .eg-sus__hero-heading {
    margin: 0;
    font-family: var(--font-heading--family);
    font-weight: 600;
    font-size: clamp(2.5rem, 5.5vw, 4rem);
    line-height: 1.06;
    letter-spacing: 0.012em;
    color: var(--eg-navy);
    text-wrap: balance;
    max-width: 18ch;
  }
  .eg-sus__hero-sub {
    margin: 24px 0 0;
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 20px;
    line-height: 1.55;
    color: var(--eg-charcoal);
    max-width: 44rem;
    text-wrap: pretty;
  }

  /* 2. Thesis */
  .eg-sus__thesis {
    background-color: var(--eg-white);
    padding-block: 80px;
  }
  .eg-sus__thesis-inner { max-width: 820px; }
  .eg-sus__lead {
    margin: 0;
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: clamp(1.375rem, 2.4vw, 1.75rem);
    line-height: 1.45;
    color: var(--eg-navy);
    text-wrap: pretty;
    font-weight: 500;
  }
  .eg-sus__thesis-body {
    margin-top: 24px;
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 17px;
    line-height: 1.6;
    color: var(--eg-charcoal);
    text-wrap: pretty;
  }
  .eg-sus__thesis-body p { margin: 0 0 1em; }
  .eg-sus__thesis-body p:last-child { margin-bottom: 0; }

  /* 3. Stance cards */
  .eg-sus__stance {
    background-color: var(--eg-offwhite);
    padding-block: 80px;
  }
  .eg-sus__cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .eg-sus__card {
    background-color: var(--eg-white);
    border: 1px solid var(--eg-hairline);
    border-radius: 4px;
    padding: 32px;
  }
  .eg-sus__card-n {
    margin-bottom: 14px;
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.16em;
    color: var(--eg-navy);
  }
  .eg-sus__card-t {
    margin: 0 0 10px;
    font-family: var(--font-heading--family);
    font-weight: 600;
    font-size: 1.375rem;
    line-height: 1.22;
    color: var(--eg-navy);
    text-wrap: balance;
  }
  .eg-sus__card-d {
    margin: 0;
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 14.5px;
    line-height: 1.55;
    color: var(--eg-muted);
  }

  /* 4. Honest list */
  .eg-sus__honest {
    background-color: var(--eg-white);
    padding-block: 80px;
  }
  .eg-sus__honest-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
  }
  .eg-sus__honest-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .eg-sus__honest-item {
    padding: 20px 0;
    border-bottom: 1px solid var(--eg-hairline);
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.7;
  }
  .eg-sus__honest-item:first-child { border-top: 1px solid var(--eg-hairline); }
  .eg-sus__honest-t {
    color: var(--eg-navy);
    font-weight: 600;
  }
  .eg-sus__honest-status {
    color: var(--eg-navy);
    font-weight: 600;
  }
  .eg-sus__honest-status::before { content: " "; }
  .eg-sus__honest-d {
    color: var(--eg-muted);
  }
  .eg-sus__honest-d::before { content: " "; }

  /* 5. Closing band */
  .eg-sus__band {
    background-color: var(--eg-navy);
    padding-block: 88px var(--eg-sus-pad-end, 88px);
  }
  .eg-sus__band-inner {
    max-width: 720px;
    text-align: center;
  }
  .eg-sus__band-heading {
    margin: 0 0 18px;
    font-family: var(--font-heading--family);
    font-weight: 600;
    font-size: clamp(2rem, 4vw, 2.5rem);
    line-height: 1.12;
    letter-spacing: 0.012em;
    color: var(--eg-white);
    text-wrap: balance;
  }
  .eg-sus__band-body {
    margin: 0;
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 20px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.86);
    text-wrap: pretty;
  }

  @media screen and (max-width: 990px) {
    .eg-sus__cards { grid-template-columns: 1fr; gap: 16px; }
    .eg-sus__honest-inner { grid-template-columns: 1fr; gap: 28px; }
  }
  @media screen and (max-width: 749px) {
    .eg-sus__hero-sub { font-size: 18px; }
    .eg-sus__band-body { font-size: 18px; }
  }
/* END_SECTION:eg-sustainability */

/* START_SECTION:eg-trust-band (INDEX:98) */
.eg-trust-band {
    background-color: var(--color-background);
    color: var(--color-foreground);
    border-block-start: 1px solid #E5E5E5;
    border-block-end: 1px solid #E5E5E5;
  }
  .eg-trust-band__inner {
    max-width: 64rem;
    margin-inline: auto;
    padding-inline: 24px;
  }
  .eg-trust-band__row {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: start;
  }
  .eg-trust-band__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 9px;
    padding: 4px 26px;
    position: relative;
  }
  .eg-trust-band__item + .eg-trust-band__item::before {
    content: "";
    position: absolute;
    inset-block: 4px;
    inset-inline-start: 0;
    width: 1px;
    background: #E5E5E5;
  }
  .eg-trust-band__icon {
    display: inline-flex;
    color: #273755;
  }
  .eg-trust-band__icon svg {
    width: 24px;
    height: 24px;
    display: block;
  }
  .eg-trust-band__label {
    font-family: var(--font-body--family);
    font-weight: 500;
    font-size: 0.875rem;
    line-height: 1.25;
    letter-spacing: 0.02em;
    color: #273755;
    margin: 0;
  }
  .eg-trust-band__desc {
    font-family: var(--font-body--family);
    font-weight: 400;
    font-size: 0.78125rem;
    line-height: 1.4;
    letter-spacing: 0.005em;
    color: #6B6B6B;
    margin: 0;
    max-width: 18ch;
    text-wrap: balance;
  }
  @media screen and (max-width: 990px) {
    .eg-trust-band__row {
      grid-template-columns: repeat(2, 1fr);
      row-gap: 30px;
    }
    .eg-trust-band__item + .eg-trust-band__item::before { content: none; }
    .eg-trust-band__item:nth-child(even)::before {
      content: "";
      position: absolute;
      inset-block: 4px;
      inset-inline-start: 0;
      width: 1px;
      background: #E5E5E5;
    }
  }
  @media screen and (max-width: 749px) {
    .eg-trust-band__inner { padding-inline: 20px; }
    .eg-trust-band__row {
      grid-template-columns: 1fr;
      row-gap: 0;
    }
    .eg-trust-band__item {
      padding-block: 20px;
    }
    .eg-trust-band__item::before { content: none !important; }
    .eg-trust-band__item + .eg-trust-band__item {
      border-block-start: 1px solid #E5E5E5;
    }
  }
/* END_SECTION:eg-trust-band */

/* START_SECTION:eg-v2-404 (INDEX:99) */
.eg404 { padding: 64px 24px 96px; }
.eg404__in { max-width: 720px; margin: 0 auto; text-align: center; }
.eg404__code { font-family: var(--eg-font-display); font-weight: 600; font-size: 15px; letter-spacing: .3em; color: var(--eg-accent); margin: 0 0 12px; }
.eg404 h1 { font-family: var(--eg-font-display); font-weight: 600; font-size: clamp(34px, 5vw, 54px); line-height: 1.05; color: var(--eg-navy); margin: 0 0 16px; text-wrap: balance; }
.eg404__sub { color: var(--eg-muted); font-size: 15.5px; max-width: 52ch; margin: 0 auto 32px; line-height: 1.6; }
.eg404__search { display: flex; gap: 8px; max-width: 480px; margin: 0 auto 40px; }
.eg404__search input { flex: 1; padding: 12px 16px; border: 1px solid var(--eg-border); border-radius: var(--eg-radius); font-family: var(--eg-font-body); font-size: 15px; background: var(--eg-white); color: var(--eg-ink); }
.eg404__search input:focus { outline: 2px solid var(--eg-navy); outline-offset: -1px; border-color: var(--eg-navy); }
.eg404__btn { padding: 12px 28px; border-radius: var(--eg-radius); border: 1px solid var(--eg-navy); background: var(--eg-navy); color: var(--eg-white); font-family: var(--eg-font-body); font-size: 14.5px; font-weight: 500; cursor: pointer; }
.eg404__btn:hover { background: var(--eg-navy-hover); }
.eg404__routes { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-bottom: 32px; }
@media (min-width: 640px) { .eg404__routes { grid-template-columns: repeat(4, 1fr); } }
.eg404__routes a { display: flex; flex-direction: column; gap: 3px; padding: 16px 12px; border: 1px solid var(--eg-border); border-radius: var(--eg-radius); text-decoration: none; color: var(--eg-ink); transition: border-color 200ms var(--eg-ease), background 200ms var(--eg-ease); }
.eg404__routes a:hover { border-color: var(--eg-navy); background: var(--eg-paper); }
.eg404__routes b { font-family: var(--eg-font-display); font-weight: 600; font-size: 16px; color: var(--eg-navy); }
.eg404__routes span { font-size: 11.5px; color: var(--eg-muted); }
.eg404__help { font-size: 13.5px; color: var(--eg-muted); }
.eg404__help a { color: var(--eg-navy); }
/* END_SECTION:eg-v2-404 */

/* START_SECTION:eg-v2-about (INDEX:100) */
.egab { font-family: var(--eg-font-body); color: var(--eg-ink); }
.egab .wrap { max-width: 1200px; margin: 0 auto; padding-inline: 24px; }
.egab-crumb { padding: 20px 24px 8px; font-size: 12.5px; color: var(--eg-muted); }
.egab-crumb a { color: var(--eg-muted); text-decoration: none; }
.egab-crumb a:hover { color: var(--eg-navy); }
.egab-crumb i { font-style: normal; margin: 0 7px; opacity: .5; }
.egab-eyebrow { font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--eg-muted); font-weight: 500; margin: 0 0 12px; }
.egab-eyebrow.inv { color: rgba(255,255,255,.62); }
.egab-rule { width: 32px; height: 2px; background: var(--eg-accent); margin: 0 0 16px; }
.egab-rule.inv { background: var(--eg-white); }
.egab-hero { padding-top: 24px; padding-bottom: 56px; }
.egab-hero h1 { font-family: var(--eg-font-display); font-weight: 600; font-size: clamp(32px, 4.4vw, 48px); line-height: 1.06; margin: 0 0 20px; max-width: 20ch; text-wrap: balance; }
.egab-lede { font-size: 16px; color: var(--eg-muted); max-width: 62ch; line-height: 1.65; margin: 0 0 14px; }
.egab-ety { background: var(--eg-navy); color: var(--eg-white); padding: 64px 0; }
.egab-ety__cols { display: grid; gap: 32px; }
@media (min-width: 820px) { .egab-ety__cols { grid-template-columns: 1fr 1fr; gap: 64px; } }
.egab-ety h2 { font-family: var(--eg-font-display); font-weight: 600; font-size: clamp(40px, 5vw, 64px); margin: 0 0 8px; color: var(--eg-white); letter-spacing: .04em; }
.egab-ety p { font-size: 15px; line-height: 1.65; color: rgba(255,255,255,.82); margin: 0; max-width: 48ch; }
.egab-slogan { margin: 40px 0 0; font-family: var(--eg-font-display); font-size: clamp(19px, 2.2vw, 24px); font-style: italic; color: rgba(255,255,255,.92); }
.egab-band { padding: 56px 0; }
.egab-band--paper { background: var(--eg-paper); }
.egab-band h2 { font-family: var(--eg-font-display); font-weight: 600; font-size: clamp(24px, 3vw, 32px); line-height: 1.14; margin: 0 0 16px; text-wrap: balance; }
.egab-body { font-size: 15.5px; line-height: 1.7; color: var(--eg-ink); max-width: 68ch; margin: 0 0 16px; }
.egab-entity { font-size: 13px; color: var(--eg-muted); margin: 0; }
.egab-founder { display: grid; grid-template-columns: 1fr; gap: 28px; align-items: center; }
@media (min-width: 900px) { .egab-founder { grid-template-columns: 1.2fr 1fr; gap: 56px; } }
.egab-founderimg { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--eg-radius); border: 1px solid var(--eg-border); display: block; }
.egab-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 820px) { .egab-grid { grid-template-columns: repeat(4, 1fr); } }
.egab-grid h3 { font-size: 15px; font-weight: 600; margin: 0 0 8px; font-family: var(--eg-font-body); }
.egab-grid p { font-size: 13.5px; color: var(--eg-muted); line-height: 1.6; margin: 0; }
.egab-ai { margin: 28px 0 0; font-size: 13px; color: var(--eg-muted); }
.egab-ai a { color: var(--eg-navy); }
.egab-cta { background: var(--eg-navy); color: var(--eg-white); padding: 64px 0; text-align: center; }
.egab-cta h2 { font-family: var(--eg-font-display); font-weight: 600; font-size: clamp(24px, 3vw, 32px); color: var(--eg-white); margin: 0 0 12px; }
.egab-cta p { color: rgba(255,255,255,.75); font-size: 14.5px; max-width: 54ch; margin: 0 auto 24px; }
.egab-ctas { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.egab-btn { display: inline-block; padding: 13px 22px; border-radius: var(--eg-radius); font-size: 14px; font-weight: 500; text-decoration: none; transition: background 180ms var(--eg-ease); }
.egab-btn--paper { background: var(--eg-paper); color: var(--eg-navy); }
.egab-btn--paper:hover { background: var(--eg-white); }
.egab-btn--ghost { border: 1px solid rgba(255,255,255,.5); color: var(--eg-white); }
.egab-btn--ghost:hover { background: rgba(255,255,255,.08); }
/* END_SECTION:eg-v2-about */

/* START_SECTION:eg-v2-article (INDEX:101) */
.egar { font-family: var(--eg-font-body); color: var(--eg-ink); }
.egar .wrap { max-width: 1200px; margin: 0 auto; padding-inline: 24px; }
.egar-crumb { padding: 20px 24px 8px; font-size: 12.5px; color: var(--eg-muted); }
.egar-crumb a { color: var(--eg-muted); text-decoration: none; }
.egar-crumb i { font-style: normal; margin: 0 7px; opacity: .5; }
.egar-eyebrow { font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--eg-muted); font-weight: 500; margin: 0 0 12px; }
.egar-rule { width: 32px; height: 2px; background: var(--eg-accent); margin: 0 0 16px; }
.egar-head { padding-top: 24px; max-width: 820px; }
.egar-date { font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: var(--eg-muted); margin: 0 0 10px; }
.egar-head h1 { font-family: var(--eg-font-display); font-weight: 600; font-size: clamp(28px, 3.8vw, 42px); line-height: 1.12; margin: 0 0 14px; text-wrap: balance; }
.egar-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.egar-tags a { padding: 5px 12px; border: 1px solid var(--eg-border); border-radius: var(--eg-radius-pill); font-size: 12px; color: var(--eg-muted); text-decoration: none; }
.egar-tags a:hover { border-color: var(--eg-navy); color: var(--eg-navy); }
.egar-hero { padding-top: 24px; max-width: 1000px; }
.egar-hero img { width: 100%; height: auto; border-radius: var(--eg-radius); border: 1px solid var(--eg-border); }
.egar-body { max-width: 720px; padding-top: 32px; padding-bottom: 48px; font-size: 16px; line-height: 1.75; }
.egar-body h2 { font-family: var(--eg-font-display); font-weight: 600; font-size: 26px; line-height: 1.2; margin: 36px 0 12px; }
.egar-body h3 { font-family: var(--eg-font-display); font-weight: 600; font-size: 21px; margin: 28px 0 10px; }
.egar-body p { margin: 0 0 18px; }
.egar-body a { color: var(--eg-navy); }
.egar-body img { max-width: 100%; height: auto; border-radius: var(--eg-radius); }
.egar-body ul, .egar-body ol { padding-left: 22px; margin: 0 0 18px; }
.egar-body li { margin-bottom: 8px; }
.egar-body blockquote { border-left: 2px solid var(--eg-navy); margin: 24px 0; padding: 4px 0 4px 20px; font-family: var(--eg-font-display); font-size: 19px; font-style: italic; color: var(--eg-muted); }
.egar-shop { background: var(--eg-paper); padding: 48px 0; }
.egar-shophead { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; margin-bottom: 24px; flex-wrap: wrap; }
.egar-shophead h2 { font-family: var(--eg-font-display); font-weight: 600; font-size: clamp(20px, 2.4vw, 26px); margin: 0; }
.egar-shop .seclink { font-size: 13.5px; color: var(--eg-navy); text-decoration: none; white-space: nowrap; }
.egar-rail { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
@media (min-width: 820px) { .egar-rail { grid-template-columns: repeat(4, 1fr); } }
.egar-rail .pc { text-decoration: none; color: var(--eg-ink); }
.egar-rail .pci { display: block; aspect-ratio: 1; border-radius: var(--eg-radius); overflow: hidden; background: var(--eg-white); border: 1px solid var(--eg-border); margin-bottom: 8px; }
.egar-rail .pci img { width: 100%; height: 100%; object-fit: cover; transition: transform 320ms var(--eg-ease); }
.egar-rail .pc:hover .pci img { transform: scale(1.04); }
.egar-rail .pc b { display: block; font-weight: 400; font-size: 14px; }
.egar-rail .pcp { font-size: 13px; color: var(--eg-muted); }
.egar-rail .qa--row { display: block; margin-top: 8px; padding: 8px 0; text-align: center; border: 1px solid var(--eg-navy); border-radius: var(--eg-radius); font-size: 12.5px; font-weight: 500; color: var(--eg-navy); cursor: pointer; transition: background 160ms var(--eg-ease), color 160ms var(--eg-ease); }
.egar-rail .qa--row:hover, .egar-rail .qa--row.qa--done { background: var(--eg-navy); color: var(--eg-white); }
.egar-more { padding: 48px 0 56px; }
.egar-moregrid { display: grid; grid-template-columns: 1fr; gap: 14px; }
@media (min-width: 820px) { .egar-moregrid { grid-template-columns: repeat(2, 1fr); } }
.egar-moregrid a { display: flex; gap: 14px; align-items: baseline; padding: 14px 16px; border: 1px solid var(--eg-border); border-radius: var(--eg-radius); text-decoration: none; color: var(--eg-ink); transition: border-color 200ms var(--eg-ease); }
.egar-moregrid a:hover { border-color: var(--eg-navy); }
.egar-moregrid .mdate { font-size: 11.5px; color: var(--eg-muted); white-space: nowrap; }
.egar-moregrid b { font-weight: 500; font-size: 14.5px; line-height: 1.4; }
/* END_SECTION:eg-v2-article */

/* START_SECTION:eg-v2-blog (INDEX:102) */
.egbl { font-family: var(--eg-font-body); color: var(--eg-ink); }
.egbl .wrap { max-width: 1200px; margin: 0 auto; padding-inline: 24px; }
.egbl-crumb { padding: 20px 24px 8px; font-size: 12.5px; color: var(--eg-muted); }
.egbl-crumb a { color: var(--eg-muted); text-decoration: none; }
.egbl-crumb i { font-style: normal; margin: 0 7px; opacity: .5; }
.egbl-eyebrow { font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--eg-muted); font-weight: 500; margin: 0 0 12px; }
.egbl-rule { width: 32px; height: 2px; background: var(--eg-accent); margin: 0 0 16px; }
.egbl-head { padding-top: 24px; }
.egbl-head h1 { font-family: var(--eg-font-display); font-weight: 600; font-size: clamp(30px, 4vw, 44px); line-height: 1.08; margin: 0 0 12px; max-width: 22ch; text-wrap: balance; }
.egbl-lede { font-size: 15px; color: var(--eg-muted); max-width: 58ch; line-height: 1.6; margin: 0; }
.egbl-lede a { color: var(--eg-navy); }
.egbl-tags { display: flex; gap: 8px; flex-wrap: wrap; padding-top: 24px; padding-bottom: 8px; }
.egbl-tags .tchip { padding: 7px 14px; border: 1px solid var(--eg-border); border-radius: var(--eg-radius-pill); font-size: 12.5px; color: var(--eg-ink); text-decoration: none; transition: border-color 160ms var(--eg-ease); }
.egbl-tags .tchip:hover { border-color: var(--eg-navy); }
.egbl-tags .tchip.on { background: var(--eg-navy); border-color: var(--eg-navy); color: var(--eg-white); }
.egbl-grid { display: grid; grid-template-columns: 1fr; gap: 28px 24px; padding-top: 24px; padding-bottom: 48px; }
@media (min-width: 820px) { .egbl-grid { grid-template-columns: repeat(3, 1fr); } .egbl-grid .card.lead { grid-column: span 3; display: grid; grid-template-columns: 1.4fr 1fr; gap: 28px; align-items: center; } }
.egbl-grid .card { text-decoration: none; color: var(--eg-ink); }
.egbl-grid .cimg { display: block; aspect-ratio: 16/9; border-radius: var(--eg-radius); overflow: hidden; background: var(--eg-paper); border: 1px solid var(--eg-border); margin-bottom: 12px; }
.egbl-grid .cimg img { width: 100%; height: 100%; object-fit: cover; transition: transform 320ms var(--eg-ease); }
.egbl-grid .card:hover .cimg img { transform: scale(1.03); }
.egbl-grid .cdate { display: block; font-size: 11.5px; letter-spacing: .08em; text-transform: uppercase; color: var(--eg-muted); margin-bottom: 6px; }
.egbl-grid .card b { display: block; font-family: var(--eg-font-display); font-weight: 600; font-size: 19px; line-height: 1.25; margin-bottom: 8px; text-wrap: balance; }
.egbl-grid .card.lead b { font-size: clamp(22px, 2.6vw, 30px); }
.egbl-grid .cex { font-size: 13.5px; color: var(--eg-muted); line-height: 1.6; }
.egbl-pag { display: flex; gap: 20px; align-items: center; justify-content: center; padding-bottom: 56px; font-size: 13.5px; }
.egbl-pag a { color: var(--eg-navy); text-decoration: none; }
.egbl-pag span { color: var(--eg-muted); }
/* END_SECTION:eg-v2-blog */

/* START_SECTION:eg-v2-cart (INDEX:103) */
.egct { padding: 32px 24px 96px; }
.egct__in { max-width: 1200px; margin: 0 auto; }
.egct .egct-eyebrow { font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--eg-muted); font-weight: 500; margin: 0 0 12px; }
.egct .egct-rule { width: 32px; height: 2px; background: var(--eg-accent); margin: 0 0 16px; }
.egct h1 { font-family: var(--eg-font-display); font-weight: 600; font-size: clamp(28px, 4vw, 42px); line-height: 1.08; color: var(--eg-navy); margin: 0; text-wrap: balance; }
.egct h2 { font-family: var(--eg-font-display); font-weight: 600; font-size: 22px; margin: 0 0 16px; }
.egct__head { margin-bottom: 32px; }
.egct__grid { display: grid; gap: 32px; align-items: start; }
@media (min-width: 900px) { .egct__grid { grid-template-columns: 1.5fr 1fr; gap: 48px; } }

.egct .line { display: flex; gap: 16px; padding: 20px 0; border-top: 1px solid var(--eg-border); }
.egct .line:last-child { border-bottom: 1px solid var(--eg-border); }
.egct .limg { flex-shrink: 0; width: 100px; height: 100px; border-radius: var(--eg-radius); overflow: hidden; background: var(--eg-paper); }
.egct .limg img { width: 100%; height: 100%; object-fit: cover; display: block; }
.egct .lbody { flex: 1; min-width: 0; }
.egct .lt { font-family: var(--eg-font-display); font-weight: 600; font-size: 18px; color: var(--eg-navy); text-decoration: none; }
.egct .lv { font-size: 12.5px; color: var(--eg-muted); margin: 2px 0 0; }
.egct .lprice { display: flex; align-items: baseline; gap: 10px; margin-top: 8px; font-size: 13.5px; flex-wrap: wrap; }
.egct .lu { color: var(--eg-ink); }
.egct .lwas { color: var(--eg-muted); font-size: 12.5px; }
.egct .ldisc { background: #eef1f6; color: var(--eg-navy); border-radius: var(--eg-radius-pill); padding: 2px 10px; font-size: 11px; font-weight: 500; }
.egct .lnudge { display: inline-flex; align-items: center; gap: 7px; margin-top: 10px; border: 1px dashed var(--eg-accent); background: var(--eg-paper); color: var(--eg-ink); border-radius: var(--eg-radius); padding: 7px 12px; font-size: 12.5px; font-family: var(--eg-font-body); cursor: pointer; text-align: left; }
.egct .lnudge:hover { border-style: solid; }
.egct .lnudge svg { color: var(--eg-accent); flex-shrink: 0; }
.egct .lnudge b { color: var(--eg-navy); }
.egct .lside { display: flex; flex-direction: column; align-items: flex-end; gap: 8px; }
.egct .stepper { display: flex; align-items: center; border: 1px solid var(--eg-border); border-radius: var(--eg-radius); background: var(--eg-white); }
.egct .stepbtn { width: 30px; height: 30px; border: 0; background: none; color: var(--eg-navy); font-size: 15px; cursor: pointer; }
.egct .stepper input { width: 40px; border: 0; text-align: center; font-family: var(--eg-font-body); font-size: 13.5px; -moz-appearance: textfield; }
.egct .stepper input::-webkit-outer-spin-button, .egct .stepper input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.egct .lline { font-family: var(--eg-font-display); font-weight: 600; font-size: 18px; color: var(--eg-navy); }
.egct .lrm { font-size: 12px; color: var(--eg-muted); }

.egct__sum { background: var(--eg-paper); border: 1px solid var(--eg-border); border-radius: var(--eg-radius); padding: 24px; position: sticky; top: calc(var(--header-height, 64px) + 24px); }
.egct .srow { display: flex; justify-content: space-between; gap: 16px; padding: 8px 0; font-size: 14px; }
.egct .srow b { font-weight: 500; }
.egct .srow.disc b { color: #3d7a4a; }
.egct .srow .free { color: #3d7a4a; }
.egct .srow.total { border-top: 1px solid var(--eg-border); margin-top: 8px; padding-top: 14px; font-size: 16px; }
.egct .srow.total b { font-family: var(--eg-font-display); font-weight: 600; font-size: 24px; color: var(--eg-navy); }
.egct-btn { display: block; width: 100%; margin-top: 16px; padding: 14px 24px; border-radius: var(--eg-radius); border: 1px solid var(--eg-navy); background: var(--eg-navy); color: var(--eg-white); font-family: var(--eg-font-body); font-size: 15px; font-weight: 500; cursor: pointer; transition: background 200ms var(--eg-ease); }
.egct-btn:hover { background: var(--eg-navy-hover); }
.egct .snote { font-size: 11.5px; color: var(--eg-muted); margin-top: 12px; line-height: 1.5; }
.egct .strust { display: flex; gap: 16px; margin-top: 14px; font-size: 11.5px; color: var(--eg-muted); flex-wrap: wrap; }
.egct .strust span { display: flex; align-items: center; gap: 6px; }
.egct .strust svg { color: var(--eg-accent); }

.egct__empty { text-align: center; padding: 48px 0; }
.egct .esub { color: var(--eg-muted); margin: 16px auto 32px; max-width: 44ch; }
.egct .eroutes { display: grid; grid-template-columns: repeat(1, 1fr); gap: 12px; max-width: 640px; margin: 0 auto; }
@media (min-width: 640px) { .egct .eroutes { grid-template-columns: repeat(3, 1fr); } }
.egct .eroutes a { display: flex; flex-direction: column; gap: 3px; padding: 20px 12px; border: 1px solid var(--eg-border); border-radius: var(--eg-radius); text-decoration: none; color: var(--eg-ink); transition: border-color 200ms var(--eg-ease), background 200ms var(--eg-ease); }
.egct .eroutes a:hover { border-color: var(--eg-navy); background: var(--eg-paper); }
.egct .eroutes b { font-family: var(--eg-font-display); font-weight: 600; font-size: 17px; color: var(--eg-navy); }
.egct .eroutes span { font-size: 11.5px; color: var(--eg-muted); }
/* END_SECTION:eg-v2-cart */

/* START_SECTION:eg-v2-collection (INDEX:104) */
.egc { font-size: 16px; line-height: 1.6; color: var(--eg-ink); }
.egc .wrap { max-width: 1320px; margin: 0 auto; padding-inline: 24px; }
.egc h1 { font-family: var(--eg-font-display); font-weight: 600; font-size: clamp(40px, 5.4vw, 64px); line-height: 1.02; margin: 0; color: var(--eg-navy); text-wrap: balance; }
.egc h2 { font-family: var(--eg-font-display); font-weight: 600; font-size: clamp(24px, 2.8vw, 34px); line-height: 1.12; margin: 0; }
.egc h3 { font-family: var(--eg-font-display); font-weight: 600; margin: 0; }
.egc p { margin: 0; }
.egc .egc-eyebrow { font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--eg-muted); font-weight: 500; margin: 0 0 12px; }
.egc-rule { width: 32px; height: 2px; background: var(--eg-accent); margin: 0 0 16px; }

.egc-crumb { display: flex; gap: 8px; align-items: center; font-size: 12px; color: var(--eg-muted); padding-block: 16px; flex-wrap: wrap; }
.egc-crumb a { color: inherit; text-decoration: none; }
.egc-crumb a:hover { color: var(--eg-navy); }
.egc-crumb i { opacity: .4; font-style: normal; }

/* Single column: the count sits under the title as a quiet meta line instead
   of floating alone in a right-hand column (empty-looking on /collections/all
   where there is no description). */
.egc-hero { display: block; padding-bottom: 28px; border-bottom: 1px solid var(--eg-border); }
.egc-hero > div + div { margin-top: 12px; }
.egc .egc-sub { color: var(--eg-muted); max-width: 52ch; margin-top: 16px; }
.egc-cmeta { display: flex; gap: 24px; font-size: 13px; color: var(--eg-muted); flex-wrap: wrap; }
.egc-cmeta b { color: var(--eg-ink); font-weight: 500; }

.egc-fbar { position: sticky; top: var(--header-height, 64px); z-index: 30; background: rgba(255,255,255,.96); backdrop-filter: blur(10px); border-bottom: 1px solid var(--eg-border); padding: 12px 0; margin-bottom: 32px; }
.egc-fbar .fin { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.egc-fbar .fbtn { border: 1px solid var(--eg-border); background: var(--eg-white); border-radius: var(--eg-radius); padding: 8px 16px; font-size: 13px; cursor: pointer; font-family: var(--eg-font-body); display: flex; align-items: center; gap: 8px; color: var(--eg-ink); transition: border-color 200ms var(--eg-ease); }
.egc-fbar .fbtn:hover { border-color: var(--eg-navy); }
.egc-fbar .fbtn[aria-expanded="true"] { border-color: var(--eg-navy); background: #eef1f6; }
.egc-fbar .fbtn svg { color: var(--eg-muted); }
.egc-fbar .fcount { background: var(--eg-navy); color: var(--eg-white); border-radius: var(--eg-radius-pill); font-size: 10px; padding: 1px 6px; }
.egc-fbar .fspace { margin-left: auto; display: flex; gap: 12px; align-items: center; }
.egc-fbar .fres { font-size: 13px; color: var(--eg-muted); }
.egc-fbar select.fbtn { appearance: none; padding-right: 32px; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b6b6b' stroke-width='2'><path d='M6 9l6 6 6-6'/></svg>"); background-repeat: no-repeat; background-position: right 12px center; }
.egc-fbar .chips { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 12px; align-items: center; }
.egc-fbar .chip { display: inline-flex; align-items: center; gap: 6px; background: #eef1f6; border: 1px solid var(--eg-navy); color: var(--eg-navy); border-radius: var(--eg-radius-pill); padding: 4px 12px; font-size: 12px; }
.egc-fbar .chip a { color: inherit; text-decoration: none; font-size: 14px; line-height: 1; }
.egc-fbar .clear { font-size: 12px; color: var(--eg-muted); text-decoration: underline; }
.egc-fbar .fpanel { display: none; border: 1px solid var(--eg-border); border-radius: var(--eg-radius); padding: 24px; margin-top: 12px; background: var(--eg-white); box-shadow: var(--eg-shadow-soft); }
.egc-fbar .fpanel.is-open { display: grid; gap: 24px; max-height: calc(100dvh - var(--header-height, 64px) - 140px); overflow-y: auto; -webkit-overflow-scrolling: touch; overscroll-behavior: contain; }
@media (min-width: 700px) { .egc-fbar .fpanel.is-open { grid-template-columns: repeat(3, 1fr); } }
.egc-fbar .fgroup h3 { font-size: 12px; font-family: var(--eg-font-body); font-weight: 500; letter-spacing: .08em; text-transform: uppercase; color: var(--eg-muted); margin-bottom: 12px; }
.egc-fbar .fopts { display: flex; flex-wrap: wrap; gap: 8px; }
.egc-fbar .fopts--trim .fopt--extra { display: none; }
.egc-fbar .fopts--trim.fopts--open .fopt--extra { display: inline-flex; }
.egc-fbar .fopt-moretog { color: var(--eg-navy); border-style: dashed; }
.egc-fbar .fopt { border: 1px solid var(--eg-border); border-radius: var(--eg-radius-pill); padding: 5px 12px; font-size: 12.5px; cursor: pointer; background: var(--eg-white); font-family: var(--eg-font-body); display: inline-flex; align-items: center; gap: 6px; transition: border-color 200ms var(--eg-ease); text-decoration: none; color: var(--eg-ink); }
.egc-fbar .fopt:hover { border-color: var(--eg-navy); }
.egc-fbar .fopt[aria-pressed="true"] { background: var(--eg-navy); border-color: var(--eg-navy); color: var(--eg-white); }
.egc-fbar .fopt i { width: 12px; height: 12px; border-radius: var(--eg-radius-pill); border: 1px solid rgba(0,0,0,.18); display: block; }
.egc-fbar .fopt small { color: inherit; opacity: .6; font-size: 11px; }

/* card + card-grid styles moved to snippets/eg-v2-card-css.liquid (shared
   with home + search; a section stylesheet only ships on its own pages) */

.egc-loadwrap { margin-bottom: 32px; }
.egc .more { display: block; width: fit-content; margin: 48px auto 0; border: 1px solid var(--eg-navy); background: var(--eg-white); color: var(--eg-navy); border-radius: var(--eg-radius); padding: 12px 48px; font-size: 14px; font-family: var(--eg-font-body); font-weight: 500; cursor: pointer; text-decoration: none; transition: background 200ms var(--eg-ease), color 200ms var(--eg-ease); }
.egc .more:hover { background: var(--eg-navy); color: var(--eg-white); }
.egc .prog { text-align: center; font-size: 12.5px; color: var(--eg-muted); margin-top: 16px; }
.egc .progbar { width: 180px; height: 3px; background: var(--eg-border); border-radius: var(--eg-radius-pill); margin: 8px auto 0; overflow: hidden; }
.egc .progbar i { display: block; height: 100%; background: var(--eg-navy); }

.egc-empty { text-align: center; padding: 64px 24px; border: 1px dashed var(--eg-border); border-radius: var(--eg-radius); background: var(--eg-paper); margin-bottom: 48px; }
.egc-empty h3 { font-size: 24px; margin-bottom: 12px; }
.egc-empty p { color: var(--eg-muted); font-size: 14.5px; max-width: 42ch; margin: 0 auto 24px; }

.egc-band { background: var(--eg-paper); margin-top: 64px; padding: 64px 0; }
.egc-seo { display: grid; gap: 32px; }
@media (min-width: 900px) { .egc-seo { grid-template-columns: 1.15fr .85fr; gap: 64px; } }
.egc-seobody { color: var(--eg-muted); font-size: 15px; max-width: 62ch; margin-top: 16px; }
.egc-seobody p + p { margin-top: 16px; }
.egc-faq { border-top: 1px solid var(--eg-border); }
.egc-faq details { border-bottom: 1px solid var(--eg-border); }
.egc-faq summary { cursor: pointer; padding: 16px 0; font-size: 16.5px; list-style: none; display: flex; justify-content: space-between; gap: 16px; align-items: center; font-family: var(--eg-font-display); font-weight: 600; }
.egc-faq summary::-webkit-details-marker { display: none; }
.egc-faq summary:focus-visible { outline: 2px solid var(--eg-navy); outline-offset: -2px; }
.egc-faq .chev { flex-shrink: 0; transition: transform 200ms var(--eg-ease); color: var(--eg-accent); }
.egc-faq details[open] .chev { transform: rotate(180deg); }
.egc-faq details p { padding: 0 0 16px; color: var(--eg-muted); font-size: 14.5px; }
/* END_SECTION:eg-v2-collection */

/* START_SECTION:eg-v2-contact (INDEX:105) */
.egcp { font-family: var(--eg-font-body); color: var(--eg-ink); }
.egcp .wrap { max-width: 1200px; margin: 0 auto; padding-inline: 24px; }
.egcp-crumb { padding: 20px 24px 8px; font-size: 12.5px; color: var(--eg-muted); }
.egcp-crumb a { color: var(--eg-muted); text-decoration: none; }
.egcp-crumb i { font-style: normal; margin: 0 7px; opacity: .5; }
.egcp-eyebrow { font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--eg-muted); font-weight: 500; margin: 0 0 12px; }
.egcp-rule { width: 32px; height: 2px; background: var(--eg-accent); margin: 0 0 16px; }
.egcp-head { padding-top: 24px; }
.egcp-head h1 { font-family: var(--eg-font-display); font-weight: 600; font-size: clamp(28px, 3.8vw, 42px); line-height: 1.1; margin: 0 0 12px; text-wrap: balance; }
.egcp-lede { font-size: 15px; color: var(--eg-muted); max-width: 60ch; line-height: 1.65; margin: 0; }
.egcp-lede a { color: var(--eg-navy); }
.egcp-deflect { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding-top: 28px; }
@media (min-width: 820px) { .egcp-deflect { grid-template-columns: repeat(4, 1fr); } }
.egcp-deflect a { display: block; padding: 16px; border: 1px solid var(--eg-border); border-radius: var(--eg-radius); text-decoration: none; color: var(--eg-ink); transition: border-color 200ms var(--eg-ease); }
.egcp-deflect a:hover { border-color: var(--eg-navy); }
.egcp-deflect b { display: block; font-size: 14px; font-weight: 600; margin-bottom: 4px; }
.egcp-deflect span { font-size: 12.5px; color: var(--eg-muted); line-height: 1.5; }
.egcp-cols { display: grid; grid-template-columns: 1fr; gap: 32px; padding-top: 36px; padding-bottom: 56px; }
@media (min-width: 900px) { .egcp-cols { grid-template-columns: 1.5fr 1fr; gap: 48px; } }
.egcp-form label { display: block; font-size: 12.5px; font-weight: 600; letter-spacing: .04em; margin: 18px 0 6px; }
.egcp-form label small { font-weight: 400; color: var(--eg-muted); }
.egcp-form input, .egcp-form select, .egcp-form textarea { width: 100%; padding: 12px 14px; border: 1px solid var(--eg-border); border-radius: var(--eg-radius); font-size: 14px; font-family: var(--eg-font-body); color: var(--eg-ink); background: var(--eg-white); box-sizing: border-box; }
.egcp-form input:focus, .egcp-form select:focus, .egcp-form textarea:focus { outline: 2px solid var(--eg-navy); outline-offset: -1px; }
.egcp-two { display: grid; grid-template-columns: 1fr; gap: 0 16px; }
@media (min-width: 640px) { .egcp-two { grid-template-columns: 1fr 1fr; } }
.egcp-btn { margin-top: 22px; padding: 14px 28px; background: var(--eg-navy); color: var(--eg-white); border: 0; border-radius: var(--eg-radius); font-size: 14.5px; font-weight: 500; font-family: var(--eg-font-body); cursor: pointer; }
.egcp-btn:hover { opacity: .92; }
.egcp-note { font-size: 12.5px; color: var(--eg-muted); margin: 10px 0 0; }
.egcp-ok { background: var(--eg-paper); border: 1px solid var(--eg-navy); border-radius: var(--eg-radius); padding: 14px 16px; font-size: 14px; margin-bottom: 8px; }
.egcp-err { background: var(--eg-paper); border: 1px solid var(--eg-border); border-left: 3px solid var(--eg-navy); border-radius: var(--eg-radius); padding: 14px 16px; font-size: 13.5px; margin-bottom: 8px; }
.egcp-err ul { margin: 6px 0 0; padding-left: 18px; }
.egcp-side { display: flex; flex-direction: column; gap: 16px; }
.egcp-card { border: 1px solid var(--eg-border); border-radius: var(--eg-radius); padding: 20px; }
.egcp-card h2 { font-family: var(--eg-font-display); font-weight: 600; font-size: 19px; margin: 0 0 10px; }
.egcp-card p { font-size: 14px; line-height: 1.7; margin: 0 0 10px; }
.egcp-card a { color: var(--eg-navy); text-decoration: none; }
.egcp-card .dim { font-size: 12.5px; color: var(--eg-muted); }
.egcp-card .egv2s { padding: 8px 0 0; }
.egcp-card .egv2s .slab { display: none; }
.egcp-card .egv2s .row { justify-content: flex-start; gap: 14px; }
/* END_SECTION:eg-v2-contact */

/* START_SECTION:eg-v2-edu-route (INDEX:107) */
.egedr { font-family: var(--eg-font-body); color: var(--eg-ink); }
.egedr .wrap { max-width: 1200px; margin: 0 auto; padding-inline: 24px; }
.egedr .crumb { padding: 20px 24px 8px; font-size: 12.5px; color: var(--eg-muted); }
.egedr .crumb a { color: var(--eg-muted); text-decoration: none; }
.egedr .crumb a:hover { color: var(--eg-navy); }
.egedr .crumb i { font-style: normal; margin: 0 7px; opacity: .5; }
.egedr .eyebrow { font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--eg-muted); font-weight: 500; margin: 0 0 12px; }
.egedr .rule { width: 32px; height: 2px; background: var(--eg-accent); margin: 0 0 16px; }
.egedr .hero { display: grid; grid-template-columns: 1fr; gap: 28px; padding-top: 16px; padding-bottom: 44px; align-items: center; }
@media (min-width: 960px) { .egedr .hero { grid-template-columns: 1.05fr .95fr; gap: 56px; } }
.egedr .hero h1 { font-family: var(--eg-font-display); font-weight: 600; font-size: clamp(32px, 4.4vw, 50px); line-height: 1.05; margin: 0 0 14px; text-wrap: balance; }
.egedr .lede { font-size: 15.5px; color: var(--eg-muted); line-height: 1.65; margin: 0; max-width: 62ch; }
.egedr .himg img { width: 100%; height: auto; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--eg-radius); border: 1px solid var(--eg-border); display: block; }
.egedr .ccta { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 22px; }
.egedr .btn { display: inline-block; padding: 12px 24px; border-radius: var(--eg-radius); font-size: 14.5px; font-weight: 500; text-decoration: none; border: 1px solid var(--eg-navy); }
.egedr .btn-p { background: var(--eg-navy); color: var(--eg-white); }
.egedr .btn-p:hover { opacity: .92; }
.egedr .btn-s { background: transparent; color: var(--eg-navy); border-color: var(--eg-border); }
.egedr .btn-s:hover { border-color: var(--eg-navy); }
.egedr .btn-paper { background: var(--eg-paper); color: var(--eg-navy); border-color: var(--eg-paper); }
.egedr .btn-ghost { background: transparent; color: var(--eg-white); border-color: rgba(255,255,255,.4); }
.egedr .btn-ghost:hover { border-color: var(--eg-white); }
.egedr .facts { background: var(--eg-paper); padding: 28px 0; }
.egedr .fg { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px 24px; }
@media (min-width: 900px) { .egedr .fg { grid-template-columns: repeat(3, 1fr); } }
.egedr .fg b { display: block; font-size: 14px; font-weight: 500; }
.egedr .fg span { font-size: 12.5px; color: var(--eg-muted); }
.egedr .band { padding: 52px 0; }
.egedr .sechead { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; flex-wrap: wrap; margin-bottom: 24px; }
.egedr .sechead h2 { font-family: var(--eg-font-display); font-weight: 600; font-size: clamp(24px, 3vw, 34px); margin: 0 0 8px; }
.egedr .seclink { font-size: 13.5px; color: var(--eg-navy); text-decoration: none; white-space: nowrap; }
.egedr .pgrid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px 16px; }
@media (min-width: 900px) { .egedr .pgrid { grid-template-columns: repeat(4, 1fr); gap: 28px 20px; } }
.egedr .tiers { background: var(--eg-paper); padding: 48px 0; }
.egedr .tiers h2 { font-family: var(--eg-font-display); font-weight: 600; font-size: clamp(22px, 2.8vw, 30px); margin: 0 0 10px; }
.egedr .quote { background: var(--eg-navy); color: var(--eg-white); padding: 60px 0; text-align: center; }
.egedr .quote h2 { font-family: var(--eg-font-display); font-weight: 600; font-size: clamp(24px, 3vw, 32px); color: var(--eg-white); margin: 0 0 10px; }
.egedr .quote p { color: rgba(255,255,255,.78); font-size: 14.5px; max-width: 60ch; margin: 0 auto 22px; }
.egedr .qcta { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }
/* END_SECTION:eg-v2-edu-route */

/* START_SECTION:eg-v2-faq (INDEX:109) */
.egfq { font-family: var(--eg-font-body); color: var(--eg-ink); }
.egfq .wrap { max-width: 860px; margin: 0 auto; padding-inline: 24px; }
.egfq-crumb { padding: 20px 24px 8px; font-size: 12.5px; color: var(--eg-muted); }
.egfq-crumb a { color: var(--eg-muted); text-decoration: none; }
.egfq-crumb i { font-style: normal; margin: 0 7px; opacity: .5; }
.egfq-eyebrow { font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--eg-muted); font-weight: 500; margin: 0 0 12px; }
.egfq-rule { width: 32px; height: 2px; background: var(--eg-accent); margin: 0 0 16px; }
.egfq-head { padding-top: 24px; padding-bottom: 16px; }
.egfq-head h1 { font-family: var(--eg-font-display); font-weight: 600; font-size: clamp(30px, 4vw, 44px); line-height: 1.08; margin: 0 0 12px; }
.egfq-lede { font-size: 15px; color: var(--eg-muted); line-height: 1.6; margin: 0; }
.egfq-lede a { color: var(--eg-navy); }
.egfq-groups { padding-bottom: 48px; }
.egfq-group { padding-top: 28px; }
.egfq-group h2 { font-family: var(--eg-font-display); font-weight: 600; font-size: 22px; margin: 0 0 8px; }
.egfq-group details { border-bottom: 1px solid var(--eg-border); }
.egfq-group summary { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 16px 0; font-size: 15px; font-weight: 500; cursor: pointer; list-style: none; }
.egfq-group summary::-webkit-details-marker { display: none; }
.egfq-group .chev { flex-shrink: 0; color: var(--eg-muted); transition: transform 200ms var(--eg-ease); }
.egfq-group details[open] .chev { transform: rotate(180deg); }
.egfq-group details p { margin: 0 0 18px; font-size: 14px; line-height: 1.7; color: var(--eg-muted); max-width: 64ch; }
.egfq-cta { background: var(--eg-navy); color: var(--eg-white); padding: 64px 0; text-align: center; }
.egfq-cta h2 { font-family: var(--eg-font-display); font-weight: 600; font-size: clamp(22px, 2.8vw, 30px); color: var(--eg-white); margin: 0 0 10px; }
.egfq-cta p { color: rgba(255,255,255,.75); font-size: 14px; max-width: 48ch; margin: 0 auto 22px; }
.egfq-btn { display: inline-block; padding: 13px 22px; border-radius: var(--eg-radius); background: var(--eg-paper); color: var(--eg-navy); font-size: 14px; font-weight: 500; text-decoration: none; }
.egfq-btn:hover { background: var(--eg-white); }
/* END_SECTION:eg-v2-faq */

/* START_SECTION:eg-v2-footer (INDEX:110) */
/* 2026-08-04 (George: "we need a more distinct break between the footer and
   what is above it, the colours blend together and it is unclear where the
   footer starts").

   Correct, and it is worst exactly where he would have seen it: the capture
   block is navy on navy by design, and on segment pages the quote CTA band is
   navy too, so three navy planes stacked with no seam read as one slab.

   Rather than introduce a new colour, the footer drops to the deeper navy
   already in tokens (--eg-navy-hover) so it sits behind the bands above it,
   and a hairline in a lighter navy states the edge. That works whether the
   preceding section is navy or paper. */
.egv2f { background: var(--eg-navy-hover, #1b2840); padding: 56px 0 32px; font-family: var(--eg-font-body);
  border-top: 1px solid rgba(255,255,255,.14); box-shadow: inset 0 14px 24px -18px rgba(0,0,0,.55); }
.egv2f__in { max-width: 1320px; margin: 0 auto; padding-inline: 24px; }
.egv2f__wordmark { font-family: var(--eg-font-display); font-weight: 600; font-size: 28px; color: var(--eg-white); margin: 0 0 4px; }
.egv2f__tagline { font-size: 13px; font-style: italic; color: rgba(255,255,255,.62); margin: 0 0 12px; }
.egv2f__entity { font-size: 12px; color: rgba(255,255,255,.55); margin: 0 0 4px; max-width: 62ch; }
.egv2f__entity a { color: rgba(255,255,255,.72); text-decoration: none; }
.egv2f__entity a:hover { color: #fff; }
.egv2f__cols { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px 24px; margin: 40px 0 48px; }
@media (min-width: 820px) { .egv2f__cols { grid-template-columns: repeat(4, 1fr); } }
.egv2f__col h4 { font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.55); font-weight: 600; margin: 0 0 12px; font-family: var(--eg-font-body); }
.egv2f__col ul { list-style: none; margin: 0; padding: 0; }
.egv2f__col a { display: block; padding: 4px 0; font-size: 13.5px; color: rgba(255,255,255,.82); text-decoration: none; transition: color 160ms var(--eg-ease); }
.egv2f__col a:hover { color: #fff; }
.egv2f__bot { display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 16px 32px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.18); }
.egv2f__botleft p { font-size: 12px; color: rgba(255,255,255,.55); margin: 0 0 10px; }
.egv2f__pay { display: flex; flex-wrap: wrap; gap: 6px; }
.egv2f__pay svg { height: 22px; width: auto; opacity: .8; }
.egv2f__social { display: flex; align-items: center; flex-wrap: wrap; gap: 14px; }
.egv2f__follow { font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.55); margin-right: 4px; }
.egv2f__social a { color: rgba(255,255,255,.62); transition: color 160ms var(--eg-ease); display: inline-flex; }
.egv2f__social a:hover { color: #fff; }
.egv2f__social svg { width: 22px; height: 22px; }

/* Currency / country selector (restored 2026-08-03, see the markup comment). */
.egv2f__loc-row { display: flex; justify-content: flex-start; margin-block-start: 14px; }
.eg-footer-localization { position: relative; display: inline-flex; align-items: center; gap: 8px; background-color: transparent; }
.eg-footer-localization__label { font: 400 .75rem/1.4 var(--eg-font-body); color: rgba(255,255,255,.55); }
.eg-footer-localization__button,
.eg-footer-localization__button:hover {
  display: inline-flex; align-items: center; gap: 4px; min-height: auto; padding: 4px 8px;
  font: 400 .75rem/1.4 var(--eg-font-body); color: rgba(255,255,255,.72);
  background-color: transparent; border: 1px solid rgba(255,255,255,.24);
  border-radius: var(--eg-radius, 4px); box-shadow: none; cursor: pointer;
}
.eg-footer-localization__button:is(:hover, :focus-visible) { color: #fff; border-color: rgba(255,255,255,.5); }
.eg-footer-localization__symbol { opacity: .7; }
.eg-footer-localization__button .svg-wrapper.icon-caret { width: var(--icon-size-xs); height: var(--icon-size-xs); display: inline-flex; align-items: center; transition: transform var(--animation-speed) var(--animation-easing); }
.eg-footer-localization__button[aria-expanded='true'] .icon-caret svg { transform: rotate(180deg); }

/* `top: auto` is load-bearing: the panel opens UPWARD via `bottom`, but Horizon's
   base .localization-wrapper rule sets `top`. With both resolved the panel is
   stretched between two near-equal edges and collapses to height 0, so the
   trigger toggles it open and nothing appears. */
.eg-footer-localization .localization-wrapper {
  position: absolute; bottom: calc(100% + 10px); top: auto; left: 0;
  z-index: var(--layer-raised); display: flex; flex-direction: column;
  min-width: 320px; max-width: min(92vw, 360px); max-height: min(60vh, 420px);
  overflow-x: hidden; overflow-y: auto; overscroll-behavior: contain;
  scrollbar-width: thin; scrollbar-color: rgb(var(--color-foreground-rgb) / .35) transparent;
  border-radius: var(--style-border-radius-popover); box-shadow: var(--shadow-popover);
  border: var(--style-border-popover); background-color: var(--color-background);
  opacity: 0; visibility: hidden; transform: translateY(6px);
  transition: opacity .18s ease, transform .18s ease, visibility 0s linear .18s;
}
.eg-footer-localization .localization-wrapper::-webkit-scrollbar { width: 8px; }
.eg-footer-localization .localization-wrapper::-webkit-scrollbar-thumb { background-color: rgb(var(--color-foreground-rgb) / .35); border-radius: 8px; }
.eg-footer-localization .localization-wrapper::-webkit-scrollbar-track { background-color: transparent; }
.eg-footer-localization .localization-wrapper:not([hidden]) { opacity: 1; visibility: visible; transform: translateY(0); transition: opacity .18s ease, transform .18s ease; }
.eg-footer-localization .localization-form__list-item { margin-inline: 8px; }
/* END_SECTION:eg-v2-footer */

/* START_SECTION:eg-v2-for-business (INDEX:111) */
.egfb { font-family: var(--eg-font-body); color: var(--eg-ink); }
.egfb .wrap { max-width: 1200px; margin: 0 auto; padding-inline: 24px; }

/* Full-bleed split hero (2026-08-03), matching the corporate and education hubs */
.egfb-bleed { display: grid; grid-template-columns: 1fr; border-bottom: 1px solid var(--eg-border); }
.egfb-bleed .fb-copy { background: var(--eg-navy); color: var(--eg-white); padding: 44px 24px 52px; order: 2; }
.egfb-bleed .fb-inner { max-width: 640px; margin: 0 auto; }
.egfb-bleed .fb-img { order: 1; position: relative; aspect-ratio: 16/9; overflow: hidden; background: var(--eg-paper); }
.egfb-bleed .fb-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.egfb-bleed .egfb-eyebrow { color: rgba(255,255,255,.66); }
.egfb-bleed .egfb-rule { background: var(--eg-accent); }
.egfb-bleed h1 { color: var(--eg-white); }
.egfb-bleed .egfb-lede { color: rgba(255,255,255,.82); max-width: 56ch; }
/* 2026-08-04 (George): flex-wrap put "Request a quote" and "Corporate" on one
   row and orphaned "Education" onto a third, which reads as a mistake rather
   than a hierarchy. Three equal columns instead, so they share a line at every
   width the buttons actually fit. Below 360px, where three columns would clip
   the longest label, it falls back deliberately: primary across the top, the
   two segment links evenly beneath it. */
.egfb-bleed .fb-cta { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 22px; }
@media (max-width: 359px) {
  .egfb-bleed .fb-cta { grid-template-columns: 1fr 1fr; }
  .egfb-bleed .fb-cta .fbbtn--p { grid-column: 1 / -1; }
}
.egfb-bleed .fbbtn { display: inline-flex; align-items: center; justify-content: center; text-align: center;
  padding: 11px clamp(8px, 2.2vw, 20px); border-radius: var(--eg-radius); font-size: clamp(12px, 3.1vw, 13.5px);
  text-decoration: none; border: 1px solid transparent; font-family: var(--eg-font-body);
  transition: background 200ms var(--eg-ease), border-color 200ms var(--eg-ease); }
.egfb-bleed .fbbtn--p { background: var(--eg-white); color: var(--eg-navy); border-color: var(--eg-white); }
.egfb-bleed .fbbtn--p:hover { background: rgba(255,255,255,.88); }
.egfb-bleed .fbbtn--s { color: var(--eg-white); border-color: rgba(255,255,255,.5); }
.egfb-bleed .fbbtn--s:hover { border-color: #fff; }
@media (min-width: 900px) {
  .egfb-bleed { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); align-items: stretch; }
  .egfb-bleed .fb-copy { order: 1; display: flex; align-items: center; padding: 64px 48px; }
  .egfb-bleed .fb-inner { margin-right: 0; max-width: 600px; }
  .egfb-bleed .fb-img { order: 2; aspect-ratio: auto; min-height: 100%; }
}
.egfb-crumb { padding: 20px 24px 8px; font-size: 12.5px; color: var(--eg-muted); }
.egfb-crumb a { color: var(--eg-muted); text-decoration: none; }
.egfb-crumb i { font-style: normal; margin: 0 7px; opacity: .5; }
.egfb-eyebrow { font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--eg-muted); font-weight: 500; margin: 0 0 12px; }
.egfb-rule { width: 32px; height: 2px; background: var(--eg-accent); margin: 0 0 16px; }
.egfb-head { padding-top: 24px; padding-bottom: 8px; }
.egfb-head h1 { font-family: var(--eg-font-display); font-weight: 600; font-size: clamp(30px, 4vw, 44px); line-height: 1.08; margin: 0 0 12px; max-width: 24ch; text-wrap: balance; }
.egfb-lede { font-size: 15px; color: var(--eg-muted); max-width: 62ch; line-height: 1.65; margin: 0; }
.egfb-paths { display: grid; grid-template-columns: 1fr; gap: 16px; padding-top: 28px; padding-bottom: 24px; }
@media (min-width: 820px) { .egfb-paths { grid-template-columns: 1fr 1fr; gap: 20px; } }
.egfb-paths .path { display: block; border: 1px solid var(--eg-border); border-radius: var(--eg-radius); overflow: hidden; text-decoration: none; color: var(--eg-ink); transition: border-color 200ms var(--eg-ease), transform 200ms var(--eg-ease); }
.egfb-paths .path:hover { border-color: var(--eg-navy); transform: translateY(-2px); }
.egfb-paths .pimg { display: block; aspect-ratio: 4/3; background: var(--eg-paper); }
.egfb-paths .pimg img { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform 320ms var(--eg-ease); }
.egfb-paths .path:hover .pimg img { transform: scale(1.03); }
.egfb-paths .pbody { display: block; padding: 24px 28px 28px; }
.egfb-paths h2 { font-family: var(--eg-font-display); font-weight: 600; font-size: clamp(20px, 2.4vw, 26px); margin: 0 0 10px; }
.egfb-paths p { font-size: 14px; color: var(--eg-muted); line-height: 1.6; margin: 0 0 14px; }
.egfb-paths .go { font-size: 13.5px; color: var(--eg-navy); font-weight: 500; }
.egfb-band { padding: 48px 0; }
.egfb-band--paper { background: var(--eg-paper); }
.egfb-band h2 { font-family: var(--eg-font-display); font-weight: 600; font-size: clamp(22px, 2.8vw, 30px); margin: 0 0 20px; text-wrap: balance; }
.egfb-ladders { display: grid; grid-template-columns: 1fr; gap: 12px; }
@media (min-width: 820px) { .egfb-ladders { grid-template-columns: repeat(4, 1fr); } }
.egfb-ladders .lad { display: flex; flex-direction: column; gap: 4px; padding: 20px; background: var(--eg-white); border: 1px solid var(--eg-border); border-radius: var(--eg-radius); text-decoration: none; color: var(--eg-ink); transition: border-color 200ms var(--eg-ease); }
.egfb-ladders .lad:hover { border-color: var(--eg-navy); }
.egfb-ladders .limg { display: block; aspect-ratio: 1; border-radius: var(--eg-radius); overflow: hidden; background: var(--eg-paper); margin-bottom: 10px; }
.egfb-ladders .limg img { width: 100%; height: 100%; object-fit: cover; }
.egfb-ladders b { font-family: var(--eg-font-display); font-weight: 600; font-size: 20px; }
.egfb-ladders .lsub { font-size: 12px; color: var(--eg-muted); margin-bottom: 8px; }
.egfb-ladders .lrow { font-size: 14.5px; font-weight: 500; }
.egfb-ladders .lrow em { font-style: normal; font-weight: 400; font-size: 12px; color: var(--eg-muted); }
.egfb-note { font-size: 13px; color: var(--eg-muted); margin: 18px 0 0; }
.egfb-steps { list-style: none; counter-reset: step; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 820px) { .egfb-steps { grid-template-columns: repeat(4, 1fr); } }
.egfb-steps li { counter-increment: step; font-size: 13.5px; color: var(--eg-muted); line-height: 1.6; padding: 18px; border: 1px solid var(--eg-border); border-radius: var(--eg-radius); }
.egfb-steps li::before { content: counter(step, decimal-leading-zero); display: block; font-family: var(--eg-font-display); font-size: 22px; font-weight: 600; color: var(--eg-navy); margin-bottom: 8px; }
.egfb-steps b { display: block; color: var(--eg-ink); font-size: 14.5px; margin-bottom: 4px; }
.egfb-proof { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding-top: 8px; padding-bottom: 40px; }
@media (min-width: 820px) { .egfb-proof { grid-template-columns: repeat(4, 1fr); } }
.egfb-proof > div { border: 1px solid var(--eg-border); border-radius: var(--eg-radius); padding: 14px 16px; }
.egfb-proof b { display: block; font-size: 13.5px; font-weight: 600; margin-bottom: 3px; }
.egfb-proof span { font-size: 12px; color: var(--eg-muted); }
.egfb-looks { display: grid; grid-template-columns: 1fr; gap: 14px; }
@media (min-width: 820px) { .egfb-looks { grid-template-columns: 1fr 1fr; } }
.egfb-looks a { display: block; padding: 22px 24px; border: 1px solid var(--eg-border); border-radius: var(--eg-radius); text-decoration: none; color: var(--eg-ink); transition: border-color 200ms var(--eg-ease); }
.egfb-looks a:hover { border-color: var(--eg-navy); }
.egfb-looks b { display: block; font-family: var(--eg-font-display); font-weight: 600; font-size: 19px; margin-bottom: 6px; }
.egfb-looks span { font-size: 13px; color: var(--eg-muted); line-height: 1.55; }
.egfb-cta { background: var(--eg-navy); color: var(--eg-white); padding: 64px 0; }
.egfb-cta__cols { display: grid; grid-template-columns: 1fr; gap: 32px; }
@media (min-width: 900px) { .egfb-cta__cols { grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; } }
.egfb-cta h2 { font-family: var(--eg-font-display); font-weight: 600; font-size: clamp(24px, 3vw, 32px); color: var(--eg-white); margin: 0 0 10px; }
.egfb-cta p { color: rgba(255,255,255,.75); font-size: 14.5px; margin: 0 0 16px; line-height: 1.6; }
.egfb-cta .dim { font-size: 13px; color: rgba(255,255,255,.6); }
.egfb-cta .dim a { color: rgba(255,255,255,.85); }
.egfb-cta__form { background: var(--eg-paper); border-radius: var(--eg-radius); padding: 22px 24px; color: var(--eg-ink); }
.egfb-cta__form label { display: block; font-size: 12px; font-weight: 600; letter-spacing: .04em; margin: 12px 0 5px; }
.egfb-cta__form label:first-of-type { margin-top: 0; }
.egfb-cta__form input, .egfb-cta__form textarea { width: 100%; padding: 11px 13px; border: 1px solid var(--eg-border); border-radius: var(--eg-radius); font-size: 14px; font-family: var(--eg-font-body); background: var(--eg-white); box-sizing: border-box; }
.egfb-ok { font-size: 14.5px; }
.egfb-formerr { font-size: 13px; margin: 0 0 10px; color: var(--eg-ink); }
.egfb-btn { display: inline-block; padding: 13px 22px; border-radius: var(--eg-radius); font-size: 14px; font-weight: 500; text-decoration: none; }
.egfb-btn.paper { background: var(--eg-navy); color: var(--eg-white); border: 0; cursor: pointer; font-family: var(--eg-font-body); }
.egfb-btn.paper:hover { opacity: .92; }
.egfb-btn.wide { width: 100%; margin-top: 16px; padding: 14px; font-size: 14.5px; }
.egfb-btn.ghost { border: 1px solid rgba(255,255,255,.5); color: var(--eg-white); }
.egfb-btn.ghost:hover { background: rgba(255,255,255,.08); }
.egfb-cta__copy .egfb-btn { margin-bottom: 18px; }

/* --- Price the floor calculator ----------------------------------------- */
.egfb-calc__lede { max-width: 62ch; margin-bottom: 22px; }
.egfb-calc { border: 1px solid var(--eg-border); border-radius: var(--eg-radius); background: var(--eg-white); padding: 22px; }
.egfb-calc .calc-pick { display: flex; flex-wrap: wrap; align-items: center; gap: 12px 18px; padding-bottom: 20px; border-bottom: 1px solid var(--eg-border); }
.egfb-calc .calc-lab { font-size: 11.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--eg-muted); }
.egfb-calc .calc-btns { display: flex; gap: 8px; flex-wrap: wrap; }
.egfb-calc .calc-btns button { padding: 9px 16px; border: 1px solid var(--eg-border); background: var(--eg-white);
  border-radius: var(--eg-radius); font-family: var(--eg-font-body); font-size: 14px; cursor: pointer;
  font-variant-numeric: tabular-nums; color: var(--eg-ink); }
.egfb-calc .calc-btns button[aria-pressed="true"] { background: var(--eg-navy); border-color: var(--eg-navy); color: var(--eg-white); }
.egfb-calc .calc-custom { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--eg-muted); }
.egfb-calc .calc-custom input { width: 88px; padding: 8px 10px; border: 1px solid var(--eg-border);
  border-radius: var(--eg-radius); font-family: var(--eg-font-body); font-size: 14px; font-variant-numeric: tabular-nums; }
.egfb-calc .calc-out { display: grid; grid-template-columns: 1fr; gap: 14px; padding: 20px 0; }
@media (min-width: 640px) { .egfb-calc .calc-out { grid-template-columns: repeat(3, 1fr); } }
.egfb-calc .calc-fig span { display: block; font-size: 11.5px; letter-spacing: .08em; text-transform: uppercase; color: var(--eg-muted); margin-bottom: 4px; }
.egfb-calc .calc-fig b { font-family: var(--eg-font-display); font-weight: 600; font-size: 30px; color: var(--eg-navy); font-variant-numeric: tabular-nums; }
.egfb-calc .calc-fig--big b { font-size: 40px; }
.egfb-calc .calc-fig--save b { color: #3d7a4a; font-size: 24px; }
.egfb-calc .calc-lines { list-style: none; margin: 0; padding: 16px 0 0; border-top: 1px solid var(--eg-border); display: grid; gap: 8px; }
.egfb-calc .calc-lines li { display: flex; align-items: baseline; gap: 10px; font-size: 14px; }
.egfb-calc .calc-lines li span { flex: 1; }
.egfb-calc .calc-lines li b { font-variant-numeric: tabular-nums; color: var(--eg-navy); }
.egfb-calc .calc-lines li em { font-style: normal; font-size: 11.5px; color: var(--eg-muted); text-decoration: line-through; min-width: 68px; text-align: right; }
.egfb-calc .calc-next { margin: 14px 0 0; padding: 11px 13px; background: var(--eg-paper); border-radius: var(--eg-radius);
  font-size: 13px; color: var(--eg-ink); line-height: 1.5; }
.egfb-calc .egfb-note { margin-top: 12px; }

/* --- Lookbook gate ------------------------------------------------------ */
.egfb-looks .lookcard { display: block; width: 100%; text-align: left; padding: 22px 24px;
  border: 1px solid var(--eg-border); border-radius: var(--eg-radius); background: var(--eg-white);
  color: var(--eg-ink); cursor: pointer; font-family: var(--eg-font-body);
  transition: border-color 200ms var(--eg-ease); }
.egfb-looks .lookcard:hover { border-color: var(--eg-navy); }
.egfb-looks .lookcard:focus-visible { outline: 2px solid var(--eg-navy); outline-offset: 2px; }
.egfb-looks .lockrow { display: flex; align-items: center; gap: 6px; margin-top: 12px;
  font-style: normal; font-size: 12px; color: var(--eg-navy); }
.egfb-looks .lookcard.unlocked .lockrow { color: #3d7a4a; }

.egfb-gate { border: 0; padding: 0; border-radius: var(--eg-radius); max-width: 440px; width: calc(100% - 32px);
  background: var(--eg-white); color: var(--eg-ink); box-shadow: 0 24px 60px rgb(26 26 26 / .3); }
.egfb-gate::backdrop { background: rgb(26 26 26 / .55); }
.egfb-gate__in { padding: 28px 26px 26px; }
.egfb-gate__x { position: absolute; top: 6px; right: 8px; margin: 0; }
.egfb-gate__x button { background: none; border: 0; font-size: 26px; line-height: 1; color: var(--eg-muted);
  cursor: pointer; padding: 4px 8px; }
.egfb-gate h2 { font-family: var(--eg-font-display); font-weight: 600; font-size: 26px; margin: 0 0 8px; }
.egfb-gate__sub { font-size: 13.5px; color: var(--eg-muted); margin: 0 0 18px; line-height: 1.55; }
.egfb-gate label { display: block; font-size: 12px; letter-spacing: .06em; text-transform: uppercase;
  color: var(--eg-muted); margin: 12px 0 5px; }
.egfb-gate input[type="text"], .egfb-gate input[type="email"], .egfb-gate input[type="tel"] {
  width: 100%; padding: 11px 12px; border: 1px solid var(--eg-border); border-radius: var(--eg-radius);
  font-family: var(--eg-font-body); font-size: 15px; color: var(--eg-ink); background: var(--eg-white); }
.egfb-gate input:focus-visible { outline: 2px solid var(--eg-navy); outline-offset: -1px; }
.egfb-gate__opt { display: flex; align-items: flex-start; gap: 9px; margin: 16px 0 0;
  text-transform: none; letter-spacing: 0; font-size: 12.5px; color: var(--eg-ink); }
.egfb-gate__opt input { margin-top: 2px; flex: none; }
.egfb-gate__fine { font-size: 11.5px; color: var(--eg-muted); margin: 12px 0 0; line-height: 1.5; }
/* END_SECTION:eg-v2-for-business */

/* START_SECTION:eg-v2-gaga (INDEX:112) */
.egga { font-family: var(--eg-font-body); color: var(--eg-ink); }
.egga .wrap { max-width: 1200px; margin: 0 auto; padding-inline: 24px; }
.egga-crumb { padding: 20px 24px 8px; font-size: 12.5px; color: var(--eg-muted); }
.egga-crumb a { color: var(--eg-muted); text-decoration: none; }
.egga-crumb i { font-style: normal; margin: 0 7px; opacity: .5; }
.egga-eyebrow { font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--eg-muted); font-weight: 500; margin: 0 0 12px; }
.egga-rule { width: 32px; height: 2px; background: var(--eg-accent); margin: 0 0 16px; }
.egga-head { padding-top: 24px; padding-bottom: 36px; }
.egga-headcols { display: grid; grid-template-columns: 1fr; gap: 24px; align-items: center; }
@media (min-width: 820px) { .egga-headcols { grid-template-columns: 300px 1fr; gap: 48px; } }
.egga-portrait { width: 100%; max-width: 300px; aspect-ratio: 1; object-fit: cover; object-position: center 20%; border-radius: var(--eg-radius); border: 1px solid var(--eg-border); display: block; }
.egga-ig { margin: 14px 0 0; font-size: 13.5px; }
.egga-ig a { color: var(--eg-navy); text-decoration: none; border-bottom: 1px solid var(--eg-border); padding-bottom: 1px; }
.egga-ig a:hover { border-color: var(--eg-navy); }
.egga-head h1 { font-family: var(--eg-font-display); font-weight: 600; font-size: clamp(30px, 4vw, 44px); line-height: 1.08; margin: 0 0 8px; }
.egga-med { font-size: 12.5px; letter-spacing: .08em; text-transform: uppercase; color: var(--eg-muted); margin: 0 0 14px; }
.egga-lede { font-size: 15.5px; color: var(--eg-muted); max-width: 62ch; line-height: 1.65; margin: 0; }
.egga-works { padding-bottom: 56px; }
.egga-works h2 { font-family: var(--eg-font-display); font-weight: 600; font-size: clamp(24px, 3vw, 32px); margin: 0 0 20px; }
.egga-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
@media (min-width: 900px) { .egga-grid { grid-template-columns: repeat(4, 1fr); } }
.egga-grid .wk { text-decoration: none; color: var(--eg-ink); }
.egga-grid .wkimg { display: block; aspect-ratio: 1; border-radius: var(--eg-radius); overflow: hidden; border: 1px solid var(--eg-border); background: var(--eg-paper); margin-bottom: 10px; }
.egga-grid .wkimg img { width: 100%; height: 100%; object-fit: cover; transition: transform 320ms var(--eg-ease); }
.egga-grid .wk:hover .wkimg img { transform: scale(1.03); }
.egga-grid b { display: block; font-family: var(--eg-font-display); font-weight: 600; font-size: 19px; }
.egga-grid .wksub { display: block; font-size: 12.5px; color: var(--eg-muted); margin: 2px 0 4px; }
.egga-grid .wkp { font-size: 14px; font-weight: 500; }
.egga-note { font-size: 13px; color: var(--eg-muted); margin: 20px 0 0; }
.egga-cta { background: var(--eg-navy); color: var(--eg-white); padding: 64px 0; text-align: center; }
.egga-cta h2 { font-family: var(--eg-font-display); font-weight: 600; font-size: clamp(24px, 3vw, 32px); color: var(--eg-white); margin: 0 0 10px; }
.egga-cta p { color: rgba(255,255,255,.75); font-size: 14.5px; max-width: 54ch; margin: 0 auto 22px; }
.egga-ctas { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.egga-btn { display: inline-block; padding: 12px 24px; border-radius: var(--eg-radius); background: var(--eg-paper); color: var(--eg-navy); font-size: 14.5px; font-weight: 500; text-decoration: none; }
.egga-btn:hover { background: var(--eg-white); }
.egga-btn.ghost { background: transparent; border: 1px solid rgba(255,255,255,.5); color: var(--eg-white); }
.egga-btn.ghost:hover { background: rgba(255,255,255,.08); }
/* END_SECTION:eg-v2-gaga */

/* START_SECTION:eg-v2-gift (INDEX:113) */
.eggc { font-family: var(--eg-font-body); color: var(--eg-ink); }
.eggc .wrap { max-width: 1200px; margin: 0 auto; padding-inline: 24px; }
.eggc-crumb { padding: 20px 24px 8px; font-size: 12.5px; color: var(--eg-muted); }
.eggc-crumb a { color: var(--eg-muted); text-decoration: none; }
.eggc-crumb i { font-style: normal; margin: 0 7px; opacity: .5; }
.eggc-eyebrow { font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--eg-muted); font-weight: 500; margin: 0 0 12px; }
.eggc-eyebrow.inv { color: rgba(255,255,255,.62); }
.eggc-rule { width: 32px; height: 2px; background: var(--eg-accent); margin: 0 0 16px; }
.eggc-rule.inv { background: var(--eg-white); }
.eggc-cols { display: grid; grid-template-columns: 1fr; gap: 32px; padding-top: 16px; padding-bottom: 56px; }
@media (min-width: 900px) { .eggc-cols { grid-template-columns: 1.1fr 1fr; gap: 56px; align-items: start; } }
.eggc-media img { width: 100%; height: auto; border-radius: var(--eg-radius); border: 1px solid var(--eg-border); }
.eggc-buy h1 { font-family: var(--eg-font-display); font-weight: 600; font-size: clamp(28px, 3.6vw, 40px); line-height: 1.1; margin: 0 0 12px; text-wrap: balance; }
.eggc-lede { font-size: 15px; color: var(--eg-muted); line-height: 1.6; margin: 0 0 20px; }
.eggc fieldset { border: 0; padding: 0; margin: 0 0 20px; }
.eggc legend { font-size: 12.5px; font-weight: 600; letter-spacing: .04em; margin-bottom: 10px; }
.eggc legend small { font-weight: 400; color: var(--eg-muted); }
.eggc-amounts { display: block; }
.eggc-amounts .amt { display: inline-block; margin: 0 8px 8px 0; }
.eggc-amounts input { position: absolute; opacity: 0; pointer-events: none; }
.eggc-amounts .amt span { display: inline-block; padding: 12px 22px; border: 1px solid var(--eg-border); border-radius: var(--eg-radius); font-size: 15px; font-weight: 500; cursor: pointer; transition: border-color 160ms var(--eg-ease), background 160ms var(--eg-ease); }
.eggc-amounts input:checked + span { background: var(--eg-navy); border-color: var(--eg-navy); color: var(--eg-white); }
.eggc-amounts input:focus-visible + span { outline: 2px solid var(--eg-navy); outline-offset: 2px; }
.eggc-check { display: flex; gap: 10px; align-items: center; font-size: 14px; margin-bottom: 12px; }
.eggc-recipfields label { display: block; font-size: 12.5px; font-weight: 600; margin: 12px 0 5px; }
.eggc-recipfields label small { font-weight: 400; color: var(--eg-muted); }
.eggc-recipfields input, .eggc-recipfields textarea { width: 100%; padding: 11px 13px; border: 1px solid var(--eg-border); border-radius: var(--eg-radius); font-size: 14px; font-family: var(--eg-font-body); box-sizing: border-box; }
.eggc-btn { width: 100%; padding: 15px; background: var(--eg-navy); color: var(--eg-white); border: 0; border-radius: var(--eg-radius); font-size: 15px; font-weight: 500; font-family: var(--eg-font-body); cursor: pointer; }
.eggc-btn:hover { opacity: .92; }
.eggc-facts { list-style: none; margin: 18px 0 0; padding: 0; }
.eggc-facts li { font-size: 13px; color: var(--eg-muted); padding: 5px 0; }
.eggc-facts a { color: var(--eg-navy); }
.eggc-team { background: var(--eg-navy); color: var(--eg-white); padding: 64px 0; }
.eggc-team h2 { font-family: var(--eg-font-display); font-weight: 600; font-size: clamp(22px, 2.8vw, 30px); color: var(--eg-white); margin: 0 0 12px; max-width: 26ch; }
.eggc-team p { color: rgba(255,255,255,.78); font-size: 14.5px; line-height: 1.65; max-width: 62ch; margin: 0 0 22px; }
.eggc-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.eggc-btn2 { display: inline-block; padding: 13px 22px; border-radius: var(--eg-radius); background: var(--eg-paper); color: var(--eg-navy); font-size: 14px; font-weight: 500; text-decoration: none; }
.eggc-btn2:hover { background: var(--eg-white); }
.eggc-btn2.ghost { background: transparent; border: 1px solid rgba(255,255,255,.5); color: var(--eg-white); }
.eggc-btn2.ghost:hover { background: rgba(255,255,255,.08); }
/* END_SECTION:eg-v2-gift */

/* START_SECTION:eg-v2-home (INDEX:114) */
.egh { font-size: 16px; line-height: 1.6; color: var(--eg-ink); }
.egh .wrap { max-width: 1320px; margin: 0 auto; padding-inline: 24px; }
.egh section { padding: 64px 0; }
@media (min-width: 768px) { .egh section { padding: 96px 0; } }
.egh section.band { background: var(--eg-paper); }
.egh section.inv { background: var(--eg-navy); color: var(--eg-white); }
.egh h1 { font-family: var(--eg-font-display); font-weight: 600; font-size: clamp(40px, 6vw, 72px); line-height: 1; margin: 0 0 24px; color: var(--eg-navy); text-wrap: balance; }
.egh h2 { font-family: var(--eg-font-display); font-weight: 600; font-size: clamp(27px, 3.4vw, 40px); line-height: 1.1; margin: 0; text-wrap: balance; }
.egh h3 { font-family: var(--eg-font-display); font-weight: 600; font-size: 19px; line-height: 1.28; margin: 0; }
.egh p { margin: 0; }
.egh .egh-eyebrow { font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--eg-muted); font-weight: 500; margin: 0 0 12px; }
.egh .egh-eyebrow.od { color: rgba(255,255,255,.62); }
.egh-rule { width: 32px; height: 2px; background: var(--eg-accent); margin: 0 0 16px; }
.egh-sechead { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; margin-bottom: 32px; flex-wrap: wrap; }
.egh-sechead .lede { font-size: 15px; color: var(--eg-muted); max-width: 52ch; margin-top: 12px; }
.egh .seclink { font-size: 12.5px; color: var(--eg-navy); border-bottom: 1px solid var(--eg-border); padding-bottom: 3px; white-space: nowrap; text-decoration: none; }
.egh .seclink:hover { border-color: var(--eg-navy); }
.egh-btn { display: inline-block; padding: 12px 24px; border-radius: var(--eg-radius); font-family: var(--eg-font-body); font-size: 14.5px; font-weight: 500; letter-spacing: .02em; border: 1px solid var(--eg-navy); text-align: center; text-decoration: none; cursor: pointer; transition: background 200ms var(--eg-ease), transform 200ms var(--eg-ease); }
.egh-btn.p { background: var(--eg-navy); color: var(--eg-white); }
.egh-btn.p:hover { background: var(--eg-navy-hover); transform: translateY(-1px); }
.egh-btn.s { background: rgba(255,255,255,.72); color: var(--eg-navy); }
.egh-btn.s:hover { background: var(--eg-white); }

.egh-hero { position: relative; background: var(--eg-paper); border-bottom: 1px solid var(--eg-border); overflow: hidden; }
.egh-heroimg { position: absolute; inset: 0; background-size: cover; background-position: center right; }
.egh-herovid { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center right; }
.egh-heroveil { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(245,243,239,.97) 0%, rgba(245,243,239,.90) 46%, rgba(245,243,239,.66) 100%); }
@media (min-width: 900px) { .egh-heroveil { background: linear-gradient(90deg, rgba(245,243,239,.98) 0%, rgba(245,243,239,.94) 32%, rgba(245,243,239,.62) 54%, rgba(245,243,239,0) 76%); } }
.egh-heroin { position: relative; display: flex; align-items: center; padding-block: 64px; min-height: clamp(460px, 62vh, 640px); }
@media (min-width: 900px) { .egh-heroin { padding-block: 96px; } .egh-heroc { max-width: min(580px, 56%); } }
.egh-herosub { font-size: 17px; color: var(--eg-muted); max-width: 44ch; }
.egh-herocta { display: flex; gap: 12px; margin-top: 48px; flex-wrap: wrap; }
@media (max-width: 719px) {
  .egh-herocta { flex-direction: column; align-items: stretch; margin-top: 28px; gap: 8px; }
  .egh-herocta .egh-btn { padding: 10px 16px; font-size: 13.5px; }
}

.egh-trust { background: var(--eg-white); border-bottom: 1px solid var(--eg-border); padding: 32px 0; }
.egh-trust .tg { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
@media (min-width: 700px) { .egh-trust .tg { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1000px) { .egh-trust .tg { grid-template-columns: repeat(8, 1fr); } }
.egh-trust .tg > div { display: flex; flex-direction: column; gap: 5px; align-items: flex-start; }
.egh-trust svg { color: var(--eg-accent); }
.egh-trust b { font-size: 12.5px; font-weight: 500; }
.egh-trust span { font-size: 11px; color: var(--eg-muted); line-height: 1.4; }

.egh-scroller { position: relative; }
.egh-snap { scrollbar-width: thin; }
.egh-arrow { display: none; position: absolute; top: 50%; transform: translateY(-50%); z-index: 5; width: 40px; height: 40px; border-radius: var(--eg-radius-pill); border: 1px solid var(--eg-border); background: rgba(255,255,255,.95); color: var(--eg-navy); font-size: 16px; cursor: pointer; box-shadow: var(--eg-shadow-soft); transition: border-color 200ms var(--eg-ease); }
.egh-arrow:hover { border-color: var(--eg-navy); }
.egh-arrow.prev { left: -12px; }
.egh-arrow.next { right: -12px; }
@media (min-width: 900px) { .egh-arrow { display: block; } }
.egh-cats { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(220px, 24%); gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 12px; scroll-behavior: smooth; }
.egh-cats .cat { scroll-snap-align: start; }
.egh-cats .cat { position: relative; aspect-ratio: 3 / 4; border-radius: var(--eg-radius); overflow: hidden; background: var(--eg-paper); display: block; }
.egh-cats .cat img { width: 100%; height: 100%; object-fit: cover; transition: transform 320ms var(--eg-ease); }
.egh-cats .cat:hover img { transform: scale(1.04); }
.egh-cats .catl { position: absolute; left: 0; right: 0; bottom: 0; padding: 24px 16px 16px; background: linear-gradient(to top, rgba(39,55,85,.86), rgba(39,55,85,0)); color: var(--eg-white); }
.egh-cats .catl b { font-family: var(--eg-font-display); font-size: 19px; font-weight: 600; display: block; }
.egh-cats .catl span { font-size: 11px; opacity: .72; letter-spacing: .06em; }

.egh-rail { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(200px, 60%); gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 12px; scroll-behavior: smooth; mask-image: linear-gradient(90deg, #000 92%, transparent); -webkit-mask-image: linear-gradient(90deg, #000 92%, transparent); }
@media (min-width: 700px) { .egh-rail { grid-auto-columns: minmax(220px, 32%); gap: 24px; } }
@media (min-width: 1000px) { .egh-rail { grid-auto-columns: minmax(240px, 23.5%); } }
.egh-rail .pc { scroll-snap-align: start; }
/* Video grid: UNIFORM square tiles (George 07-31), small enough that 18
   products show. Clips load and play only near the viewport. */
.egh-bento { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
@media (min-width: 700px) { .egh-bento { grid-template-columns: repeat(4, 1fr); gap: 12px; } }
@media (min-width: 1000px) { .egh-bento { grid-template-columns: repeat(6, 1fr); gap: 14px; } }
.egh-bento .bt { position: relative; display: block; overflow: hidden; border-radius: var(--eg-radius); border: 1px solid var(--eg-border); background: var(--eg-paper); aspect-ratio: 1; }
.egh-bento .bt video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 320ms var(--eg-ease); }
.egh-bento .bt:hover video { transform: scale(1.03); }
.egh-bento .btcta { position: absolute; left: 8px; bottom: 8px; z-index: 2; padding: 5px 10px; border-radius: var(--eg-radius-pill); background: rgba(255,255,255,.92); backdrop-filter: blur(4px); color: var(--eg-navy); font-size: 10.5px; font-weight: 500; box-shadow: 0 1px 6px rgba(0,0,0,.15); transition: background 160ms var(--eg-ease), opacity 160ms var(--eg-ease); }
/* On phones the tiles are ~110px wide; a full pill covers the clip, so it
   shrinks to a compact arrow chip (George 07-31). */
@media (max-width: 699px) {
  .egh-bento .btcta { left: 6px; bottom: 6px; padding: 4px 7px; font-size: 0; line-height: 0; }
  .egh-bento .btcta::after { content: '\2192'; font-size: 12px; line-height: 1; }
}
.egh-bento .bt:hover .btcta { background: var(--eg-navy); color: var(--eg-white); }
.egh-lbs { display: grid; grid-template-columns: 1fr; gap: 14px; }
@media (min-width: 820px) { .egh-lbs { grid-template-columns: repeat(3, 1fr); gap: 20px; } }
.egh-lbs .lb { display: block; border: 1px solid var(--eg-border); border-radius: var(--eg-radius); overflow: hidden; background: var(--eg-white); text-decoration: none; color: var(--eg-ink); transition: border-color 200ms var(--eg-ease), transform 200ms var(--eg-ease); }
.egh-lbs .lb:hover { border-color: var(--eg-navy); transform: translateY(-2px); }
.egh-lbs .lbimg { display: block; aspect-ratio: 4/3; background: var(--eg-paper); }
.egh-lbs .lbimg img { width: 100%; height: 100%; object-fit: cover; transition: transform 320ms var(--eg-ease); }
.egh-lbs .lb:hover .lbimg img { transform: scale(1.03); }
.egh-lbs .lbtx { display: block; padding: 14px 16px 16px; }
.egh-lbs .lbtx b { display: block; font-family: var(--eg-font-display); font-weight: 600; font-size: 19px; }
.egh-lbs .lbtx span { font-size: 12.5px; color: var(--eg-muted); }

.egh-rooms { display: grid; grid-template-columns: repeat(1, 1fr); gap: 16px; }
@media (min-width: 640px) { .egh-rooms { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .egh-rooms { grid-template-columns: repeat(3, 1fr); } }
.egh-rooms .room { border: 1px solid var(--eg-border); border-radius: var(--eg-radius); overflow: hidden; background: var(--eg-white); display: flex; flex-direction: column; text-decoration: none; color: var(--eg-ink); transition: box-shadow 200ms var(--eg-ease), transform 200ms var(--eg-ease), border-color 200ms var(--eg-ease); }
.egh-rooms .room:hover { box-shadow: 0 8px 24px rgb(39 55 85 / .10); transform: translateY(-2px); border-color: var(--eg-navy); }
.egh-rooms .roomimg { display: block; aspect-ratio: 4 / 3; background: var(--eg-paper); overflow: hidden; }
.egh-rooms .roomimg img { width: 100%; height: 100%; object-fit: cover; transition: transform 320ms var(--eg-ease); }
.egh-rooms .room:hover .roomimg img { transform: scale(1.04); }
.egh-rooms .roomtx { display: flex; flex-direction: column; gap: 8px; padding: 20px 24px 24px; flex: 1; }
.egh-rooms b { font-family: var(--eg-font-display); font-size: 22px; font-weight: 600; }
.egh-rooms p { font-size: 13.5px; color: var(--eg-muted); }
.egh-rooms em { font-style: normal; font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--eg-accent); margin-top: auto; padding-top: 8px; }

.egh-review-head { text-align: center; margin-bottom: 32px; }
.egh-review-head .egh-eyebrow { text-align: center; }
.egh-reviews { display: grid; gap: 24px; max-width: 1040px; margin: 0 auto; }
@media (min-width: 860px) { .egh-reviews { grid-template-columns: 1fr 1fr; } }
.egh-reviews .rcard { background: var(--eg-white); border: 1px solid var(--eg-border); border-radius: var(--eg-radius); padding: 32px; display: flex; flex-direction: column; gap: 14px; }
.egh-reviews .stars { display: flex; gap: 3px; color: var(--eg-accent); }
.egh-reviews blockquote { font-family: var(--eg-font-display); font-weight: 600; font-size: clamp(19px, 2.2vw, 25px); line-height: 1.3; color: var(--eg-navy); margin: 0; text-wrap: balance; }
.egh-reviews cite { font-style: normal; font-size: 12.5px; color: var(--eg-muted); }
.egh-reviews .rprod { display: flex; align-items: center; gap: 12px; margin-top: auto; padding-top: 14px; border-top: 1px solid var(--eg-border); text-decoration: none; color: var(--eg-ink); }
.egh-reviews .rprod img { width: 60px; height: 60px; border-radius: var(--eg-radius); object-fit: cover; background: var(--eg-paper); }
.egh-reviews .rprod b { font-family: var(--eg-font-display); font-weight: 600; font-size: 16px; display: block; }
.egh-reviews .rprod small { font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--eg-accent); }
.egh-rail::-webkit-scrollbar, .egh-cats::-webkit-scrollbar { display: none; }
.egh-rail, .egh-cats { scrollbar-width: none; }
.egh-ety { display: grid; gap: 48px; align-items: start; }
@media (min-width: 900px) { .egh-ety { grid-template-columns: .85fr 1.15fr; gap: 96px; } }
.egh-ety .roots { display: flex; flex-direction: column; gap: 24px; }
.egh-ety .root { border-top: 1px solid rgba(255,255,255,.2); padding-top: 16px; }
.egh-ety .root b { font-family: var(--eg-font-display); font-weight: 600; font-size: clamp(40px, 5.6vw, 64px); line-height: 1; display: block; letter-spacing: .03em; }
.egh-ety .root i { font-style: italic; font-family: var(--eg-font-display); font-size: 19px; color: rgba(255,255,255,.66); }
.egh-ety .root span { display: block; font-size: 13.5px; color: rgba(255,255,255,.66); max-width: 34ch; }
.egh-ety .etyc p { color: rgba(255,255,255,.78); font-size: 16.5px; max-width: 58ch; }
.egh-ety .etyc p + p { margin-top: 16px; }
.egh-ety .etyc .lead { font-family: var(--eg-font-display); font-weight: 600; font-size: clamp(23px, 2.6vw, 30px); line-height: 1.28; color: var(--eg-white); max-width: 26ch; }

.egh-cm { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
@media (min-width: 640px) { .egh-cm { grid-template-columns: repeat(4, 1fr); gap: 16px; } }
@media (min-width: 1000px) { .egh-cm { grid-template-columns: repeat(6, 1fr); } }
.egh-cm .cmt { position: relative; aspect-ratio: 1; border-radius: var(--eg-radius); background: var(--sw, var(--eg-paper)); box-shadow: inset 0 0 0 1px rgba(0,0,0,.12); display: block; text-decoration: none; transition: transform 200ms var(--eg-ease), box-shadow 200ms var(--eg-ease); overflow: hidden; }
.egh-cm .cmt:hover { transform: translateY(-3px); box-shadow: inset 0 0 0 1px rgba(0,0,0,.12), 0 10px 26px rgb(39 55 85 / .18); }
/* Paint-drip: two tone-on-tone runs bleeding down from the tile's top edge,
   one light and one dark so at least one reads on every swatch color; they
   run longer on hover, like fresh paint. */
.egh-cm .cmt::before, .egh-cm .cmt::after { content: ''; position: absolute; top: 0; width: 11%; border-radius: 0 0 99px 99px; transition: height 500ms var(--eg-ease); pointer-events: none; }
.egh-cm .cmt::before { left: 14%; height: 26%; background: rgba(255, 255, 255, .22); }
.egh-cm .cmt::after { left: 71%; height: 15%; background: rgba(0, 0, 0, .10); }
.egh-cm .cmt:hover::before { height: 48%; }
.egh-cm .cmt:hover::after { height: 32%; }
@media (prefers-reduced-motion: reduce) { .egh-cm .cmt::before, .egh-cm .cmt::after { transition: none; } }
/* Monochrome is a PAIR of finishes, so its tile is a hard diagonal split of the
   two rather than one flat swatch. It sits third, next to Black and White,
   because that is what it is made of. */
.egh-cm .cmt-mono { background: linear-gradient(115deg, #1a1a1a 0 49.5%, #f5f3ef 50.5% 100%); }
/* Named swatches for the colors eg-color-hex cannot resolve to a single hex.
   Generic first so the two specific ones win. */
/* --- In motion: full-bleed bento mosaic. Third format, 2026-08-05. ---
   Full bleed and gapless on purpose: the stage it replaces centred one square
   clip in a page-width box and read as mostly margin.

   The block ends FLUSH, which took getting the cell arithmetic right rather
   than trusting dense flow. Thirteen clips will not tile a rectangle at four
   columns (13 = three rows plus one), and mixing two-row verticals in only
   moved the hole around. Making the first clip a 2x2 feature resolves it
   exactly: 4 cells + 12 singles = 16 = four rows of four, and two rows of
   eight on mobile. It also gives the block a lead image instead of thirteen
   equal tiles. Verticals are cover-cropped into square cells, which is the
   trade for a grid with no holes in it. */
.egh-motion { overflow: hidden; }
.egh-mosaic { display: grid; gap: 2px; margin-top: 24px; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 640px) { .egh-mosaic { grid-template-columns: repeat(4, 1fr); } }
.egh-mosaic .mo { position: relative; aspect-ratio: 1; overflow: hidden; background: #0d1016;
  text-decoration: none; color: #fff; display: block; }
.egh-mosaic .mo:first-child { grid-column: span 2; grid-row: span 2; }
.egh-mosaic .mo video { width: 100%; height: 100%; object-fit: cover; display: block; }
.egh-mosaic .molab { position: absolute; left: 0; right: 0; bottom: 0; padding: 26px 12px 10px;
  display: flex; align-items: baseline; gap: 8px; font-size: 12.5px;
  background: linear-gradient(transparent, rgba(10,13,18,.8));
  opacity: 0; transition: opacity 180ms var(--eg-ease); }
.egh-mosaic .mo:hover .molab, .egh-mosaic .mo:focus-visible .molab { opacity: 1; }
.egh-mosaic .mo:first-child .molab { opacity: 1; }
@media (hover: none) { .egh-mosaic .molab { opacity: 1; } }
.egh-mosaic .molab b { font-family: var(--eg-font-display); font-weight: 600; font-size: 15px; }
.egh-mosaic .mo:first-child .molab b { font-size: 22px; }
.egh-mosaic .molab span { color: rgba(255,255,255,.8); font-variant-numeric: tabular-nums; }
.egh-mosaic .mo:focus-visible { outline: 2px solid var(--eg-navy); outline-offset: -2px; }
.egh-cm .cmt[data-swatch] { background: #c8ccd0; }
.egh-cm .cmt[data-swatch="multicolor"] { background: conic-gradient(
    #b8392f 0deg 90deg, #e8c65a 90deg 180deg, #3f7a4a 180deg 270deg, #37538c 270deg 360deg); }
.egh-cm .cmt[data-swatch="rainbow"] { background: linear-gradient(115deg,
    #b8392f, #d4732f, #e8c65a, #3f7a4a, #37538c, #6a4d8c); }
.egh-cm .cml { position: absolute; left: 0; right: 0; bottom: 0; padding: 12px; background: rgba(255,255,255,.93); backdrop-filter: blur(6px); border-top: 1px solid rgba(0,0,0,.06); }
.egh-cm .cml b { display: block; font-size: 12.5px; font-weight: 500; color: var(--eg-ink); }
.egh-cm .cml span { font-size: 10.5px; color: var(--eg-muted); font-variant-numeric: tabular-nums; }
.egh-mmhead { margin: 28px 0 16px; }
.egh-mm { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
@media (min-width: 640px) { .egh-mm { grid-template-columns: repeat(4, 1fr); gap: 16px; } }
@media (min-width: 1000px) { .egh-mm { grid-template-columns: repeat(6, 1fr); } }
.egh-mm .mmt { position: relative; aspect-ratio: 1; border-radius: var(--eg-radius); box-shadow: inset 0 0 0 1px rgba(0,0,0,.12); display: block; text-decoration: none; overflow: hidden; transition: transform 200ms var(--eg-ease), box-shadow 200ms var(--eg-ease); }
.egh-mm .mmt:hover { transform: translateY(-3px); box-shadow: inset 0 0 0 1px rgba(0,0,0,.12), 0 10px 26px rgb(39 55 85 / .18); }
.egh-mm .cml { position: absolute; left: 0; right: 0; bottom: 0; padding: 12px; background: rgba(255,255,255,.93); backdrop-filter: blur(6px); border-top: 1px solid rgba(0,0,0,.06); }
.egh-mm .cml b { display: block; font-size: 12.5px; font-weight: 500; color: var(--eg-ink); }
.egh-mm .cml span { font-size: 10.5px; color: var(--eg-muted); font-variant-numeric: tabular-nums; }
.egh-mm .mme { position: absolute; top: 10px; left: 10px; width: 34px; height: 34px; border-radius: var(--eg-radius-pill); background: rgba(255,255,255,.9); backdrop-filter: blur(4px); display: flex; align-items: center; justify-content: center; box-shadow: 0 1px 4px rgba(0,0,0,.12); }
.egh-mm .mme svg { width: 19px; height: 19px; fill: none; stroke: var(--eg-navy); stroke-width: 1.6; }
.egh-mm .mmx-metal { background: linear-gradient(115deg, #b9bcc2 0%, #eceef1 22%, #8f939b 44%, #d8dade 62%, #a6aab2 82%, #e4e6ea 100%); }
.egh-mm .mmx-acrylic { background: linear-gradient(135deg, rgba(255,255,255,.95), rgba(214,226,236,.6) 45%, rgba(255,255,255,.9) 60%, rgba(196,212,226,.75)); }
.egh-mm .mmx-wood { background: repeating-linear-gradient(97deg, #8a613c 0 7px, #9d7146 7px 13px, #7c5634 13px 21px, #a97d52 21px 26px); }
.egh-mm .mmx-glass { background: linear-gradient(150deg, #cfe3e8 0%, #f2fafc 35%, #a9c9d3 60%, #e6f4f8 85%, #bcd8e0 100%); }
.egh-mm .mmx-fabric { background: repeating-conic-gradient(#c9c2b4 0% 25%, #bdb5a5 0% 50%) 0 0/9px 9px, #c4bcac; }
.egh-mm .mmx-ceramic { background: radial-gradient(120% 120% at 30% 20%, #f6f2ea 0%, #e8e0d2 55%, #d9cdb9 100%); }
/* Style rail. Identical tile geometry, emblem badge and label bar to the
   material rail, so color -> material -> style reads as one band with one
   grammar. Each tile is drawn in CSS: the tile IS the style, the way the
   color tile is the color. No imagery, so nothing to source, re-render or
   keep in sync, and the tile cannot change under us when best-seller
   order does. */
/* 2026-08-04, fourth pass. George: "the ones there i cant really see".
   That is a SIZE problem, not a content problem. Six square tiles across a
   1320px wrap is about 200px each, and a whole room rendered at 200px is
   unreadable no matter which room it is. Three across in landscape gives
   roughly 420px, which is where an interior actually reads.
   So: 6-up square becomes 3-up at 4:3, and the label moves out from a bar
   floating over the picture to a line underneath it, so nothing covers the
   image. The tiles are now the biggest thing in the band, which matches
   style being the widest of the three ways in. */
.egh-st { display: grid; grid-template-columns: repeat(1, 1fr); gap: 20px; }
@media (min-width: 560px) { .egh-st { grid-template-columns: repeat(2, 1fr); gap: 20px; } }
@media (min-width: 1000px) { .egh-st { grid-template-columns: repeat(3, 1fr); gap: 24px; } }
.egh-st .stt { position: relative; aspect-ratio: 4 / 3; border-radius: var(--eg-radius); box-shadow: inset 0 0 0 1px rgba(0,0,0,.12); display: block; text-decoration: none; overflow: hidden; transition: transform 200ms var(--eg-ease), box-shadow 200ms var(--eg-ease); }
.egh-st .stt:hover { transform: translateY(-3px); box-shadow: inset 0 0 0 1px rgba(0,0,0,.12), 0 10px 26px rgb(39 55 85 / .18); }
/* The room render sits over the CSS tile, which stays as the fallback ground
   for any style with no interior shot. */
.egh-st .stt img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 500ms var(--eg-ease); }
.egh-st .stt:hover img { transform: scale(1.04); }
@media (prefers-reduced-motion: reduce) { .egh-st .stt, .egh-st .stt img { transition: none; } .egh-st .stt:hover img { transform: none; } }
/* Label sits UNDER the picture now, not over it. A translucent bar across the
   bottom of a 200px tile was covering the part of the room you needed to see. */
.egh-st .stt .cml { position: absolute; left: 0; right: 0; bottom: 0; padding: 16px 14px 12px; background: linear-gradient(to top, rgba(0,0,0,.62), rgba(0,0,0,0)); border: 0; backdrop-filter: none; }
.egh-st .stt .cml b { display: block; font-family: var(--eg-font-display); font-size: 19px; font-weight: 600; color: #fff; letter-spacing: .01em; }
.egh-st .stt .cml span { font-size: 12px; color: rgba(255,255,255,.82); font-variant-numeric: tabular-nums; }
.egh-st .ste { position: absolute; top: 10px; left: 10px; width: 34px; height: 34px; border-radius: var(--eg-radius-pill); background: rgba(255,255,255,.9); backdrop-filter: blur(4px); display: flex; align-items: center; justify-content: center; box-shadow: 0 1px 4px rgba(0,0,0,.12); }
.egh-st .ste svg { width: 19px; height: 19px; fill: none; stroke: var(--eg-navy); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }

/* Minimalist: paper, and two rules. What is left after everything unnecessary. */
.egh-st .stx-minimalist { background:
  linear-gradient(#1a1a1a,#1a1a1a) center 44% / 46% 1px no-repeat,
  linear-gradient(#6b6b6b,#6b6b6b) center 53% / 22% 1px no-repeat,
  #f5f3ef; }
/* Sculptural: a form with weight and a cast shadow, so it reads as an OBJECT
   sitting on a surface rather than as a gradient field. The first cut was too
   diffuse to tell apart from Scandinavian at tile size. */
.egh-st .stx-sculptural { background:
  radial-gradient(26% 7% at 50% 80%, rgba(0,0,0,.34) 0%, rgba(0,0,0,0) 100%),
  radial-gradient(circle at 46% 40%, #fdfcfa 0 6%, #e6e0d5 26%, #c6bcaa 40%, #a19683 48%, rgba(0,0,0,0) 48.6%),
  linear-gradient(170deg, #efeae1, #ddd6c9); }
/* Artisan: canvas weave with one brush sweep. Pulled toward clay so it does not
   sit in the same beige as Scandinavian and Vintage. */
.egh-st .stx-artisan { background:
  linear-gradient(118deg, transparent 34%, rgba(255,255,255,.5) 39%, rgba(255,255,255,.08) 54%, transparent 58%),
  repeating-linear-gradient(90deg, rgba(0,0,0,.06) 0 1px, transparent 1px 5px),
  repeating-linear-gradient(0deg, rgba(0,0,0,.06) 0 1px, transparent 1px 5px),
  linear-gradient(160deg, #d8ad86, #b87f5a); }
/* Scandinavian: concentric arcs of soft light rising off the base, the diffused
   dome the style is actually about. A plain gradient read as nothing. */
.egh-st .stx-scandinavian { background:
  radial-gradient(circle at 50% 97%, rgba(255,255,255,.97) 0 26%, rgba(255,255,255,0) 26.6%),
  radial-gradient(circle at 50% 97%, rgba(255,255,255,.5) 0 41%, rgba(255,255,255,0) 41.6%),
  radial-gradient(circle at 50% 97%, rgba(255,255,255,.26) 0 57%, rgba(255,255,255,0) 57.6%),
  linear-gradient(170deg, #f3ece0 0%, #e4d5bd 60%, #d3bfa1 100%); }
/* Modernist: navy circle against a hard accent diagonal. Brand palette only. */
.egh-st .stx-modernist { background:
  radial-gradient(circle at 34% 38%, #273755 0 25%, transparent 25.5%),
  linear-gradient(56deg, transparent 55%, #c8a24a 55% 61%, transparent 61%),
  #ece7de; }
/* Vintage: halftone dots over warm sepia. */
.egh-st .stx-vintage { background:
  radial-gradient(circle at center, rgba(88,58,32,.30) 22%, transparent 23%) 0 0/9px 9px,
  radial-gradient(circle at center, rgba(88,58,32,.16) 22%, transparent 23%) 4.5px 4.5px/9px 9px,
  linear-gradient(150deg, #ead9bf, #cdb083); }
.egh-matwrap { margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--eg-border); }
.egh-matwrap .matlab { font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--eg-muted); margin: 0 0 16px; font-weight: 500; }
.egh-matwrap .matrow { display: flex; gap: 8px; flex-wrap: wrap; }
.egh-matwrap .mat { display: flex; align-items: baseline; gap: 8px; border: 1px solid var(--eg-border); background: var(--eg-white); border-radius: var(--eg-radius-pill); padding: 8px 16px; text-decoration: none; color: var(--eg-ink); transition: border-color 200ms var(--eg-ease), transform 200ms var(--eg-ease); }
.egh-matwrap .mat:hover { border-color: var(--eg-navy); transform: translateY(-2px); }
.egh-matwrap .mat b { font-size: 13.5px; font-weight: 500; }
.egh-matwrap .mat span { font-size: 11.5px; color: var(--eg-muted); font-variant-numeric: tabular-nums; }

.egh-biz { display: grid; gap: 32px; }
@media (min-width: 820px) { .egh-biz { grid-template-columns: repeat(2, 1fr); gap: 24px; } }
.egh-biz .bizc { border: 1px solid var(--eg-border); border-radius: var(--eg-radius); padding: 0 0 28px; background: var(--eg-white); display: flex; flex-direction: column; gap: 12px; overflow: hidden; transition: box-shadow 200ms var(--eg-ease), transform 200ms var(--eg-ease); }
.egh-biz .bizimg { display: block; aspect-ratio: 16/9; background: var(--eg-paper); margin-bottom: 12px; }
.egh-biz .bizimg img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 320ms var(--eg-ease); }
.egh-biz .bizc:hover .bizimg img { transform: scale(1.03); }
.egh-biz .bizc > :not(.bizimg) { margin-inline: 24px; }
.egh-biz .bizc:hover { box-shadow: 0 8px 24px rgb(39 55 85 / .10); transform: translateY(-2px); }
.egh-biz h3 { font-size: 26px; }
.egh-biz .bizc > p { font-size: 14.5px; color: var(--eg-muted); }
.egh-biz ul { margin: 8px 0 24px; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 8px; }
.egh-biz li { font-size: 13.5px; display: flex; gap: 8px; align-items: flex-start; }
.egh-biz li svg { color: var(--eg-accent); flex-shrink: 0; margin-top: 3px; }
.egh-biz .egh-btn { align-self: flex-start; margin-top: auto; }
/* 2026-08-04 (George: "when i click corporate it doesnt go to the corporate
   page"). The URLs were always right; the card simply was not a link. Only the
   small button at the bottom was, so tapping the image or the word "Corporate"
   did nothing. Stretched-link pattern: one real anchor, whole card clickable,
   no duplicate link for a screen reader or a crawler to wade through. */
.egh-biz .bizc { position: relative; cursor: pointer; }
.egh-biz .bizc .egh-btn.p::after { content: ''; position: absolute; inset: 0; z-index: 1; }
.egh-biz .bizc:focus-within { outline: 2px solid var(--eg-navy); outline-offset: 3px; }

.egh-posts { display: grid; gap: 24px; }
@media (min-width: 820px) { .egh-posts { grid-template-columns: repeat(3, 1fr); } }
.egh-posts .post { display: flex; flex-direction: column; gap: 12px; text-decoration: none; color: var(--eg-ink); }
.egh-posts .postm { display: block; aspect-ratio: 16 / 10; background: var(--eg-paper); border-radius: var(--eg-radius); overflow: hidden; }
.egh-posts .postm img { width: 100%; height: 100%; object-fit: cover; transition: transform 320ms var(--eg-ease); }
.egh-posts .post:hover .postm img { transform: scale(1.04); }
.egh-posts .postk { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--eg-accent); }
.egh-posts h3 { font-size: 20px; }
.egh-posts .post > p { font-size: 13.5px; color: var(--eg-muted); }
/* END_SECTION:eg-v2-home */

/* START_SECTION:eg-v2-lookbook (INDEX:115) */
.eglb { font-family: var(--eg-font-body); color: var(--eg-ink); }
.eglb .wrap { max-width: 1200px; margin: 0 auto; padding-inline: 24px; }
.eglb-crumb { padding: 20px 24px 8px; font-size: 12.5px; color: var(--eg-muted); }
.eglb-crumb a { color: var(--eg-muted); text-decoration: none; }
.eglb-crumb i { font-style: normal; margin: 0 7px; opacity: .5; }
.eglb-eyebrow { font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--eg-muted); font-weight: 500; margin: 0 0 12px; }
.eglb-rule { width: 32px; height: 2px; background: var(--eg-accent); margin: 0 0 16px; }
.eglb-head { padding-top: 24px; padding-bottom: 28px; }
.eglb-head h1 { font-family: var(--eg-font-display); font-weight: 600; font-size: clamp(30px, 4vw, 44px); line-height: 1.08; margin: 0 0 12px; }
.eglb-lede { font-size: 15px; color: var(--eg-muted); max-width: 60ch; line-height: 1.6; margin: 0; }
.eglb-eds { display: grid; grid-template-columns: 1fr; gap: 16px; padding-bottom: 40px; }
@media (min-width: 820px) { .eglb-eds { grid-template-columns: 1fr 1fr; gap: 20px; } }
.eglb-eds a { display: block; border: 1px solid var(--eg-border); border-radius: var(--eg-radius); overflow: hidden; text-decoration: none; color: var(--eg-ink); transition: border-color 200ms var(--eg-ease), transform 200ms var(--eg-ease); }
.eglb-eds a:hover { border-color: var(--eg-navy); transform: translateY(-2px); }
.eglb-eds .edimg { display: block; aspect-ratio: 16/9; background: var(--eg-paper); }
.eglb-eds .edimg img { width: 100%; height: 100%; object-fit: cover; transition: transform 320ms var(--eg-ease); }
.eglb-eds a:hover .edimg img { transform: scale(1.03); }
.eglb-eds .edbody { display: block; padding: 22px 28px 26px; }
.eglb-eds b { display: block; font-family: var(--eg-font-display); font-weight: 600; font-size: clamp(20px, 2.4vw, 26px); line-height: 1.2; margin: 0 0 8px; }
.eglb-eds span { font-size: 13.5px; color: var(--eg-muted); line-height: 1.55; }
.eglb-gate { padding-bottom: 40px; }
.eglb-gate form, .eglb-gate #eglbGateDone { border: 1px solid var(--eg-navy); border-radius: var(--eg-radius); padding: 24px 28px; background: var(--eg-paper); }
.eglb-gate-h { display: block; font-family: var(--eg-font-display); font-weight: 600; font-size: 22px; margin: 0 0 14px; }
.eglb-gate-row { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 10px; }
.eglb-gate-row input { flex: 1; min-width: 220px; padding: 12px 14px; border: 1px solid var(--eg-border); border-radius: var(--eg-radius); font-family: var(--eg-font-body); font-size: 14.5px; }
.eglb-gate-row input:focus { outline: none; border-color: var(--eg-navy); }
.eglb-gate-row button { padding: 12px 24px; border: 0; border-radius: var(--eg-radius); background: var(--eg-navy); color: var(--eg-white); font-family: var(--eg-font-body); font-size: 14.5px; font-weight: 500; cursor: pointer; }
.eglb-gate-row button:disabled { background: #9aa6bb; cursor: not-allowed; }
.eglb-gate-consent { display: flex; gap: 9px; align-items: flex-start; font-size: 12.5px; color: var(--eg-ink); line-height: 1.5; cursor: pointer; margin-bottom: 6px; }
.eglb-gate-consent input { margin-top: 2px; width: 16px; height: 16px; flex: 0 0 auto; accent-color: var(--eg-navy); }
.eglb-gate-fine { font-size: 11.5px; color: var(--eg-muted); margin: 0; }
.eglb-gate-links { display: flex; gap: 10px; flex-wrap: wrap; margin: 0; }
.eglb-band { background: var(--eg-paper); padding: 48px 0; }
.eglb-band h2 { font-family: var(--eg-font-display); font-weight: 600; font-size: clamp(22px, 2.8vw, 30px); margin: 0 0 8px; }
.eglb-sub { font-size: 14px; color: var(--eg-muted); margin: 0 0 18px; }
.eglb-btn { display: inline-block; padding: 12px 24px; border-radius: var(--eg-radius); background: var(--eg-navy); color: var(--eg-white); font-size: 14.5px; font-weight: 500; text-decoration: none; }
.eglb-btn:hover { opacity: .92; }
.eglb-btn.paper { background: var(--eg-paper); color: var(--eg-navy); }
.eglb-btn.paper:hover { background: var(--eg-white); }
.eglb-cta { background: var(--eg-navy); color: var(--eg-white); padding: 64px 0; text-align: center; }
.eglb-cta h2 { font-family: var(--eg-font-display); font-weight: 600; font-size: clamp(24px, 3vw, 32px); color: var(--eg-white); margin: 0 0 10px; }
.eglb-cta p { color: rgba(255,255,255,.75); font-size: 14.5px; max-width: 52ch; margin: 0 auto 22px; }
/* END_SECTION:eg-v2-lookbook */

/* START_SECTION:eg-v2-partners (INDEX:116) */
.egpt { font-family: var(--eg-font-body); color: var(--eg-ink); }
.egpt .wrap { max-width: 1200px; margin: 0 auto; padding-inline: 24px; }
.egpt-crumb { padding: 20px 24px 8px; font-size: 12.5px; color: var(--eg-muted); }
.egpt-crumb a { color: var(--eg-muted); text-decoration: none; }
.egpt-crumb i { font-style: normal; margin: 0 7px; opacity: .5; }
.egpt-eyebrow { font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--eg-muted); font-weight: 500; margin: 0 0 12px; }
.egpt-eyebrow.inv { color: rgba(255,255,255,.62); }
.egpt-rule { width: 32px; height: 2px; background: var(--eg-accent); margin: 0 0 16px; }
.egpt-head { padding-top: 24px; padding-bottom: 40px; }
.egpt-head h1 { font-family: var(--eg-font-display); font-weight: 600; font-size: clamp(30px, 4vw, 44px); line-height: 1.08; margin: 0 0 14px; max-width: 22ch; text-wrap: balance; }
.egpt-lede { font-size: 15.5px; color: var(--eg-muted); max-width: 64ch; line-height: 1.65; margin: 0; }
.egpt-feat { padding-bottom: 56px; }
.egpt-works { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 16px; }
@media (min-width: 820px) { .egpt-works { grid-template-columns: repeat(4, 1fr); } }
.egpt-works a { display: block; text-decoration: none; color: var(--eg-ink); }
.egpt-works img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: var(--eg-radius); border: 1px solid var(--eg-border); display: block; transition: transform 250ms var(--eg-ease); }
.egpt-works a:hover img { transform: translateY(-2px); }
.egpt-works span { display: block; font-size: 12.5px; color: var(--eg-muted); margin-top: 6px; }
.egpt-card { display: grid; grid-template-columns: 1fr; border: 1px solid var(--eg-border); border-radius: var(--eg-radius); overflow: hidden; text-decoration: none; color: var(--eg-ink); transition: border-color 200ms var(--eg-ease); }
@media (min-width: 900px) { .egpt-card { grid-template-columns: 1fr 1fr; } }
.egpt-card:hover { border-color: var(--eg-navy); }
.egpt-card .pcimg { display: block; aspect-ratio: 1; background: var(--eg-paper); }
.egpt-card .pcimg img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.egpt-card .pcbody { display: block; padding: 32px; align-self: center; }
.egpt-card h2 { font-family: var(--eg-font-display); font-weight: 600; font-size: clamp(24px, 3vw, 34px); margin: 0 0 6px; }
.egpt-card .pcmed { font-size: 12.5px; letter-spacing: .08em; text-transform: uppercase; color: var(--eg-muted); margin: 0 0 14px; }
.egpt-card p { font-size: 14.5px; color: var(--eg-muted); line-height: 1.65; margin: 0 0 16px; }
.egpt-card .go { font-size: 13.5px; color: var(--eg-navy); font-weight: 500; }
.egpt-cta { background: var(--eg-navy); color: var(--eg-white); padding: 64px 0; text-align: center; }
.egpt-cta h2 { font-family: var(--eg-font-display); font-weight: 600; font-size: clamp(24px, 3vw, 32px); color: var(--eg-white); margin: 0 0 10px; }
.egpt-cta p { color: rgba(255,255,255,.75); font-size: 14.5px; margin: 0 0 22px; }
.egpt-btn { display: inline-block; padding: 12px 24px; border-radius: var(--eg-radius); background: var(--eg-paper); color: var(--eg-navy); font-size: 14.5px; font-weight: 500; text-decoration: none; }
.egpt-btn:hover { background: var(--eg-white); }
/* END_SECTION:eg-v2-partners */

/* START_SECTION:eg-v2-pdp (INDEX:117) */
.egv2 { font-size: 16px; line-height: 1.6; color: var(--eg-ink); padding-bottom: 74px; }
.egv2 .wrap { max-width: 1320px; margin: 0 auto; padding-inline: 24px; }
.egv2 .wrap.tight { max-width: 1020px; }
.egv2 section { padding: 48px 0; }
.egv2 section.band { background: var(--eg-paper); }
.egv2 h1, .egv2 h2, .egv2 h3 { font-family: var(--eg-font-display); font-weight: 600; letter-spacing: .005em; margin: 0; text-wrap: balance; }
.egv2 h1 { font-size: clamp(36px, 4.4vw, 50px); line-height: 1; color: var(--eg-navy); }
.egv2 h2 { font-size: clamp(27px, 3.4vw, 40px); line-height: 1.1; }
.egv2 h3 { font-size: 19px; line-height: 1.28; }
.egv2 p { margin: 0; }
.egv2 .egv2-eyebrow { font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--eg-muted); font-weight: 500; margin: 0 0 12px; }
.egv2-rule { width: 32px; height: 2px; background: var(--eg-accent); margin: 0 0 16px; }
.egv2 .sh { max-width: 32ch; margin-bottom: 32px; }

.egv2-crumb { display: flex; gap: 8px; align-items: center; font-size: 12px; color: var(--eg-muted); padding-block: 16px; flex-wrap: wrap; }
.egv2-crumb a { color: inherit; text-decoration: none; }
.egv2-crumb a:hover { color: var(--eg-navy); }
.egv2-crumb i { opacity: .4; font-style: normal; }

.egv2-pn { background: var(--eg-navy); border-radius: var(--eg-radius); padding: 8px 12px; display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; align-items: center; }
.egv2-pn a { display: flex; align-items: center; gap: 8px; color: var(--eg-white); text-decoration: none; padding: 8px; border-radius: var(--eg-radius); }
.egv2-pn a:hover { background: rgba(255,255,255,.1); }
.egv2-pn .back { border: 1px solid rgba(255,255,255,.28); }
.egv2-pn b { font-family: var(--eg-font-body); font-size: 13px; font-weight: 500; letter-spacing: .02em; }
.egv2-pn small { font-size: 10px; letter-spacing: .14em; text-transform: uppercase; opacity: .6; }
.egv2-pn .sib { margin-left: auto; display: flex; gap: 8px; }

.egv2-shop { display: grid; gap: 32px; padding: 24px 0 64px; }
@media (min-width: 1024px) { .egv2-shop { grid-template-columns: 1.22fr .78fr; align-items: start; } .egv2-buy { position: sticky; top: calc(var(--header-height, 64px) + 24px); } }

.egv2-stage { display: flex; flex-direction: column; gap: 12px; }
.egv2-viewsw { display: flex; gap: 8px; flex-wrap: wrap; }
/* In the buy box it sits directly above the finish label, so it needs the gap
   the stage version got from the grid. */
.egv2-field > .egv2-viewsw { margin-bottom: 14px; }
.egv2-viewsw button { border: 1px solid var(--eg-border); background: var(--eg-white); border-radius: var(--eg-radius-pill); padding: 7px 16px; font-family: var(--eg-font-body); font-size: 12px; letter-spacing: .04em; color: var(--eg-muted); cursor: pointer; transition: border-color 200ms var(--eg-ease), color 200ms var(--eg-ease), background 200ms var(--eg-ease); }
.egv2-viewsw button:hover { border-color: var(--eg-navy); color: var(--eg-navy); }
.egv2-viewsw button[aria-pressed="true"] { background: var(--eg-navy); border-color: var(--eg-navy); color: var(--eg-white); }
.egv2-viewtag { position: absolute; right: 12px; top: 12px; background: rgba(39,55,85,.9); color: var(--eg-white); border-radius: var(--eg-radius-pill); padding: 5px 12px; font-size: 10.5px; letter-spacing: .08em; text-transform: uppercase; }
.egv2-wm.on-dark { color: var(--eg-white); opacity: .88; mix-blend-mode: normal; text-shadow: 0 1px 4px rgba(0,0,0,.45); }
.egv2-pn .sibtx { display: flex; flex-direction: column; align-items: flex-start; }
.egv2-pn .nx .sibtx { align-items: flex-end; }
.egv2-pn .sib img { width: 36px; height: 36px; border-radius: var(--eg-radius); object-fit: cover; background: rgba(255,255,255,.1); }
.egv2-pn .sib b { font-family: var(--eg-font-display); font-weight: 600; font-size: 16px; max-width: 140px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
@media (max-width: 760px) { .egv2-pn .sibtx { display: none; } }
.egv2-stage-main { background: var(--eg-paper); border-radius: var(--eg-radius); overflow: hidden; aspect-ratio: 4 / 5; position: relative; cursor: zoom-in; }
.egv2-stage-main img { width: 100%; height: 100%; object-fit: cover; transition: opacity 200ms var(--eg-ease); display: block; }
.egv2-wm { position: absolute; left: 16px; top: 16px; font-family: var(--eg-font-display); font-weight: 600; font-size: 18px; letter-spacing: .02em; color: var(--eg-navy); opacity: .62; mix-blend-mode: multiply; pointer-events: none; user-select: none; }
.egv2-chip { position: absolute; left: 12px; bottom: 12px; background: rgba(255,255,255,.95); border: 1px solid var(--eg-border); border-radius: var(--eg-radius-pill); padding: 6px 12px; font-size: 11.5px; letter-spacing: .05em; display: flex; align-items: center; gap: 7px; box-shadow: var(--eg-shadow-soft); }
.egv2-chip b { width: 11px; height: 11px; border-radius: var(--eg-radius-pill); border: 1px solid rgba(0,0,0,.15); flex: none; }
.egv2-chip em { font-style: normal; color: var(--eg-muted); font-size: 10.5px; letter-spacing: .02em;
  padding-left: 7px; border-left: 1px solid var(--eg-border); }
@media (max-width: 420px) { .egv2-chip { max-width: calc(100% - 24px); } .egv2-chip em { display: none; } }

/* Swipe affordance. Sits top-right so it never collides with the colour chip
   (bottom-left) or the zoom hint (bottom-right). Fades out once the shopper has
   actually swiped, which the JS signals by removing the element's hidden state
   handling entirely on first use. */
.egv2-swipehint { position: absolute; right: 12px; top: 12px; background: rgba(26,26,26,.72); color: #fff;
  border-radius: var(--eg-radius-pill); padding: 5px 11px; font-size: 11px; display: flex; align-items: center;
  gap: 6px; pointer-events: none; letter-spacing: .02em; }
@media (hover: hover) and (pointer: fine) { .egv2-swipehint { display: none; } }

.egv2-dots { position: absolute; left: 50%; transform: translateX(-50%); bottom: 12px;
  display: flex; gap: 7px; padding: 6px 9px; border-radius: var(--eg-radius-pill);
  background: rgba(255,255,255,.9); box-shadow: var(--eg-shadow-soft); }
.egv2-dots .egv2-dot { width: 7px; height: 7px; padding: 0; border: 0; border-radius: 50%;
  background: rgba(26,26,26,.22); cursor: pointer; }
.egv2-dots .egv2-dot[aria-selected="true"] { background: var(--eg-navy); }
.egv2-dots .egv2-dot:focus-visible { outline: 2px solid var(--eg-navy); outline-offset: 2px; }
@media (min-width: 1024px) { .egv2-dots { display: none; } }
.egv2-zoomhint { position: absolute; right: 12px; bottom: 12px; background: rgba(255,255,255,.94); border: 1px solid var(--eg-border); border-radius: var(--eg-radius-pill); padding: 5px 12px; font-size: 11px; display: flex; align-items: center; gap: 5px; box-shadow: var(--eg-shadow-soft); pointer-events: none; }
.egv2-thumbs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.egv2-thumbs button { aspect-ratio: 1; border: 1px solid var(--eg-border); background: var(--eg-paper); border-radius: var(--eg-radius); padding: 0; overflow: hidden; position: relative; cursor: pointer; transition: transform 200ms var(--eg-ease); }
.egv2-thumbs button:hover { transform: translateY(-2px); }
.egv2-thumbs button[aria-current="true"] { border-color: var(--eg-navy); }
.egv2-thumbs img { width: 100%; height: 100%; object-fit: cover; display: block; }
.egv2-thumbs em { position: absolute; left: 0; right: 0; bottom: 0; background: rgba(39,55,85,.86); color: var(--eg-white); font-style: normal; font-size: 10px; letter-spacing: .1em; text-transform: uppercase; padding: 4px; text-align: center; }

.egv2-finishes { margin-top: 4px; }
.egv2-finishes .finlab { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--eg-muted); margin: 0 0 10px; font-weight: 500; }
.egv2-finishes .finrow { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.egv2-finishes button { position: relative; aspect-ratio: 4 / 5; border: 1px solid var(--eg-border); background: var(--eg-paper); border-radius: var(--eg-radius); padding: 0; overflow: hidden; cursor: pointer; transition: transform 200ms var(--eg-ease), border-color 200ms var(--eg-ease); }
.egv2-finishes button:hover { transform: translateY(-2px); }
.egv2-finishes button[aria-pressed="true"] { border-color: var(--eg-navy); box-shadow: inset 0 0 0 1px var(--eg-navy); }
.egv2-finishes img { width: 100%; height: 100%; object-fit: cover; display: block; }
.egv2-finishes em { position: absolute; left: 0; right: 0; bottom: 0; background: rgba(39,55,85,.86); color: var(--eg-white); font-style: normal; font-size: 10px; letter-spacing: .1em; text-transform: uppercase; padding: 4px; text-align: center; }
.egv2-buy-head { padding-bottom: 20px; border-bottom: 1px solid var(--eg-border); margin-bottom: 20px; }
.egv2-buy-head h1 { margin-top: 10px; }
.egv2 .h1sub { display: block; font-family: var(--eg-font-body); font-size: 14px; font-weight: 400; letter-spacing: .04em; text-transform: uppercase; color: var(--eg-muted); margin-top: 8px; }
.egv2 .egv2-buy-sub { color: var(--eg-muted); margin-top: 22px; font-size: 15px; line-height: 1.55; }
.egv2-price-row { display: flex; align-items: baseline; gap: 12px; margin-top: 22px; flex-wrap: wrap; }
.egv2-price { font-family: var(--eg-font-display); font-weight: 600; font-size: 34px; color: var(--eg-navy); line-height: 1; }
.egv2-price.sm { font-size: 22px; }
.egv2-was { color: var(--eg-muted); font-size: 15px; }
.egv2 .egv2-stock { display: flex; align-items: center; gap: 8px; font-size: 13.5px; margin-top: 12px; font-weight: 500; color: #3d7a4a; }
.egv2-stock b { width: 7px; height: 7px; border-radius: var(--eg-radius-pill); background: currentColor; }
.egv2-stock.lowstock { color: #b4722e; }
.egv2-stock.soldout { color: #b4472e; }
.egv2-deliver { display: flex; gap: 12px; align-items: flex-start; margin-top: 16px; padding: 12px; background: #eef1f6; border-radius: var(--eg-radius); font-size: 13px; }
.egv2-deliver svg { flex-shrink: 0; margin-top: 2px; color: var(--eg-navy); }

.egv2-field { margin-bottom: 16px; }
.egv2-field .flabel { font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--eg-muted); margin: 0 0 8px; }
.egv2-sws { display: flex; gap: 8px; flex-wrap: wrap; }
.egv2-tiernote { margin: 10px 0 0; font-size: 13.5px; color: var(--eg-navy); font-weight: 500; }
/* Stylized savings panel, shown on products with no variants (no mix panel) */
.egv2-savepanel { margin: 12px 0 0; border: 1px solid var(--eg-border); border-radius: var(--eg-radius); background: var(--eg-paper); padding: 12px 14px; }
.egv2-savepanel .sp-row { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; padding: 5px 0; font-size: 13px; color: var(--eg-muted); }
.egv2-savepanel .sp-row b { color: var(--eg-ink); font-weight: 600; font-variant-numeric: tabular-nums; }
.egv2-savepanel .sp-total { border-top: 1px solid var(--eg-border); margin-top: 4px; padding-top: 9px; }
.egv2-savepanel .sp-total b { font-family: var(--eg-font-display); font-size: 19px; color: var(--eg-navy); }
.egv2-savepanel .sp-save { margin: 8px 0 0; font-size: 12.5px; font-weight: 500; color: #3d7a4a; }
.egv2-stars { display: inline-flex; align-items: center; gap: 8px; margin: 4px 0 12px; text-decoration: none; color: var(--eg-ink); }
.egv2-stars .sset { display: inline-flex; gap: 2px; }
.egv2-stars svg { width: 15px; height: 15px; fill: var(--eg-border); }
.egv2-stars svg.on { fill: var(--eg-navy); }
.egv2-stars b { font-size: 13.5px; font-weight: 600; }
.egv2-stars .scount { font-size: 12.5px; color: var(--eg-muted); border-bottom: 1px solid var(--eg-border); }
.egv2-stars:hover .scount { border-color: var(--eg-navy); color: var(--eg-navy); }
.egv2-revs { display: grid; grid-template-columns: 1fr; gap: 16px; margin-top: 22px; }
@media (min-width: 820px) { .egv2-revs { grid-template-columns: repeat(2, 1fr); gap: 20px; } }
.egv2-revs .rev { margin: 0; padding: 22px 24px; border: 1px solid var(--eg-border); border-radius: var(--eg-radius); background: var(--eg-white); }
.egv2-revs .rstars { display: flex; gap: 2px; margin-bottom: 10px; }
.egv2-revs .rstars svg { width: 14px; height: 14px; fill: var(--eg-navy); }
.egv2-revs .rtitle { display: block; font-family: var(--eg-font-display); font-weight: 600; font-size: 18px; margin-bottom: 6px; }
.egv2-revs blockquote { margin: 0 0 12px; font-size: 14.5px; line-height: 1.65; color: var(--eg-ink); }
.egv2-revs figcaption { font-size: 12.5px; color: var(--eg-muted); }
.egv2-revs .rver { color: var(--eg-navy); font-weight: 500; }
.egv2-revfoot { margin: 18px 0 0; font-size: 12px; color: var(--eg-muted); }
.egv2-o2row { display: flex; gap: 8px; flex-wrap: wrap; }
.egv2-o2row .o2 { border: 1px solid var(--eg-border); background: var(--eg-white); border-radius: var(--eg-radius); padding: 9px 16px; font-family: var(--eg-font-body); font-size: 13.5px; color: var(--eg-ink); cursor: pointer; text-decoration: none; transition: border-color 200ms var(--eg-ease), background 200ms var(--eg-ease), color 200ms var(--eg-ease); }
.egv2-o2row .o2:hover { border-color: var(--eg-navy); }
.egv2-o2row .o2[aria-pressed="true"] { background: var(--eg-navy); border-color: var(--eg-navy); color: var(--eg-white); }
.egv2-o2row .o2[data-stock="0"] { opacity: .45; text-decoration: line-through; }
.egv2-sws .sw { width: 34px; height: 34px; border-radius: var(--eg-radius-pill); border: 1px solid var(--eg-border); padding: 0; cursor: pointer; position: relative; }
.egv2-sws .sw[aria-pressed="true"] { box-shadow: 0 0 0 2px var(--eg-white), 0 0 0 3px var(--eg-navy); }
.egv2-sws .sw:focus-visible { outline: 2px solid var(--eg-navy); outline-offset: 4px; }
.egv2-sws .sw[data-stock="0"] { opacity: .45; }
.egv2-sws .sw[data-stock="0"]::after { content: ""; position: absolute; inset: -1px; border-radius: inherit; background: linear-gradient(to bottom right, transparent 45%, #b4472e 45%, #b4472e 55%, transparent 55%); }
.egv2-select { width: 100%; padding: 10px 12px; border: 1px solid var(--eg-border); border-radius: var(--eg-radius); font-family: var(--eg-font-body); font-size: 14.5px; background: var(--eg-white); color: var(--eg-ink); }

.egv2-notify { margin: 0 0 12px; padding: 12px; border: 1px solid #e8c9bd; background: #fdf4f0; border-radius: var(--eg-radius); font-size: 13px; }
.egv2-notify b { display: block; color: #8f3a22; font-weight: 600; }
.egv2-notify span { color: var(--eg-muted); font-size: 12.5px; }
.egv2-notify-row { display: flex; gap: 8px; margin-top: 10px; }
.egv2-notify-row input { flex: 1; min-width: 0; border: 1px solid var(--eg-border); border-radius: var(--eg-radius); padding: 9px 12px; font-size: 13px; font-family: var(--eg-font-body); background: var(--eg-white); }
.egv2-notify-row input:focus-visible { outline: 2px solid var(--eg-navy); outline-offset: 1px; }
.egv2-notify-row button { border: 1px solid var(--eg-navy); background: var(--eg-navy); color: var(--eg-white); border-radius: var(--eg-radius); padding: 9px 16px; font-size: 13px; font-family: var(--eg-font-body); font-weight: 500; cursor: pointer; white-space: nowrap; }
.egv2-notify-row button:hover { background: var(--eg-white); color: var(--eg-navy); }
.egv2-notify-row button:disabled { opacity: .6; cursor: default; }
.egv2-notify em { display: block; font-style: normal; font-size: 12.5px; margin-top: 8px; color: var(--eg-ink); }

.egv2-btn { display: block; width: 100%; padding: 12px 24px; border-radius: var(--eg-radius); font-family: var(--eg-font-body); font-size: 14.5px; font-weight: 500; cursor: pointer; border: 1px solid var(--eg-navy); letter-spacing: .02em; text-align: center; text-decoration: none; transition: background 200ms var(--eg-ease), transform 200ms var(--eg-ease); }
.egv2-btn.p { background: var(--eg-navy); color: var(--eg-white); }
.egv2-btn.p:hover:not(:disabled) { background: var(--eg-navy-hover); transform: translateY(-1px); }
.egv2-btn.p:disabled { opacity: .5; cursor: not-allowed; }
.egv2-btn:focus-visible { outline: 2px solid var(--eg-navy); outline-offset: 2px; }
.egv2-btn.slim { width: auto; padding: 8px 24px; flex-shrink: 0; }

.egv2 .shopify-payment-button { margin-top: 8px; }
.egv2 .shopify-payment-button__button { min-height: 47px; border-radius: var(--eg-radius); font-size: 14.5px; }
.egv2 .shopify-payment-button__button--branded { min-height: 47px; overflow: hidden; }
.egv2 .shopify-payment-button__button--unbranded { background: var(--eg-white); color: var(--eg-navy); border: 1px solid var(--eg-navy); border-radius: var(--eg-radius); font-family: var(--eg-font-body); font-size: 14.5px; font-weight: 500; padding: 12px 24px; }
.egv2 shopify-payment-terms { display: block; margin-top: 10px; font-size: 12.5px; color: var(--eg-muted); }
.egv2-pay { display: flex; gap: 8px; justify-content: center; margin-top: 12px; flex-wrap: wrap; }
.egv2-payicon { height: 22px; width: auto; border-radius: var(--eg-radius); opacity: .85; }
.egv2 .egv2-paynote { text-align: center; font-size: 11.5px; color: var(--eg-muted); margin-top: 8px; }

.egv2-ladder { border: 1px solid var(--eg-border); border-radius: var(--eg-radius); overflow: hidden; margin-top: 16px; }
.egv2-ladder .lhead { display: flex; justify-content: space-between; align-items: center; padding: 12px; background: var(--eg-navy); color: var(--eg-white); font-size: 12.5px; }
.egv2-ladder .tiers { display: grid; grid-template-columns: repeat(var(--tiercols, 4), minmax(0, 1fr)); }
@media (max-width: 520px) { .egv2-ladder .tiers { grid-template-columns: repeat(3, minmax(0, 1fr)); } .egv2-ladder .tier { border-bottom: 1px solid var(--eg-border); } }
/* "Need more than 10?" stepper, shown only on the top tier. */
.egv2-more { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 10px 12px; border-top: 1px solid var(--eg-border); background: var(--eg-paper); }
.egv2-more .mlab { font-size: 12.5px; color: var(--eg-muted); }
.egv2-more .mlab b { color: var(--eg-ink); font-weight: 600; }
.egv2-more .mctl { display: inline-flex; align-items: center; gap: 2px; border: 1px solid var(--eg-border); border-radius: var(--eg-radius); background: var(--eg-white); overflow: hidden; }
.egv2-more .mbtn { width: 34px; height: 32px; border: 0; background: var(--eg-white); cursor: pointer; font-size: 16px; line-height: 1; color: var(--eg-navy); font-family: var(--eg-font-body); }
.egv2-more .mbtn:hover { background: #eef1f6; }
.egv2-more output { min-width: 34px; text-align: center; font-family: var(--eg-font-display); font-weight: 600; font-size: 16px; color: var(--eg-navy); font-variant-numeric: tabular-nums; }
.egv2-ladder .tier { padding: 12px 4px; text-align: center; border-right: 1px solid var(--eg-border); border-top: 0; border-bottom: 0; border-left: 0; background: var(--eg-white); cursor: pointer; font-family: var(--eg-font-body); }
.egv2-ladder .tier:last-child { border-right: 0; }
.egv2-ladder .tier:hover { background: #eef1f6; }
.egv2-ladder .tier[aria-pressed="true"] { background: #eef1f6; box-shadow: inset 0 -3px 0 var(--eg-navy); }
.egv2-ladder .tier-q { display: block; font-size: 10.5px; letter-spacing: .08em; text-transform: uppercase; color: var(--eg-muted); }
.egv2-ladder .tier[aria-pressed="true"] .tier-q { color: var(--eg-navy); }
.egv2-ladder .tier-p { display: block; font-family: var(--eg-font-display); font-weight: 600; font-size: 19px; margin-top: 2px; color: var(--eg-navy); }
.egv2-ladder .tier-s { display: block; font-size: 10px; color: #3d7a4a; margin-top: 1px; font-weight: 500; }

.egv2-mix { padding: 12px; border-top: 1px solid var(--eg-border); background: var(--eg-paper); }
.egv2-mix .mixlab { font-size: 11px; letter-spacing: .06em; text-transform: uppercase; color: var(--eg-muted); margin: 0 0 8px; }
.egv2-mix .mixrow { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 5px 0; }
.egv2-mix .mixname { display: flex; align-items: center; gap: 8px; font-size: 13.5px; }
.egv2-mix .mixname i { width: 16px; height: 16px; border-radius: var(--eg-radius-pill); border: 1px solid rgba(0,0,0,.15); display: inline-block; }
.egv2-mix .stepper { display: flex; align-items: center; border: 1px solid var(--eg-border); border-radius: var(--eg-radius); background: var(--eg-white); }
.egv2-mix .stepper button { width: 28px; height: 28px; border: 0; background: none; color: var(--eg-navy); font-size: 15px; cursor: pointer; }
.egv2-mix .stepper button:disabled { opacity: .3; cursor: default; }
/* Typeable quantity per line. -moz-appearance/appearance strip the native
   spinners, which would sit next to our own buttons and read as duplicates. */
.egv2-mix .stepper .qn { width: 44px; min-width: 44px; text-align: center; font-size: 13.5px; font-variant-numeric: tabular-nums; border: 0; background: transparent; font-family: var(--eg-font-body); color: var(--eg-ink); padding: 0; -moz-appearance: textfield; appearance: textfield; }
.egv2-mix .stepper .qn::-webkit-outer-spin-button,
.egv2-mix .stepper .qn::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.egv2-mix .stepper .qn:focus { outline: 2px solid var(--eg-navy); outline-offset: -2px; border-radius: 2px; }
.egv2-mix .mixhelp { font-size: 11.5px; color: var(--eg-muted); margin: -4px 0 10px; }
.egv2-more input#egv2MoreQty { width: 52px; text-align: center; border: 0; background: transparent; font-family: var(--eg-font-display); font-weight: 600; font-size: 16px; color: var(--eg-navy); font-variant-numeric: tabular-nums; -moz-appearance: textfield; appearance: textfield; }
.egv2-more input#egv2MoreQty::-webkit-outer-spin-button,
.egv2-more input#egv2MoreQty::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.egv2-mix .mixbar { height: 4px; background: var(--eg-border); border-radius: var(--eg-radius-pill); margin: 12px 0 8px; overflow: hidden; }
.egv2-mix .mixbar i { display: block; height: 100%; background: var(--eg-navy); width: 0; transition: width 200ms var(--eg-ease); }
/* The earned-tier band. Navy so it reads as the live state of the ladder above
   it, not as another row of small print. */
.egv2-mix .mixtier { display: flex; flex-wrap: wrap; align-items: baseline; gap: 6px 12px;
  background: var(--eg-navy); color: var(--eg-white); border-radius: var(--eg-radius);
  padding: 10px 12px; margin: 4px 0 10px; }
.egv2-mix .mixtier .mt-band { font-size: 10.5px; letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255,255,255,.72); }
.egv2-mix .mixtier .mt-each { font-family: var(--eg-font-body); font-size: 13px; color: rgba(255,255,255,.9); }
.egv2-mix .mixtier .mt-each b { font-family: var(--eg-font-display); font-weight: 600; font-size: 20px;
  color: var(--eg-white); margin-right: 2px; }
.egv2-mix .mixtier .mt-next { margin-left: auto; font-size: 11.5px; color: rgba(255,255,255,.72); text-align: right; }
@media (max-width: 420px) { .egv2-mix .mixtier .mt-next { margin-left: 0; width: 100%; text-align: left; } }
.egv2-mix .mixfoot { display: flex; justify-content: space-between; align-items: baseline; font-size: 12.5px; }
.egv2-mix .save { color: #3d7a4a; font-weight: 500; }
.egv2-mix .sum { color: var(--eg-navy); font-weight: 600; }
.egv2-teamlink { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-top: 16px; padding: 12px; border: 1px solid var(--eg-border); border-left: 3px solid var(--eg-navy); border-radius: var(--eg-radius); font-size: 13.5px; text-decoration: none; color: var(--eg-ink); transition: background 200ms var(--eg-ease); }
.egv2-teamlink:hover { background: var(--eg-paper); }
.egv2-teamlink b { display: block; font-weight: 500; }
.egv2-teamlink small { font-size: 11.5px; color: var(--eg-muted); }
.egv2-teamlink svg { color: var(--eg-navy); flex-shrink: 0; }
.egv2-speclink { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-top: 16px; padding: 12px; border: 1px solid var(--eg-border); border-radius: var(--eg-radius); font-size: 13.5px; text-decoration: none; color: var(--eg-ink); transition: border-color 200ms var(--eg-ease), background 200ms var(--eg-ease); }
.egv2-speclink:hover { border-color: var(--eg-navy); background: var(--eg-paper); }
.egv2-speclink b { display: block; font-weight: 500; }
.egv2-speclink small { font-size: 11.5px; color: var(--eg-muted); }
.egv2-speclink svg { color: var(--eg-navy); flex-shrink: 0; }

.egv2-trustband { background: var(--eg-paper); border-top: 1px solid var(--eg-border); border-bottom: 1px solid var(--eg-border); padding: 32px 0; }
.egv2-trustband .tg { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
@media (min-width: 700px) { .egv2-trustband .tg { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1000px) { .egv2-trustband .tg { grid-template-columns: repeat(6, 1fr); } }
.egv2-trustband .tg > div { display: flex; flex-direction: column; gap: 5px; align-items: flex-start; }
.egv2-trustband .ic { color: var(--eg-accent); }
.egv2-trustband b { font-size: 12.5px; font-weight: 500; }
.egv2-trustband span { font-size: 11px; color: var(--eg-muted); line-height: 1.4; }

.egv2-cards { display: grid; gap: 16px; }
@media (min-width: 768px) { .egv2-cards { grid-template-columns: repeat(3, 1fr); } }
.egv2-cards .card { background: var(--eg-white); border: 1px solid var(--eg-border); border-radius: var(--eg-radius); padding: 24px; transition: box-shadow 200ms var(--eg-ease), transform 200ms var(--eg-ease); }
.egv2-cards .card:hover { box-shadow: 0 8px 24px rgb(39 55 85 / .10); transform: translateY(-2px); }
.egv2-cards .cn { font-family: var(--eg-font-display); font-weight: 600; font-size: 14px; color: var(--eg-accent); display: block; margin-bottom: 12px; letter-spacing: .08em; }
.egv2-cards h3 { margin-bottom: 8px; }
.egv2-cards p { font-size: 14.5px; color: var(--eg-muted); }

.egv2-two { display: grid; gap: 32px; align-items: center; }
.egv2-motion-sub { font-size: 14.5px; color: var(--eg-muted); margin: 0 0 20px; max-width: 44ch; }
.egv2-motion-vid video { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: var(--eg-radius); border: 1px solid var(--eg-border); background: var(--eg-white); display: block; }
.egv2-mgrid { display: grid; grid-template-columns: repeat(var(--mgcols-m, 2), minmax(0, 1fr)); gap: 12px; }
@media (min-width: 900px) {
  .egv2-mgrid {
    grid-template-columns: repeat(var(--mgcols, 4), minmax(0, 1fr));
    gap: 16px;
    /* 336px per column matches the tile width a full four-up gets inside the
       1320px wrap, so a two-clip product renders two tiles the same size as
       four rather than two oversized ones. */
    max-width: calc(var(--mgcols, 4) * 336px);
  }
}
.egv2-mgrid .mg { position: relative; overflow: hidden; border-radius: var(--eg-radius); border: 1px solid var(--eg-border); background: var(--eg-white); aspect-ratio: 1; }
.egv2-mgrid .mg video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
@media (min-width: 900px) { .egv2-two { grid-template-columns: 1fr 1fr; gap: 64px; } }
.egv2-dimtable { list-style: none; margin: 24px 0 0; padding: 0; display: flex; flex-direction: column; }
.egv2-dimtable li { display: flex; justify-content: space-between; gap: 16px; padding: 12px 0; border-bottom: 1px solid var(--eg-border); font-size: 14.5px; }
.egv2-dimtable li:first-child { border-top: 1px solid var(--eg-border); }
.egv2-dimtable span { color: var(--eg-muted); }
.egv2-dimtable b { font-weight: 500; text-align: right; }
.egv2 .egv2-dimnote { color: var(--eg-muted); margin-top: 16px; max-width: 46ch; font-size: 14px; }
.egv2-dimwrap { background: var(--eg-white); border: 1px solid var(--eg-border); border-radius: var(--eg-radius); overflow: hidden; }
.egv2-dimwrap .dimimg { aspect-ratio: 1; background: var(--eg-white); }
.egv2-dimwrap img { width: 100%; height: 100%; object-fit: contain; display: block; }

/* 2026-08-04 (George): swiping the comparison sideways used to carry the row
   label off screen, so you were reading a column of ticks with no idea what
   they answered. The first column is now pinned. border-collapse must be
   `separate` for that: with `collapse`, borders belong to the table rather
   than the cell and a sticky cell renders without them. */
.egv2-cmp-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.egv2-cmp { width: 100%; min-width: 640px; border-collapse: separate; border-spacing: 0; font-size: 15.5px; }
.egv2-cmp th, .egv2-cmp td { padding: 15px 14px; border-bottom: 1px solid var(--eg-border); text-align: center; }
.egv2-cmp thead th { font-family: var(--eg-font-display); font-weight: 600; font-size: 20px; color: var(--eg-ink); border-bottom: 2px solid var(--eg-ink); }
.egv2-cmp thead th:first-child, .egv2-cmp tbody th { text-align: left; width: 36%; font-family: var(--eg-font-body); font-size: 14.5px; font-weight: 400; color: var(--eg-ink); }
.egv2-cmp thead th:first-child, .egv2-cmp tbody th:first-child {
  position: sticky; left: 0; z-index: 2;
  background: var(--eg-white);
  box-shadow: 1px 0 0 var(--eg-border), 6px 0 8px -6px rgba(26,26,26,.16);
}
.egv2-cmp .own { background: #eef1f6; }
.egv2-cmp thead .own { color: var(--eg-navy); }
.egv2-cmp .yes { color: #3d7a4a; font-size: 17px; }
/* 2026-08-04 (George, Boletus: "i dont know why it is still showing nothing
   checked in the amazon column"). Nothing was broken: every Amazon cell was a
   "no". But at #c9c9c9 a whole column of them read as an empty column rather
   than as six answers, so the table looked unrendered. Darkened to a legible
   weight and given a cross rather than a minus, so a no looks like a stated
   answer instead of a missing one. */
.egv2-cmp .no { color: #9a5c56; font-size: 15px; }
.egv2-cmp .part { color: var(--eg-muted); font-size: 11.5px; letter-spacing: .04em;
  text-transform: uppercase; }
.egv2-cmp .part { color: var(--eg-accent); font-size: 12px; }
.egv2 .egv2-cmp-note { font-size: 12.5px; color: var(--eg-muted); margin-top: 16px; max-width: 60ch; }

.egv2-qa { display: grid; gap: 48px; }
@media (min-width: 900px) { .egv2-qa { grid-template-columns: 1.1fr .9fr; gap: 64px; align-items: start; } }
.egv2-askc { background: var(--eg-paper); border: 1px solid var(--eg-border); border-radius: var(--eg-radius); padding: 24px; }
.egv2-askc h3 { margin-bottom: 16px; }
.egv2-askform label { display: block; font-size: 11px; letter-spacing: .06em; text-transform: uppercase; color: var(--eg-muted); margin: 0 0 6px; }
.egv2-askform input, .egv2-askform textarea { width: 100%; padding: 8px 12px; border: 1px solid var(--eg-border); border-radius: var(--eg-radius); font-family: var(--eg-font-body); font-size: 14.5px; background: var(--eg-white); color: var(--eg-ink); margin-bottom: 14px; box-sizing: border-box; }
.egv2-askform input:focus, .egv2-askform textarea:focus { outline: 2px solid var(--eg-navy); outline-offset: -1px; border-color: var(--eg-navy); }
.egv2-askform .askerr { font-size: 13px; color: var(--eg-ink); background: var(--eg-white); border: 1px solid var(--eg-border); border-left: 3px solid var(--eg-navy); border-radius: var(--eg-radius); padding: 10px 12px; margin: 0 0 14px; }
.egv2-askform textarea { min-height: 92px; resize: vertical; }
.egv2-askform .asked { font-size: 14.5px; color: var(--eg-navy); font-weight: 500; }
.egv2-askc .askmeta { font-size: 12px; color: var(--eg-muted); margin-top: 12px; line-height: 1.5; }
.egv2-railh { display: flex; justify-content: space-between; align-items: baseline; gap: 24px; margin-bottom: 24px; }
.egv2-railh a { font-size: 13.5px; color: var(--eg-navy); text-decoration: none; }
.egv2-railh a:hover { text-decoration: underline; }
.egv2-rail { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(190px, 1fr); gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 12px; }
@media (min-width: 900px) { .egv2-rail { grid-auto-flow: row; grid-template-columns: repeat(4, 1fr); overflow: visible; } }
.egv2-rail .pc { text-decoration: none; color: var(--eg-ink); scroll-snap-align: start; }
.egv2-rail .pci { display: block; aspect-ratio: 1; border-radius: var(--eg-radius); overflow: hidden; background: var(--eg-paper); margin-bottom: 8px; }
.egv2-rail .pci img { width: 100%; height: 100%; object-fit: cover; transition: transform 320ms var(--eg-ease); }
.egv2-rail .pc:hover .pci img { transform: scale(1.04); }
.egv2-rail .pc b { display: block; font-weight: 400; font-size: 14.5px; }
.egv2-rail .pcp { font-size: 13.5px; color: var(--eg-muted); }
.egv2-frows { display: grid; gap: 24px; }
.egv2-frows .frow { display: grid; gap: 12px; }
@media (min-width: 900px) { .egv2-frows .frow { grid-template-columns: 200px 1fr; gap: 24px; align-items: start; } }
.egv2-frows .fhead { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--eg-ink); padding: 10px 0; }
.egv2-frows .fhead i { width: 18px; height: 18px; border-radius: var(--eg-radius-pill); border: 1px solid rgba(0,0,0,.15); flex-shrink: 0; }
.egv2-frows .fhead i.multi { background: conic-gradient(#b8392f, #e8c65a, #3f7a4a, #37538c, #6a4d8c, #b8392f); }
.egv2-frows .fhead b { font-family: var(--eg-font-display); font-weight: 600; font-size: 19px; }
.egv2-frows .fhead span { font-size: 12.5px; color: var(--eg-navy); margin-left: auto; white-space: nowrap; }
@media (min-width: 900px) { .egv2-frows .fhead { flex-direction: column; align-items: flex-start; gap: 6px; } .egv2-frows .fhead span { margin-left: 0; } }
.egv2-frows .fthumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.egv2-frows .fthumbs a { display: block; text-decoration: none; color: var(--eg-ink); }
.egv2-frows .fthumbs img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: var(--eg-radius); border: 1px solid var(--eg-border); display: block; transition: transform 250ms var(--eg-ease); }
.egv2-frows .fthumbs a:hover img { transform: translateY(-2px); }
.egv2-frows .fthumbs span { display: block; font-size: 11.5px; color: var(--eg-muted); margin-top: 5px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.egv2-dimwrap .dimbar { display: flex; gap: 8px; padding: 12px; border-top: 1px solid var(--eg-border); justify-content: center; background: var(--eg-paper); flex-wrap: wrap; }
.egv2-dimwrap .dimbar button { border: 1px solid var(--eg-border); background: var(--eg-white); border-radius: var(--eg-radius-pill); padding: 5px 12px; font-size: 12px; display: flex; align-items: center; gap: 6px; cursor: pointer; font-family: var(--eg-font-body); color: var(--eg-ink); }
.egv2-dimwrap .dimbar button[aria-pressed="true"] { background: var(--eg-navy); border-color: var(--eg-navy); color: var(--eg-white); }
.egv2-dimwrap .dimbar i { width: 11px; height: 11px; border-radius: var(--eg-radius-pill); border: 1px solid rgba(0,0,0,.2); display: inline-block; }
.egv2-faq { border-top: 1px solid var(--eg-border); }
.egv2-faq details { border-bottom: 1px solid var(--eg-border); }
.egv2-faq summary { cursor: pointer; padding: 16px 0; font-size: 16.5px; list-style: none; display: flex; justify-content: space-between; gap: 16px; align-items: center; font-family: var(--eg-font-display); font-weight: 600; }
.egv2-faq summary::-webkit-details-marker { display: none; }
.egv2-faq summary:focus-visible { outline: 2px solid var(--eg-navy); outline-offset: -2px; }
.egv2-faq .chev { flex-shrink: 0; transition: transform 200ms var(--eg-ease); color: var(--eg-accent); }
.egv2-faq details[open] .chev { transform: rotate(180deg); }
.egv2-faq details p { padding: 0 0 16px; color: var(--eg-muted); font-size: 14.5px; max-width: 62ch; }

.egv2-minitrust { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; margin-top: 14px; font-size: 11.5px; color: var(--eg-muted); }
.egv2-minitrust span { display: flex; align-items: center; gap: 6px; }
.egv2-minitrust svg { color: var(--eg-accent); }
.egv2-social { padding: 32px 0 48px; }
.egv2-social .slab { text-align: center; font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--eg-muted); margin: 0 0 16px; }
.egv2-social .row { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.egv2-social .row a { color: var(--eg-muted); opacity: .8; transition: opacity 200ms var(--eg-ease), transform 200ms var(--eg-ease), color 200ms var(--eg-ease); }
.egv2-social .row a:hover { opacity: 1; color: var(--eg-navy); transform: translateY(-2px); }
.egv2-social .row svg { width: 36px; height: 36px; }
.egv2-lb { position: fixed; inset: 0; background: rgba(26,26,26,.94); z-index: 90; display: none; padding: 24px; }
.egv2-lb[open] { display: flex; align-items: center; justify-content: center; }
.egv2-lb img { max-width: min(92vw, 900px); max-height: 88vh; width: auto; border-radius: var(--eg-radius); }
.egv2-lb .lb-close { position: absolute; top: 24px; right: 24px; width: 40px; height: 40px; border-radius: var(--eg-radius-pill); background: transparent; border: 1px solid rgba(255,255,255,.4); color: var(--eg-white); font-size: 20px; cursor: pointer; }

.egv2-sticky { position: fixed; left: 0; right: 0; bottom: 0; background: rgba(255,255,255,.97); backdrop-filter: blur(10px); border-top: 1px solid var(--eg-border); z-index: 50; transform: translateY(100%); transition: transform 320ms var(--eg-ease); }
.egv2-sticky.in { transform: none; }
.egv2-sticky .sin { max-width: 1320px; margin: 0 auto; padding: 8px 24px; display: flex; align-items: center; gap: 16px; }
.egv2-sticky .simg { width: 46px; height: 46px; border-radius: var(--eg-radius); overflow: hidden; background: var(--eg-paper); flex-shrink: 0; }
.egv2-sticky .simg img { width: 100%; height: 100%; object-fit: cover; display: block; }
.egv2-sticky .stx { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.egv2-sticky .stx b { font-family: var(--eg-font-display); font-weight: 600; font-size: 17px; }
.egv2-sticky .stx span { font-size: 12px; color: var(--eg-muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
@media (max-width: 640px) { .egv2-sticky .stx span { display: none; } }
@media (min-width: 768px) { .egv2 section { padding: 64px 0; } }

@media (prefers-reduced-motion: reduce) {
  .egv2 *, .egv2 *::before, .egv2 *::after { transition: none !important; animation: none !important; }
}
/* END_SECTION:eg-v2-pdp */

/* START_SECTION:eg-v2-press (INDEX:118) */
.egpr { font-family: var(--eg-font-body); color: var(--eg-ink); }
.egpr .wrap { max-width: 1200px; margin: 0 auto; padding-inline: 24px; }
.egpr-crumb { padding: 20px 24px 8px; font-size: 12.5px; color: var(--eg-muted); }
.egpr-crumb a { color: var(--eg-muted); text-decoration: none; }
.egpr-crumb i { font-style: normal; margin: 0 7px; opacity: .5; }
.egpr-eyebrow { font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--eg-muted); font-weight: 500; margin: 0 0 12px; }
.egpr-rule { width: 32px; height: 2px; background: var(--eg-accent); margin: 0 0 16px; }
.egpr-head { padding-top: 24px; padding-bottom: 24px; }
.egpr-head h1 { font-family: var(--eg-font-display); font-weight: 600; font-size: clamp(30px, 4vw, 44px); line-height: 1.08; margin: 0 0 12px; max-width: 24ch; text-wrap: balance; }
.egpr-lede { font-size: 15px; color: var(--eg-muted); line-height: 1.6; margin: 0; }
.egpr-lede a { color: var(--eg-navy); }
.egpr-band { padding: 44px 0; }
.egpr-band--paper { background: var(--eg-paper); }
.egpr-band h2 { font-family: var(--eg-font-display); font-weight: 600; font-size: clamp(21px, 2.4vw, 26px); margin: 0 0 12px; }
.egpr-body { font-size: 15px; line-height: 1.7; color: var(--eg-ink); max-width: 68ch; margin: 0 0 20px; }
.egpr-name { display: grid; grid-template-columns: 1fr; gap: 14px; max-width: 640px; }
@media (min-width: 700px) { .egpr-name { grid-template-columns: 1fr 1fr; } }
.egpr-name div { border: 1px solid var(--eg-border); border-radius: var(--eg-radius); padding: 16px 18px; }
.egpr-name b { font-family: var(--eg-font-display); font-size: 22px; letter-spacing: .04em; }
.egpr-name span { display: block; font-size: 13.5px; color: var(--eg-muted); line-height: 1.6; margin-top: 4px; }
.egpr-imgs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.egpr-imgs img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: var(--eg-radius); border: 1px solid var(--eg-border); display: block; }
.egpr-two { display: grid; grid-template-columns: 1fr; gap: 28px; }
@media (min-width: 820px) { .egpr-two { grid-template-columns: 1fr 1fr; gap: 48px; } }
.egpr-cta { background: var(--eg-navy); color: var(--eg-white); padding: 64px 0; text-align: center; }
.egpr-cta h2 { font-family: var(--eg-font-display); font-weight: 600; font-size: clamp(24px, 3vw, 32px); color: var(--eg-white); margin: 0 0 10px; }
.egpr-cta p { color: rgba(255,255,255,.75); font-size: 14.5px; margin: 0 0 22px; }
.egpr-btn { display: inline-block; padding: 12px 24px; border-radius: var(--eg-radius); background: var(--eg-paper); color: var(--eg-navy); font-size: 14.5px; font-weight: 500; text-decoration: none; }
.egpr-btn:hover { background: var(--eg-white); }
/* END_SECTION:eg-v2-press */

/* START_SECTION:eg-v2-scene (INDEX:119) */
.egsc2 { font-family: var(--eg-font-body); color: var(--eg-ink); }
.egsc2 .wrap { max-width: 1200px; margin: 0 auto; padding-inline: 24px; }
.egsc2-crumb { padding: 20px 24px 8px; font-size: 12.5px; color: var(--eg-muted); }
.egsc2-crumb a { color: var(--eg-muted); text-decoration: none; }
.egsc2-crumb i { font-style: normal; margin: 0 7px; opacity: .5; }
.egsc2-eyebrow { font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--eg-muted); font-weight: 500; margin: 0 0 12px; }
.egsc2-rule { width: 32px; height: 2px; background: var(--eg-accent); margin: 0 0 16px; }
.egsc2-hero { display: grid; grid-template-columns: 1fr; gap: 28px; padding-top: 16px; padding-bottom: 48px; align-items: center; }
@media (min-width: 960px) { .egsc2-hero { grid-template-columns: 1.35fr 1fr; gap: 56px; } }
.egsc2-media img { width: 100%; height: auto; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--eg-radius); border: 1px solid var(--eg-border); display: block; }
.egsc2-stage { position: relative; }
.egsc2-stage img { aspect-ratio: auto; object-fit: unset; }
.egsc2-spot { position: absolute; transform: translate(-50%, -50%); z-index: 2; display: block; }
.egsc2-spot-dot { display: block; width: 24px; height: 24px; border-radius: 50%; background: var(--eg-navy); border: 2px solid var(--eg-white); box-shadow: 0 1px 6px rgba(0, 0, 0, .35); position: relative; transition: transform 160ms var(--eg-ease); }
.egsc2-spot-dot::before, .egsc2-spot-dot::after { content: ''; position: absolute; top: 50%; left: 50%; background: var(--eg-white); transform: translate(-50%, -50%); }
.egsc2-spot-dot::before { width: 10px; height: 2px; }
.egsc2-spot-dot::after { width: 2px; height: 10px; }
.egsc2-spot:hover .egsc2-spot-dot, .egsc2-spot:focus-visible .egsc2-spot-dot { transform: scale(1.12); }
.egsc2-spot-tip { position: absolute; bottom: calc(100% + 8px); left: 50%; transform: translateX(-50%); background: var(--eg-white); border: 1px solid var(--eg-border); border-radius: var(--eg-radius); padding: 6px 10px; white-space: nowrap; box-shadow: 0 2px 10px rgba(0, 0, 0, .12); opacity: 0; pointer-events: none; transition: opacity 160ms var(--eg-ease); }
.egsc2-spot.flip .egsc2-spot-tip { left: auto; right: -8px; transform: none; }
.egsc2-spot:hover .egsc2-spot-tip, .egsc2-spot:focus-visible .egsc2-spot-tip { opacity: 1; }
.egsc2-spot-tip b { display: block; font-size: 12.5px; font-weight: 500; color: var(--eg-ink); }
.egsc2-spot-tip em { font-style: normal; font-size: 11.5px; color: var(--eg-muted); }
.egsc2-spot.on .egsc2-spot-dot { background: var(--eg-white); }
.egsc2-spot.on .egsc2-spot-dot::before, .egsc2-spot.on .egsc2-spot-dot::after { background: var(--eg-navy); }
.egsc2-hint { font-size: 13px; color: var(--eg-muted); margin: 0 0 14px; }
.egsc2-panel { animation: egsc2fade 240ms var(--eg-ease); }
@keyframes egsc2fade { from { opacity: 0; transform: translateX(10px); } to { opacity: 1; transform: none; } }
.egsc2-panel img { width: min(240px, 60%); aspect-ratio: 1; object-fit: cover; border-radius: var(--eg-radius); border: 1px solid var(--eg-border); display: block; margin-bottom: 16px; }
.egsc2-panel h2 { font-family: var(--eg-font-display); font-weight: 600; font-size: clamp(24px, 3vw, 34px); margin: 0 0 6px; }
.egsc2-panel-price { font-size: 15px; color: var(--eg-muted); margin: 0 0 18px; }
.egsc2-panel-ctas { display: flex; flex-wrap: wrap; gap: 0 10px; }
.egsc2-panel-close { background: none; border: 0; padding: 0 0 14px; font-family: var(--eg-font-body); font-size: 12.5px; color: var(--eg-muted); cursor: pointer; }
.egsc2-panel-close:hover { color: var(--eg-navy); }
.egsc2 .egsc2-panel-add.qa--row { display: inline-block; margin: 0 10px 10px 0; padding: 12px 24px; background: var(--eg-navy); color: var(--eg-white); border: 0; border-radius: var(--eg-radius); font-size: 14.5px; font-weight: 500; }
.egsc2 .egsc2-panel-add.qa--row:hover { opacity: .92; background: var(--eg-navy); color: var(--eg-white); }
.egsc2-side h1 { font-family: var(--eg-font-display); font-weight: 600; font-size: clamp(30px, 4vw, 44px); line-height: 1.08; margin: 0 0 10px; }
.egsc2-sub { font-size: 15px; color: var(--eg-muted); line-height: 1.6; margin: 0 0 16px; }
.egsc2-tot { font-size: 14px; color: var(--eg-muted); margin: 0 0 18px; }
.egsc2-tot b { font-size: 19px; color: var(--eg-ink); }
.egsc2-tot em { font-style: normal; font-size: 12px; }
.egsc2-btn { display: inline-block; margin: 0 10px 10px 0; padding: 12px 24px; border-radius: var(--eg-radius); background: var(--eg-navy); color: var(--eg-white); font-size: 14.5px; font-weight: 500; text-decoration: none; border: 0; cursor: pointer; font-family: var(--eg-font-body); }
.egsc2-btn:hover { opacity: .92; }
.egsc2-btn.ghost { background: transparent; border: 1px solid var(--eg-border); color: var(--eg-navy); }
.egsc2-btn.ghost:hover { border-color: var(--eg-navy); opacity: 1; }
.egsc2-btn.paper { background: var(--eg-paper); color: var(--eg-navy); }
.egsc2-btn.paper:hover { background: var(--eg-white); }
.egsc2-pieces { padding-bottom: 56px; }
.egsc2-pieces h2 { font-family: var(--eg-font-display); font-weight: 600; font-size: clamp(24px, 3vw, 32px); margin: 0 0 20px; }
.egsc2-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px 16px; }
@media (min-width: 900px) { .egsc2-grid { grid-template-columns: repeat(4, 1fr); } }
.egsc2 .pc2 { display: block; text-decoration: none; color: var(--eg-ink); }
.egsc2 .pci2 { display: block; aspect-ratio: 1; border-radius: var(--eg-radius); overflow: hidden; border: 1px solid var(--eg-border); background: var(--eg-paper); margin-bottom: 10px; }
.egsc2 .pci2 img { width: 100%; height: 100%; object-fit: cover; transition: transform 300ms var(--eg-ease); }
.egsc2 .pc2:hover .pci2 img { transform: scale(1.03); }
.egsc2 .pc2 b { display: block; font-weight: 500; font-size: 14.5px; }
.egsc2 .pp2 { font-size: 13.5px; color: var(--eg-muted); }
.egsc2 .qa--row { display: block; margin-top: 8px; padding: 8px 0; text-align: center; border: 1px solid var(--eg-navy); border-radius: var(--eg-radius); font-size: 12.5px; font-weight: 500; color: var(--eg-navy); cursor: pointer; transition: background 160ms var(--eg-ease), color 160ms var(--eg-ease); }
.egsc2 .qa--row:hover, .egsc2 .qa--row.qa--done { background: var(--eg-navy); color: var(--eg-white); }
.egsc2-cta { background: var(--eg-navy); color: var(--eg-white); padding: 56px 0; text-align: center; }
.egsc2-cta h2 { font-family: var(--eg-font-display); font-weight: 600; font-size: clamp(22px, 2.8vw, 30px); color: var(--eg-white); margin: 0 0 18px; }
/* END_SECTION:eg-v2-scene */

/* START_SECTION:eg-v2-search (INDEX:120) */
.egs { padding: 32px 24px 96px; }
.egs__in { max-width: 1320px; margin: 0 auto; }
.egs .egs-eyebrow { font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--eg-muted); font-weight: 500; margin: 0 0 12px; }
.egs .egs-rule { width: 32px; height: 2px; background: var(--eg-accent); margin: 0 0 16px; }
.egs h1 { font-family: var(--eg-font-display); font-weight: 600; font-size: clamp(28px, 4vw, 44px); line-height: 1.08; color: var(--eg-navy); margin: 0 0 24px; text-wrap: balance; }
.egs__head { margin-bottom: 48px; max-width: 720px; }
.egs__bar { display: flex; gap: 8px; max-width: 520px; }
.egs__bar input[type="search"] { flex: 1; padding: 12px 16px; border: 1px solid var(--eg-border); border-radius: var(--eg-radius); font-family: var(--eg-font-body); font-size: 16px; background: var(--eg-white); color: var(--eg-ink); }
.egs__bar input[type="search"]:focus { outline: 2px solid var(--eg-navy); outline-offset: -1px; border-color: var(--eg-navy); }
.egs__btn { padding: 12px 28px; border-radius: var(--eg-radius); border: 1px solid var(--eg-navy); background: var(--eg-navy); color: var(--eg-white); font-family: var(--eg-font-body); font-size: 14.5px; font-weight: 500; cursor: pointer; }
.egs__group { margin-bottom: 56px; }
.egs__group h2 { font-family: var(--eg-font-display); font-weight: 600; font-size: 24px; margin: 0 0 20px; padding-bottom: 12px; border-bottom: 2px solid var(--eg-ink); }
.egs__group h2 span { font-family: var(--eg-font-body); font-weight: 400; font-size: 13px; color: var(--eg-muted); margin-left: 8px; }
.egs__articles { display: grid; gap: 16px; }
@media (min-width: 800px) { .egs__articles { grid-template-columns: repeat(2, 1fr); } }
.egs .art { display: flex; gap: 16px; text-decoration: none; color: var(--eg-ink); border: 1px solid var(--eg-border); border-radius: var(--eg-radius); padding: 14px; transition: border-color 200ms var(--eg-ease), background 200ms var(--eg-ease); }
.egs .art:hover { border-color: var(--eg-navy); background: var(--eg-paper); }
.egs .artm { flex-shrink: 0; width: 120px; aspect-ratio: 16 / 10; border-radius: var(--eg-radius); overflow: hidden; background: var(--eg-paper); }
.egs .artm img { width: 100%; height: 100%; object-fit: cover; }
.egs .arttx b { font-family: var(--eg-font-display); font-weight: 600; font-size: 17px; display: block; margin-bottom: 4px; }
.egs .arttx p { font-size: 13px; color: var(--eg-muted); margin: 0; }
.egs__pages { display: flex; flex-direction: column; gap: 4px; }
.egs__pages a { color: var(--eg-navy); font-size: 14.5px; padding: 8px 0; border-bottom: 1px solid var(--eg-border); text-decoration: none; }
.egs__pages a:hover { text-decoration: underline; }
.egs__more .more { display: block; width: fit-content; margin: 24px auto 0; border: 1px solid var(--eg-navy); background: var(--eg-white); color: var(--eg-navy); border-radius: var(--eg-radius); padding: 12px 48px; font-size: 14px; font-weight: 500; text-decoration: none; }
.egs__more .more:hover { background: var(--eg-navy); color: var(--eg-white); }
.egs__zero p { color: var(--eg-muted); max-width: 52ch; margin: 0 0 24px; }
.egs__zero .routes { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; max-width: 720px; }
@media (min-width: 700px) { .egs__zero .routes { grid-template-columns: repeat(4, 1fr); } }
.egs__zero .routes a { display: flex; flex-direction: column; gap: 3px; padding: 16px 12px; border: 1px solid var(--eg-border); border-radius: var(--eg-radius); text-decoration: none; color: var(--eg-ink); }
.egs__zero .routes a:hover { border-color: var(--eg-navy); background: var(--eg-paper); }
.egs__zero .routes b { font-family: var(--eg-font-display); font-weight: 600; font-size: 16px; color: var(--eg-navy); }
.egs__zero .routes span { font-size: 11.5px; color: var(--eg-muted); }
/* END_SECTION:eg-v2-search */

/* START_SECTION:eg-v2-segment (INDEX:121) */
.egvseg { font-family: var(--eg-font-body); color: var(--eg-ink); }
.egvseg .wrap { max-width: 1200px; margin: 0 auto; padding-inline: 24px; }
.egvseg-crumb { padding: 20px 24px 8px; font-size: 12.5px; color: var(--eg-muted); }
.egvseg-crumb a { color: var(--eg-muted); text-decoration: none; }
.egvseg-crumb a:hover { color: var(--eg-navy); }
.egvseg-crumb i { font-style: normal; margin: 0 7px; opacity: .5; }
.egvseg-eyebrow { font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--eg-muted); font-weight: 500; margin: 0 0 12px; }
.egvseg-rule { width: 32px; height: 2px; background: var(--eg-accent); margin: 0 0 16px; }
.egvseg h1 { font-family: var(--eg-font-display); font-weight: 600; font-size: clamp(30px, 4vw, 44px); line-height: 1.08; margin: 0 0 12px; text-wrap: balance; }
.egvseg h2 { font-family: var(--eg-font-display); font-weight: 600; font-size: clamp(24px, 3vw, 32px); line-height: 1.14; margin: 0 0 12px; text-wrap: balance; }
/* 2026-08-04 (George: "the bud corporate product page, i am on mobile and i
   open the page and it opens up very large").

   MEASURED, not guessed. The culprit is the THUMBNAIL RAIL, not the hero image.
   .egvseg-thumbs is a flex row of ~68px buttons with overflow-x: auto, but
   overflow does not reduce a flex container's min-content: that stays the sum
   of its items. Bud carries 19 renders, so its rail's min-content is 1360px.
   The mobile base rule had no grid-template-columns, so the single track was
   minmax(auto, 1fr) and inherited that 1360px, rendering the page about three
   and a half times wider than the phone.

   Probed in the browser on the live markup: hero min-content 1360px before,
   388px after. Products with fewer renders stayed under the viewport, which is
   why only Bud looked obviously broken; every segment page had the same defect
   waiting on a big enough gallery.

   Fix is minmax(0, 1fr) plus min-width: 0 on the children, and min-width: 0 on
   the rail itself so it cannot do this again wherever else it is used. */
.egvseg-hero { display: grid; grid-template-columns: minmax(0, 1fr); gap: 32px; padding-top: 24px; padding-bottom: 48px; align-items: center; }
.egvseg-hero > * { min-width: 0; }
{%- comment -%} minmax(0, ...) is load-bearing: a plain `1fr` resolves to
    minmax(auto, 1fr), and the hero image declares width="1200", so its column's
    min-content was 1200px and it squeezed the buy column down to a ribbon. The
    blowout only became visible once swatches, a mini ladder and an Add to cart
    button had to fit in there. {%- endcomment -%}
@media (min-width: 900px) { .egvseg-hero { grid-template-columns: minmax(0, 1.05fr) minmax(340px, 1fr); gap: 48px; align-items: start; } }
.egvseg-hero__media img { width: 100%; height: auto; border-radius: var(--eg-radius); border: 1px solid var(--eg-border); display: block; }
.egvseg-sub { font-size: 15px; color: var(--eg-muted); margin: 0 0 14px; }
.egvseg-price { font-size: 14px; margin: 0 0 20px; }
.egvseg-ctas { display: flex; flex-wrap: wrap; gap: 12px; }
.egvseg-btn { display: inline-block; padding: 13px 22px; border-radius: var(--eg-radius); border: 1px solid var(--eg-navy); color: var(--eg-navy); font-size: 14px; font-weight: 500; text-decoration: none; transition: background 180ms var(--eg-ease), color 180ms var(--eg-ease); }
.egvseg-btn:hover { background: var(--eg-paper); }
.egvseg-btn--solid { background: var(--eg-navy); color: var(--eg-white); }
.egvseg-btn--solid:hover { background: var(--eg-navy); opacity: .92; color: var(--eg-white); }
.egvseg-atc { margin: 4px 0 12px; }
.egvseg-lab { display: block; font-size: 12px; font-weight: 600; letter-spacing: .04em; margin: 12px 0 6px; }
.egvseg-select { width: 100%; max-width: 320px; padding: 12px 14px; border: 1px solid var(--eg-border); border-radius: var(--eg-radius); font-size: 14px; font-family: var(--eg-font-body); background: var(--eg-white); }
/* Once the swatches are live the select is redundant, but it stays in the DOM
   and in the form so submission and no-JS both keep working. */
.egvseg-select.is-enhanced { display: none; }
.egvseg-lab b { font-weight: 600; color: var(--eg-ink); }

/* View pills, matching the D2C PDP's egv2-viewsw */
.egvseg-viewsw { display: flex; gap: 8px; flex-wrap: wrap; margin: 4px 0 14px; }
.egvseg-viewsw button { border: 1px solid var(--eg-border); background: var(--eg-white); border-radius: var(--eg-radius-pill); padding: 7px 16px; font-family: var(--eg-font-body); font-size: 12px; letter-spacing: .04em; color: var(--eg-muted); cursor: pointer; transition: border-color 200ms var(--eg-ease), color 200ms var(--eg-ease), background 200ms var(--eg-ease); }
.egvseg-viewsw button:hover { border-color: var(--eg-navy); color: var(--eg-navy); }
.egvseg-viewsw button[aria-pressed="true"] { background: var(--eg-navy); border-color: var(--eg-navy); color: var(--eg-white); }

/* Color swatches (2026-08-03) */
.egvseg-sws { display: flex; flex-wrap: wrap; gap: 8px; margin: 4px 0 14px; }
.egvseg-sw, .egvseg-dimbar button {
  width: 30px; height: 30px; padding: 0; cursor: pointer; border-radius: 50%;
  background: var(--sw, var(--eg-paper));
  border: 1px solid rgba(0,0,0,.18);
  box-shadow: 0 0 0 2px transparent; transition: box-shadow 160ms var(--eg-ease), transform 160ms var(--eg-ease);
}
.egvseg-sw:hover, .egvseg-dimbar button:hover { transform: translateY(-1px); }
.egvseg-sw[aria-pressed="true"], .egvseg-dimbar button[aria-pressed="true"] { box-shadow: 0 0 0 2px var(--eg-navy); }
.egvseg-sw.out { opacity: .38; }
.egvseg-sw.out::after { content: ''; position: absolute; }

/* Compact ladder in the buy box */
.egvseg-minitiers { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 6px; margin: 6px 0 14px; max-width: 440px; }
.egvseg-minitiers button {
  border: 1px solid var(--eg-border); background: var(--eg-white); border-radius: var(--eg-radius);
  padding: 8px 2px; cursor: pointer; font-family: var(--eg-font-body); text-align: center; line-height: 1.25;
}
.egvseg-minitiers button:hover { background: #eef1f6; }
.egvseg-minitiers button[aria-current="true"] { background: #eef1f6; box-shadow: inset 0 -3px 0 var(--eg-navy); }
.egvseg-minitiers span { display: block; font-size: 10px; letter-spacing: .06em; text-transform: uppercase; color: var(--eg-muted); }
.egvseg-minitiers b { display: block; font-family: var(--eg-font-display); font-size: 15px; font-weight: 600; color: var(--eg-navy); margin-top: 1px; }
@media (max-width: 520px) { .egvseg-minitiers { grid-template-columns: repeat(3, minmax(0, 1fr)); } }

/* Thumb rail under the hero image */
.egvseg-hero__media { position: relative; }
.egvseg-heroname { position: absolute; left: 12px; bottom: 12px; background: rgba(255,255,255,.95);
  border: 1px solid var(--eg-border); border-radius: var(--eg-radius-pill); padding: 6px 12px;
  font-size: 11.5px; letter-spacing: .04em; color: var(--eg-ink); box-shadow: var(--eg-shadow-soft); z-index: 2; }
.egvseg-swipe { position: absolute; right: 12px; top: 12px; background: rgba(26,26,26,.72); color: #fff;
  border-radius: var(--eg-radius-pill); padding: 5px 11px; font-size: 11px; display: flex; align-items: center;
  gap: 6px; pointer-events: none; z-index: 2; }
@media (hover: hover) and (pointer: fine) { .egvseg-swipe { display: none; } }
.egvseg-thumbs { display: flex; gap: 8px; margin-top: 10px; overflow-x: auto; padding-bottom: 4px; scrollbar-width: thin; min-width: 0; }
.egvseg-thumbs button { flex: 0 0 auto; width: 64px; height: 64px; padding: 0; border: 1px solid var(--eg-border); border-radius: var(--eg-radius); overflow: hidden; background: var(--eg-white); cursor: pointer; }
.egvseg-thumbs button[aria-current="true"] { border-color: var(--eg-navy); box-shadow: inset 0 0 0 1px var(--eg-navy); }
.egvseg-thumbs img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Color bar under the dimension drawing */
.egvseg-dimbar { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; justify-content: center; }

/* Plain stepper, only for products with no volume ladder */
.egvseg-plainqty { display: inline-flex; align-items: center; gap: 2px; border: 1px solid var(--eg-border); border-radius: var(--eg-radius); background: var(--eg-white); overflow: hidden; margin: 6px 0 14px; }
.egvseg-plainqty button { width: 36px; height: 34px; border: 0; background: var(--eg-white); cursor: pointer; color: var(--eg-navy); font-size: 16px; font-family: var(--eg-font-body); }
.egvseg-plainqty button:hover { background: #eef1f6; }
.egvseg-plainqty input { width: 52px; text-align: center; border: 0; background: transparent; font-family: var(--eg-font-body); font-weight: 600; font-size: 15px; color: var(--eg-navy); font-variant-numeric: tabular-nums; padding: 0; -moz-appearance: textfield; appearance: textfield; }
.egvseg-plainqty input::-webkit-outer-spin-button,
.egvseg-plainqty input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

/* Mix panel, opened by choosing a break above 1 */
.egvseg-mix { border: 1px solid var(--eg-border); border-radius: var(--eg-radius); padding: 12px 14px; margin: 0 0 14px; background: var(--eg-paper); max-width: 440px; }
.egvseg-mixlab { font-size: 12.5px; color: var(--eg-muted); margin: 0 0 10px; }
.egvseg-mixrow { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 6px 0; border-top: 1px solid rgba(0,0,0,.06); font-size: 13.5px; }
.egvseg-mixrow:first-child { border-top: 0; }
.egvseg-mixrow .ctl { display: inline-flex; align-items: center; gap: 2px; border: 1px solid var(--eg-border); border-radius: var(--eg-radius); background: var(--eg-white); overflow: hidden; }
.egvseg-mixrow button { width: 30px; height: 28px; border: 0; background: var(--eg-white); cursor: pointer; color: var(--eg-navy); font-size: 15px; line-height: 1; font-family: var(--eg-font-body); }
.egvseg-mixrow button:hover { background: #eef1f6; }
.egvseg-mixrow .qn { width: 48px; text-align: center; border: 0; background: transparent; font-family: var(--eg-font-body); font-weight: 600; font-size: 13.5px; color: var(--eg-navy); font-variant-numeric: tabular-nums; padding: 0; -moz-appearance: textfield; appearance: textfield; }
.egvseg-mixrow .qn::-webkit-outer-spin-button,
.egvseg-mixrow .qn::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.egvseg-mixrow .qn:focus { outline: 2px solid var(--eg-navy); outline-offset: -2px; border-radius: 2px; }
.egvseg-mixrow button:disabled { opacity: .3; cursor: default; }
.egvseg-mixhelp { font-size: 11.5px; color: var(--eg-muted); margin: -4px 0 10px; }
.egvseg-mixtot { font-size: 12px; color: var(--eg-muted); margin: 10px 0 0; font-variant-numeric: tabular-nums; }
.egvseg-qtyrow { display: flex; gap: 12px; align-items: flex-end; margin-top: 4px; }
.egvseg-qtyrow input { width: 90px; padding: 12px 14px; border: 1px solid var(--eg-border); border-radius: var(--eg-radius); font-size: 15px; font-family: var(--eg-font-body); box-sizing: border-box; }
.egvseg-btn--atc { border: 0; cursor: pointer; font-family: var(--eg-font-body); flex: 1; max-width: 320px; padding: 14px 22px; white-space: nowrap; }
.egvseg-btn--atc:disabled { opacity: .55; cursor: not-allowed; }
.egvseg-tiernote { font-size: 12.5px; color: var(--eg-muted); margin: 10px 0 0; }
.egvseg-ctas--sec { font-size: 13px; gap: 10px; align-items: center; margin-top: 14px; }
.egvseg-ctas--sec a { color: var(--eg-navy); text-decoration: none; border-bottom: 1px solid var(--eg-border); padding-bottom: 1px; }
.egvseg-ctas--sec a:hover { border-color: var(--eg-navy); }
.egvseg-ctas--sec span { color: var(--eg-muted); }
.egvseg-tier[data-min] { cursor: pointer; transition: border-color 160ms var(--eg-ease), transform 160ms var(--eg-ease); }
.egvseg-tier[data-min]:hover { border-color: var(--eg-navy); transform: translateY(-1px); }
.egvseg-tier.sel { border-color: var(--eg-navy); box-shadow: inset 0 0 0 1px var(--eg-navy); }
.egvseg-pdplink { margin: 16px 0 0; font-size: 13.5px; }
.egvseg-pdplink a { color: var(--eg-navy); text-decoration: none; border-bottom: 1px solid var(--eg-border); padding-bottom: 1px; }
.egvseg-pdplink a:hover { border-color: var(--eg-navy); }
.egvseg-band { padding: 56px 0; border-top: 1px solid var(--eg-border); }
.egvseg-band--paper { background: var(--eg-paper); }
.egvseg-note { font-size: 14px; color: var(--eg-muted); max-width: 62ch; margin: 0 0 24px; line-height: 1.6; }
.egvseg-tiers { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 10px; }
.egvseg-tier { position: relative; border: 1px solid var(--eg-border); border-radius: var(--eg-radius); padding: 14px; background: var(--eg-white); display: flex; flex-direction: column; gap: 2px; }
.egvseg-tier .qty { font-size: 11.5px; letter-spacing: .08em; text-transform: uppercase; color: var(--eg-muted); }
.egvseg-tier b { font-size: 18px; font-weight: 600; }
.egvseg-tier .per { font-size: 12px; color: var(--eg-muted); }
.egvseg-tier .tag { position: absolute; top: -9px; right: 10px; background: var(--eg-navy); color: var(--eg-white); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; padding: 2px 8px; border-radius: var(--eg-radius-pill); }
.egvseg-two { display: grid; gap: 32px; align-items: start; }
@media (min-width: 900px) { .egvseg-two { grid-template-columns: 1fr 1fr; gap: 56px; } }
.egvseg-dimtable { list-style: none; margin: 0; padding: 0; }
.egvseg-dimtable li { display: flex; justify-content: space-between; gap: 16px; padding: 10px 0; border-bottom: 1px solid var(--eg-border); font-size: 13.5px; }
.egvseg-dimtable span { color: var(--eg-muted); }
.egvseg-dimtable b { font-weight: 500; text-align: right; }
.egvseg-dimnote { font-size: 12.5px; color: var(--eg-muted); margin: 12px 0 0; }
.egvseg-dimimg img { width: 100%; height: auto; border: 1px solid var(--eg-border); border-radius: var(--eg-radius); background: var(--eg-white); display: block; }
.egvseg-qa { display: grid; gap: 28px; }
@media (min-width: 820px) { .egvseg-qa { grid-template-columns: repeat(3, 1fr); } }
.egvseg-qa h3 { font-size: 15px; font-weight: 600; margin: 0 0 8px; font-family: var(--eg-font-body); }
.egvseg-qa p { font-size: 13.5px; color: var(--eg-muted); line-height: 1.6; margin: 0; }
.egvseg-qa a { color: var(--eg-navy); }
.egvseg-vband { display: flex; flex-wrap: wrap; align-items: baseline; gap: 6px 12px;
  background: var(--eg-navy); color: var(--eg-white); border-radius: var(--eg-radius);
  padding: 10px 13px; margin: 10px 0 4px; }
.egvseg-vband .vb-band { font-size: 10.5px; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.72); }
.egvseg-vband .vb-each { font-size: 13px; color: rgba(255,255,255,.9); }
.egvseg-vband .vb-each b { font-family: var(--eg-font-display); font-weight: 600; font-size: 20px; color: var(--eg-white); margin-right: 2px; }
.egvseg-vband .vb-next { margin-left: auto; font-size: 11.5px; color: rgba(255,255,255,.72); text-align: right; }
@media (max-width: 430px) { .egvseg-vband .vb-next { margin-left: 0; width: 100%; text-align: left; } }
.egvseg-cta { background: var(--eg-navy); color: var(--eg-white); padding: 56px 0; }
.egvseg-cta__grid { display: grid; gap: 32px; align-items: start; }
@media (min-width: 860px) { .egvseg-cta__grid { grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr); gap: 56px; } }
.egvseg-cta h2 { color: var(--eg-white); margin-bottom: 10px; }
.egvseg-cta p { color: rgba(255,255,255,.75); font-size: 14.5px; max-width: 46ch; margin: 0; line-height: 1.6; }
.egvseg-cta__eyebrow { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.6); margin: 0; }
.egvseg-cta__rule { width: 40px; height: 2px; background: var(--eg-paper); margin: 12px 0 14px; }
.egvseg-cta__card { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.16); border-radius: var(--eg-radius); padding: 8px; }
.egvseg-cta__row { display: flex; align-items: center; gap: 14px; padding: 15px 14px; border-radius: var(--eg-radius);
  text-decoration: none; color: var(--eg-white); transition: background 160ms var(--eg-ease); }
.egvseg-cta__row + .egvseg-cta__row { border-top: 1px solid rgba(255,255,255,.12); }
.egvseg-cta__row:hover { background: rgba(255,255,255,.08); }
.egvseg-cta__row:focus-visible { outline: 2px solid var(--eg-paper); outline-offset: -2px; }
.egvseg-cta__ico { flex: none; width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(255,255,255,.1); color: var(--eg-white); }
.egvseg-cta__tx { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.egvseg-cta__tx b { font-family: var(--eg-font-body); font-size: 14px; font-weight: 600; }
.egvseg-cta__tx span { font-size: 13px; color: rgba(255,255,255,.7); overflow-wrap: anywhere; }
.egvseg-cta__go { margin-left: auto; color: rgba(255,255,255,.55); font-size: 17px; }
.egvseg-cta__row:hover .egvseg-cta__go { color: var(--eg-white); }
.egvseg-cta__sla { font-size: 12px; color: rgba(255,255,255,.6); margin: 4px 0 6px; padding: 0 14px; }
.egvseg-cta__pl { color: var(--eg-white); }
.egvseg-btn--paper { background: var(--eg-paper); border-color: var(--eg-paper); color: var(--eg-navy); }
.egvseg-btn--paper:hover { background: var(--eg-white); }
.egvseg-btn--ghost { border-color: rgba(255,255,255,.5); color: var(--eg-white); }
.egvseg-btn--ghost:hover { background: rgba(255,255,255,.08); }
.egvseg-backlinks { margin: 22px 0 0; font-size: 13px; }
.egvseg-backlinks a { color: rgba(255,255,255,.75); text-decoration: none; border-bottom: 1px solid rgba(255,255,255,.3); padding-bottom: 1px; }
.egvseg-backlinks a:hover { color: var(--eg-white); border-color: var(--eg-white); }
.egvseg-backlinks span { margin: 0 10px; color: rgba(255,255,255,.4); }
/* END_SECTION:eg-v2-segment */

/* START_SECTION:eg-v2-shop-by-category (INDEX:122) */
.egsbc { font-family: var(--eg-font-body); color: var(--eg-ink); }
.egsbc .wrap { max-width: 1200px; margin: 0 auto; padding-inline: 24px; }
.egsbc-crumb { padding: 20px 24px 8px; font-size: 12.5px; color: var(--eg-muted); }
.egsbc-crumb a { color: var(--eg-muted); text-decoration: none; }
.egsbc-crumb a:hover { color: var(--eg-navy); }
.egsbc-crumb i { font-style: normal; margin: 0 7px; opacity: .5; }
.egsbc-eyebrow { font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--eg-muted); font-weight: 500; margin: 0 0 12px; }
.egsbc-rule { width: 32px; height: 2px; background: var(--eg-accent); margin: 0 0 16px; }
.egsbc-head { padding-top: 24px; padding-bottom: 8px; }
.egsbc-head h1 { font-family: var(--eg-font-display); font-weight: 600; font-size: clamp(30px, 4vw, 44px); line-height: 1.08; margin: 0 0 12px; max-width: 22ch; text-wrap: balance; }
.egsbc-lede { font-size: 15px; color: var(--eg-muted); max-width: 58ch; line-height: 1.6; margin: 0; }
.egsbc-jump { position: sticky; top: var(--header-height, 64px); z-index: 5; display: flex; gap: 4px; overflow-x: auto; padding-top: 16px; padding-bottom: 12px; background: var(--eg-white); border-bottom: 1px solid var(--eg-border); margin-top: 20px; }
.egsbc-jump a { padding: 7px 14px; border: 1px solid var(--eg-border); border-radius: var(--eg-radius-pill); font-size: 13px; color: var(--eg-ink); text-decoration: none; white-space: nowrap; transition: border-color 160ms var(--eg-ease), background 160ms var(--eg-ease); }
.egsbc-jump a:hover { border-color: var(--eg-navy); background: var(--eg-paper); }
.egsbc-band { padding: 48px 0; }
.egsbc-band--paper { background: var(--eg-paper); }
.egsbc-band h2 { font-family: var(--eg-font-display); font-weight: 600; font-size: clamp(22px, 2.6vw, 30px); margin: 0 0 8px; }
.egsbc-sub { font-size: 14px; color: var(--eg-muted); max-width: 58ch; margin: 0 0 20px; }
.egsbc-band h2 + .egsbc-grid, .egsbc-band h2 + .egsbc-chips { margin-top: 20px; }
.egsbc-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
@media (min-width: 820px) { .egsbc-grid { grid-template-columns: repeat(4, 1fr); } .egsbc-grid.three { grid-template-columns: repeat(3, 1fr); } }
.egsbc-grid .tile { display: flex; flex-direction: column; border: 1px solid var(--eg-border); border-radius: var(--eg-radius); background: var(--eg-white); overflow: hidden; text-decoration: none; color: var(--eg-ink); transition: border-color 200ms var(--eg-ease), transform 200ms var(--eg-ease); }
.egsbc-grid .tile:hover { border-color: var(--eg-navy); transform: translateY(-2px); }
.egsbc-grid .timg { display: block; aspect-ratio: 4/3; background: var(--eg-paper); flex: 1 0 auto; min-height: 0; }
.egsbc-grid .timg img { width: 100%; height: 100%; object-fit: cover; transition: transform 320ms var(--eg-ease); }
.egsbc-grid .tile:hover .timg img { transform: scale(1.04); }
.egsbc-grid .tbody { display: block; padding: 14px 16px 16px; }
.egsbc-grid .tile b { display: block; font-family: var(--eg-font-display); font-weight: 600; font-size: 19px; line-height: 1.2; }
.egsbc-grid .tile .ct { font-size: 12.5px; color: var(--eg-muted); }
.egsbc-grid .tile.lead { grid-column: 1 / -1; }
@media (min-width: 820px) { .egsbc-grid .tile.lead { grid-column: span 2; } }
.egsbc-grid .tile.lead .tbody { background: var(--eg-navy); color: var(--eg-white); padding: 20px 22px; }
.egsbc-grid .tile.lead .timg { aspect-ratio: 16/7; }
.egsbc-grid .tile.lead b { font-size: 26px; }
.egsbc-grid .tile.lead .ct { color: rgba(255,255,255,.72); }
.egsbc-grid .tile.lead .note { display: block; font-size: 13px; color: rgba(255,255,255,.85); margin-top: 8px; }
.egsbc-cm { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
@media (min-width: 640px) { .egsbc-cm { grid-template-columns: repeat(4, 1fr); gap: 16px; } }
@media (min-width: 1000px) { .egsbc-cm { grid-template-columns: repeat(6, 1fr); } }
.egsbc-cm .cmt { position: relative; aspect-ratio: 1; border-radius: var(--eg-radius); background: var(--sw, var(--eg-paper)); box-shadow: inset 0 0 0 1px rgba(0,0,0,.12); display: block; text-decoration: none; transition: transform 200ms var(--eg-ease), box-shadow 200ms var(--eg-ease); overflow: hidden; }
.egsbc-cm .cmt[data-multi] { background: conic-gradient(#b8392f, #e8c65a, #3f7a4a, #37538c, #6a4d8c, #b8392f); }
.egsbc-cm .cmt:hover { transform: translateY(-3px); box-shadow: inset 0 0 0 1px rgba(0,0,0,.12), 0 10px 26px rgb(39 55 85 / .18); }
.egsbc-cm .cml { position: absolute; left: 0; right: 0; bottom: 0; padding: 12px; background: rgba(255,255,255,.93); backdrop-filter: blur(6px); border-top: 1px solid rgba(0,0,0,.06); }
.egsbc-cm .cml b { display: block; font-size: 12.5px; font-weight: 500; color: var(--eg-ink); }
.egsbc-cm .cml span { font-size: 11px; color: var(--eg-muted); font-variant-numeric: tabular-nums; }
/* Material texture swatches (CSS only, no sourced imagery) */
.egsbc-cm .mat-metal { background: linear-gradient(115deg, #b9bcc2 0%, #eceef1 22%, #8f939b 44%, #d8dade 62%, #a6aab2 82%, #e4e6ea 100%); }
.egsbc-cm .mat-acrylic { background: linear-gradient(135deg, rgba(255,255,255,.95), rgba(214,226,236,.6) 45%, rgba(255,255,255,.9) 60%, rgba(196,212,226,.75)); }
.egsbc-cm .mat-wood { background: repeating-linear-gradient(97deg, #8a613c 0 7px, #9d7146 7px 13px, #7c5634 13px 21px, #a97d52 21px 26px); }
.egsbc-cm .mat-glass { background: linear-gradient(150deg, #cfe3e8 0%, #f2fafc 35%, #a9c9d3 60%, #e6f4f8 85%, #bcd8e0 100%); }
.egsbc-cm .mat-fabric { background: repeating-conic-gradient(#c9c2b4 0% 25%, #bdb5a5 0% 50%) 0 0/9px 9px, #c4bcac; }
.egsbc-cm .mat-ceramic { background: radial-gradient(120% 120% at 30% 20%, #f6f2ea 0%, #e8e0d2 55%, #d9cdb9 100%); }
.egsbc-more { margin: 20px 0 0; font-size: 13.5px; }
.egsbc-more a { color: var(--eg-navy); text-decoration: none; border-bottom: 1px solid var(--eg-border); padding-bottom: 1px; }
.egsbc-more a:hover { border-color: var(--eg-navy); }
/* END_SECTION:eg-v2-shop-by-category */

/* START_SECTION:eg-v2-shop-by-color (INDEX:123) */
.egsc { font-family: var(--eg-font-body); color: var(--eg-ink); }
.egsc .wrap { max-width: 1200px; margin: 0 auto; padding-inline: 24px; }
.egsc-crumb { padding: 20px 24px 8px; font-size: 12.5px; color: var(--eg-muted); }
.egsc-crumb a { color: var(--eg-muted); text-decoration: none; }
.egsc-crumb i { font-style: normal; margin: 0 7px; opacity: .5; }
.egsc-eyebrow { font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--eg-muted); font-weight: 500; margin: 0 0 12px; }
.egsc-eyebrow.inv { color: rgba(255,255,255,.62); }
.egsc-rule { width: 32px; height: 2px; background: var(--eg-accent); margin: 0 0 16px; }
.egsc-rule.inv { background: var(--eg-white); }
.egsc-head { padding-top: 24px; padding-bottom: 28px; }
.egsc-head h1 { font-family: var(--eg-font-display); font-weight: 600; font-size: clamp(30px, 4vw, 44px); line-height: 1.08; margin: 0 0 12px; max-width: 20ch; text-wrap: balance; }
.egsc-lede { font-size: 15px; color: var(--eg-muted); max-width: 58ch; line-height: 1.6; margin: 0; }
.egsc-cm { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; padding-bottom: 40px; }
@media (min-width: 640px) { .egsc-cm { grid-template-columns: repeat(4, 1fr); gap: 16px; } }
@media (min-width: 1000px) { .egsc-cm { grid-template-columns: repeat(6, 1fr); } }
.egsc-cm .cmt { position: relative; aspect-ratio: 1; border-radius: var(--eg-radius); background: var(--sw, var(--eg-paper)); box-shadow: inset 0 0 0 1px rgba(0,0,0,.12); display: block; text-decoration: none; transition: transform 200ms var(--eg-ease), box-shadow 200ms var(--eg-ease); overflow: hidden; }
/* Multicolor: hard-edged segments, i.e. 'this comes in several finishes'.
   Rainbow: a continuous spectrum, i.e. 'the spectrum IS the finish'.
   Anything else without a hex falls back to a neutral so it never borrows
   either meaning. */
.egsc-cm .cmt[data-swatch] { background: #c8ccd0; }
.egsc-cm .cmt[data-swatch="multicolor"] { background: conic-gradient(
    #b8392f 0deg 90deg, #e8c65a 90deg 180deg, #3f7a4a 180deg 270deg, #37538c 270deg 360deg); }
.egsc-cm .cmt[data-swatch="rainbow"] { background: linear-gradient(115deg,
    #b8392f, #d4732f, #e8c65a, #3f7a4a, #37538c, #6a4d8c); }
.egsc-cm .cmt:hover { transform: translateY(-3px); box-shadow: inset 0 0 0 1px rgba(0,0,0,.12), 0 10px 26px rgb(39 55 85 / .18); }
.egsc-cm .cml { position: absolute; left: 0; right: 0; bottom: 0; padding: 10px 12px; background: rgba(255,255,255,.93); backdrop-filter: blur(6px); border-top: 1px solid rgba(0,0,0,.06); display: flex; justify-content: space-between; align-items: baseline; }
.egsc-cm .cml b { font-size: 12.5px; font-weight: 500; color: var(--eg-ink); }
.egsc-cm .cml span { font-size: 11px; color: var(--eg-muted); font-variant-numeric: tabular-nums; }
.egsc-band { padding: 44px 0; scroll-margin-top: calc(var(--header-height, 64px) + 12px); }
.egsc-band--paper { background: var(--eg-paper); }
.egsc-bandhead { display: flex; align-items: baseline; gap: 12px; text-decoration: none; color: var(--eg-ink); margin-bottom: 18px; }
.egsc-bandhead i { width: 18px; height: 18px; border-radius: var(--eg-radius-pill); border: 1px solid rgba(0,0,0,.15); align-self: center; flex-shrink: 0; }
.egsc-bandhead i[data-swatch] { background: #c8ccd0; }
.egsc-bandhead i[data-swatch="multicolor"] { background: conic-gradient(
    #b8392f 0deg 90deg, #e8c65a 90deg 180deg, #3f7a4a 180deg 270deg, #37538c 270deg 360deg); }
.egsc-bandhead i[data-swatch="rainbow"] { background: linear-gradient(115deg,
    #b8392f, #d4732f, #e8c65a, #3f7a4a, #37538c, #6a4d8c); }
.egsc-bandhead h2 { font-family: var(--eg-font-display); font-weight: 600; font-size: clamp(22px, 2.6vw, 28px); margin: 0; }
.egsc-bandhead span { font-size: 13px; color: var(--eg-navy); margin-left: auto; white-space: nowrap; }
.egsc-thumbs { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(130px, 28%); gap: 12px; overflow-x: auto; scroll-snap-type: x proximity; padding-bottom: 10px; scrollbar-width: thin; }
@media (min-width: 820px) { .egsc-thumbs { grid-auto-columns: minmax(150px, 15.5%); } }
.egsc-thumbs > a { scroll-snap-align: start; }
.egsc-thumbs a { display: block; text-decoration: none; color: var(--eg-ink); }
.egsc-thumbs img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: var(--eg-radius); border: 1px solid var(--eg-border); background: var(--eg-white); display: block; transition: transform 250ms var(--eg-ease); }
.egsc-thumbs a:hover img { transform: translateY(-2px); }
.egsc-thumbs b { display: block; font-size: 12.5px; font-weight: 500; margin-top: 6px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.egsc-thumbs span { font-size: 12px; color: var(--eg-muted); }
.egsc-mats { background: var(--eg-paper); padding: 48px 0 56px; }
.egsc-matgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
@media (min-width: 640px) { .egsc-matgrid { grid-template-columns: repeat(4, 1fr); gap: 16px; } }
@media (min-width: 1000px) { .egsc-matgrid { grid-template-columns: repeat(6, 1fr); } }
.egsc-matgrid .msw { position: relative; aspect-ratio: 1; border-radius: var(--eg-radius); box-shadow: inset 0 0 0 1px rgba(0,0,0,.12); display: block; text-decoration: none; overflow: hidden; transition: transform 200ms var(--eg-ease), box-shadow 200ms var(--eg-ease); }
.egsc-matgrid .msw:hover { transform: translateY(-3px); box-shadow: inset 0 0 0 1px rgba(0,0,0,.12), 0 10px 26px rgb(39 55 85 / .18); }
.egsc-matgrid .cml { position: absolute; left: 0; right: 0; bottom: 0; padding: 12px; background: rgba(255,255,255,.93); backdrop-filter: blur(6px); border-top: 1px solid rgba(0,0,0,.06); display: flex; justify-content: space-between; align-items: baseline; }
.egsc-matgrid .cml b { font-size: 12.5px; font-weight: 500; color: var(--eg-ink); }
.egsc-matgrid .cml span { font-size: 11px; color: var(--eg-muted); font-variant-numeric: tabular-nums; }
.egsc-matgrid .msw-metal { background: linear-gradient(115deg, #b9bcc2 0%, #eceef1 22%, #8f939b 44%, #d8dade 62%, #a6aab2 82%, #e4e6ea 100%); }
.egsc-matgrid .msw-acrylic { background: linear-gradient(135deg, rgba(255,255,255,.95), rgba(214,226,236,.6) 45%, rgba(255,255,255,.9) 60%, rgba(196,212,226,.75)); }
.egsc-matgrid .msw-wood { background: repeating-linear-gradient(97deg, #8a613c 0 7px, #9d7146 7px 13px, #7c5634 13px 21px, #a97d52 21px 26px); }
.egsc-matgrid .msw-glass { background: linear-gradient(150deg, #cfe3e8 0%, #f2fafc 35%, #a9c9d3 60%, #e6f4f8 85%, #bcd8e0 100%); }
.egsc-matgrid .msw-fabric { background: repeating-conic-gradient(#c9c2b4 0% 25%, #bdb5a5 0% 50%) 0 0/9px 9px, #c4bcac; }
.egsc-matgrid .msw-ceramic { background: radial-gradient(120% 120% at 30% 20%, #f6f2ea 0%, #e8e0d2 55%, #d9cdb9 100%); }
/* END_SECTION:eg-v2-shop-by-color */

/* START_SECTION:eg-v2-shop-by-style (INDEX:124) */
.egst { font-family: var(--eg-font-body); color: var(--eg-ink); }
.egst .wrap { max-width: 1200px; margin: 0 auto; padding-inline: 24px; }
.egst-crumb { padding: 18px 0 0; font-size: 12.5px; color: var(--eg-muted); }
.egst-crumb a { color: var(--eg-muted); text-decoration: none; }
.egst-crumb a:hover { color: var(--eg-navy); }
.egst-crumb i { font-style: normal; margin: 0 7px; opacity: .5; }
.egst-head { padding: 28px 0 30px; }
.egst-eyebrow { font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--eg-muted); font-weight: 500; margin: 0 0 12px; }
.egst-rule { width: 32px; height: 2px; background: var(--eg-accent); margin: 0 0 16px; }
.egst h1 { font-family: var(--eg-font-display); font-weight: 600; font-size: clamp(30px, 4vw, 44px); line-height: 1.08; margin: 0 0 12px; text-wrap: balance; }
.egst h2 { font-family: var(--eg-font-display); font-weight: 600; font-size: clamp(22px, 2.6vw, 28px); margin: 0; }
.egst-lede { color: var(--eg-muted); font-size: 15px; max-width: 62ch; margin: 0; line-height: 1.6; }

.egst-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; padding-bottom: 8px; }
@media (min-width: 640px) { .egst-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1000px) { .egst-grid { grid-template-columns: repeat(6, 1fr); } }
.egst-tile { position: relative; display: block; aspect-ratio: 1; border-radius: var(--eg-radius); overflow: hidden;
  background: var(--eg-paper); box-shadow: inset 0 0 0 1px rgba(0,0,0,.12); text-decoration: none;
  transition: transform 200ms var(--eg-ease), box-shadow 200ms var(--eg-ease); }
.egst-tile img { width: 100%; height: 100%; object-fit: cover; display: block; }
.egst-tile:hover { transform: translateY(-3px); box-shadow: inset 0 0 0 1px rgba(0,0,0,.12), 0 10px 26px rgb(39 55 85 / .18); }
.egst-tilel { position: absolute; left: 0; right: 0; bottom: 0; padding: 10px 12px; background: rgba(255,255,255,.93);
  backdrop-filter: blur(6px); border-top: 1px solid rgba(0,0,0,.06); display: flex; justify-content: space-between; align-items: baseline; }
.egst-tilel b { font-size: 12.5px; font-weight: 500; color: var(--eg-ink); }
.egst-tilel span { font-size: 11px; color: var(--eg-muted); font-variant-numeric: tabular-nums; }

.egst-band { padding: 44px 0; scroll-margin-top: calc(var(--header-height, 64px) + 12px); }
.egst-band--paper { background: var(--eg-paper); }
.egst-bandhead { display: flex; align-items: baseline; gap: 12px; text-decoration: none; color: var(--eg-ink); }
.egst-bandhead span { font-size: 13px; color: var(--eg-navy); margin-left: auto; white-space: nowrap; }
.egst-banddesc { font-size: 14px; color: var(--eg-muted); max-width: 64ch; margin: 8px 0 0; line-height: 1.6; }
.egst-thumbs { display: flex; gap: 14px; overflow-x: auto; padding: 18px 0 6px; min-width: 0; scrollbar-width: thin; }
.egst-thumbs a { flex: 0 0 auto; width: 168px; text-decoration: none; color: var(--eg-ink); }
.egst-thumbs img { width: 168px; height: 168px; object-fit: cover; border-radius: var(--eg-radius);
  border: 1px solid var(--eg-border); background: var(--eg-white); display: block; }
.egst-thumbs b { display: block; font-size: 13px; font-weight: 500; margin-top: 8px; }
.egst-thumbs span { display: block; font-size: 12.5px; color: var(--eg-muted); font-variant-numeric: tabular-nums; }

.egst-close { padding: 44px 0 64px; border-top: 1px solid var(--eg-border); }
.egst-close__row { display: grid; gap: 12px; }
@media (min-width: 760px) { .egst-close__row { grid-template-columns: repeat(3, 1fr); } }
.egst-close__row a { display: block; padding: 18px 20px; border: 1px solid var(--eg-border); border-radius: var(--eg-radius);
  text-decoration: none; color: var(--eg-ink); transition: border-color 200ms var(--eg-ease); }
.egst-close__row a:hover { border-color: var(--eg-navy); }
.egst-close__row b { display: block; font-family: var(--eg-font-display); font-weight: 600; font-size: 18px; margin-bottom: 4px; }
.egst-close__row span { font-size: 13px; color: var(--eg-muted); }
/* END_SECTION:eg-v2-shop-by-style */

/* START_SECTION:eg-v2-shop-the-look (INDEX:125) */
.egsl { font-family: var(--eg-font-body); color: var(--eg-ink); }
.egsl .wrap { max-width: 1200px; margin: 0 auto; padding-inline: 24px; }
.egsl-crumb { padding: 20px 24px 8px; font-size: 12.5px; color: var(--eg-muted); }
.egsl-crumb a { color: var(--eg-muted); text-decoration: none; }
.egsl-crumb i { font-style: normal; margin: 0 7px; opacity: .5; }
.egsl-eyebrow { font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--eg-muted); font-weight: 500; margin: 0 0 12px; }
.egsl-rule { width: 32px; height: 2px; background: var(--eg-accent); margin: 0 0 16px; }
.egsl-head { padding-top: 24px; }
.egsl-head h1 { font-family: var(--eg-font-display); font-weight: 600; font-size: clamp(30px, 4vw, 44px); line-height: 1.08; margin: 0 0 12px; max-width: 22ch; text-wrap: balance; }
.egsl-lede { font-size: 15px; color: var(--eg-muted); max-width: 58ch; line-height: 1.6; margin: 0; }
.egsl-jump { display: flex; gap: 8px; overflow-x: auto; padding-top: 20px; padding-bottom: 20px; }
.egsl-jump a { padding: 7px 14px; border: 1px solid var(--eg-border); border-radius: var(--eg-radius-pill); font-size: 12.5px; color: var(--eg-ink); text-decoration: none; white-space: nowrap; transition: border-color 160ms var(--eg-ease); }
.egsl-jump a:hover { border-color: var(--eg-navy); }
.egsl-band { padding: 48px 0; scroll-margin-top: calc(var(--header-height, 64px) + 12px); }
.egsl-band--paper { background: var(--eg-paper); }
.egsl-cols { display: grid; grid-template-columns: 1fr; gap: 28px; align-items: center; }
@media (min-width: 960px) { .egsl-cols { grid-template-columns: 1.15fr 1fr; gap: 48px; } .egsl-cols.flip .egsl-media { order: 2; } }
.egsl-media img { width: 100%; height: auto; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--eg-radius); border: 1px solid var(--eg-border); display: block; }
.egsl-body h2 { font-family: var(--eg-font-display); font-weight: 600; font-size: clamp(24px, 3vw, 32px); margin: 0 0 8px; }
.egsl-sub { font-size: 14.5px; color: var(--eg-muted); margin: 0 0 18px; line-height: 1.6; }
.egsl-pieces { list-style: none; margin: 0 0 18px; padding: 0; }
.egsl-pieces li { display: flex; align-items: center; gap: 10px; border-bottom: 1px solid var(--eg-border); }
.egsl-pieces li a { flex: 1; display: flex; align-items: center; gap: 12px; padding: 8px 0; border-bottom: 0; text-decoration: none; color: var(--eg-ink); }
.egsl .qa--row { flex-shrink: 0; padding: 7px 16px; border: 1px solid var(--eg-navy); border-radius: var(--eg-radius); font-size: 12.5px; font-weight: 500; color: var(--eg-navy); cursor: pointer; white-space: nowrap; transition: background 160ms var(--eg-ease), color 160ms var(--eg-ease); }
.egsl .qa--row:hover { background: var(--eg-navy); color: var(--eg-white); }
.egsl .qa--row.qa--done { background: var(--eg-navy); color: var(--eg-white); border-color: var(--eg-navy); }
.egsl-pieces li a:hover .pn { color: var(--eg-navy); }
.egsl-pieces img { width: 44px; height: 44px; object-fit: cover; border-radius: var(--eg-radius); border: 1px solid var(--eg-border); flex-shrink: 0; }
.egsl-pieces .pn { font-size: 14px; }
.egsl-pieces .pp { font-size: 13.5px; color: var(--eg-muted); margin-left: auto; font-variant-numeric: tabular-nums; }
.egsl-pieces .more a { justify-content: center; font-size: 13px; color: var(--eg-navy); border-bottom: 0; }
.egsl-foot { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.egsl-foot .tot { font-size: 13.5px; color: var(--eg-muted); }
.egsl-foot .tot b { font-size: 17px; color: var(--eg-ink); }
.egsl-foot .tot em { font-style: normal; font-size: 12px; }
.egsl-btn { display: inline-block; padding: 12px 24px; border-radius: var(--eg-radius); background: var(--eg-navy); color: var(--eg-white); font-size: 14.5px; font-weight: 500; text-decoration: none; border: 0; cursor: pointer; font-family: var(--eg-font-body); }
.egsl-btn:hover { opacity: .92; }
.egsl-btn.ghost { background: transparent; border: 1px solid var(--eg-border); color: var(--eg-navy); }
.egsl-btn.ghost:hover { border-color: var(--eg-navy); opacity: 1; }
.egsl-styled { margin: 14px 0 0; font-size: 13px; }
.egsl-styled a { color: var(--eg-navy); text-decoration: none; border-bottom: 1px solid var(--eg-border); padding-bottom: 1px; }
.egsl-styled a:hover { border-color: var(--eg-navy); }
/* END_SECTION:eg-v2-shop-the-look */

/* START_SECTION:eg-v2-sustainability (INDEX:126) */
.egsu { font-family: var(--eg-font-body); color: var(--eg-ink); }
.egsu .wrap { max-width: 1200px; margin: 0 auto; padding-inline: 24px; }
.egsu-crumb { padding: 20px 24px 8px; font-size: 12.5px; color: var(--eg-muted); }
.egsu-crumb a { color: var(--eg-muted); text-decoration: none; }
.egsu-crumb i { font-style: normal; margin: 0 7px; opacity: .5; }
.egsu-eyebrow { font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--eg-muted); font-weight: 500; margin: 0 0 12px; }
.egsu-eyebrow.inv { color: rgba(255,255,255,.62); }
.egsu-rule { width: 32px; height: 2px; background: var(--eg-accent); margin: 0 0 16px; }
.egsu-head { padding-top: 24px; padding-bottom: 32px; }
.egsu-head h1 { font-family: var(--eg-font-display); font-weight: 600; font-size: clamp(30px, 4vw, 44px); line-height: 1.08; margin: 0 0 12px; }
.egsu-lede { font-size: 15px; color: var(--eg-muted); max-width: 60ch; line-height: 1.6; margin: 0; }
.egsu-stance { background: var(--eg-navy); color: var(--eg-white); padding: 56px 0; }
.egsu-quote { font-family: var(--eg-font-display); font-size: clamp(22px, 2.8vw, 32px); font-style: italic; line-height: 1.3; color: var(--eg-white); max-width: 30ch; margin: 0 0 18px; }
.egsu-body { font-size: 15px; line-height: 1.7; color: rgba(255,255,255,.82); max-width: 66ch; margin: 0; }
.egsu-band { padding: 48px 0; }
.egsu-band--paper { background: var(--eg-paper); }
.egsu-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 820px) { .egsu-grid { grid-template-columns: repeat(3, 1fr); } }
.egsu-cardimg { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--eg-radius); border: 1px solid var(--eg-border); display: block; margin-bottom: 14px; }
.egsu-grid h3 { font-family: var(--eg-font-display); font-weight: 600; font-size: 19px; margin: 0 0 8px; }
.egsu-grid p { font-size: 13.5px; color: var(--eg-muted); line-height: 1.65; margin: 0; }
.egsu-open { list-style: none; margin: 0 0 18px; padding: 0; max-width: 66ch; }
.egsu-open li { font-size: 14.5px; line-height: 1.65; padding: 12px 0 12px 22px; border-bottom: 1px solid var(--eg-border); position: relative; }
.egsu-open li::before { content: ''; position: absolute; left: 0; top: 20px; width: 8px; height: 8px; border-radius: var(--eg-radius-pill); border: 2px solid var(--eg-accent); }
.egsu-note { font-size: 13px; color: var(--eg-muted); margin: 0; }
.egsu-note a { color: var(--eg-navy); }
/* END_SECTION:eg-v2-sustainability */

/* START_SECTION:eg-value-blocks (INDEX:127) */
.eg-value {

    padding-block: var(--eg-value-pad-block-start, 72px) var(--eg-value-pad-block-end, 72px);
    scroll-margin-top: 88px;
  }

  .eg-value__inner {
    width: 100%;
    max-width: var(--page-width, 1400px);
    margin-inline: auto;
    padding-inline: var(--page-margin, 20px);
    display: flex;
    flex-direction: column;
    gap: 56px;
  }

  .eg-value__section-heading {
    margin: 0;
    max-width: 24ch;
    font-family: var(--font-heading--family);
    font-weight: 600;
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    line-height: 1.1;
    color: var(--eg-navy);
  }

  .eg-value__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 48px;
  }

  .eg-value__row--text-only {
    grid-template-columns: minmax(0, 760px);
  }

  .eg-value__row--reverse .eg-value__media {
    order: 2;
  }

  .eg-value__media {
    border-radius: 4px;
    overflow: hidden;
    background-color: var(--eg-offwhite);
    aspect-ratio: 4 / 3;
  }

  .eg-value__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .eg-value__copy {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .eg-value__icon {
    display: inline-flex;
    width: 24px;
    height: 24px;
    color: var(--eg-navy);
  }

  .eg-value__icon-svg {
    width: 24px;
    height: 24px;
    display: block;
  }

  .eg-value__eyebrow {
    margin: 0;
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--eg-muted);
  }

  .eg-value__title {
    margin: 0;
    font-family: var(--font-heading--family);
    font-weight: 600;
    font-size: clamp(1.5rem, 2.4vw, 2rem);
    line-height: 1.12;
    color: var(--eg-navy);
  }

  .eg-value__body {
    margin: 0;
    max-width: 56ch;
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 17px;
    line-height: 1.62;
    color: var(--eg-charcoal);
  }

  @media screen and (max-width: 989px) {
    .eg-value__inner { gap: 48px; }
    .eg-value__row,
    .eg-value__row--text-only {
      grid-template-columns: 1fr;
      gap: 20px;
    }
    .eg-value__row--reverse .eg-value__media {
      order: 0;
    }
    .eg-value__body { font-size: 16px; }
  }
/* END_SECTION:eg-value-blocks */

/* START_SECTION:eg-wholesale (INDEX:128) */
.eg-whole {
  }

  .eg-whole__hero-inner,
  .eg-whole__aud-inner,
  .eg-whole__tiers-inner,
  .eg-whole__inq-inner {
    width: 100%;
    max-width: 1120px;
    margin-inline: auto;
    padding-inline: var(--page-margin, 20px);
    box-sizing: border-box;
  }

  .eg-whole__eyebrow {
    margin: 0 0 16px;
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--eg-muted);
  }
  .eg-whole__h2 {
    margin: 8px 0 24px;
    font-family: var(--font-heading--family);
    font-weight: 600;
    font-size: clamp(2rem, 4vw, 2.75rem);
    line-height: 1.12;
    letter-spacing: 0.012em;
    color: var(--eg-navy);
    text-wrap: balance;
  }
  .eg-whole__lead {
    margin: 0;
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 20px;
    line-height: 1.55;
    color: var(--eg-charcoal);
    text-wrap: pretty;
  }

  /* 1. Hero */
  .eg-whole__hero {
    background-color: var(--eg-offwhite);
    padding-block: var(--eg-whole-pad-start, 104px) 80px;
  }
  .eg-whole__hero-heading {
    margin: 0;
    font-family: var(--font-heading--family);
    font-weight: 600;
    font-size: clamp(2.5rem, 5.5vw, 4rem);
    line-height: 1.06;
    letter-spacing: 0.012em;
    color: var(--eg-navy);
    text-wrap: balance;
    max-width: 18ch;
  }
  .eg-whole__hero-sub {
    margin: 24px 0 0;
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 20px;
    line-height: 1.55;
    color: var(--eg-charcoal);
    max-width: 44rem;
    text-wrap: pretty;
  }
  .eg-whole__hero-actions {
    margin-top: 32px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
  }

  /* Buttons */
  .eg-whole__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding-inline: 28px;
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.01em;
    border-radius: 4px;
    text-decoration: none;
    transition: background-color 200ms ease, border-color 200ms ease;
  }
  .eg-whole__btn--primary {
    color: var(--eg-white);
    background-color: var(--eg-navy);
    border: 1px solid var(--eg-navy);
  }
  .eg-whole__btn--primary:hover,
  .eg-whole__btn--primary:focus-visible {
    background-color: var(--eg-navy-hover);
    border-color: var(--eg-navy-hover);
  }
  .eg-whole__btn--ghost {
    color: var(--eg-navy);
    background-color: transparent;
    border: 1px solid var(--eg-navy);
  }
  .eg-whole__btn--ghost:hover,
  .eg-whole__btn--ghost:focus-visible {
    background-color: rgba(39, 55, 85, 0.06);
  }

  /* 2. Audiences */
  .eg-whole__aud {
    background-color: var(--eg-white);
    padding-block: 80px;
  }
  .eg-whole__aud-grid {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }
  .eg-whole__aud-card {
    background-color: var(--eg-offwhite);
    border-radius: 4px;
    padding: 24px 26px;
  }
  .eg-whole__aud-t {
    margin: 0 0 8px;
    font-family: var(--font-heading--family);
    font-weight: 600;
    font-size: 1.125rem;
    line-height: 1.22;
    color: var(--eg-navy);
    text-wrap: balance;
  }
  .eg-whole__aud-d {
    margin: 0;
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 13px;
    line-height: 1.5;
    color: var(--eg-muted);
  }

  /* 3. Tiers */
  .eg-whole__tiers {
    background-color: var(--eg-offwhite);
    padding-block: 80px;
  }
  .eg-whole__tiers-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
  }
  .eg-whole__tiers-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
  .eg-whole__tier {
    background-color: var(--eg-white);
    border: 1px solid var(--eg-hairline);
    border-radius: 4px;
    padding: 32px;
  }
  .eg-whole__tier--feature {
    background-color: var(--eg-navy);
    border-color: var(--eg-navy);
  }
  .eg-whole__tier-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 16px;
  }
  .eg-whole__tier-name {
    margin: 0;
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--eg-navy);
  }
  .eg-whole__tier-note {
    margin: 0;
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--eg-muted);
    text-align: right;
  }
  .eg-whole__tier-d {
    margin: 8px 0 0;
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.5;
    color: var(--eg-muted);
  }
  .eg-whole__tier--feature .eg-whole__tier-name { color: var(--eg-white); }
  .eg-whole__tier--feature .eg-whole__tier-note { color: rgba(255, 255, 255, 0.78); }
  .eg-whole__tier--feature .eg-whole__tier-d { color: rgba(255, 255, 255, 0.78); }

  /* 4. Inquiry */
  .eg-whole__inq {
    background-color: var(--eg-white);
    padding-block: 88px var(--eg-whole-pad-end, 96px);
  }
  .eg-whole__inq-inner {
    max-width: 880px;
    display: flex;
    flex-direction: column;
    gap: 32px;
  }
  .eg-whole__inq-intro {
    display: flex;
    flex-direction: column;
    gap: 14px;
    max-width: 60ch;
  }
  .eg-whole__inq-email {
    margin: 4px 0 0;
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 8px;
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 15px;
  }
  .eg-whole__inq-email-label {
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-size: 12px;
    color: var(--eg-muted);
  }
  .eg-whole__inq-email-link {
    color: var(--eg-navy);
    font-weight: 500;
    text-decoration: none;
    border-bottom: 1px solid var(--eg-hairline);
    padding-bottom: 1px;
    transition: border-color 200ms ease;
  }
  .eg-whole__inq-email-link:hover { border-color: var(--eg-navy); }

  .eg-whole__panel {
    background-color: var(--eg-white);
    border: 1px solid var(--eg-hairline);
    border-radius: 4px;
    padding: clamp(20px, 4vw, 36px);
  }
  .eg-whole__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }
  .eg-whole__field {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }
  .eg-whole__field--full { grid-column: 1 / -1; }
  .eg-whole__label {
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.3;
    color: var(--eg-charcoal);
  }
  .eg-whole__input {
    width: 100%;
    box-sizing: border-box;
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 15px;
    line-height: 1.4;
    color: var(--eg-charcoal);
    background-color: var(--eg-white);
    border: 1px solid var(--eg-hairline);
    border-radius: 4px;
    padding: 11px 12px;
    transition: border-color 200ms ease, box-shadow 200ms ease;
    appearance: none;
  }
  .eg-whole__select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%236B6B6B' stroke-width='1.5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
  }
  .eg-whole__input::placeholder { color: var(--eg-muted); }
  .eg-whole__input:focus,
  .eg-whole__input:focus-visible {
    outline: none;
    border-color: var(--eg-navy);
    box-shadow: 0 0 0 2px rgba(39, 55, 85, 0.18);
  }
  .eg-whole__textarea {
    resize: vertical;
    min-height: 132px;
  }
  .eg-whole__hp {
    position: absolute !important;
    left: -9999px !important;
    width: 1px;
    height: 1px;
    overflow: hidden;
  }
  .eg-whole__actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-block-start: 22px;
  }
  .eg-whole__submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding-inline: 28px;
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.01em;
    color: var(--eg-white);
    background-color: var(--eg-navy);
    border: 1px solid var(--eg-navy);
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 200ms ease, border-color 200ms ease;
  }
  .eg-whole__submit:hover,
  .eg-whole__submit:focus-visible {
    background-color: var(--eg-navy-hover);
    border-color: var(--eg-navy-hover);
  }
  .eg-whole__disclaimer {
    margin: 0;
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 13px;
    line-height: 1.5;
    color: var(--eg-muted);
  }
  .eg-whole__errors {
    margin-block-end: 18px;
    padding: 12px 14px;
    border: 1px solid var(--eg-hairline);
    border-radius: 4px;
    background-color: var(--eg-offwhite);
  }
  .eg-whole__errors p {
    margin: 0;
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 14px;
    color: var(--eg-charcoal);
  }
  .eg-whole__success {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 8px 0;
    outline: none;
  }
  .eg-whole__success-title {
    margin: 0;
    font-family: var(--font-heading--family);
    font-weight: 600;
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    line-height: 1.2;
    color: var(--eg-navy);
  }

  @media screen and (max-width: 990px) {
    .eg-whole__aud-grid { grid-template-columns: repeat(2, 1fr); }
    .eg-whole__tiers-inner { grid-template-columns: 1fr; gap: 36px; }
  }
  @media screen and (max-width: 749px) {
    .eg-whole__aud-grid { grid-template-columns: 1fr; gap: 12px; }
    .eg-whole__grid { grid-template-columns: 1fr; }
    .eg-whole__submit { width: 100%; }
    .eg-whole__hero-sub { font-size: 18px; }
    .eg-whole__lead { font-size: 18px; }
  }
  @media (prefers-reduced-motion: reduce) {
    .eg-whole__btn,
    .eg-whole__input,
    .eg-whole__submit,
    .eg-whole__inq-email-link { transition: none; }
  }
/* END_SECTION:eg-wholesale */

/* START_SECTION:eg-why-light (INDEX:129) */
.eg-whylight {

    padding-block: var(--eg-whylight-pad-start, 80px) var(--eg-whylight-pad-end, 80px);
  }

  .eg-whylight__inner {
    width: 100%;
    max-width: var(--page-width, 1400px);
    margin-inline: auto;
    padding-inline: var(--page-margin, 20px);
    display: flex;
    flex-direction: column;
    gap: 48px;
  }

  .eg-whylight__head {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 64ch;
  }

  .eg-whylight__eyebrow {
    margin: 0;
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--eg-accent, #273755);
  }

  .eg-whylight__headline {
    margin: 0;
    max-width: 22ch;
    font-family: var(--font-heading--family);
    font-weight: 600;
    font-size: clamp(1.875rem, 3.4vw, 2.75rem);
    line-height: 1.08;
    letter-spacing: 0.004em;
    color: var(--eg-navy);
    text-wrap: balance;
  }

  .eg-whylight__lead {
    margin: 0;
    max-width: 60ch;
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: var(--eg-charcoal);
    text-wrap: pretty;
  }

  .eg-whylight__grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 48px;
  }

  .eg-whylight__point {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-block-start: 24px;
    border-block-start: 1px solid var(--eg-hairline);
  }

  .eg-whylight__point-title {
    margin: 0;
    font-family: var(--font-heading--family);
    font-weight: 600;
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    line-height: 1.14;
    color: var(--eg-navy);
  }

  .eg-whylight__point-body {
    margin: 0;
    max-width: 52ch;
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--eg-charcoal);
  }

  .eg-whylight__band {
    border-radius: 4px;
    background-color: var(--eg-navy);
    padding: 40px 32px;
    text-align: center;
  }

  .eg-whylight__band-text {
    margin: 0;
    margin-inline: auto;
    max-width: 40ch;
    font-family: var(--font-heading--family);
    font-weight: 600;
    font-size: clamp(1.375rem, 2.6vw, 2rem);
    line-height: 1.18;
    color: var(--eg-white);
    text-wrap: balance;
  }

  @media screen and (max-width: 989px) {
    .eg-whylight__inner { gap: 40px; }
    .eg-whylight__grid {
      grid-template-columns: 1fr;
      gap: 28px;
    }
    .eg-whylight__lead { font-size: 17px; }
  }
/* END_SECTION:eg-why-light */

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

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

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

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

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

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

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

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

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

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

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

  .utilities > * {
    text-align: center;

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

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

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

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

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

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

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

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

  /* ============================================================
     Ergovanta footer fix: make the bottom utility bar legible.
     The bar sits on the navy footer color scheme (scheme-3:
     background #273755, foreground #ffffff), but the Horizon
     defaults paint the bar text + links with
     `var(--color-foreground-muted)`, which scheme-3 does NOT
     define -- so the copyright, the "Terms and policies" trigger,
     and the policy links all fell back to dark (#1A1A1A-ish) text
     and read as invisible empty space on the navy band.
     This scoped override forces light-on-navy text >=12px.
     Scoped to `.footer-utilities` (this section's wrapper class)
     so nothing leaks to other sections. Reversible: delete this
     block to revert to Horizon default.
     ============================================================ */
  .footer-utilities .utilities,
  .footer-utilities .utilities a,
  .footer-utilities .footer-utilities__text,
  .footer-utilities .footer-utilities__group-copyright,
  .footer-utilities .policy-list-trigger {
    color: rgba(255, 255, 255, 0.72);
  }

  .footer-utilities .utilities a,
  .footer-utilities .footer-utilities__text,
  .footer-utilities .policy-list-trigger {
    font-size: 0.75rem;
  }

  .footer-utilities .utilities a:is(:hover, :focus-visible),
  .footer-utilities .footer-utilities__text a:is(:hover, :focus-visible),
  .footer-utilities .policy-list-trigger:is(:hover, :focus-visible) {
    color: #ffffff;
  }

  /* The expanded "Terms and policies" popover: keep it navy with
     light, legible policy links (Privacy / Terms / Refund /
     Shipping / Contact) so the list reads on the dark footer. */
  .footer-utilities .terms-policies-popover {
    background: #273755;
    border: 1px solid rgba(255, 255, 255, 0.24);
  }

  .footer-utilities .terms-policies-popover .policy_list li a {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.75rem;
  }

  .footer-utilities .terms-policies-popover .policy_list li a:is(:hover, :focus-visible) {
    color: #ffffff;
  }

  .footer-utilities .terms-policies-popover .policy_list li:is(:hover, :focus-within) {
    background: rgba(255, 255, 255, 0.12);
  }

  /* ============================================================
     Ergovanta: clear the Shopify draft-theme preview bar that
     overlays the very bottom of the page. Add bottom spacing to
     the footer-utilities section wrapper so the copyright + policy
     row (and the currency selector) sit comfortably above the
     bottom edge. Harmless on the live site -- it is just extra
     bottom space. Reversible: delete this rule.
     ============================================================ */
  .footer-utilities {
    padding-block-end: 56px;
  }

  /* ============================================================
     Ergovanta footer currency / country selector (compact).
     Sits on its own row above the copyright + policy grid, left
     aligned to the page content edge, light-on-navy to match the
     footer. Only rendered when Markets expose more than one
     country (more than one currency). Reversible: delete this row
     in the markup + this block to revert.
     ============================================================ */
  .eg-footer-localization-row {
    display: flex;
    justify-content: center;
    margin-block-end: var(--gap, 24px);

    @media screen and (min-width: 750px) {
      justify-content: flex-start;
    }
  }

  .eg-footer-localization {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: transparent;
  }

  .eg-footer-localization__label {
    font: 400 0.75rem/1.4 var(--font-body--family);
    color: rgba(255, 255, 255, 0.55);
  }

  .eg-footer-localization__button,
  .eg-footer-localization__button:hover {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    min-height: auto;
    padding: 4px 8px;
    font: 400 0.75rem/1.4 var(--font-body--family);
    color: rgba(255, 255, 255, 0.72);
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: var(--style-border-radius-buttons-primary, 4px);
    box-shadow: none;
    cursor: pointer;
  }

  .eg-footer-localization__button:is(:hover, :focus-visible) {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.5);
  }

  .eg-footer-localization__symbol {
    opacity: 0.7;
  }

  .eg-footer-localization__button .svg-wrapper.icon-caret {
    width: var(--icon-size-xs);
    height: var(--icon-size-xs);
    display: inline-flex;
    align-items: center;
    transition: transform var(--animation-speed) var(--animation-easing);
  }

  .eg-footer-localization__button[aria-expanded='true'] .icon-caret svg {
    transform: rotate(180deg);
  }

  /* The dropdown panel (country/currency list). Uses the standard
     popover color scheme for legibility, anchored to the trigger.
     Ergovanta fix (2026-06-12): the ~237-entry list was overflowing
     this panel (overflow defaulted to visible while max-height was
     capped at 22rem), so the long list read as cut off. The panel
     now scrolls its own content (overflow-y: auto) with a sensible
     cap (min(60vh, 420px)), a wider min-width so full names like
     "United States (USD $)" fit, and a thin on-brand scrollbar.
     Ergovanta fix (2026-06-14): widened to ~320-360px so most
     "Country Name (CUR symbol)" labels fit on one line, and the
     open/close reveal now uses opacity + transform + visibility
     (no display-transition / allow-discrete, which rendered glitchy)
     for a clean, reliable fade-and-slide. The footer panel opens
     upward, so its closed transform slides from +6px. */
  .eg-footer-localization .localization-wrapper {
    position: absolute;
    bottom: calc(100% + 10px);
    /* Ergovanta fix (2026-06-15): the footer panel opens UPWARD via `bottom`,
       but Horizon's base .localization-wrapper rule sets `top`, which was left
       intact here. With both `top` and `bottom` resolved, the absolutely
       positioned panel was stretched between two near-equal edges and collapsed
       to height:0 -- so clicking the trigger toggled it open but nothing was
       visible. Explicitly resetting `top: auto` lets `bottom` alone position the
       panel and its height is driven by content again. (The header panel opens
       downward and sets `top` itself, so it was unaffected.) */
    top: auto;
    left: 0;
    z-index: var(--layer-raised);
    display: flex;
    flex-direction: column;
    min-width: 320px;
    max-width: min(92vw, 360px);
    max-height: min(60vh, 420px);
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-width: thin;
    scrollbar-color: rgb(var(--color-foreground-rgb) / 0.35) transparent;
    border-radius: var(--style-border-radius-popover);
    box-shadow: var(--shadow-popover);
    border: var(--style-border-popover);
    background-color: var(--color-background);
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0s linear 0.18s;
  }

  .eg-footer-localization .localization-wrapper::-webkit-scrollbar {
    width: 8px;
  }

  .eg-footer-localization .localization-wrapper::-webkit-scrollbar-thumb {
    background-color: rgb(var(--color-foreground-rgb) / 0.35);
    border-radius: 8px;
  }

  .eg-footer-localization .localization-wrapper::-webkit-scrollbar-track {
    background-color: transparent;
  }

  .eg-footer-localization .localization-wrapper:not([hidden]) {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: opacity 0.18s ease, transform 0.18s ease;
  }

  .eg-footer-localization .localization-form__list-item {
    margin-inline: 8px;
  }
/* END_SECTION:footer-utilities */

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

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

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

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

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

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

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

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

  /* ============================================================
     Ergovanta kit footer columns (scoped to .footer-content only).
     Matches the design-kit footer: tiny uppercase letter-spaced
     column headings at ~55% white, lighter (weight 400) links.
     Horizon's footer menu block exposes no case/letter-spacing
     settings, so this is a small scoped CSS override.
     The heading selector adds the .menu__heading wrapper class so
     it out-specifies the existing
     `.footer-content .menu__heading__default` weight rule above.
     Reversible: delete this block to revert to Horizon default.
     ============================================================ */
  .footer-content .menu__heading .menu__heading__default {
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
  }

  .footer-content .menu__item a {
    font-weight: 400;
    font-size: 0.75rem;
    line-height: 1.6;
    color: #ffffff;
  }

  /* ============================================================
     Ergovanta footer brand-column links. The brand column's
     etymology slot now holds the Office line
     ("Office +1 (201) 374-0918") with a tel: link. Style it
     light-on-navy and clearly underlined so it reads as tappable.
     Scoped to .text-block links inside .footer-content, which
     only ever matches the brand text blocks (footer menu links
     use .menu__item a above), so nothing else is affected.
     Reversible: delete this block to revert.
     ============================================================ */
  .footer-content .text-block a {
    color: rgba(255, 255, 255, 0.72);
    text-decoration: underline;
    text-underline-offset: 2px;
    text-decoration-color: rgba(255, 255, 255, 0.4);
    transition: color var(--animation-speed) var(--animation-easing);
  }

  .footer-content .text-block a:is(:hover, :focus-visible) {
    color: #ffffff;
    text-decoration-color: #ffffff;
  }
/* END_SECTION:footer */

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

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

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

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

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

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

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

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

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

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

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

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

  .announcement-bar__slider .slideshow-control .svg-wrapper {
    width: var(--icon-size-xs);
    height: var(--icon-size-xs);
  }

  .announcement-bar__slide {
    place-content: center;
  }

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

  .announcement-bar__link {
    position: absolute;
    inset: 0;
  }
/* END_SECTION:header-announcements */

/* START_SECTION:header (INDEX:137) */
body {
    --header-height: 60px;
    --header-group-height: var(--header-height);
    --transparent-header-offset-boolean: 0; /* stylelint-disable-line declaration-property-value-disallowed-list */
  }

  .header {
    /* Set header paddings based on height setting */
    --header-padding: var(--padding-sm);
    --font-paragraph--line-height: 1;
    --header-content-transition-timing: 0s;

    display: block;
    contain: layout style;
    background: transparent;

    a,
    .button,
    .button-secondary,
    .header-actions__action {
      /* reset style from base.css */
      transition: color var(--header-content-transition-timing), border-color var(--header-content-transition-timing);
    }
  }

  #header-component :is(.header-menu, .dropdown-localization) {
    display: none;
  }

  @media screen and (min-width: 750px) {
    #header-component[data-menu-style='menu'] :is(.header-menu, .dropdown-localization) {
      display: flex;
    }
  }

  #header-component[data-menu-style='drawer'] .header__column {
    display: contents;
  }

  @media screen and (min-width: 750px) {
    #header-component[data-menu-style='menu'] .header__navigation-bar-row {
      display: none;
    }
  }

  .header[transparent] {
    --language-button-background-color: transparent;
    --language-button-border-color: transparent;
    --header-content-transition-timing: calc(var(--submenu-animation-speed) - var(--animation-speed-fast))
      var(--animation-speed-fast) var(--ease-out-cubic);

    --closed-underlay-height: 0px;

    /* used to display the appropriate logo based on transparency state */
    --header-logo-display: none;
    --header-logo-inverse-display: block;

    position: absolute;
    top: 0;
    left: 0;
    right: 0;

    z-index: var(--layer-overlay);

    &[transparent='not-sticky'][data-sticky-state='active'],
    &:has(.menu-list__link:not([aria-haspopup]):hover) {
      --header-logo-display: unset;
      --header-logo-inverse-display: unset;
      --color-foreground: inherit;
      --color-foreground-rgb: inherit;
      --color-background: inherit;
      --color-background-rgb: inherit;
      --color-border: inherit;
      --color-border-rgb: inherit;
      --closed-underlay-height: 100%;
    }

    /** For transparent header, apply inherit to rows when menu is not hovered */
    &:not([data-sticky-state='active']):not(:has(.menu-list__link:is(:hover, [aria-expanded='true']))) .header__row {
      --color-foreground: inherit;
      --color-foreground-rgb: inherit;
      --color-border: inherit;
      --color-border-rgb: inherit;
      --color-primary-button-background: inherit;
      --color-primary-button-text: inherit;
    }

    /* Multiple selectors for performance: each simple :has() check is faster than one complex selector with multiple conditions */
    &:has(.mega-menu__list:hover),
    &:has(.menu-list__link:is(:hover, [aria-expanded='true'])),
    &:has(.menu-list__list-item[slot='overflow'] .menu-list__link:is(:hover, [aria-expanded='true'])) {
      --header-logo-display: unset;
      --header-logo-inverse-display: unset;
      --color-foreground: inherit;
      --color-foreground-rgb: inherit;
      --color-background: inherit;
      --color-background-rgb: inherit;
      --color-border: inherit;
      --color-border-rgb: inherit;
      --header-content-transition-timing: var(--submenu-animation-speed) var(--ease-out-cubic);
    }
  }

  /* When top row has transparent background, make it inherit colors from header component */
  [data-transparent-color-scheme='top']:hover .header__row--top,
  [data-transparent-color-scheme='top']:focus-within .header__row--top,
  [data-transparent-color-scheme='both']:hover .header__row--top,
  [data-transparent-color-scheme='both']:focus-within .header__row--top {
    --color-foreground: inherit;
    --color-foreground-rgb: inherit;
    --color-border: inherit;
    --color-border-rgb: inherit;
    --color-primary-button-background: inherit;
    --color-primary-button-text: inherit;
  }

  /* When bottom row has transparent background, make it inherit colors from header component */
  [data-transparent-color-scheme='bottom']:hover .header__row--bottom,
  [data-transparent-color-scheme='bottom']:focus-within .header__row--bottom,
  [data-transparent-color-scheme='both']:hover .header__row--bottom,
  [data-transparent-color-scheme='both']:focus-within .header__row--bottom {
    --color-foreground: inherit;
    --color-foreground-rgb: inherit;
    --color-border: inherit;
    --color-border-rgb: inherit;
    --color-primary-button-background: inherit;
    --color-primary-button-text: inherit;
  }

  .header-section {
    position: relative;
    z-index: var(--layer-heightened);
  }

  /* need default values for non-flash transitions on first overflow menu open */
  #header-component {
    --submenu-height: 0px;
    --full-open-header-height: 0px;
  }

  #header-group:has(#header-component[sticky]) {
    display: contents;
  }

  .header-section:has(> #header-component[sticky='always']),
  .header-section:has(> #header-component[sticky='scroll-up'][data-sticky-state='active']) {
    position: sticky;

    /* Use -1 instead of 0 so intersection observer can track sticky state */
    top: -1px;
    z-index: var(--layer-sticky);
  }

  .header[data-sticky-state] {
    transition: opacity var(--animation-speed) var(--animation-easing);
    opacity: 1;
  }

  .header[data-sticky-state='active'] {
    view-transition-name: sticky-header;
  }

  :active-view-transition-type(empty-cart-drawer) {
    .header[data-sticky-state='active'] {
      view-transition-name: none;
    }
  }

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

  /* ================================
     * Underlays
     * ================================ */
  .header__underlay {
    position: absolute;
    inset: 0;
  }

  .header__underlay-closed {
    height: var(--closed-underlay-height, 100%);
    z-index: var(--layer-lowest);
    background: linear-gradient(
      var(--color-scheme-top-row) 0 var(--top-row-height),
      var(--color-scheme-bottom-row) var(--top-row-height) var(--header-height)
    );
    transition: height var(--animation-speed-slow) var(--ease-out-cubic);
  }

  .header__underlay-open {
    height: var(--full-open-header-height);
    background: linear-gradient(
      var(--color-scheme-top-row) 0 var(--top-row-height),
      var(--color-scheme-bottom-row) var(--top-row-height) var(--header-height),
      var(--color-submenu) var(--header-height) 100%
    );
    /* header-height is updated via js, the transition works automagically */
    transition: height var(--submenu-animation-speed) var(--ease-out-cubic);
  }

  .header__underlay-open::after {
    content: '';
    position: absolute;
    inset: 0;
    box-shadow: var(--shadow-popover);
    clip-path: inset(var(--header-height) 0 -100px 0); /* stylelint-disable-line */
    transition: height var(--submenu-animation-speed) var(--ease-out-cubic);
  }

  /* When top row has transparent background, make underlay inherit colors from header component */
  [data-transparent-color-scheme='top']:hover,
  [data-transparent-color-scheme='top']:focus-within,
  [data-transparent-color-scheme='both']:hover,
  [data-transparent-color-scheme='both']:focus-within {
    :is(.header__underlay-open, .header__underlay-closed) {
      --color-scheme-top-row: var(--color-background);
    }
  }

  /* When bottom row has transparent background, make underlay inherit colors from header component */
  [data-transparent-color-scheme='bottom']:hover,
  [data-transparent-color-scheme='bottom']:focus-within,
  [data-transparent-color-scheme='both']:hover,
  [data-transparent-color-scheme='both']:focus-within {
    :is(.header__underlay-open, .header__underlay-closed) {
      --color-scheme-bottom-row: var(--color-background);
    }
  }

  [data-submenu-overlap-bottom-row] {
    .header__underlay-open {
      background: linear-gradient(
        var(--color-scheme-top-row) 0 var(--top-row-height),
        var(--color-submenu) var(--top-row-height) 100%
      );
    }

    .header__row--bottom {
      z-index: var(--layer-lowest);
    }
  }

  /* End Underlays ================ */

  .header__row {
    /* The account component uses a different color scheme, but we need to override it to inherit the color of the header row */
    --color-account-icon: var(--color-foreground);

    position: relative;

    /* Overwrite color from color scheme, background is controlled by the underlays */
    background-color: transparent;

    &:has(.mega-menu__list:hover),
    &:has(.menu-list__link[aria-haspopup]:is(:hover, [aria-expanded='true'])),
    &:has(.menu-list__list-item[slot='overflow'] .menu-list__link:is(:hover, [aria-expanded='true'])) {
      /* Only elevate the row when the submenu is open to avoid overlapping other elevated content */
      z-index: var(--layer-heightened);
    }
  }

  .header__row--top:not(.divider--page-width),
  .header__row--top.divider--page-width .header__columns,
  .header__row--bottom {
    border-bottom: var(--border-bottom-width) solid var(--color-border);
  }

  @media screen and (max-width: 749px) {
    .header__row--top:not(.divider--page-width),
    .header__row--top.divider--page-width .header__columns {
      border-bottom-width: var(--border-bottom-width-mobile);
    }
  }

  #header-component[data-menu-style='drawer'] .header__row--top:not(.divider--page-width),
  #header-component[data-menu-style='drawer'] .header__row--top.divider--page-width .header__columns {
    border-bottom-width: var(--border-bottom-width-mobile);
  }

  .header__row.divider--page-width:not(.section--page-width) .header__columns {
    @media screen and (min-width: 750px) {
      padding-inline-start: 0;
      padding-inline-end: 0;
      margin-inline-start: var(--page-margin);
      margin-inline-end: var(--page-margin);
    }
  }

  .header__column {
    display: flex;
    align-items: center;

    /* on mobile, header__column nodes are ignored to create a new grid-template-area based on all visible content */
    @media screen and (max-width: 749px) {
      display: contents;
    }
  }

  .header__column--left,
  .header__column--center {
    gap: var(--gap-xl);
    grid-area: left;
  }

  .header__column--center {
    justify-content: center;
    grid-area: center;

    header-menu:only-child .overflow-menu::part(list) {
      justify-content: center;
    }
  }

  .header__column--right {
    gap: var(--gap-xl);
    justify-content: flex-end;
    grid-area: right;

    .overflow-menu::part(list) {
      justify-content: flex-end;
    }
  }

  .header__columns {
    /* Three column layout */
    --header-left: 1fr;
    --header-center: auto;
    --header-right: 1fr;
    --header-template-columns: var(--header-left) var(--header-center) var(--header-right);

    /* Mobile layout */
    --header-mobile-bookend: 44px;

    display: grid;
    grid-template-areas: 'left center right';
    grid-gap: var(--gap-xl);
    grid-template-columns: var(--header-template-columns);

    /* If menu is in center column */
    &:has(.header__column--center header-menu) {
      --header-center: auto;
      --header-left: minmax(max-content, 1fr);
      --header-right: minmax(max-content, 1fr);
    }

    /* If there is no center column, make the column the menu is in grow eagerly */
    &:where(:not(:has(.header__column--center))) {
      @media screen and (min-width: 750px) {
        --header-template-columns: var(--header-left) var(--header-right);

        grid-template-areas: 'left right';
      }

      /* If the header-menu is in the right column */
      &:has(.header__column--right header-menu) {
        --header-right: auto;
        --header-left: minmax(max-content, 1fr);
      }

      /* If the header-menu is in the left column */
      &:has(.header__column--left header-menu) {
        --header-left: auto;
        --header-right: minmax(max-content, 1fr);
      }
    }

    @media screen and (max-width: 749px) {
      --header-template-columns: var(--header-mobile-bookend) var(--header-mobile-bookend) 1fr
        var(--header-mobile-bookend) var(--header-mobile-bookend);

      grid-template-areas: 'leftA leftB center rightA rightB';
      grid-column: span 3;
      column-gap: 0;
      align-items: center;
      padding-block: 0;
      padding-inline: 0 var(--padding-3xs);

      .header-logo {
        grid-area: center;
      }

      &:not(:has(header-actions)) .search-action {
        grid-area: leftB;
      }

      &:not(:has(shopify-account)) .search-action {
        grid-area: rightA;
      }

      .search-action {
        grid-area: leftB;
      }

      header-actions {
        grid-area: rightB;
      }
    }
  }

  /* not ideal but we need to duplicate these styles for when touch comes into play
    We could avoid the duplication using js to set the data-menu-style attribute on small screens instead of using @media queries */
  #header-component[data-menu-style='drawer'] .header__columns {
    --header-template-columns: var(--header-mobile-bookend) var(--header-mobile-bookend) 1fr
      var(--header-mobile-bookend) var(--header-mobile-bookend);

    grid-template-areas: 'leftA leftB center rightA rightB';
    grid-column: span 3;
    column-gap: 0;
    align-items: center;
    padding-block: 0;
    padding-inline: 0 var(--padding-3xs);

    .header-logo {
      grid-area: center;
    }

    &:not(:has(header-actions)) .search-action {
      grid-area: leftB;
    }

    &:not(:has(shopify-account)) .search-action {
      grid-area: rightA;
    }

    .search-action {
      grid-area: leftB;
    }

    header-actions {
      grid-area: rightB;
    }
  }

  /* Single column layout if there are no columns within */
  .header__columns:not(:has(.header__column)) {
    grid-template-columns: 1fr;
  }

  /* Check for hover support to avoid unnecessary expensive recalculations when tapping on mobile */
  @media (hover: hover) {
    /* Column-specific dimming effect when any interactive element is hovered
        Multiple selectors for performance: each simple :has() check is faster than one complex selector with multiple conditions */
    .header__column:has(header-menu:hover),
    .header__column:has(.header-actions__action:hover),
    .header__column:has(.header__icon--menu:hover) {
      header-menu:not(:hover),
      .header-actions__action:not(:hover),
      .header__icon--menu:not(:hover) {
        opacity: var(--opacity-subdued-text);
        transition: opacity var(--animation-speed) var(--animation-easing);
      }
    }
  }

  /* Ensure smooth transitions for all interactive elements */
  header-menu,
  .header-actions__action,
  .header__icon--menu {
    transition: opacity var(--animation-speed) var(--animation-easing);
  }

  /* Header action button styles */
  .header-actions__action {
    --button-color: var(--color-foreground);
    color: var(--button-color);
    cursor: pointer;
    display: flex;
    justify-content: center;

    &:hover {
      --button-color: var(--color-foreground);
    }
  }

  .header-actions__action:not(.account-button) .svg-wrapper {
    height: var(--button-size);
    width: var(--button-size);
  }

  .header-actions__action:not(.account-button) svg {
    width: var(--icon-size-md);
    height: var(--icon-size-md);
  }

  .header:has(#Details-menu-drawer-container[open]) {
    contain: style;
  }

  .header.header--compact {
    --header-padding: var(--padding-2xs);
  }

  .header__columns {
    --padding-block-start: var(--header-padding);
    --padding-block-end: var(--header-padding);
  }

  .header:not(.header--compact) .header__row--bottom {
    --header-padding: var(--padding-xs);
  }

  .header--collapse-row-paddings {
    .header__row--top .header__columns {
      --padding-block-end: 0px;
    }

    .header__row--bottom .header__columns {
      --padding-block-start: 0px;
    }
  }

  /* When the header is transparent, add a margin to a potential header-section below it */
  .header-section:has(.header[transparent]) + .shopify-section {
    margin-top: var(--header-height);
  }

  /* When the header is transparent, and when there is no header-section below it, offset the first main-section with
     * the height of the header
     */

  main > .shopify-section:first-child .section:not(.disable-section-top-offset) {
    &.spacing-style,
    .spacing-style {
      --section-top-offset: calc(var(--header-height) * var(--transparent-header-offset-boolean));

      /* Any nested sections should not be offset */
      :is(.spacing-style, .inherit-spacing) {
        --section-top-offset: 0px;
      }
    }

    /* Make sticky content immediately stick to the top of the page */
    .sticky-content {
      margin-top: calc(var(--header-height) * var(--transparent-header-offset-boolean) * -1);
    }
  }

  /* Optimize layout performance for hidden menus */
  .header-menu .menu-list__submenu {
    content-visibility: auto;
    contain-intrinsic-size: 0px 500px;
  }

  /* Force visibility when open/animating and in overflow submenu to prevent layout issues */
  .header-menu details[open] .menu-list__submenu,
  .header-menu .menu-list__submenu[data-active],
  .header-menu .menu-list__list-item[slot='overflow'] .menu-list__submenu {
    content-visibility: visible;
  }

  /* Dropdown Localization Styles */
  .dropdown-localization__button {
    display: flex;
    position: relative;
    align-items: center;
    gap: 4px;
    font-family: var(--menu-localization-font);
    font-size: var(--menu-localization-font-size);
    font-weight: var(--menu-top-level-font-weight);
    padding-inline: var(--padding-2xs);
    margin-inline: calc(-1 * var(--padding-2xs));
  }

  .dropdown-localization__button .svg-wrapper.icon-caret {
    height: var(--icon-size-xs);
    width: var(--icon-size-xs);
    right: var(--margin-xs);
    top: calc(50% - var(--padding-2xs));
    flex-shrink: 0;
    transition: transform var(--animation-speed) var(--animation-easing);
  }

  .dropdown-localization__button .icon-flag {
    width: var(--menu-localization-font-size, var(--icon-size-sm));
    height: var(--menu-localization-font-size, var(--icon-size-sm));
    clip-path: circle(50%); /* stylelint-disable-line */
    background-position: center;
    background-size: cover;
    margin-inline-end: 4px;
    position: relative;
  }

  .dropdown-localization__button .icon-flag::after {
    content: '';
    position: absolute;
    inset: 0;
    box-shadow: inset 0 0 var(--size-shadow) var(--color-shadow);
    border-radius: 50%;
  }

  .dropdown-localization__button[aria-expanded='true'] .icon-caret svg {
    transform: rotate(180deg);
  }

  .dropdown-localization__button,
  .dropdown-localization__button:hover {
    box-shadow: none;
    background-color: transparent;
    border-color: transparent;
  }

  dropdown-localization-component .localization-form__list {
    max-height: 20.5rem;
  }

  .localization-wrapper {
    position: fixed;
    z-index: var(--layer-raised);
    border-radius: var(--style-border-radius-popover);
    transition-property: display, opacity, translate;
    transition-duration: 0.3s;
    transition-timing-function: var(--ease-out-quad);
    transition-behavior: allow-discrete;
    translate: 0 20px;
    opacity: 0;
  }

  .localization-wrapper:not([hidden]) {
    translate: 0 0;
    opacity: 1;
  }

  @starting-style {
    .localization-wrapper:not([hidden]) {
      translate: 0 20px;
      opacity: 0;
    }
  }

  dropdown-localization-component {
    position: relative;
    background-color: transparent;
  }

  dropdown-localization-component .country-filter {
    position: relative;
    padding: 8px;
  }

  dropdown-localization-component .country-filter__input {
    border: none;
  }

  dropdown-localization-component .localization-form__list-item {
    margin-inline: 8px;
  }

  dropdown-localization-component .localization-wrapper {
    box-shadow: var(--shadow-popover);
    border: var(--style-border-popover);
    background-color: var(--color-background);
    max-height: 27.5rem;
    position: absolute;
    top: calc(100% + 10px);
    z-index: calc(var(--layer-header-menu) + 1);
  }

  dropdown-localization-component .localization-wrapper.right-bound {
    right: 0;
    left: unset;
  }

  dropdown-localization-component .localization-wrapper.left-bound {
    left: -8px;
    right: unset;
  }

  /* Additional specificity due to dropdown-localization-component getting a low score */
  dropdown-localization-component .language-selector.language-selector {
    padding: 10px 8px 10px 16px;
  }

  dropdown-localization-component .localization-form__currency {
    width: max-content;
    opacity: 0;
    visibility: hidden;
    transition: none;
  }

  dropdown-localization-component .localization-form__select:hover {
    background-color: rgb(var(--color-primary-hover-rgb) / var(--opacity-8));
  }

  dropdown-localization-component
    :is(
      .localization-form__list-item:hover,
      .localization-form__list-item[aria-selected='true'],
      .localization-form__list-item[aria-current='true']
    )
    .localization-form__currency {
    opacity: 1;
    color: var(--color-foreground-muted);
    transition: opacity var(--animation-speed-slow) var(--animation-easing);
    visibility: visible;
  }

  .dropdown-localization .language-selector:where(:not(.top-shadow)) {
    font-weight: var(--menu-top-level-font-weight);
  }

  .dropdown-localization:not(dropdown-localization-component) .language-selector {
    font-family: var(--menu-localization-font);
    font-size: var(--menu-localization-font-size);
  }
/* END_SECTION:header */

/* START_SECTION:hero (INDEX:138) */
.hero-wrapper {
    --hero-height-offset: 0px;
  }

  /* Being extra specific in the selector for performance reasons */
  body:has(> #header-group > .header-section > #header-component) .hero-wrapper:first-child {
    --hero-height-offset: var(--header-group-height, 0);
  }

  .hero {
    position: relative;
    min-height: calc(var(--hero-min-height) - var(--hero-height-offset));
  }

  .hero[data-shopify-visual-preview] {
    --hero-min-height: 600px;

    min-height: 600px;
  }

  .hero__container {
    position: relative;
    overflow: hidden;
    border: var(--hero-border-width) var(--hero-border-style) rgb(var(--color-border-rgb) / var(--hero-border-opacity));
    min-height: inherit;
    align-items: var(--vertical-alignment-mobile);
    justify-content: var(--horizontal-alignment);
    z-index: var(--layer-base);

    @media screen and (min-width: 750px) {
      align-items: var(--vertical-alignment);
    }
  }

  .hero__content-wrapper.page-width {
    grid-column: 2 / 3;
  }

  .hero__content-wrapper {
    position: relative;
    inset: 0;
    z-index: var(--layer-flat);
  }

  .hero__content-wrapper .group-block-content {
    position: relative;
  }

  .hero__media-grid {
    position: absolute;
    inset: 0;
    display: grid;
    grid-column: 1 / -1;
    grid-template-columns: repeat(var(--hero-media-count, 1), 1fr);
  }

  .hero--auto .hero__media {
    aspect-ratio: var(--hero-media-aspect-ratio);
  }

  .hero--no-blocks-auto-height {
    .hero__media {
      width: 100%;
      aspect-ratio: auto;
    }

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

  .hero__media-wrapper {
    overflow: hidden;
    position: relative;
  }

  .hero__media {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center center;
    overflow: hidden;
    position: relative;
    z-index: var(--layer-base);
  }

  /* Mobile/Desktop media visibility */

  .hero__media-wrapper--mobile {
    display: none;
  }

  .hero__media-wrapper--desktop {
    display: block;
  }

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

    .hero__media-wrapper--mobile {
      display: block;
    }

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

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

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

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

    :is(a, button, input, textarea, select, details, summary) {
      pointer-events: auto;
    }
  }

  .hero__content-wrapper--design-mode * {
    pointer-events: auto;
  }

  .hero[data-blur-shadow='true'] {
    --blurred-reflection-filter-saturate: saturate(1.5);
    --blurred-reflection-mask-image: linear-gradient(to bottom, #000 0%, #000 60%, transparent 100%);
    --blurred-reflection-box-shadow: rgb(0 0 0 / 5%) 0 0 1rem;
    --blurred-reflection-filter-blur: blur(20px);
    --blurred-reflection-scale: scale(2, 1.25);
    --blurred-reflection-padding-block-end: 60px;
  }

  .hero[data-blur-shadow='true'] .hero__container::before {
    content: '';
    position: absolute;
    inset: 0;
    box-shadow: var(--blurred-reflection-box-shadow);
    mix-blend-mode: overlay;
    pointer-events: none;
    z-index: -1;
  }

  .hero__blurred-image {
    position: absolute;
    inset: 0;
    z-index: -1;
    mask-image: var(--blurred-reflection-mask-image);
    filter: var(--blurred-reflection-filter-saturate);
    pointer-events: none;
    transform: translateY(50%);
    overflow: hidden;
  }

  .hero__blurred-image--desktop {
    display: none;

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

  .hero__blurred-image--mobile {
    display: block;

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

  .hero__blurred-image img,
  .hero__blurred-image svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    filter: var(--blurred-reflection-filter-blur);
    opacity: var(--blur-opacity);
    transform: var(--blurred-reflection-scale);
    padding-block-end: var(--blurred-reflection-padding-block-end);

    &:not(:only-child) {
      width: 50%;

      &:last-child {
        right: 0;
        left: auto;
      }
    }
  }
/* END_SECTION:hero */

/* START_SECTION:layered-slideshow (INDEX:139) */
.layered-slideshow-section {
    position: relative;
  }

  layered-slideshow-component {
    display: block;
    width: 100%;
  }

  .layered-slideshow__container {
    --radius: calc(var(--corner-radius, 1) * 1rem);
    --button-width: 56px;
    --border-color: var(--color-background);
    --inactive-tabs-width: calc((var(--total-tabs) - 1) * var(--button-width));
    --active-panel-width: calc(100cqi - var(--inactive-tabs-width));
    width: 100%;
    position: relative;
    container-type: inline-size;
    border-radius: var(--radius);
    overflow: hidden;
  }

  .layered-slideshow__container:not([size='auto']) {
    height: 100%;
  }

  .layered-slideshow__container[size='auto'] {
    height: auto;
  }

  @media screen and (min-width: 750px) {
    layered-slideshow-component {
      min-height: var(--layered-min-height-desktop, 0px);
    }
  }

  .layered-slideshow__tablist {
    display: grid;
    grid-template-columns: var(--active-tab);
    position: absolute;
    inset: 0;
    height: 100%;
    pointer-events: none;
    z-index: var(--layer-raised);
  }

  .layered-slideshow__tablist button {
    width: var(--button-width);
    height: 100%;
    pointer-events: all;
    opacity: 0;
    cursor: grab;
    border: none;
    background: transparent;
    padding: 0;
    position: relative;
    outline: none;
    transition: opacity 0.2s ease;
  }

  .layered-slideshow__tablist button:active {
    cursor: grabbing;
  }

  .layered-slideshow__tablist button[aria-selected='true'] {
    cursor: default;
  }

  .layered-slideshow__tablist button:focus-visible {
    opacity: 1;
  }

  .layered-slideshow__container[data-dragging] {
    cursor: grabbing;
  }

  .layered-slideshow__container[data-instant-transitions],
  .layered-slideshow__container:is([data-dragging], [data-instant-transitions])
    :is(
      .layered-slideshow__tablist,
      .layered-slideshow__panels,
      .layered-slideshow__panel-content,
      .layered-slideshow__content
    ) {
    transition: none;
  }

  .layered-slideshow__panels {
    display: grid;
    grid-template-columns: var(--active-tab);
    height: 100%;
    overflow: hidden;
  }

  .layered-slideshow__panel {
    position: relative;
    height: 100%;
    min-width: var(--button-width);
    border-radius: var(--radius);
    z-index: calc(var(--total-tabs) - var(--index));
  }

  .layered-slideshow__panel:first-child .layered-slideshow__panel-content {
    width: var(--active-panel-width);
    border-left: var(--border-width) solid var(--border-color);
  }

  .layered-slideshow__panel:not(:first-child) .layered-slideshow__content {
    padding-inline-start: calc((var(--radius) * 2) + var(--padding-inline-start, 0px));
  }

  .layered-slideshow__panel-content {
    border: var(--border-width) solid var(--border-color);
    border-left: none;
    border-radius: var(--radius);
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    overflow: hidden;
    width: calc(var(--active-panel-width) + (var(--radius) * 2));
  }

  .layered-slideshow__panel-content :is(img, video, svg) {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* Video poster visibility - poster shows initially and hides when panel becomes active */
  .layered-slideshow__video-poster {
    z-index: 1;
  }

  .layered-slideshow__video {
    z-index: 0;
  }

  /* When panel is active, hide poster so video is visible */
  .layered-slideshow__panel:not([inert]) .layered-slideshow__video-poster {
    opacity: 0;
  }

  @media (prefers-reduced-motion: no-preference) {
    .layered-slideshow__video-poster {
      transition: opacity 0.3s ease;
    }
  }

  .layered-slideshow__content {
    height: 100%;
    position: relative;
    z-index: 1;
  }

  .layered-slideshow__content > * {
    margin: auto;
  }

  .layered-slideshow__content.background-transparent {
    background-color: transparent;
  }

  .layered-slideshow__panel--drop-shadow:not(:last-child) .layered-slideshow__panel-content {
    box-shadow: 4px 0 12px 0 rgba(0, 0, 0, 0.1);
  }

  /* Shared transitions (desktop and mobile) */
  @media (prefers-reduced-motion: no-preference) {
    .layered-slideshow__panels,
    .layered-slideshow__tablist {
      transition-property: grid-template-columns, grid-template-rows;
      transition-duration: 0.6s;
      transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    }

    .layered-slideshow__content {
      opacity: 0;
      transform: translateY(0.5lh);
      transition: opacity 0.48s, transform 0.48s;
    }

    .layered-slideshow__panel:not([inert]) .layered-slideshow__content {
      opacity: 1;
      transform: translateY(0);
      transition-delay: 0.24s;
    }
  }

  @media screen and (max-width: 749px) {
    .layered-slideshow__container {
      --button-height: 44px;
      --inactive-tabs-height: calc((var(--total-tabs) - 1) * var(--button-height));
    }

    .layered-slideshow__container:not([size='auto']) {
      --layered-total-height: calc(var(--layered-panel-height-mobile, 260px) + var(--inactive-tabs-height));
      --active-panel-height: var(--layered-panel-height-mobile, 260px);
      min-height: var(--layered-total-height);
      height: var(--layered-total-height);
    }

    .layered-slideshow__container[size='auto'] {
      height: auto;
    }

    .layered-slideshow__tablist {
      grid-template-rows: var(--active-tab);
      grid-template-columns: 1fr;
      grid-auto-flow: row;
    }

    .layered-slideshow__tablist button {
      width: 100%;
      height: var(--button-height);
    }

    .layered-slideshow__panels {
      grid-template-rows: var(--active-tab);
      grid-template-columns: 1fr;
      grid-auto-flow: row;
    }

    .layered-slideshow__panel {
      min-height: var(--button-height);
      width: 100%;
      height: 100%;
      position: relative;
      z-index: calc(var(--total-tabs) - var(--index));
    }

    .layered-slideshow__panel:first-child .layered-slideshow__panel-content {
      width: 100%;
      height: var(--active-panel-height);
      border-top: var(--border-width) solid var(--border-color);
      left: 0;
      right: 0;
      border-left: var(--border-width) solid var(--border-color);
    }

    .layered-slideshow__panel-content {
      position: absolute;
      border: var(--border-width) solid var(--border-color);
      border-radius: var(--radius);
      box-sizing: border-box;
      width: 100%;
      /* Clamp overlap to (button-height - border-width) to prevent visual issues with large radius + border */
      height: calc(var(--active-panel-height) + min(var(--radius) * 2, var(--button-height) - var(--border-width)));
      top: unset;
      left: 0;
      right: 0;
      bottom: 0;
      overflow: hidden;
    }

    .layered-slideshow__panel:not(:first-child) .layered-slideshow__panel-content {
      border-top: none;
    }

    .layered-slideshow__panel:not(:first-child) {
      margin-top: calc(var(--border-width) * -1);
    }

    .layered-slideshow__content {
      padding-inline-start: var(--padding-inline-start, 0px);
      padding-inline-end: var(--padding-inline-end, 0px);
    }

    /* Adjust padding for non-first slides to account for radius overlap at the top (not sides on mobile) */
    .layered-slideshow__panel:not(:first-child) .layered-slideshow__content {
      padding-block-start: calc((var(--radius) * 2) + var(--padding-block-start, 0px));
      padding-inline-start: var(--padding-inline-start, 0px);
    }

    .layered-slideshow__panel--drop-shadow:not(:last-child) .layered-slideshow__panel-content {
      box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.1);
    }
  }
/* END_SECTION:layered-slideshow */

/* START_SECTION:logo (INDEX:140) */
.logo-section {
    width: calc(var(--logo-width) + var(--padding-inline-start) + var(--padding-inline-end));
    max-width: 100%;
    max-height: calc(var(--logo-height, 100%) + var(--padding-block-start) + var(--padding-block-end));
    font-size: var(--logo-height);
    display: flex;

    @media screen and (max-width: 749px) {
      max-height: calc(
        var(--logo-height-mobile, var(--logo-height, 100%)) + var(--padding-block-start) + var(--padding-block-end)
      );
      font-size: var(--logo-height-mobile, var(--logo-height));
      width: calc(
        var(--logo-width-mobile, var(--logo-width)) + var(--padding-inline-start) + var(--padding-inline-end)
      );
    }
  }

  .logo-section--center {
    margin-inline: auto;
  }

  .logo-section--flex-end {
    margin-inline-start: auto;
  }

  .logo-section--flex-start {
    margin-inline-end: auto;
  }

  .logo-section__image-wrapper {
    display: flex;
    width: 100%;
    max-width: 100%;
    max-height: 100%;
  }

  .logo-section__image {
    object-fit: contain;
    width: 100%;
  }
/* END_SECTION:logo */

/* START_SECTION:look-demo-header (INDEX:141) */
.look-demo-header {
    --ldh-navy: #273755;
    --ldh-charcoal: #1a1a1a;
    --ldh-muted: #6b6b6b;
    padding-block: var(--ldh-pad-block-start, 56px) var(--ldh-pad-block-end, 8px);
  }
  .look-demo-header__inner {
    width: 100%;
    max-width: var(--page-width, 1400px);
    margin-inline: auto;
    padding-inline: var(--page-margin, 20px);
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .look-demo-header__eyebrow {
    margin: 0;
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ldh-muted);
  }
  .look-demo-header__title {
    margin: 0;
    font-family: var(--font-heading--family);
    font-weight: 600;
    color: var(--ldh-navy);
    font-size: clamp(2.25rem, 4vw, 3.5rem);
    line-height: 1.08;
    letter-spacing: 0.005em;
  }
  .look-demo-header__intro {
    margin: 0;
    max-width: 720px;
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 17px;
    line-height: 1.6;
    color: var(--ldh-charcoal);
  }
  @media screen and (max-width: 749px) {
    .look-demo-header { padding-block: 36px 4px; }
    .look-demo-header__intro { font-size: 16px; }
  }
/* END_SECTION:look-demo-header */

/* START_SECTION:look-scene (INDEX:142) */
.look-scene {
    --ls-navy: #273755;
    --ls-navy-hover: #1b2840;
    --ls-charcoal: #1a1a1a;
    --ls-offwhite: #f5f5f5;
    --ls-white: #ffffff;
    --ls-hairline: #e5e5e5;
    --ls-muted: #6b6b6b;
    --ls-shadow: 0 1px 2px rgb(39 55 85 / 0.05), 0 10px 30px rgb(39 55 85 / 0.1);

    padding-block: var(--ls-pad-block-start, 72px) var(--ls-pad-block-end, 72px);
    color: var(--ls-charcoal);
  }

  .look-scene__inner {
    width: 100%;
    max-width: var(--page-width, 1400px);
    margin-inline: auto;
    padding-inline: var(--page-margin, 20px);
  }

  .look-scene__head {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 28px;
    max-width: 44rem;
  }

  .look-scene__eyebrow {
    margin: 0;
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ls-muted);
  }

  .look-scene__heading {
    margin: 0;
    font-family: var(--font-heading--family);
    font-weight: 600;
    font-size: clamp(1.6rem, 3vw, 2.25rem);
    line-height: 1.12;
    color: var(--ls-navy);
  }

  .look-scene__caption {
    margin: 0;
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 0.9375rem;
    line-height: 1.55;
    color: var(--ls-muted);
  }

  .look-scene__img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .look-scene__img--empty {
    background: linear-gradient(135deg, rgb(39 55 85 / 0.06), rgb(39 55 85 / 0.13));
    aspect-ratio: 16 / 10;
  }

  /* Shared card primitives (PLP look) */
  .look-card__img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-color: var(--ls-offwhite);
  }
  .look-card__img--ph {
    display: block;
    aspect-ratio: 1 / 1;
    background-color: var(--ls-offwhite);
  }
  .look-card__title {
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.4;
    color: var(--ls-navy);
    text-decoration: none;
  }
  .look-card__title:hover,
  .look-card__title:focus-visible { text-decoration: underline; }
  .look-card__price {
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 14px;
    font-variant-numeric: tabular-nums;
    color: var(--ls-charcoal);
  }

  /* Buttons */
  .look-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    border-radius: 4px;
    border: 1px solid var(--ls-navy);
    padding: 10px 16px;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 200ms ease, color 200ms ease, border-color 200ms ease, opacity 200ms ease;
    min-height: 40px;
  }
  .look-btn--primary,
  .look-btn--add {
    background-color: var(--ls-navy);
    color: var(--ls-white);
  }
  .look-btn--primary:hover,
  .look-btn--add:hover,
  .look-btn--primary:focus-visible,
  .look-btn--add:focus-visible {
    background-color: var(--ls-navy-hover);
    border-color: var(--ls-navy-hover);
  }
  .look-btn--ghost {
    background-color: var(--ls-white);
    color: var(--ls-navy);
  }
  .look-btn--ghost:hover,
  .look-btn--ghost:focus-visible {
    background-color: var(--ls-offwhite);
  }
  .look-btn--soldout {
    background-color: var(--ls-offwhite);
    color: var(--ls-muted);
    border-color: var(--ls-hairline);
    cursor: default;
  }
  .look-btn[aria-busy='true'] { opacity: 0.7; cursor: default; }
  .look-btn:focus-visible,
  .look-hotspot__dot:focus-visible,
  .look-qty__btn:focus-visible,
  .look-variant__select:focus-visible {
    outline: 2px solid var(--ls-navy);
    outline-offset: 2px;
  }

  /* ---------- HOTSPOTS ---------- */
  .look-scene__figure {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    background-color: var(--ls-offwhite);
    aspect-ratio: 16 / 10;
  }
  .look-hotspot {
    position: absolute;
    transform: translate(-50%, -50%);
    z-index: 2;
  }
  .look-hotspot__dot {
    width: 30px;
    height: 30px;
    min-width: 28px;
    min-height: 28px;
    border-radius: 50%;
    border: 2px solid var(--ls-white);
    background-color: var(--ls-navy);
    color: var(--ls-white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
    box-shadow: 0 2px 8px rgb(39 55 85 / 0.35);
    transition: transform 120ms ease, background-color 200ms ease;
  }
  .look-hotspot__dot:hover { transform: scale(1.08); background-color: var(--ls-navy-hover); }
  .look-hotspot__num {
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    line-height: 1;
  }
  .look-hotspot__pop {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%);
    width: 248px;
    max-width: 70vw;
    background-color: var(--ls-white);
    border: 1px solid var(--ls-hairline);
    border-radius: 8px;
    box-shadow: var(--ls-shadow);
    padding: 12px;
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 12px;
    z-index: 5;
    opacity: 0;
    transition: opacity 200ms ease;
  }
  .look-hotspot__pop[data-open] { opacity: 1; }
  .look-hotspot__media {
    display: block;
    width: 72px;
    height: 72px;
    border-radius: 6px;
    overflow: hidden;
    background-color: var(--ls-offwhite);
  }
  .look-hotspot__body {
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: flex-start;
    min-width: 0;
  }
  .look-hotspot__body .look-card__title {
    font-size: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .look-hotspot__body .look-btn { margin-top: 2px; padding: 8px 12px; min-height: 36px; }
  .look-hotspot__close {
    position: absolute;
    top: 6px;
    right: 6px;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    background: transparent;
    color: var(--ls-muted);
    cursor: pointer;
    border-radius: 4px;
  }
  .look-hotspot__close:hover { color: var(--ls-charcoal); background-color: var(--ls-offwhite); }

  /* ---------- BUNDLE ---------- */
  .look-scene__bundle {
    display: grid;
    grid-template-columns: 55fr 45fr;
    gap: 28px;
    align-items: start;
  }
  .look-scene__bundle-media {
    border-radius: 8px;
    overflow: hidden;
    background-color: var(--ls-offwhite);
    aspect-ratio: 4 / 5;
    position: sticky;
    top: 24px;
  }
  .look-scene__bundle-list { display: flex; flex-direction: column; gap: 0; }
  .look-rows { list-style: none; margin: 0; padding: 0; }
  .look-row {
    display: grid;
    grid-template-columns: 92px 1fr auto;
    gap: 16px;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid var(--ls-hairline);
  }
  .look-row:first-child { padding-top: 0; }
  .look-row__media {
    display: block;
    width: 92px;
    height: 92px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--ls-hairline);
    background-color: var(--ls-offwhite);
  }
  .look-row__body { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
  .look-row__actions { display: flex; flex-direction: column; align-items: flex-end; gap: 8px; }
  .look-row__buy { display: flex; align-items: center; gap: 10px; }

  /* Variant select (compact, hairline, 4px radius, navy focus) */
  .look-variant { display: block; width: 100%; max-width: 220px; }
  .look-variant__select {
    width: 100%;
    height: 36px;
    padding: 0 30px 0 10px;
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 13px;
    color: var(--ls-charcoal);
    background-color: var(--ls-white);
    border: 1px solid var(--ls-hairline);
    border-radius: 4px;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12'%3E%3Cpath d='M2.5 4.5 6 8l3.5-3.5' fill='none' stroke='%23273755' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    transition: border-color 200ms ease;
  }
  .look-variant__select:hover { border-color: var(--ls-muted); }

  .look-qty {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--ls-hairline);
    border-radius: 4px;
    overflow: hidden;
  }
  .look-qty__btn {
    width: 32px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--ls-white);
    border: 0;
    color: var(--ls-navy);
    cursor: pointer;
  }
  .look-qty__btn:hover { background-color: var(--ls-offwhite); }
  .look-qty__input {
    width: 34px;
    height: 36px;
    border: 0;
    text-align: center;
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 14px;
    font-variant-numeric: tabular-nums;
    color: var(--ls-charcoal);
    background-color: var(--ls-white);
    -moz-appearance: textfield;
  }
  .look-qty__input:focus-visible { outline: none; }

  .look-bundle__foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-top: 18px;
    flex-wrap: wrap;
  }
  .look-bundle__subtotal { display: flex; flex-direction: column; gap: 2px; }
  .look-bundle__subtotal-label {
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 12px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--ls-muted);
  }
  .look-bundle__subtotal-value {
    font-family: var(--font-heading--family);
    font-weight: 600;
    font-size: 1.5rem;
    color: var(--ls-navy);
    font-variant-numeric: tabular-nums;
  }
  .look-bundle__addall { padding-inline: 22px; }
  .look-scene__status {
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 13px;
    color: var(--ls-muted);
    min-height: 1.2em;
    margin-top: 8px;
  }

  /* ---------- SHOPPABLE (HYBRID) ---------- */
  .look-scene__shoppable {
    display: grid;
    grid-template-columns: 62fr 38fr;
    gap: 28px;
    align-items: start;
  }
  .look-scene__shoppable-figure { position: sticky; top: 24px; }
  /* Full, uncropped 1:1 scene so the percentage-positioned dots align exactly
     to the square photo. The container is a true square box as wide as the
     column allows; the image fills it with no cover-crop. */
  .look-scene__figure--full {
    aspect-ratio: 1 / 1;
    width: 100%;
    background-color: var(--ls-offwhite);
  }
  .look-scene__figure--full .look-scene__img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .look-scene__figure--full .look-scene__img--empty {
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
  }
  .look-scene__shoppable-list { display: flex; flex-direction: column; gap: 0; }

  .look-rows--numbered { list-style: none; margin: 0; padding: 0; }
  .look-row--numbered {
    grid-template-columns: 28px 92px 1fr auto;
    border-radius: 8px;
    padding: 14px 12px;
    border-bottom: 1px solid var(--ls-hairline);
    scroll-margin-top: 90px;
    transition: background-color 200ms ease, box-shadow 200ms ease;
  }
  .look-row--numbered:first-child { padding-top: 14px; }
  .look-row__num {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1px solid var(--ls-hairline);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: var(--ls-navy);
    background-color: var(--ls-white);
    transition: background-color 200ms ease, color 200ms ease, border-color 200ms ease;
  }
  .look-row--numbered.is-active {
    background-color: var(--ls-offwhite);
    box-shadow: inset 0 0 0 1px var(--ls-hairline);
  }
  .look-row--numbered.is-active .look-row__num {
    background-color: var(--ls-navy);
    color: var(--ls-white);
    border-color: var(--ls-navy);
  }
  /* Dot emphasis driven by row hover/focus or active state. */
  .look-scene__shoppable .look-hotspot.is-active .look-hotspot__dot,
  .look-scene__shoppable .look-hotspot.is-emph .look-hotspot__dot {
    transform: scale(1.18);
    background-color: var(--ls-navy-hover);
    box-shadow: 0 0 0 4px rgb(39 55 85 / 0.18), 0 2px 8px rgb(39 55 85 / 0.35);
  }

  /* ---------- LOOKBOOK ---------- */
  .look-scene__lookbook { display: flex; flex-direction: column; }
  .look-scene__bleed {
    border-radius: 8px;
    overflow: hidden;
    background-color: var(--ls-offwhite);
    aspect-ratio: 21 / 9;
  }
  .look-scene__strip {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 8px 22px;
    padding-top: 18px;
  }
  .look-scene__strip-label {
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ls-muted);
  }
  .look-scene__names {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 22px;
  }
  .look-scene__name-link {
    display: inline-flex;
    align-items: baseline;
    gap: 8px;
    text-decoration: none;
    color: var(--ls-charcoal);
  }
  .look-scene__name-text {
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 15px;
    color: var(--ls-charcoal);
  }
  .look-scene__name-view {
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: var(--ls-navy);
    white-space: nowrap;
  }
  .look-scene__name-link:hover .look-scene__name-text { text-decoration: underline; }

  /* Responsive */
  @media screen and (max-width: 749px) {
    .look-scene__bundle { grid-template-columns: 1fr; gap: 20px; }
    .look-scene__bundle-media { position: static; aspect-ratio: 16 / 10; }
    .look-scene__figure { aspect-ratio: 4 / 5; }
    /* Keep the shoppable scene square on mobile too so the dots stay aligned. */
    .look-scene__figure--full { aspect-ratio: 1 / 1; }
    .look-scene__bleed { aspect-ratio: 4 / 5; }
    .look-row { grid-template-columns: 84px 1fr; grid-template-areas: 'media body' 'actions actions'; }
    .look-row__media { grid-area: media; width: 84px; height: 84px; }
    .look-row__body { grid-area: body; }
    .look-row__actions { grid-area: actions; align-items: stretch; }
    .look-row__buy { justify-content: flex-start; }
    .look-variant { max-width: none; }

    .look-scene__shoppable { grid-template-columns: 1fr; gap: 20px; }
    .look-scene__shoppable-figure { position: static; }
    .look-row--numbered {
      grid-template-columns: 28px 84px 1fr;
      grid-template-areas: 'num media body' 'actions actions actions';
    }
    .look-row--numbered .look-row__num { grid-area: num; }
    .look-row--numbered .look-row__media { grid-area: media; width: 84px; height: 84px; }
    .look-row--numbered .look-row__body { grid-area: body; }
    .look-row--numbered .look-row__actions { grid-area: actions; align-items: stretch; }
    /* 44px min touch targets on mobile */
    .look-scene__shoppable .look-hotspot__dot { width: 44px; height: 44px; }
    .look-scene__shoppable .look-qty__btn { width: 44px; height: 44px; }
    .look-scene__shoppable .look-qty__input { height: 44px; }
    .look-scene__shoppable .look-btn { min-height: 44px; }
    .look-scene__shoppable .look-variant__select { height: 44px; }
    .look-scene__bundle .look-qty__btn { width: 44px; height: 44px; }
    .look-scene__bundle .look-qty__input { height: 44px; }
    .look-scene__bundle .look-btn { min-height: 44px; }
    .look-scene__bundle .look-variant__select { height: 44px; }
  }

  @media (prefers-reduced-motion: reduce) {
    .look-scene *,
    .look-scene *::before,
    .look-scene *::after {
      transition-duration: 0.01ms !important;
      animation-duration: 0.01ms !important;
    }
  }
/* END_SECTION:look-scene */

/* START_SECTION:main-blog-post (INDEX:144) */
.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:145) */
/**
   * Blog posts page layout
   */
  .blog-posts {
    --page-content-width: var(--narrow-page-width);
    --page-width: calc(var(--page-content-width) + (var(--page-margin) * 2));
    --columns-gap: 36px;
    --rows-gap: 36px;
  }

  .blog-posts-container {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
    width: 100%;
    column-gap: var(--columns-gap);
    row-gap: var(--rows-gap);
  }

  /**
   * Blog post item grid positioning and scaling.
   * Layout is calculated in Liquid based on total article count.
   * Mobile overrides are applied per-item in inline styles for proper specificity.
   */
  .blog-post-item {
    grid-column: span var(--col-span);
  }

  /**
   * When there's no image, the blog post item has a border.
   */
  .blog-post-item {
    border: 1px solid rgb(var(--color-foreground-rgb) / var(--opacity-20));
    padding: 0 1rem 1rem;
  }

  .blog-post-item:has(.blog-post-card__image-container) {
    border: none;
    padding: 0;
  }
/* END_SECTION:main-blog */

/* START_SECTION:main-cart (INDEX:146) */
.cart-page {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0 var(--padding-5xl);
  }

  .cart-page--empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .cart-page--empty .cart-page__title,
  .cart-page--empty .cart-page__more-blocks {
    margin-top: var(--margin-6xl);
  }

  .cart-page__more-blocks {
    width: 100%;
  }

  .cart-page--empty .cart-title {
    text-align: center;
  }

  .cart-page__main {
    grid-column: 1;
  }

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

  .cart-page__title + .cart-page__items {
    margin-block-start: var(--margin-lg);
  }

  @media screen and (min-width: 750px) {
    .cart-page {
      grid-template-columns: 1fr min(50vw, var(--sidebar-width));
      grid-template-rows: min-content min-content 1fr;
    }

    .cart-page__summary {
      display: grid;
      height: 100%;
      grid-column: 2;
      grid-row: 1 / -1;
      align-self: stretch;
      grid-template-rows: subgrid;
      padding-top: 0;

      /* needed to support blurred effect from hero section */
      position: relative;
    }

    .section--page-width .cart-page:has(.cart-summary--extend) {
      grid-column: 2 / 4;
      grid-template-columns: 1fr minmax(
          var(--sidebar-width),
          calc((100vw - var(--page-width)) / 2 + var(--sidebar-width))
        );
    }
  }

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

/* START_SECTION:main-collection (INDEX:148) */
@media screen and (max-width: 749px) {
    .main-collection-grid .product-grid,
    .main-collection-grid .product-grid[product-grid-view='mobile-single'],
    .main-collection-grid .product-grid.product-grid-mobile--large {
      grid-template-columns: repeat(2, 1fr) !important;
    }
  }
/* END_SECTION:main-collection */

/* START_SECTION:marquee (INDEX:150) */
marquee-component {
    display: block;
    width: 100%;
    overflow: hidden;
  }

  .marquee__wrapper {
    display: flex;
    gap: var(--marquee-gap);
    width: fit-content;
    white-space: nowrap;
  }

  .marquee__content {
    min-width: max-content;
    display: flex;
    gap: var(--marquee-gap);
  }

  .marquee__content :is(p, h1, h2, h3, h4, h5, h6) {
    white-space: nowrap;
  }

  .marquee__content .marquee__repeated-items * {
    max-width: none;
  }

  .marquee__repeated-items {
    min-width: max-content;
    display: flex;
    gap: var(--marquee-gap);
    align-items: center;
    justify-content: center;
  }

  .marquee__repeated-items > * {
    align-content: center;
  }

  @media (prefers-reduced-motion: no-preference) {
    marquee-component:not([data-disabled]) .marquee__wrapper {
      animation: marquee-motion var(--marquee-speed) linear infinite var(--marquee-direction);
    }
  }

  @keyframes marquee-motion {
    to {
      transform: translate3d(calc(-50% - (var(--marquee-gap) / 2)), 0, 0);
    }
  }
/* END_SECTION:marquee */

/* START_SECTION:media-with-content (INDEX:151) */
.section--page-width {
    &.media-with-content {
      grid-template-areas: 'margin-left media margin-right' 'margin-left content margin-right';

      @media screen and (min-width: 750px) {
        /* Wide proportion is media 3.5 parts, content 2.5 parts. Which equals 7|5. So divide the central column by 7+5 and multiply accordingly */
        --media-with-content-grid-columns: var(--full-page-grid-margin)
          calc((var(--full-page-grid-central-column-width) / 12) * 7)
          calc((var(--full-page-grid-central-column-width) / 12) * 5) var(--full-page-grid-margin);

        grid-template-areas: 'margin-left media content margin-right';
      }
    }

    &.media-with-content--media-right {
      @media screen and (min-width: 750px) {
        --media-with-content-grid-columns: var(--full-page-grid-margin)
          calc((var(--full-page-grid-central-column-width) / 12) * 5)
          calc((var(--full-page-grid-central-column-width) / 12) * 7) var(--full-page-grid-margin);

        grid-template-areas: 'margin-left content media margin-right';
      }
    }

    &.media-with-content--medium {
      @media screen and (min-width: 750px) {
        --media-with-content-grid-columns: var(--full-page-grid-margin)
          repeat(2, calc(var(--full-page-grid-central-column-width) / 2)) var(--full-page-grid-margin);
      }
    }

    &.media-with-content--narrow.media-with-content--media-right {
      @media screen and (min-width: 750px) {
        --media-with-content-grid-columns: var(--full-page-grid-margin)
          calc((var(--full-page-grid-central-column-width) / 3) * 2)
          calc(var(--full-page-grid-central-column-width) / 3) var(--full-page-grid-margin);
      }
    }

    &.media-with-content--narrow {
      @media screen and (min-width: 750px) {
        --media-with-content-grid-columns: var(--full-page-grid-margin)
          calc(var(--full-page-grid-central-column-width) / 3)
          calc((var(--full-page-grid-central-column-width) / 3) * 2) var(--full-page-grid-margin);
      }
    }
  }

  .section--full-width {
    &.media-with-content--media-right {
      @media screen and (min-width: 750px) {
        --media-with-content-grid-columns: 2.5fr 3.5fr;

        grid-template-areas: 'content media';
      }
    }

    &.media-with-content--medium {
      @media screen and (min-width: 750px) {
        --media-with-content-grid-columns: 1fr 1fr;
      }
    }

    &.media-with-content--narrow {
      @media screen and (min-width: 750px) {
        --media-with-content-grid-columns: 2fr 4fr;
      }
    }

    &.media-with-content--narrow.media-with-content--media-right {
      @media screen and (min-width: 750px) {
        --media-with-content-grid-columns: 4fr 2fr;
      }
    }
  }

  /* Keep the CSS specificity lower assuming that liquid won't assign this class with a full width section */
  .media-with-content.media-with-content--media-extend {
    grid-template-columns: var(--media-with-content-grid-columns);
    grid-template-areas: 'media media media' 'margin-left content margin-right';

    @media screen and (min-width: 750px) {
      grid-template-areas: 'media media content margin-right';
    }
  }

  .media-with-content--media-extend.media-with-content--media-right {
    @media screen and (min-width: 750px) {
      grid-template-areas: 'margin-left content media media';
    }
  }

  .media-with-content--media-right {
    @media screen and (min-width: 750px) {
      grid-template-areas: 'margin-left content media media';
    }
  }

  .media-with-content {
    --media-with-content-grid-columns: var(--full-page-grid-with-margins);

    grid-template-columns: var(--media-with-content-grid-columns);
    grid-template-areas: 'media media media' 'content content content';

    @media screen and (min-width: 750px) {
      --media-with-content-grid-columns: 3.5fr 2.5fr;

      /* Default desktop layout is wide media, on the left, in full page section */
      grid-template-areas: 'media content';
    }

    .media-block {
      grid-area: media;
    }

    .media-with-content__content {
      grid-area: content;
    }

    /* Inner blocks spacing */
    .media-with-content__content > .group-block-content {
      padding-inline: var(--page-margin);
      padding-block: calc(2 * var(--page-margin));

      @media screen and (min-width: 750px) {
        padding-block: var(--page-margin);
      }
    }

    &.section--page-width .media-with-content__content > .group-block-content {
      padding-inline: 0;

      @media screen and (min-width: 750px) {
        padding-inline-start: var(--page-margin);
      }
    }

    &.section--page-width.media-with-content--media-right .media-with-content__content > .group-block-content {
      padding-inline-end: var(--page-margin);
      padding-inline-start: 0;
    }
  }

  .media-with-content[data-shopify-visual-preview] {
    --hero-min-height: 500px;

    min-height: 500px;
  }
/* END_SECTION:media-with-content */

/* START_SECTION:password-footer (INDEX:152) */
.password-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--gap-sm);
    padding-block: var(--padding-xl);
  }

  .password-footer__powered-by {
    margin: 0;
    display: flex;
    align-items: center;
    gap: var(--padding-xs);
    height: 1em;

    > a {
      display: flex;
    }

    .icon-shopify {
      display: inline;
      height: 1.3em;
      color: var(--color-foreground);
    }
  }

  .password-footer__links {
    display: flex;
    align-items: center;
    gap: var(--gap-2xl);

    @media screen and (max-width: 749px) {
      flex-direction: column;
      gap: var(--gap-sm);
    }
  }

  .password-footer__admin-link {
    margin: 0;
  }

  .password-footer__button {
    height: var(--minimum-touch-target);
    background-color: transparent;
    color: var(--color-primary);
    cursor: pointer;
    text-decoration: underline;

    &:hover {
      color: var(--color-primary-hover);
      text-decoration: none;
    }
  }
/* END_SECTION:password-footer */

/* START_SECTION:password (INDEX:153) */
.section-password {
    flex-grow: 1;
    display: flex;
  }

  .password-content {
    text-align: center;
  }
/* END_SECTION:password */

/* START_SECTION:product-hotspots (INDEX:156) */
/* Section layout */
  .section-product-hotspots {
    position: relative;
  }

  .section-product-hotspots__wrapper {
    display: flex;
    flex-direction: column;
    gap: var(--gap);
    width: 100%;
    height: 100%;
  }

  /* Image container */
  .section-product-hotspots__content {
    position: relative;
    aspect-ratio: var(--ratio, 21 / 9);
    overflow: hidden;
  }

  /* Hide hotspots without products on touch devices (tablets included) */
  @media (hover: none) {
    .hotspot.hotspot--hidden-touch {
      display: none;
    }
  }

  /* Responsive adjustments */
  @media screen and (max-width: 749px) {
    /* Hide dialog on mobile - hotspot opens quick-add modal instead */
    .hotspot .hotspot-dialog {
      display: none;
    }
  }

  /* Hotspot button - positioned element with clickable area */
  .hotspot {
    position: absolute;
    cursor: pointer;
    width: var(--button-size);
    height: var(--button-size);
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    padding: 0;
    font: inherit;
    color: inherit;
    outline: none;
    transition: border-color 0.2s ease-out, box-shadow 0.2s ease-out;
    z-index: var(--layer-flat);
  }

  .hotspot:has(.hotspot-dialog[open]) {
    z-index: var(--layer-raised);
  }

  .hotspot .hotspot-trigger {
    padding: 0;
    border: none;
  }

  .hotspot-dialog__product-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: var(--padding-xs);
    padding-inline-start: 0;
    overflow: hidden;
  }

  /* Visual target circle */
  .hotspot-trigger {
    width: var(--hotspot-size);
    height: var(--hotspot-size);
    background: var(--hotspot-bg, rgb(0 0 0 / 0.5));
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    transition: width 0.1s ease-out, height 0.1s ease-out;
  }

  /* On mobile, ensure trigger is tappable */
  @media screen and (max-width: 749px) {
    .hotspot-trigger {
      cursor: pointer;
      -webkit-tap-highlight-color: transparent;
    }
  }

  /* Bullseye using ::after pseudo-element */
  .hotspot-trigger::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: calc(var(--hotspot-size) * 0.4);
    height: calc(var(--hotspot-size) * 0.4);
    background: var(--hotspot-bullseye, #fff);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.1s ease-out, height 0.1s ease-out, background 0.1s ease-out;
  }

  /* Bullseye grows on hover or when dialog is open (desktop only) */
  @media screen and (min-width: 750px) {
    .hotspot:hover .hotspot-trigger::after,
    .hotspot:has(.hotspot-dialog[open]) .hotspot-trigger::after {
      width: calc(var(--hotspot-size) * 0.55);
      height: calc(var(--hotspot-size) * 0.55);
      transition: width 0.2s ease-out, height 0.2s ease-out, background 0.2s ease-out;
      transition-delay: 0.2s;
    }
  }

  .hotspots-container {
    position: absolute;
    inset: 0;
    z-index: var(--layer-flat);
    overflow: clip;
  }

  .hotspots__background-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  /* Dialog positioning */
  .hotspot .hotspot-dialog {
    position: absolute;
    padding: 0;
    border-radius: var(--style-border-radius-popover);
    border: var(--style-border-popover);
    width: max-content;
    min-width: var(--minimum-width-dialog);
    max-width: var(--maximum-width-dialog);
    box-shadow: var(--shadow-popover);

    &[data-placement*='bottom'] {
      --offset-y: 0px;
      --origin-y: calc(var(--hotspot-size) / 2);
      top: calc((var(--button-size) - var(--hotspot-size)) / 2 + var(--dialog-vertical-offset, 0px));
      bottom: unset;
    }
    &[data-placement*='top'] {
      --offset-y: 0px;
      --origin-y: calc(100% - (var(--hotspot-size) * 0.5));
      top: unset;
      bottom: calc((var(--button-size) - var(--hotspot-size)) * 0.5 - var(--dialog-vertical-offset, 0px));
    }
    &[data-placement*='left'] {
      --offset-x: calc((var(--button-size) - var(--hotspot-size)) * 0.5);
      --origin-x: calc(100% - (var(--hotspot-size) * 0.5));
      left: unset;
      right: 100%;
    }
    &[data-placement*='right'] {
      --offset-x: calc((var(--button-size) - var(--hotspot-size)) * -0.5);
      --origin-x: calc(var(--hotspot-size) * 0.5);
      left: 100%;
      right: unset;
    }
    &[data-placement*='center'] {
      left: 50%;
      translate: -50% 0;
      right: unset;
    }
    &[data-placement*='center'][data-placement*='bottom'] {
      --origin-y: calc(var(--hotspot-size) * 0.5);
      --origin-x: 50%;
      --offset-y: calc((var(--button-size) - var(--hotspot-size)) * -0.5);
      /* stylelint-disable-next-line declaration-property-value-disallowed-list */
      --offset-x: 0;
      top: 100%;
      bottom: unset;
      margin: 0;
    }
    &[data-placement*='center'][data-placement*='top'] {
      --origin-y: calc(100% - (var(--hotspot-size) * 0.5));
      --origin-x: 50%;
      --offset-y: calc((var(--button-size) - var(--hotspot-size)) * 0.5);
      /* stylelint-disable-next-line declaration-property-value-disallowed-list */
      --offset-x: 0;
      bottom: 100%;
    }
  }

  .hotspot .hotspot-dialog:is(:focus, :focus-visible),
  .hotspot .hotspot-dialog__link:is(:focus, :focus-visible) {
    outline: none;
  }

  .hotspot-dialog__product {
    display: grid;
    grid-template-columns: auto 1fr;
  }

  .hotspot-dialog__product-image,
  .hotspot-dialog svg.hotspot-dialog__placeholder-product-image {
    width: var(--width-product-image-dialog);
    height: var(--width-product-image-dialog);
    aspect-ratio: 1;
    padding: var(--padding-product-image-popover, var(--padding-xs));
    object-fit: cover;
    border-radius: var(--style-border-radius-popover);
  }

  .hotspot-dialog__link {
    position: absolute;
    inset: 0;
    z-index: var(--layer-flat);
  }

  .hotspot-dialog__product-title {
    margin-block-end: var(--product-title-gap);
    padding-inline-end: var(--padding-sm);
    min-width: 0;
  }

  .hotspot .hotspot-dialog .hotspot-dialog__sold-out-badge {
    display: flex;
    width: fit-content;
    justify-self: flex-end;
    align-self: flex-end;
    justify-content: center;
    align-items: center;
    font-size: var(--font-body--size);
    padding: var(--padding-2xs) var(--padding-sm);
    background: rgb(var(--color-foreground-rgb) / var(--opacity-10));
    border-radius: var(--border-radius-sm);
    text-transform: uppercase;
    letter-spacing: var(--letter-spacing-sm);
    opacity: var(--opacity-80);
  }

  /* Dialog transitions */
  .hotspot .hotspot-dialog {
    --hotspot-blur: 4px;
    --hotspot-scale: 0.8;
    --hotspot-entry-duration: 0.2s;
    --hotspot-exit-duration: 0.1s;

    /* Firefox doesn't have reverse transitions */
    /* in webkit/chromium we can set a closing attribute as we transition the exit and hook there */
    filter: blur(var(--hotspot-blur));
    opacity: 0;
    transform: scale(var(--hotspot-scale)) translate(0, 0);
    transition-property: display, opacity, filter, transform;
    transition-duration: var(--hotspot-entry-duration);
    transition-timing-function: ease;

    transform: scale(var(--hotspot-scale)) translate(var(--offset-x), var(--offset-y));
    transform-origin: var(--origin-x) var(--origin-y);
    transition-timing-function: cubic-bezier(0.65, -0.49, 0.35, 1.12);

    &[data-closing='true'] {
      transition-duration: var(--hotspot-exit-duration);
      transition-timing-function: ease-out;
      transform: scale(1) translate(0, calc(var(--hotspot-size) * 0.25));
    }

    /* We can only set transition-behavior once we've measured the dialog dimensions */
    &[data-showing='true'] {
      transition-behavior: allow-discrete;
    }
  }

  .hotspot .hotspot-dialog[open][data-showing='true'] {
    opacity: 1;
    transform: scale(1) translate(0, 0);
    filter: blur(0px);
  }

  @starting-style {
    .hotspot .hotspot-dialog[open][data-showing='true'] {
      opacity: 0;
      filter: blur(var(--hotspot-blur));
      transform: scale(var(--hotspot-scale)) translate(var(--offset-x), var(--offset-y));
      transform-origin: var(--origin-x) var(--origin-y);
    }
  }

  /* Safety triangles for dialogs */
  .hotspot .hotspot-dialog::after {
    content: '';
    position: absolute;
    opacity: 0;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: all;
    transition: opacity 0.22s ease-out, translate 0.22s 0.1s ease-out;
    scale: var(--scale-x, 1) var(--scale-y, 1);
    z-index: var(--layer-flat);
  }

  .hotspot-dialog[open]:is([data-placement*='left'], [data-placement*='right'])::after {
    /* stylelint-disable-next-line plugin/no-unsupported-browser-features */
    clip-path: polygon(0 0, 100% 0, 100% 100%);
    width: calc(var(--button-size) / 2 + var(--hotspot-size) * 0.5);
  }

  .hotspot-dialog[open][data-placement*='right']::after {
    right: 100%;
    left: unset;
  }

  .hotspot-dialog[open][data-placement*='left']::after {
    left: 100%;
    right: unset;
    --scale-x: -1;
  }

  .hotspot-dialog[open][data-placement*='top']::after {
    --scale-y: -1;
  }

  .hotspot-dialog[open][data-placement*='center']::after {
    height: calc(var(--button-size) / 2 + var(--hotspot-size) * 0.5);
    width: 100%;
    /* stylelint-disable-next-line plugin/no-unsupported-browser-features */
    clip-path: polygon(0 0, 100% 0, 50% calc(100% - var(--hotspot-size) * 0.25));
    --scale-x: 1;
    --scale-y: 1;
  }

  .hotspot-dialog[open][data-placement*='center'][data-placement*='bottom']::after {
    top: unset;
    bottom: 100%;
    --scale-y: -1;
  }

  .hotspot-dialog[open][data-placement*='center'][data-placement*='top']::after {
    top: 100%;
    bottom: unset;
  }

  /* Quick add button */
  .hotspot-dialog[open] {
    .quick-add {
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      width: auto;
      height: auto;
      position: relative;
      z-index: var(--layer-flat);
    }

    .quick-add__button {
      position: relative;
      padding-block: 0;
      box-shadow: none;
      align-items: center;
      justify-self: flex-end;
      height: fit-content;
      translate: var(--padding-2xs) 0;
      border: none;
      color: var(--color-foreground);
      background-color: var(--color-background);
      overflow: visible;
      pointer-events: all;
      opacity: 1;
      animation: elementSlideInTop var(--animation-speed) var(--animation-easing);
      transition-property: translate;
      transition-duration: var(--animation-speed);
      transition-timing-function: var(--ease-out-cubic);

      &::before {
        content: '';
        position: absolute;
        inset: -2px;
        border-radius: calc(50px + 2px);
        border: 2px solid transparent;
        pointer-events: none;
        transition-property: border-color;
        transition-duration: 0s;
        transition-timing-function: var(--ease-out-cubic);
      }

      &:is(:hover, :focus, :focus-visible, :active) {
        translate: 0 0;
        transition-delay: var(--animation-speed-slow);

        &::before {
          border-color: rgb(var(--color-foreground-rgb) / var(--opacity-15));
          transition-duration: var(--animation-speed);
          transition-delay: var(--animation-speed-slow);
        }
      }
    }
  }
/* END_SECTION:product-hotspots */

/* START_SECTION:product-information (INDEX:157) */
.sticky-add-to-cart__bar {
    position: fixed;
    bottom: 20px;
    left: 50%;
    opacity: 0;
    transform: translateX(-50%) translateY(calc(100% + 40px));
    z-index: calc(var(--layer-sticky) - 1); /* Below sticky header */
    display: block;
    width: 600px;
    border-radius: calc(
      var(--style-border-radius-buttons-primary) + min(var(--padding-sm), var(--style-border-radius-buttons-primary))
    );
    box-shadow: var(--shadow-popover);
    padding: var(--padding-sm);
    /* Layout styling */
    display: flex;
    align-items: center;
    gap: var(--gap-md);

    @starting-style {
      opacity: 0;
      transform: translateX(-50%) translateY(calc(100% + 40px));
    }

    &::before {
      --border: 2px;
      content: '';
      position: absolute;
      inset: calc(var(--border) * -1);
      background: linear-gradient(var(--color-background) 0 100%), linear-gradient(hsl(0 0% 0% / 0.15) 0 100%);
      background-clip: content-box, border-box;
      border: var(--border) solid #0000;
      border-radius: inherit;
      z-index: -1;
      backdrop-filter: blur(20px) saturate(180%) brightness(1.5);
    }
  }

  @media (prefers-reduced-motion: no-preference) {
    .sticky-add-to-cart__bar {
      transition-property: transform, opacity, display;
      transition-duration: 0.3s;
      transition-timing-function: var(--ease-out-quad);
      transition-behavior: allow-discrete;
    }
  }

  .sticky-add-to-cart__bar[data-stuck='true'] {
    transform: translateX(-50%) translateY(0%);
    opacity: 1;
  }

  sticky-add-to-cart:not([data-variant-available='true']) .sticky-add-to-cart__bar {
    opacity: 0;
    transform: translateX(-50%) translateY(calc(100% + 40px));
    display: none;
  }

  .sticky-add-to-cart__info[data-has-image='false'] {
    padding-left: var(--padding-lg);
  }

  .sticky-add-to-cart__image {
    flex-shrink: 0;
    aspect-ratio: 1;
    height: var(--height-buy-buttons);
    overflow: hidden;
    border-radius: var(--style-border-radius-buttons-primary);
    background: var(--color-background-secondary);
  }

  .sticky-add-to-cart__image-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .sticky-add-to-cart__info {
    flex: 1;
    min-width: 0; /* Allow text truncation */
  }

  .sticky-add-to-cart__title {
    font-size: var(--font-paragraph-medium--size);
    font-weight: var(--font-weight-semibold);
    line-height: var(--font-paragraph--line-height);
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .sticky-add-to-cart__variant {
    color: rgb(var(--color-foreground-rgb) / var(--opacity-subdued-text));
    font-size: var(--font-paragraph-small--size);
    margin-top: var(--margin-3xs);
  }

  .sticky-add-to-cart__price {
    font-weight: var(--font-weight-semibold);
  }

  .sticky-add-to-cart__button {
    height: var(--height-buy-buttons);
    position: relative;
  }

  /* Mobile adjustments */
  @media screen and (max-width: 749px) {
    .sticky-add-to-cart__bar {
      bottom: 0;
      width: 100%;
      max-width: none;
      border-radius: 0;

      &::before {
        --border: 1px;
      }
    }

    .sticky-add-to-cart__bar .add-to-cart-text__content {
      display: none;
    }

    .sticky-add-to-cart__info[data-has-image='false'] {
      padding-left: 0;
    }

    .sticky-add-to-cart__title {
      font-size: var(--font-paragraph--size);
    }

    .sticky-add-to-cart__button {
      padding: var(--padding-lg);
    }

    .sticky-add-to-cart__price {
      font-size: var(--font-paragraph-small--size);
    }

    .sticky-add-to-cart__button {
      width: var(--height-buy-buttons);
    }

    sticky-add-to-cart:not([data-variant-available='true']) .add-to-cart-text__content {
      display: initial;
    }

    sticky-add-to-cart:not([data-variant-available='true']) .sticky-add-to-cart__button {
      width: auto;
    }
  }

  /* Small mobile - hide text content and compare price */
  @media screen and (max-width: 389px) {
    .sticky-add-to-cart__bar {
      .compare-at-price {
        display: none;
      }
    }

    .sticky-add-to-cart__title {
      display: none;
    }

    /* For product with only default variant show title */
    .sticky-add-to-cart__info[data-singleton='true'] .sticky-add-to-cart__title {
      display: block;
    }

    /* For single variant show title and variant, truncate both. variant should be identifiable with truncation */
    .sticky-add-to-cart__info[data-single-option='true'] .sticky-add-to-cart__title {
      display: block;
    }

    .sticky-add-to-cart__info[data-single-option='true'] .sticky-add-to-cart__variant {
      display: block;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
    }
  }
/* END_SECTION:product-information */

/* START_SECTION:product-recommendations (INDEX:159) */
/* The bordered card box (matches eg-product-row__card). */
  product-recommendations .product-card .product-card__content {
    border: 1px solid #E5E5E5;
    border-radius: 12px;
    overflow: hidden;
    background-color: #FFFFFF;
    transition: border-color 180ms ease, box-shadow 180ms ease;
  }
  product-recommendations .product-card:hover .product-card__content {
    border-color: #273755;
    box-shadow: 0 6px 18px rgb(39 55 85 / 0.08);
  }

  /* 1:1 media that fills edge-to-edge, with the eg-product-row image zoom. */
  product-recommendations .product-card .card-gallery {
    aspect-ratio: 1 / 1;
    background-color: #F5F5F5;
    overflow: hidden;
  }
  product-recommendations .product-card .card-gallery .product-media,
  product-recommendations .product-card .card-gallery .product-media__image {
    width: 100%;
    height: 100%;
  }
  product-recommendations .product-card .card-gallery .product-media__image {
    object-fit: cover;
    transition: transform 320ms ease;
  }
  product-recommendations .product-card:hover .card-gallery .product-media__image {
    transform: scale(1.03);
  }

  /* Pad the copy inside the bordered box (eg-product-row__copy is 16px 18px 20px). */
  product-recommendations .resource-list__item .product-card__content > *:not(.card-gallery):not(.product-badges) {
    padding-inline: 18px;
  }
  product-recommendations .resource-list__item .product-card__content > *:not(.card-gallery):not(.product-badges):first-of-type {
    margin-top: 16px;
  }
  product-recommendations .resource-list__item .product-card__content > *:not(.card-gallery):not(.product-badges):last-child {
    padding-bottom: 20px;
  }

  /* Title -> Cormorant 600 navy 1.25rem (eg-product-row__title). Out-specifies
     the .product-card 13px rule from snippets/product-card.liquid. */
  product-recommendations .product-card a[ref='productTitleLink'] [role='heading'],
  product-recommendations .product-card a[ref='productTitleLink'] .text-block,
  product-recommendations .product-card .text-block,
  product-recommendations .product-card .text-block p,
  product-recommendations .product-card .text-block a {
    font-family: var(--font-heading--family) !important;
    font-weight: 600 !important;
    color: #273755 !important;
    font-size: 1.25rem !important;
    line-height: 1.2 !important;
    letter-spacing: 0.005em !important;
  }

  /* Price -> Inter 500 charcoal 1rem tabular (eg-product-row__price). */
  product-recommendations .product-card .price,
  product-recommendations .product-card .price__regular,
  product-recommendations .product-card .price__sale {
    font-family: var(--font-body--family) !important;
    font-weight: 500 !important;
    color: #1A1A1A !important;
    font-size: 1rem !important;
    line-height: 1.3 !important;
    font-variant-numeric: tabular-nums;
  }

  /* The eg-product-row card has no swatch row; hide it here to match. */
  product-recommendations .eg-card-swatches { display: none !important; }

  @media (prefers-reduced-motion: reduce) {
    product-recommendations .product-card .card-gallery .product-media__image { transition: none; }
    product-recommendations .product-card:hover .card-gallery .product-media__image { transform: none; }
  }
/* END_SECTION:product-recommendations */

/* START_SECTION:quick-order-list (INDEX:160) */
.quick-order-list {
    --quantity-selector-width: 124px;
    --image-size: 43px;
    --quantity-header-padding: calc(var(--minimum-touch-target) + var(--gap-sm));
    --quick-order-quantity-column-width: calc(
      var(--quantity-selector-width) + 2 * var(--gap-sm) + 2 * var(--minimum-touch-target)
    );
    --transform-offset-negative: calc(-1 * var(--icon-stroke-width));
    --quick-order-first-column-width: 2fr; /* Takes 2 fractions of available space */
    --quick-order-price-column-width: 1fr; /* Takes 1 fraction */
    --quick-order-total-column-width: 1fr; /* Takes 1 fraction */

    display: flex;
    flex-direction: column;
    gap: var(--gap-sm);
  }

  .quick-order-list__container {
    width: 100%;
  }

  /* Grid container setup */
  .quick-order-list__grid {
    width: 100%;
    display: block; /* Container is block, children use grid */
    contain: layout; /* Isolate layout calculations for performance */
  }

  .quick-order-list__grid-body {
    contain: layout; /* Isolate layout calculations for performance */
  }

  .quick-order-list__grid-header,
  .quick-order-list__grid-row {
    display: grid;
    grid-template-columns:
      var(--quick-order-first-column-width) /* Variant column - takes 2 parts of available space */
      var(--quick-order-quantity-column-width) /* Fixed pixel width for quantity */
      var(--quick-order-price-column-width) /* Price column - takes 1 part */
      var(--quick-order-total-column-width); /* Total column - takes 1 part */
    gap: var(--gap-md);
    align-items: center;
  }

  .quick-order-list__grid-header {
    border-block-end: var(--style-border-width) solid var(--color-border);
    padding-block-end: var(--padding-xl);
    margin-block-end: var(--padding-sm);
    opacity: var(--opacity-85);
    font-weight: normal;
    font-size: var(--font-size--xs);
    letter-spacing: var(--letter-spacing--body-loose);
  }

  /* Add padding to quantity column header to align with content */
  .quick-order-list__grid-header .quick-order-list__grid-cell--quantity {
    padding-inline-start: var(--quantity-header-padding);
  }

  .quick-order-list__grid-row {
    padding-block-start: var(--padding-sm);
    padding-block-end: var(--padding-sm);
    content-visibility: auto;
    contain-intrinsic-size: auto
      calc(2 * var(--padding-sm) + var(--image-size) + var(--minimum-touch-target) + var(--padding-2xl));
  }

  @media screen and (min-width: 750px) {
    .quick-order-list__grid-row {
      contain-intrinsic-size: auto calc(2 * var(--padding-sm) + var(--image-size));
    }
  }

  .quick-order-list__grid-cell--variant {
    text-align: start;
    justify-self: stretch;
  }

  .quick-order-list__grid-cell--quantity {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    justify-self: stretch;
  }

  .quick-order-list__grid-cell--quantity .variant-item__inner-container {
    width: 100%;
    justify-content: flex-start;
  }

  .quick-order-list__grid-cell--price {
    text-align: end;
    justify-self: stretch;
  }

  .quick-order-list__grid-cell--total {
    text-align: end;
    justify-self: stretch;
  }

  .variant-item__image-container,
  .quick-order-list__table-image {
    width: var(--image-size);
    height: auto;
  }

  .quick-order-list .pagination {
    margin-block-start: 0;
    padding-block-start: var(--padding-xl);
    padding-block-end: 0;
  }

  .variant-item__inner-container {
    display: flex;
    align-items: center;
    gap: var(--gap-sm);
  }

  .volume-pricing-info-placeholder {
    width: var(--minimum-touch-target);
    height: var(--minimum-touch-target);
  }

  .variant-item__quantity .quantity-selector {
    display: flex;
    flex: 0 0 var(--quantity-selector-width);
    min-width: var(--quantity-selector-width);
    font-size: var(--font-size--xs);
    height: auto;
  }

  .variant-item__remove {
    background-color: transparent;
    color: var(--color-foreground);
    width: var(--minimum-touch-target);
    height: var(--minimum-touch-target);
    justify-content: center;
    box-shadow: none;
    padding: 0;
  }

  .remove-icon-bottom,
  .remove-icon-top {
    transition: transform var(--animation-speed) var(--animation-easing);
  }

  .variant-item__remove:not(.variant-item__remove--hidden):hover .remove-icon-top {
    transform: translate(var(--transform-offset-negative), var(--icon-stroke-width)) rotate(-15deg);
  }

  .variant-item__remove:not(.variant-item__remove--hidden):is(:hover, :active) .remove-icon-bottom {
    transform: translateY(var(--icon-stroke-width));
  }

  /* Hide remove button with opacity to prevent layout shift */
  .variant-item__remove--hidden {
    opacity: 0;
    pointer-events: none;
    cursor: default;
  }

  .variant-item__name {
    font-weight: var(--font-weight-medium);
  }

  .variant-item__sku {
    font-size: var(--font-size--3xs);
    opacity: var(--opacity-85);
  }

  .variant-item__details {
    display: inline-flex;
    flex-direction: column;
  }

  .variant-item__totals {
    flex: 0 0 auto;
    padding-block-start: var(--padding-2xs);
  }

  /* Compare at price styles */
  .variant-item__discounted-prices {
    display: flex;
    gap: var(--gap-2xs);
    justify-content: flex-end;
  }

  .variant-item__discounted-prices dd {
    margin: 0;
  }

  /* Mobile layout */
  @media screen and (max-width: 749px) {
    .quick-order-list__grid-header,
    .quick-order-list__grid-row {
      grid-template-columns: 1fr auto; /* Variant column and total column on mobile */
      gap: var(--gap-sm);
      max-width: 100%;
      overflow: hidden;
      align-items: flex-start;
    }

    .quick-order-list__grid-header .quick-order-list__grid-cell--total {
      text-align: end;
    }

    .quick-order-list__grid-row {
      margin-block-end: var(--margin-2xl);
      padding-block-end: var(--padding-2xl);
      border-block-end: var(--style-border-width) solid var(--color-border);
    }

    .quick-order-list__grid-row:last-child {
      margin-block-end: 0;
      border-block-end: none;
    }

    .variant-item__inner {
      flex: 1 1 auto;
      padding-inline-end: var(--padding-lg);
    }

    .variant-item__inner-container {
      display: flex;
      gap: var(--gap-md);
      align-items: flex-start;
    }

    .variant-item__details {
      flex: 1;
      display: flex;
      flex-direction: column;
      min-width: 0; /* Allow text to shrink */
    }

    .variant-item__totals {
      flex: 0 0 auto;
      text-align: end;
      padding-block-start: var(--padding-2xs);
    }

    .variant-item__totals .variant-item__total-price {
      font-size: var(--font-size--sm);
      font-weight: var(--font-weight-medium);
    }

    .variant-item__title-container .variant-item__name {
      display: block;
      font-size: var(--font-size--sm);
      line-height: var(--line-height-tight);
      margin: 0;
    }

    .variant-item__mobile-price-container {
      margin-block-end: var(--margin-xs);
    }

    .variant-item__mobile-price {
      font-size: var(--font-size--sm);
      opacity: var(--opacity-85);
      white-space: nowrap;
    }

    /* Mobile compare at price styles */
    .variant-item__discounted-prices--mobile {
      display: flex;
      flex-direction: row;
      align-items: baseline;
      justify-content: flex-start;
      gap: var(--gap-xs);
      margin-block-start: var(--margin-2xs);
      margin-block-end: 0;
    }

    .variant-item__discounted-prices--mobile dd {
      display: inline;
    }

    .variant-item__mobile-quantity {
      display: flex;
      align-items: center;
      gap: 0;
    }

    /* Mobile-only content styles */
    .variant-item__mobile-info {
      display: flex;
      flex-direction: column;
      width: 100%;
    }

    .variant-item__image-container {
      flex: 0 0 var(--image-size);
      width: var(--image-size);
      height: var(--image-size);
    }

    .quick-order-list__table-image {
      width: 100%;
      height: 100%;
    }

    .variant-item__mobile-quantity .quantity-selector {
      display: flex;
      flex: 0 0 var(--quantity-selector-width);
      min-width: var(--quantity-selector-width);
      font-size: var(--font-size--xs);
      margin: 0;
      padding: 0;
    }

    /* Mobile remove button styling */
    .variant-item__remove--mobile {
      background-color: transparent;
      color: var(--color-foreground);
      width: var(--minimum-touch-target);
      height: var(--minimum-touch-target);
      min-width: var(--minimum-touch-target);
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: none;
      padding: 0;
      margin: 0;
      flex-shrink: 0;
      border: none;
      cursor: pointer;
    }

    .variant-item__remove--mobile svg {
      width: var(--icon-size-sm);
      height: var(--icon-size-sm);
    }

    .variant-item__remove--mobile:not(.variant-item__remove--hidden):hover {
      opacity: var(--opacity-70);
    }

    .quick-order-list .pagination {
      padding-block-start: var(--padding-2xl);
    }
  }

  .quick-order-list-disabled {
    pointer-events: none;
  }

  .quick-order-list-total {
    background: var(--color-background);
    border-block-start: var(--style-border-width) solid var(--color-border);
  }

  /* Tablet and Desktop styles - sticky footer */
  @media screen and (min-width: 750px) {
    .quick-order-list-total {
      position: sticky;
      inset-block-end: 0;
      z-index: var(--layer-raised);
    }
  }

  .quick-order-list-total__info,
  .quick-order-list-total__confirmation {
    min-height: 8rem;
    padding-block-start: var(--padding-4xl);
  }

  .quick-order-list-total__info {
    align-items: flex-start;
    gap: var(--gap-md);
  }

  .quick-order-list-total__confirmation {
    display: flex;
    gap: var(--gap-2xl);
    align-items: center;
    justify-content: center;
    padding: var(--padding-2xl) var(--padding-xl);
  }

  .quick-order-list-total__column {
    display: flex;
    flex-direction: column;
  }

  .quick-order-list-total__actions {
    display: flex;
  }

  /* Desktop layout - Use CSS Grid to match main table alignment */
  @media screen and (min-width: 750px) {
    .quick-order-list-total__info {
      display: grid;
      grid-template-columns:
        var(--quick-order-first-column-width) /* Variant column - takes 2 parts of available space */
        var(--quick-order-quantity-column-width) /* Fixed pixel width for quantity */
        var(--quick-order-price-column-width) /* Price column - takes 1 part */
        var(--quick-order-total-column-width); /* Total column - takes 1 part */
    }

    .quick-order-list-total__column {
      grid-column: 1;
      display: flex;
      flex-direction: column;
      gap: var(--gap-md);
    }

    .quick-order-list-total__summary {
      grid-column: 2 / 5;
      display: grid;
      grid-template-columns: var(--quick-order-quantity-column-width, 234px) auto;
    }

    .quick-order-list-total__items {
      grid-column: 1;
      justify-self: center;
      text-align: center;
    }

    .quick-order-list-total__price {
      grid-column: 3;
      justify-self: end;
      text-align: end;
    }
  }

  /* Tablet-specific overrides - 750px to 989px */
  @media screen and (min-width: 750px) and (max-width: 989px) {
    .quick-order-list-total__actions {
      flex-direction: column;
    }

    .quick-order-list-total__messages {
      align-items: stretch;
    }

    .quick-order-list__remove-all-button {
      padding-inline: 0;
    }
  }

  .quick-order-list__button.button--full-width {
    width: 100%;
  }

  .quick-order-list__button.button {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .quick-order-list-total .button--unstyled {
    border: none;
    box-shadow: none;
    background-color: transparent;
    color: var(--color-foreground);
    cursor: pointer;
  }

  .quick-order-list__remove-all-button svg {
    width: var(--icon-size-sm);
    height: var(--icon-size-sm);
    flex-shrink: 0;
  }

  .quick-order-list-total__items span {
    display: block;
    margin-block-end: var(--margin-xs);
  }

  .quick-order-list-total__items .h5 {
    margin: 0;
    letter-spacing: var(--letter-spacing--body-loose);
    opacity: var(--opacity-85);
  }

  .quick-order-list-total__subtotal-value {
    display: block;
    margin-block-end: var(--margin-xs);
    line-height: var(--font-paragraph--line-height);
  }

  /* Ensure text-component displays properly */
  .quick-order-list-total__subtotal-value text-component {
    display: block;
  }

  .quick-order-list-total__subtotal {
    margin: 0;
    letter-spacing: var(--letter-spacing--body-loose);
    opacity: var(--opacity-85);
  }

  .quick-order-list-total__tax-note {
    opacity: var(--opacity-subdued-text);
  }

  .quick-order-list-total__messages {
    display: flex;
    flex-direction: column;
    gap: var(--gap-xs);
  }

  .quick-order-list-total__success,
  .quick-order-list-total__error {
    display: flex;
    align-items: center;
    gap: var(--gap-xs);
  }

  .quick-order-list-total__success .icon-success,
  .quick-order-list-total__error .quick-order-list-total__icon--error {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: var(--icon-size-sm);
    height: var(--icon-size-sm);
    color: inherit;
  }

  .quick-order-list-total__success .icon-success svg,
  .quick-order-list-total__error .quick-order-list-total__icon--error svg {
    width: 100%;
    height: 100%;
  }

  .quick-order-list-total__error:empty,
  .quick-order-list-total__success:empty {
    display: none;
  }

  .quick-order-list-total__info.confirmation-visible {
    display: none;
  }

  .quick-order-list-total__confirmation-text {
    white-space: nowrap;
  }

  .quick-order-list-total__confirmation-buttons {
    display: flex;
    gap: var(--gap-md);
    align-items: center;
  }

  .quick-order-list-total__confirmation button {
    margin: 0;
    white-space: nowrap;
  }

  .quick-order-list__remove-all-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--gap-sm);
  }

  /* Mobile styles */
  @media screen and (max-width: 749px) {
    .quick-order-list-total__info {
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .quick-order-list-total__column {
      order: 3; /* Move column to the end on mobile */
      width: 100%;
      flex: 1 1 auto;
    }

    .quick-order-list-total__actions {
      flex-direction: column;
      width: 100%;
    }

    .quick-order-list-total__messages {
      width: 100%;
      align-items: center;
      margin-block-start: var(--margin-xs);
    }

    .quick-order-list-total__summary {
      order: 1; /* First on mobile */
      display: flex;
      flex-direction: column;
      align-items: center;
      width: 100%;
      gap: var(--gap-md);
    }

    .quick-order-list-total__items {
      text-align: center;
      width: auto;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: var(--gap-xs);
    }

    .quick-order-list-total__items span {
      display: inline;
      margin-block-end: 0;
    }

    .quick-order-list-total__items .h5 {
      display: inline;
    }

    .quick-order-list-total__price {
      text-align: center;
      width: 100%;
    }

    .quick-order-list-total__product-total {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: var(--gap-xs);
    }

    .quick-order-list-total__product-total .quick-order-list-total__subtotal-value {
      display: inline-block;
      margin-block-end: 0;
    }

    .quick-order-list-total__product-total .quick-order-list-total__subtotal {
      display: inline;
    }

    .quick-order-list__button,
    .quick-order-list__remove-all-button {
      width: 100%;
      justify-content: center;
    }

    .quick-order-list-total__confirmation {
      flex-direction: column;
    }

    .quick-order-list-total__tax-note {
      margin-block-start: var(--margin-xs);
    }
  }
/* END_SECTION:quick-order-list */

/* START_SECTION:search-results (INDEX:162) */
/* Ergovanta search no-results: on-voice notice above the suggested grid.
     Cormorant heading echoing the query, a calm peer line, and a few hairline
     separated navy links. Fade-in only, no slide or bounce. */
  .search-no-results {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--gap-xs);
    max-width: 40rem;
    margin-inline: auto;
    padding-block: var(--padding-4xl) var(--padding-2xl);
    animation: search-no-results-fade 0.24s var(--animation-easing) both;
  }

  @media screen and (prefers-reduced-motion: reduce) {
    .search-no-results {
      animation: none;
    }
  }

  @keyframes search-no-results-fade {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }

  .search-no-results__heading {
    margin: 0;
    font-family: var(--font-heading--family);
    font-weight: 600;
    letter-spacing: 0.01em;
    color: var(--color-foreground-heading);
    font-size: clamp(1.5rem, 3vw, 2rem);
    line-height: 1.15;
  }

  .search-no-results__message {
    margin: 0;
    font-family: var(--font-body--family);
    font-size: var(--font-size--md);
    line-height: 1.5;
    color: #6B6B6B;
  }

  .search-no-results__links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0;
    margin: var(--margin-xs) 0 0;
    padding: 0;
    list-style: none;
  }

  .search-no-results__links li {
    display: flex;
    align-items: center;
  }

  .search-no-results__links li + li::before {
    content: "";
    display: inline-block;
    width: 1px;
    height: 0.9em;
    margin-inline: var(--margin-md);
    background-color: #E5E5E5;
  }

  .search-no-results__link {
    font-family: var(--font-body--family);
    font-size: var(--font-size--sm);
    color: #273755;
    text-decoration: none;
    text-underline-offset: 0.2em;
  }

  .search-no-results__link:hover {
    text-decoration: underline;
  }
/* END_SECTION:search-results */

/* START_SECTION:slideshow (INDEX:165) */
.slideshow-section {
    slideshow-arrows .slideshow-control:first-of-type {
      margin-inline-start: var(--padding-xs);
    }

    slideshow-arrows .slideshow-control:last-of-type {
      margin-inline-end: var(--padding-xs);
    }

    .slideshow--with-hints--mobile-with-hints {
      gap: var(--slideshow-gap, 0);
      grid-column: 1 / -1;
    }

    /* Hide navigation arrows at boundaries for with-hints mode */
    .slideshow--with-hints--mobile-with-hints slideshow-arrows .slideshow-control {
      transition: opacity 0.3s ease;
    }

    /* Override animation for boundary arrows in with-hints mode on hover */
    slideshow-component.slideshow--with-hints--mobile-with-hints:has(
        slideshow-slide:first-child:not([aria-hidden='true'])
      )
      > slideshow-container
      > slideshow-arrows
      .slideshow-control--previous,
    slideshow-component.slideshow--with-hints--mobile-with-hints:has(
        slideshow-slide:last-child:not([aria-hidden='true'])
      )
      > slideshow-container
      > slideshow-arrows
      .slideshow-control--next {
      animation: none;
      opacity: 0;
      pointer-events: none;
    }

    @media screen and (max-width: 749px) {
      .slideshow--with-hints--mobile-with-hints slideshow-slides {
        padding-inline: var(--page-margin);
      }

      .slideshow--with-hints--mobile-with-hints slideshow-slide {
        width: 96%;
      }

      .slideshow--with-hints--mobile-with-hints slideshow-slides {
        gap: min(var(--slideshow-gap, 0), 10px);
      }
    }

    @media screen and (min-width: 750px) {
      .slideshow--with-hints {
        gap: var(--slideshow-gap, 0);
        grid-column: 1 / -1;
      }

      .slideshow--with-hints slideshow-slides {
        padding-inline: var(--page-margin);
        gap: var(--slideshow-gap, 0);
      }

      .slideshow--with-hints slideshow-slide {
        width: calc((100vw - var(--page-margin) * 2));
        overflow: hidden;
      }

      .slideshow--with-hints slideshow-arrows .slideshow-control {
        transition: opacity 0.3s ease;
      }

      slideshow-component.slideshow--with-hints:has(slideshow-slide:first-child:not([aria-hidden='true']))
        > slideshow-container
        > slideshow-arrows
        .slideshow-control--previous,
      slideshow-component.slideshow--with-hints:has(slideshow-slide:last-child:not([aria-hidden='true']))
        > slideshow-container
        > slideshow-arrows
        .slideshow-control--next {
        animation: none;
        opacity: 0;
        pointer-events: none;
      }
    }
  }
/* END_SECTION:slideshow */

/* CSS from block stylesheet tags */
/* START_BLOCK:_accordion-row (INDEX:166) */
.details__icon {
    height: auto;
    margin-inline-end: var(--margin-xs);
  }
/* END_BLOCK:_accordion-row */

/* START_BLOCK:_announcement (INDEX:167) */
.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:168) */
.blog-post-card {
    display: flex;
    flex-direction: column;
    text-align: var(--text-align);
    column-gap: var(--columns-gap);
  }

  .blog-post-item--horizontal:has(.blog-post-card__image-container) .blog-post-card {
    & > *:first-child {
      flex-basis: 70%;
    }

    & > *:last-child {
      flex-basis: 30%;
    }
  }

  .blog-post-card__content {
    padding-block-start: 0.4rem;
    display: flex;
    flex-direction: column;
  }

  .blog-post-item .blog-post-card__image-container,
  .blog-post-item .blog-post-card__content {
    width: 100%;
  }

  /**
   * Horizontal layout (image left, content right)
   * Applied to hero posts based on total article count
   * Only applies the split layout when an image is actually present
   */
  .blog-post-item--horizontal .blog-post-card {
    flex-direction: row;

    @media screen and (max-width: 749px) {
      flex-direction: column;
    }
  }

  .blog-post-card__content a {
    display: block;
    text-wrap: pretty;
    text-decoration: none;
    padding-block-start: 0.75rem;
  }

  .blog-post-card__content a:hover,
  .blog-post-card__content a:hover [style*='--color: var(--color-primary)'] {
    color: var(--color-primary-hover);
  }

  .blog-post-card__content a:hover [style*='--color: var(--color-foreground-heading)'] {
    color: rgb(var(--color-foreground-heading-rgb) / var(--opacity-subdued-text));
  }

  .blog-post-card__content a:hover [style*='--color: var(--color-foreground)'] {
    color: rgb(var(--color-foreground-rgb) / var(--opacity-subdued-text));
  }
/* END_BLOCK:_blog-post-card */

/* START_BLOCK:_blog-post-content (INDEX:169) */
.blog-post-content {
    max-width: var(--normal-content-width);
    margin: 0 auto;
  }
/* END_BLOCK:_blog-post-content */

/* START_BLOCK:_blog-post-description (INDEX:170) */
.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:171) */
.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:172) */
.blog-post-card__image {
    width: 100%;
    object-fit: cover;
    object-position: center center;
    height: calc(var(--blog-post-card-img-height) * var(--blog-post-card-scale));
  }

  .blog-post-card__image--small {
    --blog-post-card-img-height: 280px;
  }

  .blog-post-card__image--medium {
    --blog-post-card-img-height: 340px;
  }

  .blog-post-card__image--large {
    --blog-post-card-img-height: 400px;
  }
/* END_BLOCK:_blog-post-image */

/* START_BLOCK:_blog-post-info-text (INDEX:173) */
.blog-post-details {
    display: flex;
    gap: var(--gap-sm);
    font-size: var(--font-paragraph-size);
    color: rgb(var(--color-foreground-rgb) / var(--opacity-subdued-text));
    white-space: nowrap;
    flex-wrap: wrap;
  }

  .blog-post-details > span {
    text-overflow: clip;
    overflow: hidden;
  }
/* END_BLOCK:_blog-post-info-text */

/* START_BLOCK:_card (INDEX:174) */
.card {
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    width: 100%;
    height: 100%;
    border-radius: var(--border-radius, 0);
    border-width: var(--border-width, 0);
    border-style: var(--border-style, none);
    border-color: var(--border-color);
    container-type: inline-size;
  }

  .card__content {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: var(--layer-flat);
    display: flex;
    flex-direction: column;
    aspect-ratio: var(--card-ratio, 1);
  }

  .card__content.background-transparent {
    background-color: transparent;
  }

  /* When card has both image and content, use min-height from container query */
  .card__content--has-min-height {
    min-height: calc(100cqw / var(--card-ratio-numeric));
  }

  .card__inner {
    flex: 1;
  }

  .card__media-wrapper {
    display: flex;
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
  }

  .card__media-wrapper video {
    z-index: var(--layer-raised);
  }

  .card__link {
    position: absolute;
    inset: 0;
    z-index: var(--layer-raised);
  }

  .card__link ~ :is(.card__content, .card__media-wrapper) {
    pointer-events: none;

    :is(a, button, input, textarea, select) {
      pointer-events: auto;
    }
  }

  /* Needs the .card__link ~ to be specific enough to take effect. */
  .card__link ~ .card__content--design-mode {
    pointer-events: auto;
  }
/* END_BLOCK:_card */

/* START_BLOCK:_carousel-content (INDEX:175) */
.carousel-content slideshow-slides {
    --slideshow-gap: var(--carousel-gap);
  }

  .carousel-content slideshow-slides > .card {
    flex: 0 0 auto;
    width: calc(
      (100% - (var(--carousel-gap, 8px) * (var(--carousel-mobile-columns, 2) - 1)) - var(--peek-next-slide-size, 0px)) /
        var(--carousel-mobile-columns, 2)
    );
  }

  @media screen and (min-width: 750px) {
    .carousel-content slideshow-slides > .card {
      width: calc(
        (100% - (var(--carousel-gap, 8px) * (var(--carousel-columns, 4) - 1)) - var(--peek-next-slide-size, 0px)) /
          var(--carousel-columns, 4)
      );
    }
  }

  .carousel-content .slideshow-control[disabled] {
    display: none;
  }

  .carousel-content slideshow-arrows {
    padding-inline: var(--util-page-margin-offset);
  }

  .carousel-content .slideshow-control--next {
    margin-inline-start: auto;
  }
/* END_BLOCK:_carousel-content */

/* START_BLOCK:_cart-products (INDEX:176) */
.cart-page__title + .cart-page__items {
    margin-block-start: var(--margin-lg);
  }
/* END_BLOCK:_cart-products */

/* START_BLOCK:_cart-summary (INDEX:177) */
.cart-summary__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--gap-2xl);
    container-type: inline-size;
    padding: 0;
    position: sticky;
    top: 0;
    align-self: start;

    @media screen and (min-width: 750px) {
      padding: var(--padding-5xl);
      grid-row: 1 / -1;
    }
  }

  body:has(> #header-group header-component[sticky]) .cart-summary__inner {
    top: var(--header-height, 0);
  }

  .cart-summary {
    @media screen and (max-width: 749px) {
      border: none;
    }

    @media screen and (min-width: 750px) {
      display: grid;
      grid-template-rows: subgrid;
      grid-row: 1 / -1;
    }
  }

  .cart-summary--extend {
    height: 100%;

    @media screen and (min-width: 750px) {
      border-right: none;
      border-top-right-radius: 0;
      border-bottom-right-radius: 0;
    }
  }

  /* If extend is on, only include top and bottom borders when the border radius is 0. */
  .cart-summary--extend:not(.has-border-radius) {
    @media screen and (min-width: 750px) {
      border-top: none;
      border-bottom: none;
    }
  }

  .cart-summary--extend .cart-summary__inner {
    height: 100%;
    padding: var(--padding-md) 0 var(--padding-4xl);

    @media screen and (min-width: 750px) {
      grid-row: 2 / -1;
      padding-inline: var(--page-margin);
      width: var(--sidebar-width);
    }
  }

  /* If extend is off, apply the border radius to the inner summary container */
  .cart-summary__inner.has-border-radius {
    border-radius: var(--border-radius);
  }

  @media screen and (max-width: 749px) {
    .inherit-parent-scheme--mobile {
      --color-background: inherit;
      --color-background-rgb: inherit;
      --color-foreground: inherit;
      --color-foreground-rgb: inherit;
      --color-primary: inherit;
      --color-primary-rgb: inherit;
      --color-primary-hover: inherit;
      --color-primary-hover-rgb: inherit;
      --color-border: inherit;
      --color-border-rgb: inherit;
      --color-shadow: inherit;
      --color-shadow-rgb: inherit;
      --color-foreground-heading: inherit;
      --color-primary-button-text: inherit;
      --color-primary-button-background: inherit;
      --color-primary-button-border: inherit;
      --color-primary-button-hover-text: inherit;
      --color-primary-button-hover-background: inherit;
      --color-primary-button-hover-border: inherit;
      --color-secondary-button-text: inherit;
      --color-secondary-button-background: inherit;
      --color-secondary-button-border: inherit;
      --color-secondary-button-hover-text: inherit;
      --color-secondary-button-hover-background: inherit;
      --color-secondary-button-hover-border: inherit;
      --color-input-text: inherit;
      --color-input-text-rgb: inherit;
      --color-input-background: inherit;
    }
  }
/* END_BLOCK:_cart-summary */

/* START_BLOCK:_cart-title (INDEX:178) */
.cart-title h1 {
    margin-block-end: 0;
    display: inline-flex;
    align-items: center;
    gap: var(--gap-sm);
  }

  .cart-title .cart-bubble {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--style-border-radius-buttons-primary);
    aspect-ratio: auto;
    padding: var(--cart-padding);
  }

  .cart-title .cart-bubble[data-maintain-ratio] {
    width: min(1lh, 26px);
    height: min(1lh, 26px);
  }

  .cart-title .cart-bubble .cart-bubble__background {
    background-color: rgb(var(--color-foreground-rgb) / var(--opacity-10-25));
  }

  .cart-title .cart-bubble__text {
    color: var(--color-foreground);
    font-family: var(--font-paragraph--family);
    font-weight: var(--font-paragraph--weight);
    font-size: clamp(var(--font-size--3xs), 0.75em, var(--font-size--xs));
  }
/* END_BLOCK:_cart-title */

/* START_BLOCK:_collection-image (INDEX:181) */
.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:183) */
.collection-links__link {
    --min-font-size: var(--font-size--4xl);
    --max-font-size: var(--font-size--6xl);

    display: flex;
    color: inherit;
    text-decoration: none;
    text-wrap: pretty;
    font-size: clamp(var(--min-font-size), 4.5vw, var(--max-font-size));

    /* When hovering over container, dim non-current links (text layout only) */
    @media (hover: hover) {
      collection-links-component:not([layout='spotlight']) .collection-links__container:hover & {
        opacity: var(--opacity-subdued-text);
      }

      collection-links-component:not([layout='spotlight']) .collection-links__container:hover &[aria-current='true'] {
        opacity: 1;
      }
    }

    [layout='spotlight'] & {
      /* Spotlight layout: dimmed by default */
      opacity: var(--disabled-opacity);

      &[aria-current='true'] {
        opacity: 1;
      }
    }

    .text-block {
      display: inline-block;
    }

    @media screen and (max-width: 749px) {
      --min-font-size: var(--font-size--3xl);
      --max-font-size: var(--font-size--5xl);

      [layout='spotlight'] & {
        white-space: normal;
        scroll-snap-align: start;
        text-wrap: pretty;

        span {
          text-wrap: pretty;
        }
      }
    }
  }

  .collection-links__count {
    font-size: 0.5em;
    opacity: var(--disabled-opacity);
    font-weight: var(--font-paragraph--weight);
  }

  .collection-links__image {
    align-items: center;
    justify-content: center;

    &:not([hidden]) {
      display: flex;
    }

    &[reveal] {
      --offset: 15px;

      position: fixed;
      top: 0;
      left: 0;
      z-index: var(--layer-temporary);
      display: block;
      translate: calc(var(--x) + var(--offset)) calc(var(--y) + var(--offset));
      pointer-events: none;
      width: auto;

      image-block {
        --image-height-basis: 5rem;

        height: var(--image-height);
      }
    }
  }
/* END_BLOCK:_collection-link */

/* START_BLOCK:_featured-blog-posts-card (INDEX:187) */
.featured-blog-posts-card {
    text-align: var(--text-align);
  }

  .featured-blog-posts-card__inner {
    gap: var(--gap);
  }

  .resource-list--grid .resource-list__item {
    min-width: 0;
  }

  /* Editorial layout */
  .resource-list:not(.hidden--desktop) .blog-post-card--flexible-aspect-ratio {
    .featured-blog-posts-card__content {
      --flex-wrap: nowrap;
    }
  }

  @media screen and (max-width: 749px) {
    .resource-list:not(.hidden--desktop) .blog-post-card--flexible-aspect-ratio {
      .featured-blog-posts-card__image,
      .blog-placeholder-svg {
        aspect-ratio: unset;
      }
    }
  }

  .featured-blog-posts-card__inner a,
  .featured-blog-posts-card__inner button {
    pointer-events: auto;
  }

  /* allow all blocks to be selectable in editor preview */
  .shopify-design-mode .featured-blog-posts-card__content * {
    pointer-events: auto;
  }

  .featured-blog-posts-card__content {
    --flex-wrap: wrap;
  }

  .featured-blog-posts-card__content h4 {
    margin: 0;
  }
/* END_BLOCK:_featured-blog-posts-card */

/* START_BLOCK:_featured-blog-posts-image (INDEX:188) */
.featured-blog-posts-card__image {
    width: 100%;
  }

  .featured-blog-posts-card__image .blog-placeholder-svg {
    object-fit: cover;
    width: 100%;
    height: 100%;
  }
/* END_BLOCK:_featured-blog-posts-image */

/* START_BLOCK:_featured-product-gallery (INDEX:190) */
.featured-product-section .card-gallery .quick-add__button {
    position: absolute;
    right: var(--quick-add-offset, var(--padding-sm));
    bottom: var(--quick-add-offset, var(--padding-sm));
  }
/* END_BLOCK:_featured-product-gallery */

/* START_BLOCK:_featured-product (INDEX:193) */
.featured-product-content-top {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: var(--gap-sm);
  }
/* END_BLOCK:_featured-product */

/* START_BLOCK:_footer-social-icons (INDEX:194) */
.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:195) */
.header-logo {
    display: flex;
    height: 100%;
    font-size: var(--font-size--md);
    font-family: var(--font-family);
    font-weight: var(--font-weight);
    font-style: var(--font-style);
    color: var(--color-foreground);
    justify-content: center;
    align-items: center;
    text-decoration: none;

    &[data-hidden-on-home-page] {
      display: none;

      #header-component:is(
          [sticky='always']:not([data-scroll-direction='none']),
          [sticky='scroll-up'][data-scroll-direction='up']
        )
        & {
        display: flex;
      }
    }

    @media screen and (max-width: 749px) {
      padding: 0;
    }

    @media screen and (min-width: 750px) {
      flex-shrink: 0;
    }

    &:hover {
      text-decoration: none;
    }
  }

  .header-logo__image {
    object-fit: contain;
    height: var(--header-logo-image-height-mobile);
    width: var(--header-logo-image-width-mobile);

    @media screen and (min-width: 750px) {
      height: var(--header-logo-image-height);
      width: var(--header-logo-image-width);
    }
  }

  .header-logo:has(.header-logo__image-container--inverse) .header-logo__image-container--original {
    display: var(--header-logo-display, block);
  }

  .header-logo__image-container--inverse {
    display: var(--header-logo-inverse-display, none);
  }

  /* Ergovanta sub-brand lockup. The wordmark inherits the Cormorant + navy
     treatment from snippets/eg-fonts.liquid (.header-logo[class]); here we lay
     the three parts out inline and color the divider (and modifier) with the
     page accent. The wordmark itself stays navy. */
  .header-logo--subbrand {
    gap: 10px;
    white-space: nowrap;
  }

  .eg-lockup__wordmark {
    color: var(--color-foreground-heading);
  }

  .eg-lockup__divider {
    display: inline-block;
    width: 1px;
    height: 1.1em;
    background-color: var(--eg-lockup-accent, #c28a3c);
    flex: 0 0 auto;
  }

  .eg-lockup__modifier {
    color: var(--eg-lockup-accent, #c28a3c);
    font-family: var(--font-heading--family);
    font-weight: 600;
    letter-spacing: 0.01em;
  }
/* END_BLOCK:_header-logo */

/* START_BLOCK:_header-menu (INDEX:196) */
.header__drawer {
    --header-drawer-min-height: 60px;
    display: flex;
    min-height: var(--header-drawer-min-height);
    align-items: center;
  }

  #header-component[data-menu-style='drawer'] .header__drawer {
    display: flex;
    min-height: var(--header-drawer-min-height);
  }

  @media screen and (min-width: 750px) {
    #header-component[data-menu-style='menu'] .header__drawer {
      display: none;
      min-height: 0;
    }
  }

  .header--compact .header__drawer {
    min-height: var(--minimum-touch-target);
  }

  .menu-list--mobile {
    &.menu-list {
      display: grid;
    }

    & .menu-list__list {
      width: max-content;
      margin-inline: auto;
      gap: var(--menu-horizontal-gap);
    }

    & li {
      width: max-content;
      padding-block: var(--padding-sm);
    }

    & li:first-of-type {
      padding-inline-start: var(--menu-horizontal-gap);
    }

    & li:last-of-type {
      padding-inline-end: var(--menu-horizontal-gap);
    }

    & a {
      color: var(--color-foreground);
    }
  }

  .menu-list__scroll-container {
    position: relative;
    overflow-x: auto;
    mask-image: linear-gradient(to right, transparent, #000 20px, #000 calc(100% - 20px), transparent);
    padding-block: var(--padding-2xs);
  }

  .menu-list {
    --menu-horizontal-gap: var(--gap-xl);
    --menu-vertical-gap: var(--gap-xl);

    display: flex;
    height: 100%;
  }

  .menu-list__list {
    display: flex;
    justify-content: var(--grid-area-alignment);
  }

  .menu-list__list-item {
    flex-shrink: 0;
    white-space: nowrap;
    display: flex;
    align-items: center;
    height: 100%;
  }

  .menu-list__list-item[aria-hidden='true'] {
    visibility: hidden;
  }

  .menu-list__link {
    font-family: var(--menu-top-level-font-family);
    font-style: var(--menu-top-level-font-style);
    font-weight: var(--menu-top-level-font-weight);
    font-size: var(--menu-top-level-font-size);
    line-height: var(--menu-top-level-font-line-height);
    text-transform: var(--menu-top-level-font-case);
    color: var(--menu-top-level-font-color);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    cursor: pointer;
    height: 100%;
    margin-block: 0;

    &::after {
      content: '';
      position: absolute;
      display: none;
      top: var(--header-padding);
      height: var(--box-height);
      left: 0;
      right: 0;
    }

    &[data-safety-box='true']::after {
      display: block;
    }

    &:hover,
    &:focus {
      color: var(--menu-top-level-font-color);
    }

    @media screen and (min-width: 750px) {
      font-size: var(--menu-top-level-font-size-desktop);
    }
  }

  .menu-list__link-title {
    padding-inline: calc(var(--gap-xl) / 2);
  }
  [slot='overflow'] .menu-list__link-title {
    padding-inline: 0;
  }

  .menu-list__list-item:not([slot='overflow']) {
    flex-direction: column;
  }
  .menu-list__list-item:not([slot='overflow'])::after {
    content: '';
    width: 100%;
    height: var(--header-padding);
    margin-bottom: calc(-1 * var(--header-padding));
  }

  [slot='overflow'] > .menu-list__link::after {
    content: none;
  }

  /*
    High specificity selectors to subdue non-hovered links without javascript.
    If the need for js-generated `hovered` and `focused` classes arises for another reason we can simplify these.
  */
  .menu-list:where(:has(.menu-list__list-item:hover)),
  .menu-list:where(:has(.menu-list__list-item:focus-within)),
  .menu-list:where(:has(.menu-list__list-item:not([aria-hidden='true']) .menu-list__link--active)) {
    .menu-list__link {
      color: rgb(var(--menu-top-level-font-color-rgb) / var(--opacity-subdued-text));
    }
  }

  /* stylelint-disable-next-line selector-max-specificity */
  .menu-list:not(:has(.menu-list__list-item:hover)) .menu-list__link--active,
  .menu-list .menu-list__list-item:where(:hover, :focus-within) .menu-list__link,
  .menu-list .menu-list__list-item[slot='overflow'] .menu-list__link[aria-expanded='true'] {
    color: var(--menu-top-level-font-color);
  }

  .overflow-menu::part(list) {
    /* Make sure focus outline is not cut off by overflow hidden */
    --focus-outline-size: calc(var(--focus-outline-offset) + var(--focus-outline-width));

    gap: 0;
    margin-inline: calc(-1 * var(--menu-horizontal-gap) / 2);
  }

  .overflow-menu {
    background-color: transparent;
    padding: var(--focus-outline-size);
    margin: calc(-1 * var(--focus-outline-size));
  }

  /** mega menu **/
  .menu-list__submenu,
  .overflow-menu::part(overflow) {
    --submenu-padding-block-start: var(--padding-3xl);
    --submenu-padding-block-end: var(--padding-3xl);

    background-color: transparent;
  }

  .header__row[style*='--border-bottom-width: 0px'] {
    .menu-list__submenu.color-scheme-matches-parent,
    .overflow-menu.color-scheme-matches-parent::part(overflow) {
      --submenu-padding-block-start: 0px;
    }
  }

  .menu-list__list-item:where(:not([slot='overflow'])) > .menu-list__submenu,
  .overflow-menu::part(overflow) {
    --submenu-content-opacity: 0;
    --submenu-content-animation: opacity calc(var(--submenu-animation-speed) * 0.75) var(--animation-easing);

    visibility: hidden;
    position: absolute;
    width: 100%;
    left: 0;
    top: calc(100% - 1px + var(--border-bottom-width) - (var(--full-open-header-height) - var(--submenu-height)));
    z-index: var(--layer-header-menu);
    padding-inline: var(--padding-inline);
    /* Clip path starts at header height so it doesn't mess with the pointer events in the header */
    clip-path: rect(var(--header-height) 100% var(--full-open-header-height) 0); /* stylelint-disable-line */
    transition: clip-path var(--submenu-animation-speed) var(--ease-out-cubic); /* stylelint-disable-line */
  }

  [data-submenu-overlap-bottom-row] {
    .menu-list__list-item:where(:not([slot='overflow'])) > .menu-list__submenu,
    .overflow-menu::part(overflow) {
      clip-path: rect(var(--top-row-height) 100% var(--full-open-header-height) 0); /* stylelint-disable-line */
    }
  }

  /* Show the submenus on hover */
  .menu-list__list-item:has([aria-expanded='true']) > .menu-list__submenu,
  /* Show the overflow menu when a menu item is hovered */
  .overflow-menu:has([slot="overflow"] [aria-expanded='true'])::part(overflow-list),
  /* Keep the submenus open when they are hovered */
  .menu-list__submenu:is(:hover),
  .overflow-menu::part(overflow):hover {
    --submenu-content-opacity: 1;

    visibility: visible;
  }

  .overflow-menu::part(overflow) {
    --menu-top-level-font-size: var(--font-size--xlarge);

    display: grid;
    grid-template-columns: var(--full-page-grid-with-margins);
  }

  .overflow-menu::part(overflow-list) {
    position: relative;
    display: grid;
    grid-template-columns: minmax(auto, 200px) 1fr;
    grid-template-areas: 'left right';
    grid-template-rows: max-content;
    grid-gap: 0;
    grid-column: 2;
  }

  .menu-list__list-item:is([slot='overflow']) {
    --menu-top-level-font-color: var(--color-foreground);
    --menu-top-level-font-color-rgb: var(--color-foreground-rgb);

    display: contents;
    white-space: normal;

    .menu-list__link {
      grid-area: left;
      grid-row: auto;
      height: min-content;
      font-size: var(--font-size--xl);
      transition: var(--submenu-content-animation);
    }

    .menu-list__submenu {
      visibility: hidden;
      grid-row: 1;
      grid-area: right;
      grid-row-end: span calc(var(--overflow-count) + 1);
      padding-inline-start: var(--menu-horizontal-gap);
    }

    .menu-list__submenu-inner {
      transform: none;
      grid-column: unset;
      padding-block: 0;
    }

    .menu-list__link[aria-expanded='true'] + .menu-list__submenu {
      visibility: visible;
    }
  }

  .header-menu {
    height: 100%;
  }

  .menu-list__submenu-inner {
    position: relative;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .menu-list__submenu-inner,
  .overflow-menu::part(overflow-list) {
    padding-block-start: var(--submenu-padding-block-start);
    padding-block-end: var(--submenu-padding-block-end);
    padding-inline: var(--section-padding-inline);
    opacity: var(--submenu-content-opacity);
    transition: var(--submenu-content-animation);
    transform: translateY(calc(var(--full-open-header-height) - var(--submenu-height)));

    /* Make overflow menu scrollable when content exceeds viewport */
    max-height: calc(80vh - var(--header-height));
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: thin;
    scrollbar-color: rgb(var(--color-foreground-rgb) / var(--opacity-40)) transparent;
  }

  .mega-menu__link {
    font-family: var(--menu-child-font-family);
    font-style: var(--menu-child-font-style);
    font-weight: var(--menu-child-font-weight);
    font-size: var(--menu-child-font-size);
    line-height: var(--menu-child-font-line-height);
    text-transform: var(--menu-child-font-case);
    color: var(--menu-child-font-color);
    white-space: normal;
    text-decoration: none;
    display: inline-flex;
    padding: var(--padding-2xs) 0;

    &:hover {
      color: var(--menu-child-active-font-color);
    }
  }

  .mega-menu__link--parent {
    font-family: var(--menu-parent-font-family);
    font-style: var(--menu-parent-font-style);
    font-weight: var(--menu-parent-font-weight);
    font-size: var(--menu-parent-font-size);
    line-height: var(--menu-parent-font-line-height);
    text-transform: var(--menu-parent-font-case);
    color: var(--menu-parent-font-color);

    &:hover {
      color: var(--menu-parent-active-font-color);
    }
  }

  @media screen and (max-width: 989px) {
    .mega-menu__content-list-item--hidden-tablet {
      display: none;
    }
  }

  .mega-menu__link:has(.mega-menu__link-image) {
    display: flex;
    flex-direction: column;
    padding-inline: 0;
    padding-block: var(--padding-sm) 0;
  }

  .mega-menu__link-image {
    width: 100%;
    position: relative;
    aspect-ratio: 16 / 9;
    margin-bottom: var(--padding-sm);
    object-fit: cover;
    border-radius: var(--menu-image-border-radius);
  }

  /* Fix alignment for collection image mode links without images */

  /* Target only top-level links (direct children of column > div) in collection image mode */
  .mega-menu__grid:has(.mega-menu__link-image)
    .mega-menu__column
    > div
    > .mega-menu__link:not(:has(.mega-menu__link-image)) {
    display: flex;
    flex-direction: column;
    padding-inline: 0;
    padding-block: var(--padding-sm) 0;
  }

  .mega-menu__grid:has(.mega-menu__link-image)
    .mega-menu__column
    > div
    > .mega-menu__link:not(:has(.mega-menu__link-image))::before {
    content: '';
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    margin-bottom: var(--padding-sm);
    background-color: var(--color-foreground-muted);
    opacity: 0.1;
    border-radius: var(--menu-image-border-radius);
  }

  .mega-menu__grid {
    display: grid;
    grid-template-columns: repeat(var(--menu-columns-tablet), minmax(0, 1fr));
    gap: var(--menu-vertical-gap) var(--menu-horizontal-gap);
    width: 100%;

    @media screen and (min-width: 990px) {
      grid-template-columns: repeat(var(--menu-columns-desktop), minmax(0, 1fr));
    }
  }

  .mega-menu__column {
    grid-column: span 1;
  }

  .mega-menu__column--span-2 {
    grid-column: span 2;
  }

  .mega-menu__column--span-3 {
    grid-column: span 3;
  }

  .mega-menu__column--span-4 {
    grid-column: span 4;
  }

  .mega-menu__column--wide-collection-image {
    grid-column: span 1;

    @media screen and (min-width: 990px) {
      grid-column: span 2;
    }
  }

  .mega-menu__submenu .mega-menu__column--wide-collection-image {
    grid-column: span 1;
  }

  .mega-menu__content-list {
    display: grid;
    justify-content: end;
    gap: var(--menu-vertical-gap) var(--menu-horizontal-gap);
  }

  .mega-menu__content-list--products {
    grid-template-columns: repeat(var(--menu-content-columns-tablet), minmax(0, 1fr));

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

  .mega-menu__content-list--collections {
    grid-template-columns: repeat(var(--menu-content-columns-tablet), minmax(0, 300px));

    @media screen and (min-width: 990px) {
      grid-template-columns: repeat(var(--menu-content-columns-desktop), minmax(0, 300px));
    }
  }

  .mega-menu__list {
    display: grid;
    grid-template-columns: subgrid;
    grid-column: span var(--menu-columns-tablet);
    gap: var(--menu-vertical-gap) var(--menu-horizontal-gap);

    @media screen and (min-width: 990px) {
      grid-column: span var(--menu-columns-desktop);
    }
  }

  .mega-menu__content {
    grid-column: span var(--menu-content-columns-tablet) / -1;

    @media screen and (min-width: 990px) {
      grid-column: span var(--menu-content-columns-desktop) / -1;
    }
  }

  .menu-list__list-item[slot='overflow'] .section {
    grid-template-columns: 1fr;
  }

  .menu-list__list-item[slot='overflow'] .section .mega-menu__grid {
    grid-column: 1;
  }

  .mega-menu__content-list li {
    white-space: normal;
  }

  /* mega more menu */
  .mega-menu__more-list {
    --menu-child-font-size: var(--font-size--xl);

    width: 200px;
  }

  .mega-menu__submenu {
    /* preserves the inherited grid layout when this submenu wrapper is used */
    display: contents;
  }

  /* ============================================================
     Ergovanta kit nav alignment (scoped to header menu only).
     Brings top-level nav links in line with comp-nav.html:
     Inter 500, +0.02em tracking; active/current link navy
     #273755 with a 1px navy underline under the label text.
     Reversible: delete this block to revert to Horizon default.
     ============================================================ */
  .header-menu .menu-list__link {
    letter-spacing: 0.02em;
    font-weight: 500;
  }

  .header-menu .menu-list:not(:has(.menu-list__list-item:hover)) .menu-list__link--active,
  .header-menu .menu-list .menu-list__list-item:where(:hover, :focus-within) .menu-list__link--active {
    color: #273755;
  }

  .header-menu .menu-list__list-item:not([slot='overflow']) .menu-list__link--active .menu-list__link-title {
    border-bottom: 1px solid #273755;
    padding-bottom: 2px;
  }

  /* ============================================================
     Ergovanta dropdown indicator (chevron) on nav items that have
     a submenu. Rendered inline inside the top-level link, right
     after the label, ONLY when link.links != blank (Liquid guard
     in the markup above), so items without a dropdown get no
     chevron. The link is a flex column, so the chevron row is
     centered under the label; a small inline-flex keeps the caret
     beside the text. Navy via currentColor; rotates 180deg when
     the item is expanded (aria-expanded='true' set on the link).
     Reversible: delete this block + the markup span to revert.
     ============================================================ */
  .header-menu .menu-list__list-item:not([slot='overflow']) .menu-list__link {
    flex-direction: row;
    align-items: center;
    gap: 4px;
  }

  .header-menu .menu-list__chevron {
    display: inline-flex;
    align-items: center;
    margin-inline-start: -2px;
    color: currentColor;
    transition: transform var(--animation-speed, 0.2s) var(--animation-easing, ease);
  }

  .header-menu .menu-list__chevron svg {
    width: 10px;
    height: 10px;
    display: block;
  }

  .header-menu .menu-list__link[aria-expanded='true'] .menu-list__chevron {
    transform: rotate(180deg);
  }
/* END_BLOCK:_header-menu */

/* START_BLOCK:_image (INDEX:199) */
.image-block__placeholder {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center center;
    overflow: hidden;
    position: relative;
  }

  image-block {
    --image-height-basis: 10rem;
    --image-height-small: calc(var(--image-height-basis) * 2);
    --image-height-medium: calc(var(--image-height-basis) * 3);
    --image-height-large: calc(var(--image-height-basis) * 4);

    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: var(--ratio);
    width: 100%;
    max-width: calc(var(--image-height) * var(--ratio));
    height: var(--image-height);
    overflow: hidden;

    @media screen and (min-width: 750px) {
      --image-height-small: calc(var(--image-height-basis) * 2.5);
      --image-height-medium: calc(var(--image-height-basis) * 3.5);
      --image-height-large: calc(var(--image-height-basis) * 4.5);
    }

    @media screen and (max-width: 749px) {
      height: auto;
    }

    &[height='small'] {
      --image-height: var(--image-height-small);
    }

    &[height='medium'] {
      --image-height: var(--image-height-medium);
    }

    &[height='large'] {
      --image-height: var(--image-height-large);
    }

    &[ratio='portrait'] {
      --ratio: 4 / 5;
    }

    &[ratio='square'] {
      --ratio: 1 / 1;

      @media screen and (min-width: 750px) {
        max-width: var(--image-height);
      }
    }

    &[ratio='landscape'] {
      --ratio: 16 / 9;
    }

    img {
      object-fit: cover;
      width: 100%;
      height: auto;
      aspect-ratio: var(--ratio);
      border-radius: var(--border-radius);
    }
  }
/* END_BLOCK:_image */

/* START_BLOCK:_marquee (INDEX:203) */
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-card-gallery (INDEX:205) */
.eg-badge {
    font-family: var(--font-body--family);
    font-weight: 500;
    font-size: 11px;
    line-height: 1;
    letter-spacing: 0.04em;
    text-transform: none;
    border: 0;
    border-radius: 999px;
    --badge-rectangle-padding-block: 6px;
    --badge-rectangle-padding-inline: 12px;
  }

  .eg-badge--best_seller {
    background: #273755;
    color: #ffffff;
  }

  .eg-badge--new {
    background: #e1e4ea;
    color: #273755;
  }

  .eg-badge--sale {
    background: #ebddd0;
    color: #8a3b2e;
  }

  .eg-badge--sold_out {
    background: #f5f5f5;
    color: #6b6b6b;
  }


  .card-gallery {
    position: relative;
  }

  .card-gallery .eg-card-count {
    position: absolute;
    left: 8px;
    bottom: 8px;
    z-index: var(--layer-raised, 2);
    pointer-events: none;
    display: inline-flex;
    align-items: center;
    gap: 1px;
    padding: 3px 8px;
    border-radius: 999px;
    font-family: var(--font-body--family);
    font-weight: 500;
    font-size: 11px;
    line-height: 1;
    letter-spacing: 0.02em;
    font-variant-numeric: tabular-nums;
    color: #273755;
    background: rgb(255 255 255 / 0.86);
    border: 1px solid rgb(39 55 85 / 0.18);
    box-shadow: 0 1px 3px rgb(26 26 26 / 0.16);
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
  }


  .card-gallery .eg-card-swipe-hint {
    position: absolute;
    top: 8px;
    right: 8px;
    z-index: var(--layer-raised, 2);
    pointer-events: none;
    display: none;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 999px;
    color: #273755;
    background: rgb(255 255 255 / 0.82);
    border: 1px solid rgb(39 55 85 / 0.16);
    box-shadow: 0 1px 3px rgb(26 26 26 / 0.16);
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
  }

  .card-gallery .eg-card-swipe-hint svg {
    width: 16px;
    height: 16px;
    display: block;
  }

  @media screen and (max-width: 749px) {
    .card-gallery:not(.eg-hint-gone) .eg-card-swipe-hint {
      display: inline-flex;
      animation: eg-swipe-nudge 1.8s ease-in-out 0.6s 3;
    }
  }

  .card-gallery:has(.product-badges) .eg-card-swipe-hint {
    display: none !important;
  }

  @keyframes eg-swipe-nudge {
    0%, 100% { transform: translateX(0); opacity: 0.85; }
    50% { transform: translateX(3px); opacity: 1; }
  }

  @media (prefers-reduced-motion: reduce) {
    .card-gallery .eg-card-swipe-hint {
      animation: none !important;
    }
  }

  .eg-card-swatches {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 8px;
    align-items: center;
    position: relative;
    z-index: var(--layer-raised, 2);
  }

  .eg-card-swatch {
    padding: 0;
    border: 0;
    background: none;
    cursor: pointer;
    line-height: 1;
  }

  .eg-card-swatch--dot {
    width: 24px;
    height: 24px;
    border-radius: 999px;
    background: var(--eg-sw);
    border: 1px solid color-mix(in srgb, currentColor 0%, #00000022);
  }

  .eg-card-swatch--dot {
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.08);
  }

  .eg-card-swatch--chip {
    padding: 3px 9px;
    border-radius: 999px;
    border: 1px solid #e5e5e5;
    font: 500 12px/1 var(--font-body--family);
    color: #1a1a1a;
    background: #fff;
  }

  .eg-card-swatch--more {
    padding: 3px 8px;
    font: 500 12px/1 var(--font-body--family);
    color: #6b6b6b;
  }

  .eg-card-swatch[aria-pressed='true'] {
    outline: 2px solid #273755;
    outline-offset: 1px;
  }

  .eg-card-swatch--dot:hover {
    transform: scale(1.08);
  }
  .product-card .price, .product-card .price__regular, .product-card .price__sale { font-weight: 500; }

  .card-gallery slideshow-arrows {
    mix-blend-mode: normal;
    align-items: center;
    padding-inline: var(--padding-sm, 8px);
  }

  .card-gallery slideshow-arrows .slideshow-control.slideshow-control {
    opacity: 1;
    pointer-events: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    min-width: 36px;
    min-height: 36px;
    padding: 0;
    border-radius: 999px;
    color: #273755;
    background: rgb(255 255 255 / 0.86);
    border: 1px solid rgb(39 55 85 / 0.18);
    box-shadow: 0 1px 4px rgb(26 26 26 / 0.18);
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
    transition: background 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
  }

  .card-gallery slideshow-arrows .slideshow-control.slideshow-control .svg-wrapper,
  .card-gallery slideshow-arrows .slideshow-control.slideshow-control svg {
    width: 20px;
    height: 20px;
    --icon-stroke-width: 2px;
  }

  .card-gallery slideshow-arrows .slideshow-control.slideshow-control:hover {
    background: #ffffff;
    box-shadow: 0 2px 8px rgb(26 26 26 / 0.26);
    transform: scale(1.06);
  }

  .card-gallery slideshow-arrows .slideshow-control.slideshow-control:focus-visible {
    outline: 2px solid #273755;
    outline-offset: 2px;
  }

  @media screen and (max-width: 749px) {
    .card-gallery slideshow-arrows .slideshow-control.slideshow-control {
      display: flex;
      width: 32px;
      height: 32px;
      min-width: 32px;
      min-height: 32px;
    }

    .card-gallery slideshow-arrows .slideshow-control.slideshow-control .svg-wrapper,
    .card-gallery slideshow-arrows .slideshow-control.slideshow-control svg {
      width: 18px;
      height: 18px;
    }
  }
/* END_BLOCK:_product-card-gallery */

/* START_BLOCK:_product-details (INDEX:208) */
/* Clear padding on mobile, if not full-width */
  @media screen and (max-width: 749px) {
    .product-information.section--page-width .product-details > .group-block {
      padding-inline: 0;
    }
  }

  .view-product-title {
    display: none;
  }

  /* Container styles */
  .product-details {
    display: flex;
    align-self: start;
    justify-content: center;
  }

  @media screen and (min-width: 750px) {
    .product-details > .group-block {
      height: min-content;
    }

    .full-height--desktop {
      height: 100%;
      max-height: calc(100vh - var(--header-group-height, 0));
      min-height: fit-content;
    }

    .full-height--desktop .group-block {
      align-self: var(--details-position, 'flex-start');
    }
  }
/* END_BLOCK:_product-details */

/* START_BLOCK:_search-input (INDEX:213) */
.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:214) */
.slide__content {
    height: 100%;
    position: relative;
    z-index: var(--layer-flat);

    @supports (animation-timeline: auto) {
      opacity: 0;
      animation: slide-reveal both linear;
      animation-timeline: var(--slideshow-timeline);
    }

    @media (prefers-reduced-motion) {
      opacity: 1;
      animation: none;
    }
  }

  .slide__content > * {
    margin: auto;
  }

  .slide__content.background-transparent {
    background-color: transparent;
  }

  slideshow-slide > .slide__image-container {
    display: flex;
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: absolute;
  }

  .slide__image-container > .slide__image,
  .slide__image-container > .slide__video,
  .slide__image-container > .slide__video-poster {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
  }

  .slide__image-container > .slide__video-poster {
    position: absolute;
  }

  /*
   * Force Safari to recalculate the timeline state on timeline refresh (after loop)
   */
  slideshow-component[refreshing-timeline] .slide__content {
    animation: none;
  }

  slideshow-slide .slide__image-container--rounded {
    border-radius: var(--corner-radius, 0);
  }
/* END_BLOCK:_slide */

/* START_BLOCK:_social-link (INDEX:215) */
.social-icons__icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    height: var(--icon-size-lg);
  }

  .social-icons__icon {
    display: flex;
    flex-shrink: 0;
    width: var(--icon-size-lg);
    height: var(--icon-size-lg);
  }

  .social-icons__icon {
    display: none;
  }

  .social-icons__icon-wrapper:has(.social-icons__icon path) {
    width: var(--icon-size-lg);

    .social-icons__icon {
      display: block;
    }

    .social-icons__icon-label {
      display: none;
    }
  }

  /* Disabled state for editor */
  .shopify-design-mode .social-icons__icon-wrapper--disabled {
    opacity: var(--disabled-opacity, 0.5);
    cursor: not-allowed;
  }

  .shopify-design-mode .social-icons__icon-wrapper--disabled a {
    pointer-events: none;
  }
/* END_BLOCK:_social-link */

/* START_BLOCK:accordion (INDEX:217) */
.accordion {
    flex: 1;
    width: 100%;
  }

  .accordion--dividers accordion-custom:not(:first-child) .details {
    border-block-start: var(--style-border-width) solid var(--color-border);
  }

  /* When accordion borders are not set, show fallback borders */
  .accordion--dividers {
    /* stylelint-disable-next-line declaration-property-value-disallowed-list */
    --show-fallback-borders: 0;
  }

  .accordion--dividers:not([class*='color-'])[style*='--border-width: 0'],
  .accordion--dividers:not([class*='color-'])[style*='--border-style: none'] {
    --show-fallback-borders: 1;
  }

  .accordion--dividers accordion-custom:first-child .details {
    border-block-start: calc(var(--style-border-width) * var(--show-fallback-borders)) solid var(--color-border);
  }

  .accordion--dividers accordion-custom:last-child .details {
    border-block-end: calc(var(--style-border-width) * var(--show-fallback-borders)) solid var(--color-border);
  }

  .accordion--dividers .details-content {
    padding-block-end: var(--padding-sm);
  }

  .accordion--caret .icon-plus,
  .accordion--plus .icon-caret {
    display: none;
  }

  /* because we can't pass apply a specific class on a block based on its parent block setting */
  .accordion .details__header {
    font-family: var(--summary-font-family);
    font-style: var(--summary-font-style);
    font-weight: var(--summary-font-weight);
    font-size: var(--summary-font-size);
    line-height: var(--summary-font-line-height);
    text-transform: var(--summary-font-case);
    min-height: var(--minimum-touch-target);
  }
/* END_BLOCK:accordion */

/* START_BLOCK:comparison-slider (INDEX:223) */
comparison-slider-component {
    display: block;
  }

  .comparison-slider {
    position: relative;
    overflow: hidden;
    aspect-ratio: var(--ratio);
  }

  .comparison-slider:not(:has(img)) {
    min-width: 25dvh;
  }

  .comparison-slider__container {
    position: relative;
    width: 100%;
    height: 100%;
  }

  /* Container and Layout */
  .comparison-slider__media-wrapper {
    --compare: 50;

    position: relative;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template: 1fr / 1fr;
    overflow: hidden;
  }

  /* Layer Containers */
  .comparison-slider__layer {
    grid-area: 1 / 1;
    position: relative;
    width: 100%;
    height: 100%;
    transition: clip-path var(--transition-duration, 0s) ease-in-out;
  }

  .comparison-slider__layer--after {
    z-index: var(--layer-base);
  }

  /* Before Layer Clipping (inverse of after layer) */
  [data-orientation='horizontal'] .comparison-slider__layer--before {
    /* stylelint-disable-next-line plugin/no-unsupported-browser-features */
    clip-path: inset(0 calc((100 - var(--compare)) * 1%) 0 0);
  }

  [data-orientation='vertical'] .comparison-slider__layer--before {
    /* stylelint-disable-next-line plugin/no-unsupported-browser-features */
    clip-path: inset(0 0 calc(var(--compare) * 1%) 0);
  }

  /* After Layer Clipping */
  [data-orientation='horizontal'] .comparison-slider__layer--after {
    /* stylelint-disable-next-line plugin/no-unsupported-browser-features */
    clip-path: inset(0 0 0 calc(var(--compare) * 1%));
  }

  [data-orientation='vertical'] .comparison-slider__layer--after {
    /* stylelint-disable-next-line plugin/no-unsupported-browser-features */
    clip-path: inset(calc((100 - var(--compare)) * 1%) 0 0 0);
  }

  /* Images and Placeholders */
  .before-image,
  .after-image,
  .comparison-slider__placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: var(--ratio);
  }

  .comparison-slider__placeholder {
    position: absolute;
    inset: 0;
  }

  .comparison-slider__placeholder svg {
    width: 100%;
    height: 100%;
    background-color: var(--color-background);
    fill: var(--color-foreground);
  }

  /* Range Input (Hidden but Functional) */
  .cs-slider {
    position: absolute;
    inset: 0;
    z-index: var(--layer-heightened);
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    opacity: 0;
    cursor: inherit;
    appearance: none;
  }

  [data-orientation='horizontal'] .cs-slider {
    cursor: ew-resize;
  }

  [data-orientation='vertical'] .cs-slider {
    cursor: ns-resize;
    writing-mode: vertical-lr;
    direction: rtl;
  }

  /* Range Input Thumb */
  .cs-slider::-webkit-slider-thumb,
  .cs-slider::-moz-range-thumb {
    width: var(--button-size);
    height: var(--button-size);
    border: 0;
    background: transparent;
    cursor: inherit;
    appearance: none;
  }

  /* Range Input Track */
  .cs-slider::-webkit-slider-track,
  .cs-slider::-moz-range-track {
    background: transparent;
    border: 0;
    appearance: none;
  }

  /* Visual Slider Elements */
  .comparison-slider__media-wrapper::before,
  .comparison-slider__media-wrapper::after {
    content: '';
    position: absolute;
    pointer-events: none;
    transition: left var(--transition-duration, 0s) ease-in-out, top var(--transition-duration, 0s) ease-in-out;
    z-index: var(--layer-raised);
  }

  /* Slider Track Line */
  .comparison-slider__media-wrapper::after {
    background: var(--color-background);
    box-shadow: 0 0 12px 0 rgb(0 0 0 / 0.1);
  }

  .comparison-slider__media-wrapper::before {
    background: var(--color-background);
  }

  .comparison-slider__media-wrapper[data-orientation='horizontal']::after {
    inset: 0 auto;
    left: calc(var(--compare) * 1%);
    width: 4px;
    transform: translateX(-50%);
  }

  .comparison-slider__media-wrapper[data-orientation='vertical']::after {
    inset: auto 0;
    top: calc((100 - var(--compare)) * 1%);
    height: 4px;
    transform: translateY(-50%);
  }

  /* Slider Handle */
  .cs-slider__handle {
    position: absolute;
    z-index: var(--layer-heightened);
    pointer-events: none;
    width: var(--button-size);
    height: var(--button-size);
    background: var(--color-background);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 12px 0 rgb(0 0 0 / 0.1);
    transition: left var(--transition-duration, 0s) ease-in-out, top var(--transition-duration, 0s) ease-in-out,
      gap 0.2s ease-in-out;
    gap: var(--gap-sm);
    padding: var(--padding-xs);
  }

  .comparison-slider__media-wrapper:hover .cs-slider__handle {
    gap: var(--gap-2xs);
  }

  .cs-slider__chevron {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  [data-orientation='horizontal'] .cs-slider__handle {
    top: 50%;
    left: calc(var(--compare) * 1%);
    transform: translate(-50%, -50%);
    flex-direction: row;
  }

  [data-orientation='vertical'] .cs-slider__handle {
    left: 50%;
    top: calc((100 - var(--compare)) * 1%);
    transform: translate(-50%, -50%) rotate(90deg);
  }

  /* Text Labels */
  .comparison-slider__text {
    position: absolute;
    padding: var(--padding-xs);
    pointer-events: none;
  }

  .comparison-slider__text--with-bg {
    background: var(--text-background-color);
    border-radius: var(--text-corner-radius);
  }

  /* Horizontal: before/after control inline (left/right), position controls block (top/bottom) */
  [data-orientation='horizontal'] .comparison-slider__text--before {
    inset-inline-start: var(--padding-sm);
  }

  [data-orientation='horizontal'] .comparison-slider__text--after {
    inset-inline-end: var(--padding-sm);
  }

  [data-orientation='horizontal'][data-text-position='start'] .comparison-slider__text {
    inset-block-start: var(--padding-sm);
  }

  [data-orientation='horizontal'][data-text-position='end'] .comparison-slider__text {
    inset-block-end: var(--padding-sm);
  }

  /* Vertical: before/after control block (top/bottom), position controls inline (left/right) */
  [data-orientation='vertical'] .comparison-slider__text--before {
    inset-block-start: var(--padding-sm);
  }

  [data-orientation='vertical'] .comparison-slider__text--after {
    inset-block-end: var(--padding-sm);
  }

  [data-orientation='vertical'][data-text-position='start'] .comparison-slider__text {
    inset-inline-start: var(--padding-sm);
  }

  [data-orientation='vertical'][data-text-position='end'] .comparison-slider__text {
    inset-inline-end: var(--padding-sm);
  }
/* END_BLOCK:comparison-slider */

/* START_BLOCK:contact-form-submit-button (INDEX:224) */
.submit-button {
    min-width: max-content;
  }
/* END_BLOCK:contact-form-submit-button */

/* START_BLOCK:contact-form (INDEX:225) */
.contact-form__form {
    display: flex;
    flex-direction: column;
    gap: var(--gap-md);
  }

  .contact-form__form-row {
    display: flex;
    flex-direction: column;
    gap: var(--gap-md);

    @media screen and (min-width: 750px) {
      flex-direction: row;
      align-items: center;
    }
  }

  .contact-form__input {
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    color: var(--color-input-text);
    background-color: var(--color-input-background);
    padding: var(--padding-lg) var(--padding-xl);
    border-radius: var(--style-border-radius-inputs);
    border: var(--style-border-width-inputs) solid var(--color-input-border);
    -webkit-font-smoothing: antialiased;
  }

  .contact-form__input--textarea {
    resize: vertical;
    min-height: var(--input-textarea-min-height);
  }

  .contact-form__error,
  .contact-form__success {
    display: flex;
    align-items: center;
    gap: var(--gap-xs);
  }
/* END_BLOCK:contact-form */

/* START_BLOCK:eg-breadcrumb (INDEX:227) */
.eg-breadcrumb {
    margin: 0;
  }
  .eg-breadcrumb__list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4px 6px;
    margin: 0;
    padding: 0;
    list-style: none;
    font-family: var(--font-body--family);
    font-size: 0.75rem;
    line-height: 1.3;
    color: #6B6B6B;
  }
  .eg-breadcrumb__sep {
    color: #C9C9C9;
  }
  .eg-breadcrumb__link {
    color: #6B6B6B;
    text-decoration: none;
    transition: color 0.15s ease;
  }
  .eg-breadcrumb__link:hover {
    color: #273755;
  }
  .eg-breadcrumb__link--plain {
    cursor: default;
  }
  .eg-breadcrumb__item--current {
    color: #273755;
    max-width: 22ch;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  /* --- PDP product title (scoped) ---
     The product title block (templates/product.json id "text_xrnftG") is set to
     2.5rem on desktop. Pin it navy and step it down on narrow screens so the
     larger size stays readable on mobile. This block always renders inside the
     same buy-box Header group, so this rule is guaranteed to load on the PDP. */
  .text-block--text_xrnftG,
  .text-block--text_xrnftG > * {
    color: #273755;
  }
  @media screen and (max-width: 749px) {
    .text-block--text_xrnftG {
      --font-size: 1.875rem;
    }
  }
/* END_BLOCK:eg-breadcrumb */

/* START_BLOCK:eg-description (INDEX:229) */
.eg-description__body {
    font-family: var(--font-body--family);
    font-size: 1.0625rem;
    line-height: 1.6;
    color: var(--color-foreground);
  }
  .eg-description__body > :first-child { margin-top: 0; }
  .eg-description__body > :last-child { margin-bottom: 0; }
/* END_BLOCK:eg-description */

/* START_BLOCK:eg-eyebrow (INDEX:230) */
.eg-eyebrow {
    font-family: var(--font-body--family);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    line-height: 1.3;
    color: #6B6B6B;
    margin: 0;
  }
/* END_BLOCK:eg-eyebrow */

/* START_BLOCK:eg-key-features (INDEX:231) */
.eg-keyfeat__card {
    background-color: #F5F5F5;
    padding: 14px 18px;
    border-radius: 6px;
    font-family: var(--font-body--family);
    font-size: 0.9375rem;
    line-height: 1.7;
    color: #1A1A1A;
  }
  .eg-keyfeat__row { margin: 0; }
  .eg-keyfeat__row strong { font-weight: 600; }
  .eg-keyfeat__card p { margin: 0; }
  .eg-keyfeat__card strong { font-weight: 600; }
  .eg-keyfeat__lead {
    margin: 10px 0 0;
    font-family: var(--font-body--family);
    font-size: 0.75rem;
    line-height: 1.4;
    color: #6B6B6B;
  }
/* END_BLOCK:eg-key-features */

/* START_BLOCK:eg-pdp-volume (INDEX:234) */
.eg-vol--inline { background-color: transparent; }
  .eg-vol__inner { box-sizing: border-box; }
  .eg-vol__eyebrow {
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #6b6b6b;
    margin: 0 0 6px;
  }
  .eg-vol__heading {
    font-family: var(--font-heading--family), 'Cormorant Garamond', serif;
    font-weight: 600;
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    line-height: 1.15;
    color: #273755;
    margin: 0 0 12px;
  }
  .eg-vol__tiers {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .eg-vol__tier {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    text-align: left;
    appearance: none;
    cursor: pointer;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    padding: 12px 14px;
    transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  }
  .eg-vol__tier:hover { border-color: #c8cdd6; }
  .eg-vol__tier.is-active {
    border-color: #273755;
    box-shadow: inset 0 0 0 1px #273755;
    background: #fbfaf8;
  }
  .eg-vol__tier:focus-visible { outline: 2px solid #273755; outline-offset: 2px; }
  .eg-vol__tier--feature { border-color: #cdd4e0; }
  .eg-vol__flag {
    position: absolute;
    top: -9px;
    left: 14px;
    background: #273755;
    color: #fff;
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 0.625rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 3px 8px;
    border-radius: 4px;
  }
  .eg-vol__tier-top {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 3px;
    min-width: 0;
  }
  .eg-vol__tier-qty {
    font-family: var(--font-heading--family), 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    line-height: 1;
    color: #273755;
  }
  .eg-vol__tier-tag {
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 0.625rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #6b6b6b;
  }
  .eg-vol__tier-tag--save { color: #2f6a44; }
  .eg-vol__tier-price {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0;
    flex: 0 0 auto;
    text-align: right;
  }
  .eg-vol__per {
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 1.0625rem;
    font-weight: 600;
    font-variant-numeric: tabular-nums;
    color: #1a1a1a;
  }
  .eg-vol__per-unit {
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 0.6875rem;
    color: #6b6b6b;
  }
  .eg-vol__was {
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 0.75rem;
    font-variant-numeric: tabular-nums;
    color: #9a9a9a;
  }
  .eg-vol__tier-foot {
    display: none;
  }
  .eg-vol__note {
    margin: 12px 0 0;
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 0.6875rem;
    line-height: 1.5;
    color: #6b6b6b;
  }
  .eg-vol__note--pending { color: #8a8a8a; font-style: italic; }
  .eg-vol__bulk {
    margin: 10px 0 0;
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 0.75rem;
    line-height: 1.5;
    color: #6b6b6b;
  }
  .eg-vol__bulk-link {
    color: #273755;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
    text-decoration-thickness: 1px;
    text-decoration-color: rgba(39, 55, 85, 0.4);
    transition: text-decoration-color 0.18s ease;
  }
  .eg-vol__bulk-link:hover { text-decoration-color: #273755; }
  .eg-vol__bulk-link:focus-visible { outline: 2px solid #273755; outline-offset: 2px; }
/* END_BLOCK:eg-pdp-volume */

/* START_BLOCK:eg-stock-line (INDEX:236) */
.eg-stockline__row {
    display: flex;
    align-items: center;
    gap: 7px;
    margin: 0;
    font-family: var(--font-body--family);
    font-size: 0.9375rem;
    font-weight: 600;
    line-height: 1.4;
    color: var(--color-foreground);
  }
  .eg-stockline__dot {
    display: inline-block;
    flex: 0 0 auto;
    width: 10px;
    height: 10px;
    border-radius: 50%;
  }
  .eg-stockline__dot--in { background-color: #2e7d4f; box-shadow: 0 0 0 3px rgba(46,125,79,.18); }
  .eg-stockline__row--in { color: #1f6b41; }
  .eg-stockline__dot--out { background-color: #6B6B6B; }
  .eg-stockline__row--out { color: #6B6B6B; }

  /* ---------------------------------------------------------------
     Ergovanta PDP main-image arrow visibility upgrade.
     The Horizon product media gallery (carousel mode) ships its prev/next
     arrows nearly invisible: <slideshow-arrows> carries
     mix-blend-mode:difference and each .slideshow-control is a bare white
     glyph (the core rule sets opacity:0; the gallery snippet already nudges
     it to opacity:1 but with no disc/ring, so it reads as a faint mark over
     busy product shots). Promote them to the same tasteful control used on
     the collection cards: ~40px semi-opaque white disc, hairline navy ring
     rgb(39 55 85 / .18), navy chevron (the inline SVG strokes currentColor),
     soft shadow, slight backdrop blur, always visible, hover lift.
     Scoped to .media-gallery--carousel (the PDP product-media gallery) so the
     collection-card carousel (.card-gallery, styled separately) and the grid
     presentation are untouched. The wrapper stays pointer-events:none and only
     the buttons capture the pointer, so zoom-on-click and drag-to-swipe keep
     working. This stylesheet hoists page-wide because eg-stock-line renders on
     every PDP. Class doubled on .slideshow-control to out-specify the core
     opacity:0 rule without !important. */
  .media-gallery--carousel slideshow-arrows {
    mix-blend-mode: normal;
  }

  .media-gallery--carousel slideshow-arrows .slideshow-control.slideshow-control {
    opacity: 1;
    pointer-events: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
    padding: 0;
    border-radius: 999px;
    color: #273755;
    background: rgb(255 255 255 / 0.86);
    border: 1px solid rgb(39 55 85 / 0.18);
    box-shadow: 0 1px 4px rgb(26 26 26 / 0.18);
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
    transition: background 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
  }

  .media-gallery--carousel slideshow-arrows .slideshow-control.slideshow-control .svg-wrapper,
  .media-gallery--carousel slideshow-arrows .slideshow-control.slideshow-control svg {
    width: 20px;
    height: 20px;
    --icon-stroke-width: 2px;
  }

  .media-gallery--carousel slideshow-arrows .slideshow-control.slideshow-control:hover {
    background: #ffffff;
    box-shadow: 0 2px 8px rgb(26 26 26 / 0.26);
    transform: scale(1.06);
  }

  .media-gallery--carousel slideshow-arrows .slideshow-control.slideshow-control:focus-visible {
    outline: 2px solid #273755;
    outline-offset: 2px;
  }

  @media screen and (max-width: 749px) {
    .media-gallery--carousel slideshow-arrows .slideshow-control.slideshow-control {
      width: 36px;
      height: 36px;
      min-width: 36px;
      min-height: 36px;
    }

    .media-gallery--carousel slideshow-arrows .slideshow-control.slideshow-control .svg-wrapper,
    .media-gallery--carousel slideshow-arrows .slideshow-control.slideshow-control svg {
      width: 18px;
      height: 18px;
    }
  }
/* END_BLOCK:eg-stock-line */

/* START_BLOCK:eg-trust-row (INDEX:237) */
.eg-trust__badges {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 16px;
    margin: 0;
    padding: 20px 0 0;
    list-style: none;
    border-top: 1px solid #E5E5E5;
  }
  @media screen and (min-width: 600px) {
    .eg-trust__badges { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  }
  .eg-trust__badge {
    display: flex;
    align-items: flex-start;
    gap: 9px;
  }
  .eg-trust__icon {
    flex: 0 0 auto;
    width: 20px;
    height: 20px;
    margin-top: 1px;
    color: #273755;
  }
  .eg-trust__text {
    display: flex;
    flex-direction: column;
    gap: 1px;
    min-width: 0;
  }
  .eg-trust__title {
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 0.8125rem;
    font-weight: 600;
    line-height: 1.3;
    color: #1A1A1A;
  }
  .eg-trust__sub {
    font-family: var(--font-body--family), 'Inter', sans-serif;
    font-size: 0.6875rem;
    line-height: 1.4;
    color: #6B6B6B;
  }
/* END_BLOCK:eg-trust-row */

/* START_BLOCK:email-signup (INDEX:239) */
.email-signup-block {
    --arrow-button-size: 58px;
    --arrow-button-size-integrated: 42px;
    --arrow-button-size-small: 20px;
    --arrow-icon-size: 32px;
    --arrow-icon-size-small: 24px;

    min-width: fit-content;

    @media screen and (max-width: 749px) {
      width: 100%;
      min-width: unset;
    }
  }

  .email-signup__heading {
    padding-block: var(--padding-sm);
  }

  .email-signup__form {
    display: flex;
    flex-direction: column;
  }

  .email-signup__input-group {
    display: flex;
    align-items: stretch;
    background-color: transparent;
  }

  .email-signup__input-group:not(.email-signup__input-group--integrated):not(.email-signup__input-group--underline) {
    gap: var(--gap-xs);
    align-items: center;
  }

  .email-signup__input-group:not(.email-signup__input-group--arrow):not(.email-signup__input-group--underline):not(
      .email-signup__input-group--integrated
    ) {
    @media screen and (max-width: 749px) {
      flex-direction: column;
    }
  }

  .email-signup__input-group--integrated {
    border-width: var(--border-width);
    border-radius: var(--border-radius);
    border-style: solid;
    border-color: var(--color-input-border);
    background-color: var(--color-input-background);
  }

  .email-signup__input-group--integrated.email-signup__input-group--no-border {
    border: none;
  }

  .email-signup__input {
    flex: 1;
    min-width: 0;
    border-width: var(--border-width);
    border-radius: var(--border-radius);
    border-style: solid;
    border-color: var(--color-input-border);

    @media screen and (max-width: 749px) {
      width: 100%;
    }
  }

  .email-signup__input-group--integrated .email-signup__input {
    background-color: transparent;
    border: none;
    border-radius: 0;
  }

  .email-signup__input.paragraph {
    color: var(--color-input-text);
    outline-color: var(--color-input-background);
  }

  .email-signup__button {
    white-space: nowrap;
    padding: 0;

    @media screen and (max-width: 749px) {
      width: 100%;
    }
  }

  .email-signup__input,
  .email-signup__button--text {
    padding: var(--padding-lg) var(--padding-3xl);
  }

  .email-signup__input-group--underline {
    --box-shadow-color: var(--color-input-border);
    --box-shadow-multiplier: 1;
    --box-shadow-focused-multiplier: 1.75;

    box-shadow: 0 calc(var(--border-width) * var(--box-shadow-multiplier)) 0 var(--box-shadow-color);
    transition: box-shadow var(--animation-values);
    margin-block-end: calc(var(--border-width) * var(--box-shadow-focused-multiplier));

    &:focus-within {
      --box-shadow-multiplier: var(--box-shadow-focused-multiplier);
      --box-shadow-color: var(--color-input-text);
    }
  }

  .email-signup__input-group .email-signup__input--underline {
    color: var(--color-input-text);
    background-color: transparent;
    padding: 12px 0;
    border: none;
    border-radius: 0;

    &:focus-visible {
      outline: none;
    }
  }

  .email-signup__input::placeholder {
    color: rgb(var(--color-input-text-rgb) / var(--opacity-70));
  }

  .email-signup__input-group .email-signup__input--none {
    color: var(--color-input-text);
    background-color: var(--color-input-background);
    border: none;
  }

  .email-signup__button-icon {
    color: currentcolor;
    padding: 5px;

    @media screen and (max-width: 749px) {
      padding: 0;
      align-self: center;
      justify-self: center;
      width: var(--icon-size-lg);
      height: var(--icon-size-lg);
    }
  }

  .email-signup__button--arrow {
    width: var(--arrow-button-size-small);
    height: var(--arrow-button-size-small);
    padding: 0;

    &:not(.email-signup__button--integrated) {
      width: var(--arrow-button-size);
      height: var(--arrow-button-size);
      display: flex;
      align-items: center;
      justify-content: center;

      > .email-signup__button-icon {
        width: var(--arrow-icon-size);
        height: var(--arrow-icon-size);
        padding: 0;
      }
    }
  }

  .email-signup__button--integrated {
    --button-offset: var(--margin-xs);
    align-self: stretch;
    margin: var(--button-offset);
    flex-shrink: 0;

    @media screen and (max-width: 749px) {
      width: fit-content;
    }

    &.email-signup__button--text {
      padding: 0 var(--padding-3xl);
    }

    &.email-signup__button--text.button-unstyled {
      padding: 0 var(--padding-xl);
    }

    &.button-unstyled {
      border-radius: var(--border-radius);
    }

    > .email-signup__button-icon {
      padding: 0;
    }

    &.email-signup__button--arrow {
      width: var(--arrow-button-size-integrated);
      height: var(--arrow-button-size-integrated);
      align-self: center;
      display: flex;
      align-items: center;
      justify-content: center;

      > .email-signup__button-icon {
        width: var(--arrow-icon-size-small);
        height: var(--arrow-icon-size-small);
      }
    }
  }

  .email-signup__input--underline + .email-signup__button--integrated {
    margin: 0;
    align-self: center;

    &.email-signup__button--text {
      padding-block: 9px;
    }

    &.email-signup__button--text.button-unstyled {
      padding-inline: 0;
      min-width: 44px;
      min-height: 44px;
    }

    &.button-unstyled {
      border-radius: 0;
    }

    &.email-signup__button--arrow {
      width: var(--arrow-button-size-integrated);
      height: var(--arrow-button-size-integrated);
      display: flex;
      align-items: center;
      justify-content: center;

      > .email-signup__button-icon {
        width: var(--arrow-icon-size-small);
        height: var(--arrow-icon-size-small);
      }
    }
  }

  .email-signup__button:not(.button-unstyled) {
    background-color: var(--button-background-color);
    color: var(--button-color);
    text-transform: var(--button-text-case-primary);
  }

  .email-signup__button.button-secondary {
    text-transform: var(--button-text-case-secondary);
  }

  .email-signup__button.button-unstyled {
    background-color: transparent;
    color: var(--color-input-text);
  }

  .email-signup__button.button-unstyled:hover {
    color: rgb(var(--color-input-text-rgb) / var(--opacity-70));
    cursor: pointer;
  }

  .email-signup__message {
    display: flex;
    align-items: center;
    gap: var(--gap-xs);
  }

  .email-signup__message-text {
    margin: 0;
  }
/* END_BLOCK:email-signup */

/* START_BLOCK:filters (INDEX:241) */
.facets-block-wrapper {
    @media screen and (min-width: 750px) {
      margin: var(--facets-margin);
      grid-column: var(--grid-column--desktop);
    }
  }

  .facets-block-wrapper--vertical {
    @media screen and (min-width: 750px) {
      grid-column: var(--grid-column--desktop);
    }
  }

  .facets-toggle {
    --icon-offset: -3px;

    display: flex;
    justify-content: space-between;
    align-items: center;
    height: var(--minimum-touch-target);
    margin: var(--facets-margin);
    padding-block: var(--facets-inner-padding-block);
    padding-inline: var(--facets-inner-padding-inline);

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

  .facets-toggle__wrapper {
    margin-left: var(--icon-offset);
  }

  .facets-toggle__button {
    box-shadow: none;

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

  .filter-count-bubble {
    position: relative;
    width: 20px;
    aspect-ratio: 1;
    border-radius: 50%;
    display: grid;
    line-height: normal;
    place-content: center;
    color: var(--color-foreground);
    border: var(--icon-stroke-width) solid var(--color-background);
  }

  .facets-mobile__title-wrapper .h3 {
    margin-block-end: 0;
    display: inline-flex;
    align-items: center;
    gap: var(--gap-xs);
  }

  .facets-mobile__title-wrapper .filter-count-bubble {
    width: 22px;
    height: 22px;
  }

  .facets-mobile__title-wrapper .filter-count-bubble__text {
    font-size: var(--font-size--xs);
  }

  .filter-count-bubble__background {
    position: absolute;
    inset: 0;
    background-color: rgb(var(--color-foreground-rgb) / var(--opacity-10-25));
    border-radius: var(--style-border-radius-50);
  }

  .filter-count-bubble__text {
    font-size: 11px;
    font-weight: var(--font-paragraph--weight);
    aspect-ratio: 1 / 1;
  }

  .facets-toggle--no-filters {
    @media screen and (max-width: 749px) {
      /* stylelint-disable-next-line declaration-no-important */
      justify-content: unset !important;

      & > .facets-mobile-wrapper {
        width: 100%;
      }
    }
  }

  .facets-block-wrapper--vertical + .facets-toggle {
    @media screen and (max-width: 749px) {
      margin: 0;
    }
  }

  .facets-mobile-wrapper {
    display: flex;
    align-items: center;
    gap: var(--gap-sm);
    justify-content: flex-end;
  }

  .facets-mobile-wrapper--multiple-controls {
    justify-content: space-between;
  }

  @media screen and (min-width: 750px) {
    dialog-component.facets-block-wrapper {
      position: absolute;
      width: 0;
      height: 0;
    }
  }

  .facets {
    --facets-form-horizontal-gap: 20px;
    --facets-horizontal-max-input-wrapper-height: 230px;
    --facets-upper-z-index: var(--layer-raised);
    --facets-open-z-index: var(--layer-heightened);
    --facets-sticky-z-index: var(--layer-sticky);
    --facets-panel-min-width: 120px;
    --facets-panel-height: 300px;
    --facets-grid-panel-width: 300px;
    --facets-clear-padding: var(--padding-md);
    --facets-clear-shadow: 0 -4px 14px 0 rgb(var(--color-foreground-rgb) / var(--facets-low-opacity));
    --facets-input-label-color: rgb(var(--color-input-text-rgb) / var(--opacity-60));
    --facets-clear-all-min-width: 120px;
    --facets-see-results-min-width: 55%;
    --facets-mobile-gap: 22px;
    --facets-low-opacity: 10%;
    --facets-hover-opacity: 75%;

    top: auto;
    bottom: 0;
    height: var(--drawer-height);
    max-height: var(--drawer-height);
    width: var(--drawer-width);
    max-width: var(--drawer-max-width);
    box-shadow: none;
    padding-block: 0;

    &:not(.facets--drawer) {
      @media screen and (min-width: 750px) {
        padding-inline: var(--padding-inline-start) var(--padding-inline-end);
        width: 100%;
        max-width: 100%;
      }
    }
  }

  .facets--horizontal {
    display: none;

    @media screen and (min-width: 750px) {
      padding-block: var(--padding-block-start) var(--padding-block-end);
      display: flex;
      align-items: center;
      position: relative;
      z-index: var(--facets-upper-z-index);
      border: none;
      height: auto;
      top: initial;
      bottom: initial;
      max-height: none;
      width: auto;
      overflow: visible;
    }
  }

  .facets--vertical {
    display: none;

    @media screen and (min-width: 750px) {
      padding-block: 0 var(--padding-block-end);
      display: block;
      position: static;
      top: auto;
      bottom: auto;
      height: auto;
      max-height: none;
      width: auto;
      overflow: visible;
    }
  }

  .facets--drawer {
    border-radius: 0;
    border-right: var(--style-border-drawer);
    box-shadow: var(--shadow-drawer);
    padding-inline: 0;
  }

  .facets--drawer[open] {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
  }

  .facets-drawer__form-wrapper {
    flex: 1 1 auto;
    min-height: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }

  .facets-drawer__form-wrapper .facets__form {
    flex: 1 1 auto;
    min-height: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }

  .facets-drawer__filters {
    flex: 1 1 auto;
    min-height: 0;
    overflow-y: auto;
    overflow-x: hidden;
    position: relative;
  }

  .facets-drawer__filters .facets__filters-wrapper,
  .facets-drawer__filters .filter-remove-buttons,
  .facets-drawer__filters .sorting-filter-component {
    overflow: visible;
  }

  .facets.facets-controls-wrapper {
    @media screen and (min-width: 750px) {
      grid-column: column-1 / column-12;
      color: rgb(var(--color-foreground-rgb) / var(--opacity-70));
      gap: 0 var(--facets-form-horizontal-gap);
      padding-bottom: var(--padding-xs);
    }
  }

  .facets__inputs {
    display: flex;
    flex-direction: column;
    gap: var(--padding-lg);
    width: 100%;
  }

  :is(.facets--drawer, .facets--vertical) .facets__inputs:not(:has(.show-more)) {
    padding-block-end: var(--padding-sm);
  }

  /* Facets - Form */
  .facets__form-wrapper {
    display: flex;
    flex-direction: column;
    color: var(--color-foreground-muted);
    width: 100%;
  }

  .facets--horizontal .facets__form-wrapper {
    @media screen and (min-width: 750px) {
      flex-direction: row;
      height: auto;
    }
  }

  .facets__form {
    display: flex;
    flex-flow: column;
    width: 100%;
    height: 100%;
  }

  .facets--horizontal .facets__form {
    @media screen and (min-width: 750px) {
      flex-flow: row nowrap;
      height: auto;
    }
  }

  .facets:not(.facets--drawer) .facets__filters-wrapper {
    @media screen and (min-width: 750px) {
      margin-inline-end: var(--margin-md);
    }
  }

  .facets--horizontal .facets__filters-wrapper {
    @media screen and (min-width: 750px) {
      max-width: 60%;
      display: flex;
      flex-wrap: wrap;
      column-gap: var(--gap-xl);
      margin-inline-end: 0;
    }
  }

  /* Facets - Summary */
  .facets__summary {
    --variant-picker-swatch-width: 32px;
    --variant-picker-swatch-height: 32px;
    --icon-opacity: 0.5;

    @media screen and (min-width: 750px) {
      --variant-picker-swatch-width: 26px;
      --variant-picker-swatch-height: 26px;
    }

    font-size: var(--font-h5--size);
    display: flex;
    justify-content: space-between;

    &:hover {
      --icon-opacity: 1;
    }
  }

  .facets__filters-wrapper:hover .facets__summary,
  .facets__filters-wrapper:has(.facets__panel[open]) .facets__summary {
    opacity: var(--facets-hover-opacity);
  }

  .facets__filters-wrapper .facets__summary:hover,
  .facets__filters-wrapper .facets__panel[open] .facets__summary {
    opacity: 1;
  }

  .facets--horizontal .facets__summary {
    @media screen and (min-width: 750px) {
      font-size: var(--font-paragraph--size);
      justify-content: flex-start;
      height: var(--minimum-touch-target);
    }
  }

  .facets__summary .icon-caret {
    height: var(--icon-size-xs);
    width: var(--icon-size-xs);
    color: rgb(var(--color-foreground-rgb) / var(--icon-opacity));
    margin-block: var(--margin-2xs);
    transition: color var(--animation-speed) var(--animation-easing);
  }

  .facets--drawer .facets__summary .icon-caret {
    margin-inline-start: var(--margin-2xs);
  }

  /* Facets - Bubble */
  .facets__bubble {
    display: inline-flex;
    font-family: var(--font-paragraph--family);
    font-weight: var(--font-paragraph--weight);
    aspect-ratio: 1 / 1;
  }

  /* Facets - Inputs */
  .facets__inputs-wrapper {
    margin-block: var(--padding-xs) var(--padding-xs);
  }

  .facets__inputs .show-more {
    display: flex;
    flex-direction: column;
    gap: var(--gap-xl);
    margin-block-end: var(--padding-xl);
  }

  .facets:not(.facets--drawer) .facets__inputs-wrapper {
    @media screen and (min-width: 750px) {
      gap: var(--gap-sm);
    }
  }

  .facets--horizontal .facets__inputs .show-more {
    @media screen and (min-width: 750px) {
      display: contents;
    }
  }

  .facets--horizontal .facets__inputs-wrapper {
    @media screen and (min-width: 750px) {
      max-height: var(--facets-horizontal-max-input-wrapper-height);
      scrollbar-width: none;
      -ms-overflow-style: none;
      overflow-x: auto;
      padding: var(--padding-md);
      margin-block: 0;
    }
  }

  .facets--vertical .facets__inputs:has(.show-more) .facets__inputs-wrapper {
    padding-block: var(--padding-sm);
    padding-inline: var(--padding-sm);
    margin-block: calc(var(--padding-sm) * -1);
    margin-inline: calc(var(--padding-sm) * -1);
  }

  @media screen and (max-width: 749px) {
    .facets__inputs:has(.show-more) .facets__inputs-wrapper {
      padding-block: var(--padding-sm);
      padding-inline: var(--padding-sm);
      margin-block: calc(var(--padding-sm) * -1);
      margin-inline: calc(var(--padding-sm) * -1);
    }
  }

  .facets__inputs-wrapper:not(:has(.facets__inputs-list)),
  .facets__inputs-wrapper .facets__inputs-list {
    display: flex;
    gap: var(--facets-mobile-gap);
    flex-direction: column;

    @media screen and (min-width: 750px) {
      gap: var(--gap-sm);
    }
  }

  @media screen and (min-width: 750px) {
    .facets--vertical .facets__inputs-wrapper .facets__inputs-list--swatches {
      gap: var(--gap-sm);
    }

    .facets--horizontal
      .facets__inputs-wrapper
      .facets__inputs-list--swatches:not(.facets__inputs-list--swatches-grid) {
      display: grid;
      grid-template-columns: repeat(var(--swatch-columns, 4), 1fr);
    }
  }

  .facets__inputs-wrapper .facets__inputs-list--swatches {
    --facets-mobile-gap: var(--gap-sm);
  }

  .facets__inputs-wrapper .facets__inputs-list--grid {
    --min-column-width: 20%;

    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(var(--min-column-width), 1fr));
    gap: var(--gap-sm);

    @media screen and (min-width: 750px) {
      --min-column-width: 50px;
    }
  }

  .facets-block-wrapper:not(.facets-block-wrapper--vertical) .facets__inputs-list--grid {
    @media screen and (min-width: 750px) {
      width: var(--facets-grid-panel-width);
    }
  }

  .facets__inputs-wrapper--row:not(:has(.facets__inputs-list)),
  .facets__inputs-wrapper--row .facets__inputs-list {
    flex-wrap: wrap;
    flex-direction: row;
  }

  .facets__inputs .show-more__button {
    --show-more-icon-size: 22px;
    --show-more-gap: 8px;

    gap: var(--show-more-gap);

    @media screen and (min-width: 750px) {
      --show-more-icon-size: 16px;
      --show-more-gap: 6px;
    }
  }

  .facets__inputs .show-more__button .icon-plus {
    width: var(--show-more-icon-size);
    height: var(--show-more-icon-size);

    svg {
      width: var(--icon-size-xs);
      height: var(--icon-size-xs);
    }
  }

  /* Facets - Panel */
  .facets__panel {
    padding: 0 var(--drawer-padding);
  }

  .facets:not(.facets--drawer) .facets__panel,
  .facets-controls-wrapper .facets__panel {
    @media screen and (min-width: 750px) {
      padding: 0;
    }
  }

  .facets--horizontal .facets__panel {
    @media screen and (min-width: 750px) {
      position: relative;
    }
  }

  .facets-mobile-wrapper .facets__panel-content {
    border-radius: var(--style-border-radius-popover);
  }

  .facets-mobile-wrapper {
    --facets-upper-z-index: var(--layer-raised);
    --facets-panel-min-width: 120px;
    --facets-panel-height: 300px;
  }

  .facets--horizontal .facets__panel-content {
    @media screen and (min-width: 750px) {
      border-radius: var(--style-border-radius-popover);
      position: absolute;
      top: 100%;
      width: max-content;
      min-width: var(--facets-panel-min-width);
      max-width: var(--facets-panel-width);
      max-height: var(--facets-panel-height);
      z-index: var(--facets-upper-z-index);
      box-shadow: var(--shadow-popover);
      border: var(--style-border-popover);
      background-color: var(--color-background);
      overflow-y: hidden;
      gap: 0;
    }
  }

  :is(.facets--drawer, .facets--vertical) :is(.facets__item, .sorting-filter)::before {
    content: '';
    display: block;
    height: 0;
    width: calc(100% - var(--drawer-padding) * 2);
    border-top: var(--style-border-width) solid var(--color-border);
    margin: 0 auto;
  }

  @media screen and (min-width: 750px) {
    .facets:not(.facets--drawer) :is(.facets__item, .sorting-filter)::before {
      width: 100%;
    }

    .facets--horizontal .facets__item:not(:first-of-type)::before,
    .facets--horizontal .sorting-filter::before {
      content: none;
    }
  }

  @media screen and (min-width: 750px) {
    .facets--vertical .facets__item:not(:first-of-type)::before,
    .facets--vertical .sorting-filter::before {
      content: '';
    }
  }

  /* Facets - Text */
  .facets__label,
  .facets__clear-all-link,
  .clear-filter {
    text-decoration-color: transparent;
    text-decoration-thickness: 0.075em;
    text-underline-offset: 0.125em;
    transition: text-decoration-color var(--animation-speed) var(--animation-easing);
  }

  .facets__clear-all-link {
    display: none;
    cursor: pointer;
    padding: var(--padding-xs);
    color: var(--button-color);
    transition: text-decoration-color var(--animation-speed) var(--animation-easing),
      color var(--animation-speed) var(--animation-easing);
  }

  .facets__clear-all-link:hover {
    --button-color: var(--color-primary-hover);

    text-decoration: underline;
    text-decoration-color: var(--button-color);
  }

  .facets__clear-all-link--horizontal {
    height: var(--minimum-touch-target);
    padding-inline: var(--facets-form-horizontal-gap);
    min-width: var(--facets-clear-all-min-width);
  }

  .facets__clear-all-link--active {
    display: block;
  }

  .facets__label,
  .products-count-wrapper {
    text-transform: var(--facet-label-transform);
  }

  .clear-filter {
    background-color: transparent;
    box-shadow: none;
    padding: 0;
  }

  .clear-filter:hover {
    text-decoration: underline;
  }

  /* Clear button */
  .facets__clear {
    display: none;
  }

  .facets--horizontal .facets__clear {
    @media screen and (min-width: 750px) {
      width: 100%;
      justify-content: flex-end;
      padding: 0 var(--facets-clear-padding) var(--facets-clear-padding) 0;
      cursor: pointer;
    }
  }

  .facets__clear--active {
    @media screen and (min-width: 750px) {
      display: flex;
    }
  }

  /* Facets - Label */
  .facets__label {
    color: var(--color-foreground);
    cursor: pointer;
    white-space: nowrap;

    @media screen and (min-width: 750px) {
      margin-inline-end: var(--margin-2xs);
    }
  }

  /* Products count */
  .products-count-wrapper {
    display: none;
  }

  .facets--horizontal .products-count-wrapper {
    @media screen and (min-width: 750px) {
      display: flex;
      margin-left: auto;
      flex-shrink: 0;
      align-items: center;
      height: var(--minimum-touch-target);
    }
  }

  /* Mobile specific components */
  .facets__title-wrapper {
    background-color: var(--color-background);
    color: var(--color-foreground);
    position: sticky;
    top: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-block: var(--padding-xs);
    padding-inline-start: var(--drawer-padding);
    padding-inline-end: var(--padding-2xs);
    z-index: var(--facets-sticky-z-index);
  }

  :is(.facets--horizontal, .facets--vertical) .facets__title-wrapper {
    @media screen and (min-width: 750px) {
      display: none;
    }
  }

  .facets-drawer__title {
    --variant-picker-swatch-width: 32px;
    --variant-picker-swatch-height: 32px;

    margin: 0;
    display: flex;
    align-items: center;
    gap: var(--gap-xs);

    @media screen and (min-width: 750px) {
      --variant-picker-swatch-width: 26px;
      --variant-picker-swatch-height: 26px;
    }
  }

  .facets-drawer__close {
    position: relative;
    top: 0;
    right: 0;
    padding: 0;
    cursor: pointer;
  }

  /* Status */
  .facets__status:not(:empty) {
    width: max-content;
    display: flex;
    margin-inline-start: auto;
    font-weight: 500;
    color: var(--color-foreground);
  }

  .facets__panel[open] .facets__status {
    display: none;
  }

  .facets--filters-title {
    margin-block-end: 0;
    color: var(--color-foreground);
    height: fit-content;

    @media screen and (max-width: 749px) {
      display: none;
    }
  }

  .facets--horizontal .facets__panel .facets__status:has(:not(:empty)) {
    @media screen and (min-width: 750px) {
      display: flex;
      margin-inline-start: var(--margin-xs);
      margin-inline-end: var(--margin-xs);
    }
  }

  /* Horizontal filter style */
  .facets--horizontal .facets__form {
    @media screen and (min-width: 750px) {
      gap: 0 var(--facets-form-horizontal-gap);
    }
  }

  /* Facets - Actions */
  .facets__drawer-actions {
    --to-top-gradient-background: linear-gradient(
      to top,
      rgb(var(--color-background-rgb) / var(--opacity-90)),
      rgb(var(--color-background-rgb) / var(--opacity-80)),
      rgb(var(--color-background-rgb) / var(--opacity-40)),
      transparent
    );

    position: sticky;
    bottom: 0;
    z-index: var(--facets-sticky-z-index);
    order: 1;
    display: flex;
    flex-shrink: 0;
    justify-content: space-between;
    align-items: stretch;
    gap: var(--gap-sm);
    padding-block-start: var(--padding-xs);
    padding-block-end: var(--padding-md);
    padding-inline: var(--padding-lg);
    margin-top: auto;
    background-image: var(--to-top-gradient-background);
    background-color: var(--color-background);
  }

  /* Clear all button */
  .facets__clear-all {
    display: none;
    cursor: pointer;
    min-width: var(--facets-clear-all-min-width);
    flex-grow: 1;
    padding-block: var(--padding-lg);
    color: var(--button-color, inherit);
  }

  .facets__clear-all--active {
    display: block;
    opacity: 1;
    transform: translateY(0);
    transition: transform var(--animation-values), opacity var(--animation-values);
  }

  @starting-style {
    .facets__clear-all--active {
      opacity: 0;
      transform: translateY(100%);
    }
  }

  .facets__see-results {
    min-width: var(--facets-see-results-min-width);
    flex-grow: 1;
    padding-block: var(--padding-lg);
  }

  .facets-horizontal-remove {
    display: flex;
    align-items: center;
  }

  .facets-horizontal-remove--active::before {
    content: '';
    border-inline-start: var(--style-border-width) solid var(--color-border);
    height: var(--font-paragraph--size);
    position: absolute;
  }
/* END_BLOCK:filters */

/* START_BLOCK:footer-policy-list (INDEX:244) */
.eg-footer-policies {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
  }

  .eg-footer-policy {
    font: 400 12px/1.4 var(--font-body--family);
    color: rgba(255, 255, 255, 0.72);
    text-decoration: underline;
    text-underline-offset: 2px;
    text-decoration-color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
  }

  .eg-footer-policy:hover,
  .eg-footer-policy:focus-visible {
    color: #fff;
    text-decoration-color: #fff;
  }
/* END_BLOCK:footer-policy-list */

/* START_BLOCK:icon (INDEX:246) */
.icon-block {
    display: flex;
    flex-shrink: 0;
  }

  .icon-block__media {
    height: auto;
  }
/* END_BLOCK:icon */

/* START_BLOCK:image (INDEX:247) */
.image-block__placeholder {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center center;
    overflow: hidden;
    position: relative;
  }

  .placeholder-image {
    position: relative;
    aspect-ratio: var(--ratio);
    overflow: hidden;
  }

  .image-block {
    display: flex;

    /* When the image is nested in a group, section, etc, respect the parent's horizontal alignment */
    justify-content: var(--horizontal-alignment, 'inline-start');
  }

  .image-block--height-fill .image-block__image {
    height: 100%;
  }

  .image-block__image {
    object-fit: cover;
    aspect-ratio: var(--ratio);
  }
/* END_BLOCK:image */

/* START_BLOCK:logo (INDEX:249) */
.logo-block {
    width: calc(var(--logo-width) + var(--padding-inline-start) + var(--padding-inline-end));
    max-width: 100%;
    max-height: calc(var(--logo-height, 100%) + var(--padding-block-start) + var(--padding-block-end));
    font-size: var(--logo-height);
    display: flex;

    @media screen and (max-width: 749px) {
      max-height: calc(
        var(--logo-height-mobile, var(--logo-height, 100%)) + var(--padding-block-start) + var(--padding-block-end)
      );
      font-size: var(--logo-height-mobile, var(--logo-height));
      width: calc(
        var(--logo-width-mobile, var(--logo-width)) + var(--padding-inline-start) + var(--padding-inline-end)
      );
    }
  }

  .logo-block__image-wrapper {
    display: flex;
    width: 100%;
    max-width: 100%;
    max-height: 100%;
  }

  .logo-block__image {
    object-fit: contain;
    width: 100%;
  }
/* END_BLOCK:logo */

/* START_BLOCK:menu (INDEX:250) */
.menu {
    width: 100%;
  }

  .menu:not(:has(.menu__heading--empty)) .details-content {
    margin-block-start: var(--spacing--size);
  }

  .menu__item + .menu__item {
    margin-block-start: var(--spacing--size);
  }

  .menu .menu__heading--empty {
    display: none;
  }

  .menu__heading__default {
    display: contents;
  }

  .menu__heading__accordion {
    display: none;
  }

  @media screen and (max-width: 749px) {
    /* Always show the fallback heading on mobile when accordion is enabled */
    .menu--accordion .menu__heading--empty {
      display: flex;
    }

    .menu--accordion .menu__heading__accordion {
      display: contents;
    }

    .menu--accordion .menu__heading__default {
      display: none;
    }

    .menu--accordion .details-content {
      margin-block-start: var(--spacing--size);
    }

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

    .menu--dividers .menu__details {
      border-block-end: var(--style-border-width) solid var(--color-border);
    }

    .menu--dividers .details-content {
      padding-block-end: var(--padding-sm);
    }
  }
/* END_BLOCK:menu */

/* START_BLOCK:page (INDEX:252) */
.page-block {
    display: flex;
    flex-direction: column;
    max-width: 100%;
    max-height: 100%;
    width: 100%;
    height: auto;
    align-items: flex-start;
  }

  .page-title {
    margin-bottom: var(--margin-xl);
  }
/* END_BLOCK:page */

/* START_BLOCK:payment-icons (INDEX:253) */
.payment-icons {
    width: 100%;
  }

  .payment-icons__list {
    display: flex;
    align-items: center;
    justify-content: var(--alignment);
    flex-wrap: wrap;
    gap: var(--icon-gap);
    margin: 0;
    padding: 0;
  }

  .payment-icons__item {
    display: flex;
    align-items: center;
  }
/* END_BLOCK:payment-icons */

/* START_BLOCK:popup-link (INDEX:254) */
.popup-link__button svg {
    display: inline-block;
    position: relative;
    top: var(--margin-2xs);
  }

  .popup-link__content {
    box-shadow: var(--shadow-popover);
    border: var(--style-border-popover);
    border-radius: var(--style-border-radius-popover);
    background-color: var(--color-background);
    padding: var(--padding-4xl) var(--padding-xl) var(--padding-xl);
    max-width: var(--normal-content-width);
    max-height: var(--modal-max-height);

    @media screen and (min-width: 750px) {
      padding: var(--padding-5xl);
    }
  }

  .popup-link__content[open] {
    animation: modalSlideInTop var(--animation-speed) var(--animation-easing) forwards;
  }

  .popup-link__content.dialog-closing {
    animation: modalSlideOutTop var(--animation-speed) var(--animation-easing) forwards;
  }

  .popup-link__content--drawer {
    position: fixed;
    border-radius: 0;
    width: var(--sidebar-width);
    max-width: 95vw;
    height: 100%;
    margin: 0 0 0 auto;
  }

  /* Needed to ensure the drawer is full height */
  .popup-link__content--drawer:modal {
    max-height: 100dvh;
  }

  .popup-link__close {
    top: var(--margin-2xs);
    right: var(--margin-2xs);
    opacity: 0.8;
    animation: none;
  }
/* END_BLOCK:popup-link */

/* START_BLOCK:product-custom-property (INDEX:257) */
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:259) */
.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:260) */
.block-resource-list {
    display: flex;
    flex-direction: column;
    row-gap: var(--gap);
    min-width: 0;
    min-height: 0;
    container-type: inline-size;
    container-name: resource-list;
    border-radius: var(--border-radius, 0);
  }

  .product-recommendations-wrapper {
    width: 100%;
  }

  .product-recommendations-wrapper:has(product-recommendations[data-shopify-editor-preview]) {
    width: 100vw;
  }
/* END_BLOCK:product-recommendations */

/* START_BLOCK:review (INDEX:263) */
.rating-wrapper {
    gap: var(--gap-xs);
    min-width: fit-content;
  }

  .rating-color--primary {
    --star-fill-color: var(--color-primary);
    --star-fill-color-rgb: var(--color-primary-rgb);
    --color: var(--color-primary);
  }

  .rating-color--foreground {
    --star-fill-color: var(--color-foreground);
    --star-fill-color-rgb: var(--color-foreground-rgb);
    --color: var(--color-foreground);
  }

  .rating-wrapper,
  .rating {
    display: flex;
    align-items: center;
  }

  .rating-wrapper.justify-right {
    flex-direction: row-reverse;
  }

  .rating {
    gap: var(--gap-3xs);
  }

  .rating-wrapper .rating-count,
  .rating-wrapper .rating-count-separator {
    color: var(--star-fill-color);
    margin: 0;
    white-space: nowrap;
  }

  .rating-count-separator {
    opacity: var(--opacity-20);
    padding-left: calc(var(--padding-xs) / 2);
    padding-right: var(--padding-xs);
  }

  .stars {
    height: var(--star-size);
    fill: var(--empty-star-fill-color);
  }

  .filled-star {
    fill: var(--star-fill-color);
  }
/* END_BLOCK:review */

/* START_BLOCK:social-links (INDEX:265) */
.social-icons__wrapper {
    display: flex;
    gap: var(--gap-sm);
    flex-wrap: wrap;
    justify-content: center;

    @media screen and (min-width: 750px) {
      flex-wrap: nowrap;
      justify-content: flex-start;
    }
  }

  .social-icons__icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    height: var(--icon-size-lg);
  }

  .social-icons__icon {
    display: flex;
    flex-shrink: 0;
    width: var(--icon-size-lg);
    height: var(--icon-size-lg);
  }

  .social-icons__icon {
    display: none;
  }

  .social-icons__icon-wrapper:has(.social-icons__icon path) {
    width: var(--icon-size-lg);

    .social-icons__icon {
      display: block;
    }

    .social-icons__icon-label {
      display: none;
    }
  }

  /* Disabled state for editor */
  .shopify-design-mode .social-icons__icon-wrapper--disabled {
    opacity: var(--disabled-opacity, 0.5);
    cursor: not-allowed;
  }

  .shopify-design-mode .social-icons__icon-wrapper--disabled a {
    pointer-events: none;
  }
/* END_BLOCK:social-links */

/* START_BLOCK:spacer (INDEX:266) */
/* Fill opposite direction */
  .layout-panel-flex--column > .spacer-block {
    width: 100%;
  }

  .layout-panel-flex--row > .spacer-block {
    height: 100%;
  }

  /* Flex - Percent */
  :is(.layout-panel-flex--row, .layout-panel-flex--column) > .spacer-block--size-percent {
    flex: var(--spacer-size);
  }

  /* Flex - Pixel */
  .layout-panel-flex--row > .spacer-block--size-pixel {
    width: var(--spacer-size);
  }

  .layout-panel-flex--column > .spacer-block--size-pixel {
    height: var(--spacer-size);
  }

  /* Mobile */
  @media screen and (max-width: 749px) {
    /* Percent */
    .layout-panel-flex--row:not(.mobile-column) > .spacer-block--size-mobile-percent {
      flex: var(--spacer-size-mobile);
      height: 100%;
    }

    .layout-panel-flex--column > .spacer-block--size-mobile-percent,
    .mobile-column > .spacer-block--size-percent:not(.spacer-block--size-mobile-pixel) {
      width: 100%;
      flex: var(--spacer-size-mobile);
    }

    /* Pixel */
    .layout-panel-flex--row:not(.mobile-column) > .spacer-block--size-mobile-pixel {
      width: var(--spacer-size-mobile);
      height: 100%;
    }

    .layout-panel-flex--column > .spacer-block--size-mobile-pixel,
    .mobile-column > .spacer-block--size-mobile-pixel {
      width: 100%;
      flex: 0;
      height: var(--spacer-size-mobile);
    }
  }
/* END_BLOCK:spacer */

/* START_BLOCK:swatches (INDEX:267) */
product-swatches {
    width: 100%;
    display: flex;
    position: relative;
    overflow: hidden;
    gap: 0;
    flex-shrink: 0;
  }
/* END_BLOCK:swatches */

/* START_BLOCK:video (INDEX:270) */
.placeholder-video {
    aspect-ratio: 5 / 3;
  }
/* END_BLOCK:video */

/* CSS from snippet stylesheet tags */
/* START_SNIPPET:accordion-custom-component (INDEX:273) */
accordion-custom {
    details {
      &::details-content,
      .details-content {
        block-size: 0;
        overflow-y: clip;
        opacity: 0;
        interpolate-size: allow-keywords;
        transition: content-visibility var(--animation-speed-slow) allow-discrete,
          padding-block var(--animation-speed-slow) var(--animation-easing),
          opacity var(--animation-speed-slow) var(--animation-easing),
          block-size var(--animation-speed-slow) var(--animation-easing);
      }

      /* Disable transitions when the content toggle is not caused by the direct user interaction, e.g. opening the filters on mobile. */
      &:not(:focus-within)::details-content,
      &:not(:focus-within) .details-content {
        transition: none;
      }

      &:not([open]) {
        &::details-content,
        .details-content {
          padding-block: 0;
        }
      }

      &[open] {
        &::details-content,
        .details-content {
          opacity: 1;
          block-size: auto;

          @starting-style {
            block-size: 0;
            opacity: 0;
            overflow-y: clip;
          }

          &:focus-within {
            overflow-y: visible;
          }
        }
      }
    }
  }

  accordion-custom[data-disable-on-mobile='true'] summary {
    @media screen and (max-width: 749px) {
      cursor: auto;
    }
  }

  accordion-custom[data-disable-on-desktop='true'] summary {
    @media screen and (min-width: 750px) {
      cursor: auto;
    }
  }
/* END_SNIPPET:accordion-custom-component */

/* START_SNIPPET:background-media (INDEX:275) */
@media (prefers-reduced-motion: reduce) {
    video-background-component video {
      display: none;
    }
  }
/* END_SNIPPET:background-media */

/* START_SNIPPET:bento-grid (INDEX:276) */
.bento-box {
    display: grid;
    column-gap: var(--bento-gap);
    row-gap: calc(var(--bento-gap) * 1.5);
    width: 100%;
  }

  .bento-box:has(.collection-card--image-bg) {
    row-gap: var(--bento-gap);
  }

  .bento-box ~ .bento-box {
    padding-block-start: var(--bento-gap);
  }

  @media screen and (max-width: 900px) {
    .bento-box {
      grid-template-columns: repeat(2, 1fr);
    }

    .bento-box__item {
      /* Prevent grid items from overflowing their cells when children have aspect-ratio */
      min-width: 0;
      overflow: hidden;
    }

    .bento-box__item:nth-child(3n + 1) {
      grid-column: span 1;
    }

    .bento-box__item:nth-child(3n + 2) {
      grid-column: span 1;
    }

    .bento-box__item:nth-child(3n + 3) {
      grid-column: span 2;
    }

    /* Ensure last items create a full row */
    .bento-box__item:last-child:nth-child(3n + 5) {
      grid-column: span 1;
    }

    .bento-box__item:last-child:nth-child(3n + 4) {
      grid-column: span 2;
    }
  }

  @media screen and (min-width: 901px) {
    .bento-box {
      grid-template-columns: repeat(12, 1fr);
      grid-template-areas:
        'A A A B B B B B B C C C'
        'D D D D D D E E E F F F'
        'G G G H H H I I I I I I'
        'J J J J K K K K L L L L';
    }

    .bento-box__item:nth-child(1) {
      grid-area: A;
    }

    .bento-box__item:nth-child(2) {
      grid-area: B;
    }

    .bento-box__item:nth-child(3) {
      grid-area: C;
    }

    .bento-box__item:nth-child(4) {
      grid-area: D;
    }

    .bento-box__item:nth-child(5) {
      grid-area: E;
    }

    .bento-box__item:nth-child(6) {
      grid-area: F;
    }

    .bento-box__item:nth-child(7) {
      grid-area: G;
    }

    .bento-box__item:nth-child(8) {
      grid-area: H;
    }

    .bento-box__item:nth-child(9) {
      grid-area: I;
    }

    .bento-box__item:nth-child(10) {
      grid-area: J;
    }

    .bento-box__item:nth-child(11) {
      grid-area: K;
    }

    .bento-box__item:nth-child(12) {
      grid-area: L;
    }

    /* === Overrides for specific item counts === */

    /* Exactly 1 item */
    .bento-box--items-1 {
      grid-template-areas: 'A A A A A A A A A A A A';
    }

    /* Exactly 2 items */
    .bento-box--items-2 {
      grid-template-areas: 'A A A A A A B B B B B B';
    }

    /* Exactly 4 items */
    .bento-box--items-4 {
      grid-template-areas:
        'A A A A B B B B B B B B'
        'C C C C C C C C D D D D';
    }

    /* Exactly 5 items */
    .bento-box--items-5 {
      grid-template-areas:
        'A A A B B B B B B C C C'
        'D D D D D D E E E E E E';
    }

    /* Exactly 7 items */
    .bento-box--items-7 {
      grid-template-areas:
        'A A A B B B B B B C C C'
        'D D D D D D D D D E E E'
        'F F F F F F G G G G G G';
    }

    /* Exactly 8 items */
    .bento-box--items-8 {
      grid-template-areas:
        'A A A B B B B B B C C C'
        'D D D D D D E E E F F F'
        'G G G H H H H H H H H H';
    }

    /* Exactly 10 items */
    .bento-box--items-10 {
      grid-template-areas:
        'A A A B B B B B B C C C'
        'D D D D D D E E E F F F'
        'G G G G G G G G G H H H'
        'I I I J J J J J J J J J';
    }

    /* Exactly 11 items */
    .bento-box--items-11 {
      grid-template-areas:
        'A A A B B B B B B C C C'
        'D D D D D D E E E F F F'
        'G G G H H H I I I I I I'
        'J J J J K K K K K K K K';
    }
  }
/* END_SNIPPET:bento-grid */

/* START_SNIPPET:blog-comment-form (INDEX:277) */
.blog-post-comments__form-container {
    --comment-form-gap: var(--gap-md);

    width: 100%;
    max-width: var(--normal-content-width);
    margin: var(--margin-4xl) auto 0;
  }

  .blog-post-comments__form {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--comment-form-gap);

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

  .blog-post-comments__form-input {
    padding: var(--padding-lg) var(--padding-xl);
    border: var(--style-border-width-inputs) solid var(--color-input-border);
  }

  .blog-post-comments__form-input--textarea {
    resize: vertical;
    min-height: var(--input-textarea-min-height);
  }

  .blog-post-comments__form-message {
    display: flex;
    align-items: center;
    gap: var(--gap-xs);
  }

  .blog-post-comments__form-body {
    grid-column: 1 / -1;
  }

  .blog-post-comments__form-input:focus-visible {
    outline: var(--focus-outline-width) solid currentcolor;
    outline-offset: var(--focus-outline-offset);
  }

  .blog-post-comments__form-moderated {
    font-size: var(--font-size--xs);
  }

  .blog-post-comments__form-submit {
    margin-block-start: var(--comment-form-gap);
  }
/* END_SNIPPET:blog-comment-form */

/* START_SNIPPET:button (INDEX:279) */
.link {
    text-decoration: none;
    text-decoration-color: currentcolor;

    &:hover {
      color: var(--color-primary-hover);
      text-decoration-color: transparent;
    }
  }
/* END_SNIPPET:button */

/* START_SNIPPET:buy-buttons-styles (INDEX:280) */
.buy-buttons-block {
    --buy-button-preferred-width: 185px;

    width: 100%;
  }

  .product-form-buttons {
    display: flex;
    flex-wrap: wrap;
  }

  .product-form-buttons:not(:has(.quantity-rules)) {
    gap: calc(var(--gap-sm) / 2);

    @media screen and (min-width: 750px) {
      gap: var(--gap-sm);
    }
  }

  .product-form-buttons
    > *:not(.quantity-selector-wrapper, .quantity-rules, .quantity-label, .volume-pricing, .product-form-text__error) {
    flex: 1 1 var(--buy-button-preferred-width, 0);
    min-width: fit-content;
  }

  .product-form-buttons--stacked
    > *:not(.quantity-selector-wrapper, .quantity-rules, .quantity-label, .volume-pricing, .product-form-text__error) {
    flex-basis: 51%;
  }

  .product-form-buttons button {
    width: 100%;
    padding-block: var(--padding-lg);
  }

  .quantity-selector {
    flex-grow: 0;
    flex-shrink: 0;
    height: var(--height-buy-buttons);
  }

  .quantity-label {
    flex: 1 0 100%;
    width: 100%;
    font-size: var(--font-size--sm);
    margin-block-end: var(--gap-xs);
  }

  .quantity-label__cart-count {
    color: var(--color-foreground-secondary);
  }

  .quantity-rules {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    row-gap: calc(var(--gap-xs) / 2);
    flex: 1 0 100%;
    width: 100%;
    font-size: var(--font-size--xs);
    color: var(--color-foreground-secondary);
    margin-block-start: var(--gap-xs);
    margin-block-end: var(--gap);
  }

  .product-form-buttons:has(~ .volume-pricing .volume-pricing__title) .quantity-rules {
    margin-block-end: var(--gap-md);
  }

  .quantity-rules__item {
    position: relative;
    display: inline-block;
    color: rgb(var(--color-foreground-rgb) / var(--opacity-subdued-text));
  }

  .quantity-rules__item:not(:last-child) {
    padding-right: var(--padding-xl);
    margin-right: var(--margin-2xs);
  }

  .quantity-rules__item:not(:last-child)::after {
    content: '•';
    position: absolute;
    inset-inline-end: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.5em;
    line-height: 0;
  }

  .add-to-cart-button {
    height: var(--height-buy-buttons);
    text-transform: var(--button-text-case-primary);
  }

  .add-to-cart-button.button-secondary {
    text-transform: var(--button-text-case-secondary);
  }

  .product-form-text__error {
    display: flex;
    flex: 1 0 100%;
    align-items: flex-start;
    gap: var(--gap-xs);
    margin-block-end: var(--gap-xs);
  }

  .product__pickup-availabilities {
    width: 100%;
  }

  .pickup-availability__column {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }

  .pickup-availability__row {
    display: flex;
    gap: var(--padding-xs);
  }

  .pickup-availability__dialog-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }

  .pickup-availability__header-container {
    padding-block-end: var(--padding-2xl);
  }

  .pickup-location__wrapper {
    display: flex;
    flex-direction: column;
    padding-block: var(--padding-2xl);
    border-top: 1px solid var(--color-border);
    gap: var(--padding-xs);
  }

  .pickup-location__address-wrapper {
    display: flex;
    flex-direction: column;
    gap: var(--padding-md);
  }

  .pickup-location__dialog {
    padding: var(--padding-2xl);
    position: fixed;
    border-radius: 0;
    width: var(--sidebar-width);
    max-width: 95vw;
    height: 100%;
    margin: 0 0 0 auto;
    border: var(--style-border-drawer);
    box-shadow: var(--shadow-drawer);
    background-color: var(--color-background);
  }

  .pickup-location__dialog:modal {
    max-height: 100dvh;
  }

  .pickup-location__text-sm {
    font-size: var(--font-size--sm);
    margin: 0;
  }

  .pickup-location__text-xs {
    font-size: var(--font-size--xs);
    margin: 0;
  }

  .pickup-location__button {
    width: fit-content;
    color: var(--color-primary);
    font-size: var(--font-size--xs);
    font-family: var(--font-body--family);
    padding: 0;
    cursor: pointer;
    margin-block: var(--margin-xs);
  }

  .pickup-location__button:hover {
    color: var(--color-primary-hover);
  }

  .pickup-location__h4 {
    margin: 0;
  }

  .pickup-location__text-bold {
    font-size: var(--font-size--md);
    font-weight: 600;
    margin: 0;
  }

  .pickup-location__availability-wrapper {
    display: flex;
    align-items: center;
    gap: var(--gap-xs);
    font-family: var(--font-paragraph--family);
  }

  .pickup-location__address {
    font-style: normal;
  }

  .pickup-location__close-button {
    top: calc(var(--padding-2xl) - (var(--icon-size-xs) / 2));
    right: calc(var(--padding-2xl) - var(--icon-size-xs));
  }

  .volume-pricing {
    display: block;
    width: 100%;
    margin-bottom: var(--gap);
  }

  .volume-pricing:not(:has(.volume-pricing__title)) {
    margin-top: 0;
    margin-bottom: 0;
  }

  .volume-pricing__title {
    display: block;
    margin-block-end: var(--gap-sm);
    font-size: var(--font-size--sm);
    font-weight: var(--font-body--weight);
    color: var(--color-foreground);
  }

  .volume-pricing__table {
    width: 100%;
  }

  .volume-pricing__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-block: var(--padding-sm);
    padding-inline: var(--padding-md);
    font-size: var(--font-size--sm);
  }

  .volume-pricing__row--even {
    background: rgb(var(--color-foreground-rgb) / var(--opacity-5));
  }

  .volume-pricing__row--odd {
    background: var(--color-background);
  }

  .volume-pricing__collapsible-wrapper {
    block-size: 0;
    overflow-y: clip;
    opacity: 0;
    interpolate-size: allow-keywords;
    transition: opacity var(--animation-speed-slow) var(--animation-easing),
      block-size var(--animation-speed-slow) var(--animation-easing);
  }

  .volume-pricing__toggle {
    width: 100%;
    padding-bottom: 0;
    padding-inline: 0;
    text-align: left;
    color: var(--color-foreground-secondary);
    font-size: var(--font-size--xs);
    cursor: default;
    margin-block-start: 0;
    pointer-events: none;
  }

  button.volume-pricing__toggle {
    /* Need the extra specificity to override .product-form-buttons button */
    padding-block: var(--padding-sm);
  }

  .volume-pricing__toggle-text {
    cursor: pointer;
    display: inline-block;
    pointer-events: auto;
  }

  .volume-pricing__show-less {
    display: none;
  }

  .volume-pricing--expanded .volume-pricing__collapsible-wrapper {
    opacity: 1;
    block-size: auto;

    @starting-style {
      block-size: 0;
      opacity: 0;
      overflow-y: clip;
    }
  }

  .volume-pricing--expanded .volume-pricing__show-more {
    display: none;
  }

  .volume-pricing--expanded .volume-pricing__show-less {
    display: inline;
  }

  /* Accelerated checkout styles — co-located here so they compile on pages
     where the quick-add modal can display buy buttons (e.g. collection pages). */
  .accelerated-checkout-block[data-shopify-visual-preview] {
    width: 300px;
  }

  more-payment-options-link {
    font-size: smaller;
  }

  more-payment-options-link a {
    --button-color: var(--color-primary);
  }

  more-payment-options-link a:hover {
    --button-color: var(--color-primary-hover);
  }

  .shopify-payment-button__more-options[aria-hidden='true'] {
    display: none;
  }
/* END_SNIPPET:buy-buttons-styles */

/* START_SNIPPET:card-gallery (INDEX:281) */
.card-gallery {
    overflow: hidden;
    container-type: inline-size; /* Make card-gallery a container */
    container-name: card-gallery-container; /* Optional: name the container */
  }

  .card-gallery__placeholder svg {
    height: 100%;
    width: 100%;
  }

  .card-gallery svg {
    aspect-ratio: var(--gallery-aspect-ratio, var(--ratio));
  }

  .product-card-gallery__title-placeholder {
    padding: var(--padding-md);
    font-size: var(--font-size--2xl);
    line-height: var(--line-height--display-loose);
    word-break: break-word;
    color: var(--color-foreground);
    background-color: rgb(var(--color-foreground-rgb) / var(--opacity-5));
    aspect-ratio: var(--gallery-aspect-ratio);
    border-radius: var(--product-corner-radius);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .product-card-gallery__title-placeholder a {
    color: var(--color-foreground);
  }

  @media screen and (min-width: 750px) {
    .product-grid[data-product-card-size='extra-large'] .product-card-gallery__title-placeholder {
      padding: var(--padding-3xl);
      font-size: var(--font-size--3xl);
    }

    .product-grid[data-product-card-size='large'] .product-card-gallery__title-placeholder {
      padding: var(--padding-2xl);
      font-size: var(--font-size--2xl);
    }

    .product-grid[data-product-card-size='medium'] .product-card-gallery__title-placeholder {
      padding: var(--padding-xl);
      font-size: var(--font-size--xl);
    }

    .product-grid[data-product-card-size='small'] .product-card-gallery__title-placeholder {
      padding: var(--padding-sm);
      font-size: var(--font-size--lg);
    }

    .product-grid[data-product-card-size='extra-large']
      .card-gallery.card-gallery--badge-top-right
      .product-card-gallery__title-placeholder {
      padding-right: calc(var(--padding-3xl) + 50px);
    }

    .product-grid[data-product-card-size='large']
      .card-gallery.card-gallery--badge-top-right
      .product-card-gallery__title-placeholder {
      padding-right: calc(var(--padding-2xl) + 50px);
    }

    .product-grid[data-product-card-size='medium']
      .card-gallery.card-gallery--badge-top-right
      .product-card-gallery__title-placeholder {
      padding-right: calc(var(--padding-xl) + 50px);
    }

    .product-grid[data-product-card-size='small']
      .card-gallery.card-gallery--badge-top-right
      .product-card-gallery__title-placeholder {
      padding-right: calc(var(--padding-sm) + 50px);
    }

    .product-grid[data-product-card-size='extra-large']
      .card-gallery.card-gallery--badge-top-left
      .product-card-gallery__title-placeholder {
      padding-top: calc(var(--padding-3xl) + 40px);
    }

    .product-grid[data-product-card-size='large']
      .card-gallery.card-gallery--badge-top-left
      .product-card-gallery__title-placeholder {
      padding-top: calc(var(--padding-2xl) + 40px);
    }

    .product-grid[data-product-card-size='medium']
      .card-gallery.card-gallery--badge-top-left
      .product-card-gallery__title-placeholder {
      padding-top: calc(var(--padding-xl) + 40px);
    }

    .product-grid[data-product-card-size='small']
      .card-gallery.card-gallery--badge-top-left
      .product-card-gallery__title-placeholder {
      padding-top: calc(var(--padding-sm) + 40px);
    }

    .product-grid[data-product-card-size='extra-large']
      .card-gallery.card-gallery--badge-bottom-left
      .product-card-gallery__title-placeholder {
      padding-bottom: calc(var(--padding-3xl) + 40px);
    }

    .product-grid[data-product-card-size='large']
      .card-gallery.card-gallery--badge-bottom-left
      .product-card-gallery__title-placeholder {
      padding-bottom: calc(var(--padding-2xl) + 40px);
    }

    .product-grid[data-product-card-size='medium']
      .card-gallery.card-gallery--badge-bottom-left
      .product-card-gallery__title-placeholder {
      padding-bottom: calc(var(--padding-xl) + 40px);
    }

    .product-grid[data-product-card-size='small']
      .card-gallery.card-gallery--badge-bottom-left
      .product-card-gallery__title-placeholder {
      padding-bottom: calc(var(--padding-sm) + 40px);
    }
  }

  @media screen and (max-width: 749px) {
    .product-card-gallery__title-placeholder {
      font-size: var(--font-size--xl);
      padding: var(--padding-md);
    }

    .product-grid[data-product-card-size]
      .card-gallery.card-gallery--badge-top-right
      .product-card-gallery__title-placeholder {
      padding-right: calc(var(--padding-sm) + 50px);
    }

    .product-grid[data-product-card-size]
      .card-gallery.card-gallery--badge-top-left
      .product-card-gallery__title-placeholder {
      padding-top: calc(var(--padding-sm) + 40px);
    }

    .product-grid[data-product-card-size]
      .card-gallery.card-gallery--badge-bottom-left
      .product-card-gallery__title-placeholder {
      padding-bottom: calc(var(--padding-sm) + 40px);
    }
  }

  [product-grid-view='zoom-out'] .card-gallery .product-card-gallery__title-placeholder {
    /* stylelint-disable-next-line declaration-no-important */
    padding: var(--padding-xs) !important;
    font-size: var(--font-size--xs);
  }

  [product-grid-view='zoom-out'] .card-gallery .slideshow-control {
    min-width: auto;
  }

  ul[product-grid-view='zoom-out'] .product-grid__card .card-gallery {
    display: block;
  }

  [product-grid-view='zoom-out']
    .card-gallery
    > :is(quick-add-component, .product-badges, slideshow-component > slideshow-controls) {
    display: none;
  }

  ul[product-grid-view='zoom-out'] .card-gallery > img {
    display: block;
  }

  .card-gallery slideshow-arrows .slideshow-control {
    /* Align icons with quick-add button */
    padding-inline: var(--padding-xl);

    @container (max-width: 249px) {
      padding-inline: 0 var(--padding-sm);
    }
  }

  /*
   * Card galleries preview the next or previous images on 'pointerenter', so we
   * try to kick load them beforehand (they are lazy loaded otherwise).
   */
  .card-gallery
    :is(
      slideshow-slide:has(+ slideshow-slide[aria-hidden='false']),
      slideshow-slide[aria-hidden='false'] + slideshow-slide
    ) {
    content-visibility: auto;

    slideshow-component[actioned] & {
      content-visibility: visible;
    }
  }
/* END_SNIPPET:card-gallery */

/* START_SNIPPET:cart-bubble (INDEX:282) */
.cart-bubble {
    --cart-padding: 0.2em;

    position: relative;
    width: 20px;
    aspect-ratio: 1;
    border-radius: 50%;
    border-width: 0;
    display: flex;
    line-height: normal;
    align-items: center;
    justify-content: center;
    color: var(--color-primary-button-text);
    padding-inline: var(--cart-padding);
  }

  .cart-bubble[data-maintain-ratio] {
    aspect-ratio: 1;
  }

  .cart-bubble[data-maintain-ratio] .cart-bubble__background {
    border-radius: var(--style-border-radius-50);
  }

  .cart-bubble__background {
    position: absolute;
    inset: 0;
    background-color: var(--color-primary-button-background);
    border-radius: var(--style-border-radius-lg);
  }

  .cart-bubble__text {
    font-size: var(--font-size--3xs);
    z-index: var(--layer-flat);
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
  }
/* END_SNIPPET:cart-bubble */

/* START_SNIPPET:cart-items-component (INDEX:283) */
.cart-items-component {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
  }

  @media screen and (prefers-reduced-motion: no-preference) {
    html:active-view-transition-type(empty-cart-drawer) {
      .cart-items-component {
        view-transition-name: cart-drawer-content;
      }
    }

    html:active-view-transition-type(empty-cart-page) {
      .cart-items-component {
        view-transition-name: cart-page-content;
      }
    }
  }

  ::view-transition-old(cart-page-content) {
    animation: cart-page-content-old var(--animation-speed-fast) var(--animation-easing) forwards;
  }

  @keyframes cart-page-content-old {
    from {
      opacity: 1;
    }
    to {
      opacity: 0;
      filter: blur(4px);
    }
  }

  ::view-transition-old(cart-drawer-content) {
    transform-origin: 50% 33%;
    animation: cart-contents-old var(--spring-d280-b0-duration) var(--spring-d280-b0-easing) forwards;
  }

  ::view-transition-new(cart-drawer-content) {
    transform-origin: top center;
    animation: cart-contents-new var(--spring-d280-b0-duration) var(--spring-d280-b0-easing) forwards;
  }

  @keyframes cart-contents-old {
    to {
      scale: 0.92;
      opacity: 0;
    }
  }

  @keyframes cart-contents-new {
    from {
      scale: 1.05;
      translate: 0 128px;
      filter: blur(1px);
      opacity: 0;
    }
  }
/* END_SNIPPET:cart-items-component */

/* START_SNIPPET:cart-products (INDEX:284) */
.cart-items {
    --cart-item-media-width-min: 2.5rem;
    --cart-item-media-width-max: 7.5rem;

    container-name: cart-items;
    container-type: inline-size;
    width: 100%;
  }

  .cart-items-disabled {
    pointer-events: none;
  }

  .cart-page--empty .cart-items__wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-block-start: 0;
    text-align: center;
  }

  .cart-drawer:not(:has(.cart-form)) .cart-items__wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .cart-items__table {
    width: 100%;
    border-spacing: 0;
  }

  .cart-items__table * {
    margin: 0;
  }

  .cart-items__table-row {
    --cart-item-price-width: 6rem;

    display: grid;
    grid-template-columns: clamp(2.5rem, 15cqi, 7.5rem) minmax(0, 1fr) minmax(var(--cart-item-price-width), auto);
    grid-template-areas:
      'media details price'
      'media quantity price'
      'media error error';
    column-gap: var(--gap-md);
    align-items: start;
    padding-bottom: var(--cart-items-gap);
    margin-bottom: var(--margin-lg);
  }

  /* Cart drawer: separate grid areas for variants and unit price */
  .cart-drawer .cart-items__table-row--full-width-variants {
    grid-template-columns: clamp(2.5rem, 15cqi, 7.5rem) minmax(0, 1fr) auto;
    grid-template-rows: repeat(4, min-content) 1fr;
    grid-template-areas:
      'media details price'
      'media variants variants'
      'media unit_price unit_price'
      'media quantity quantity'
      'media error error';

    .cart-items__details {
      display: contents;
    }

    .cart-items__product-info {
      grid-area: details;
    }

    .cart-items__variants-wrapper {
      grid-area: variants;

      &:empty {
        display: none;
      }

      p {
        margin: 0;
      }
    }

    .cart-items__unit-price-wrapper {
      grid-area: unit_price;
      font-size: var(--font-size--sm);
    }

    .cart-items__price {
      min-width: auto;
      width: max-content;
    }
  }

  .cart-items__table-row.cart-items__nested-line td:first-child {
    width: 60%;
    justify-self: right;
  }

  html:active-view-transition-type(page-navigation) .cart-items__table-row {
    /* stylelint-disable-next-line declaration-no-important */
    view-transition-name: none !important;
  }

  .cart-items__table-row.removing {
    overflow: hidden;
    animation: removeRow calc(var(--animation-speed) * 2) var(--animation-easing) forwards;
    animation-delay: var(--animation-speed);
  }

  @keyframes removeRow {
    0% {
      height: var(--row-height);
    }

    100% {
      opacity: 0;
      height: 0;
      padding-bottom: 0;
      margin-bottom: 0;
      border-color: transparent;
    }
  }

  .cart-items__table-row:last-child {
    padding-bottom: 0;
  }

  .cart-items--dividers .cart-items__table-row {
    border-bottom: 1px solid var(--color-border);
    margin-bottom: var(--cart-items-gap);
  }

  .cart-items--dividers .cart-items__table-row:has(+ .cart-items__nested-line) {
    border-bottom: none;
    margin-bottom: 0;
  }

  .cart-items--dividers .cart-items__table-row:last-of-type {
    border-block-end: none;
    padding-block-end: 0;
    margin-bottom: 0;
  }

  .cart-items__details {
    grid-area: details;
    color: rgb(var(--color-foreground-rgb) / var(--opacity-70));
  }

  .cart-items__details > * + *,
  .cart-items__bundle li {
    margin-block-start: var(--margin-3xs);
  }

  .cart-items__details * {
    font-size: var(--font-size--sm);
  }

  .cart-items__details a {
    text-decoration: none;
  }

  .cart-items__title {
    font-size: var(--font-size--md);
    color: var(--color-foreground);
    text-transform: var(--product-title-case);
    display: block;
    margin-block-start: calc((var(--font-size--md) - 1lh) / 2);
  }

  .cart-items__variants {
    display: block;
  }


  .cart-items__variant {
    display: inline;
  }

  .cart-items__variant dt,
  .cart-items__variant dd {
    display: inline;
    margin: 0;
  }

  .cart-items__quantity {
    grid-area: quantity;
    margin-block-start: var(--margin-xs);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: var(--gap-xs);
    width: fit-content;
  }

  .cart-items__quantity-controls {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: var(--gap-xs);
    width: fit-content;
  }

  .cart-items__quantity-controls > .volume-pricing-info {
    margin-inline-start: calc(-1 * var(--minimum-touch-target) - var(--gap-xs));
  }

  .cart-items__quantity .quantity-selector {
    display: inline-flex;
    font-size: var(--font-size--sm);
    height: auto;
  }

  .cart-items__remove {
    background-color: transparent;
    color: var(--color-foreground);
    width: var(--minimum-touch-target);
    height: var(--minimum-touch-target);
    justify-content: center;
    box-shadow: none;
    padding: 0;
  }

  .cart-items__media {
    grid-area: media;
    padding: 0;
  }

  .cart-items__price {
    grid-area: price;
    min-height: unset;
    min-width: var(--cart-item-price-width);
    text-align: end;
    display: block;
    font-size: var(--font-size--sm);
    line-height: var(--line-height);
  }


  .cart-items__price-unit {
    font-size: var(--font-size--xs);
    padding-block-start: var(--padding-2xs);
  }

  .cart-items__media-container {
    display: flex;
    aspect-ratio: var(--ratio);
    position: relative;
    width: 100%;
    overflow: hidden;
  }

  .cart-items__media-image {
    aspect-ratio: inherit;
    object-fit: cover;
    object-position: center center;
    width: 100%;
    height: auto;
  }

  .cart-items__empty-button {
    margin-top: var(--margin-md);
    padding-inline: var(--padding-4xl);
    padding-block: var(--padding-lg);
  }

  /* Ergovanta empty cart state: Cormorant line, peer subline, navy CTA to the catalogue. */
  .cart-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--gap-2xs);
    padding-block: var(--padding-2xl);
    max-width: 32rem;
    margin-inline: auto;
  }

  .cart-empty__heading {
    margin: 0;
    font-family: var(--font-heading--family);
    font-weight: 600;
    letter-spacing: 0.01em;
    color: var(--color-foreground-heading);
    font-size: clamp(1.5rem, 3vw, 1.875rem);
    line-height: 1.15;
  }

  .cart-empty__message {
    margin: 0;
    font-family: var(--font-body--family);
    font-size: var(--font-size--sm);
    line-height: 1.5;
    color: #6B6B6B;
  }

  .cart-empty__login {
    margin: 0;
    font-family: var(--font-body--family);
    font-size: var(--font-size--sm);
    color: #6B6B6B;
  }

  .cart-empty__button {
    margin-top: var(--margin-sm);
  }

  /* Cart drawer slide: 360ms, ease-in-out (no bounce). Scoped to the cart
     drawer dialog only, so the global slide timing on other drawers (header
     menu, search) is untouched. Reuses the native move-and-fade keyframe via
     the existing --dialog-drawer-*-animation custom properties; only the
     duration changes. Two classes + [open] outspecifies the base rule. */
  .cart-drawer__dialog.dialog-drawer[open] {
    animation: var(--dialog-drawer-opening-animation) 0.36s var(--animation-easing) forwards;
  }

  .cart-drawer__dialog.dialog-drawer[open].dialog-closing {
    animation: var(--dialog-drawer-closing-animation) 0.36s var(--animation-easing);
  }

  /* In the cart drawer the drawer already renders its own empty heading,
     so suppress the duplicate here and let that heading carry the brand type. */
  .cart-drawer .cart-empty__heading {
    display: none;
  }

  .cart-drawer .cart-empty {
    padding-block: var(--padding-lg);
  }

  .cart-drawer__heading--empty {
    font-family: var(--font-heading--family);
    font-weight: 600;
    letter-spacing: 0.01em;
    color: var(--color-foreground-heading);
  }

  /* Error message */
  .cart-items__error {
    display: flex;
    align-items: flex-start;
    width: 100%;
    grid-area: error;
    margin-block-start: var(--margin-xs);
    opacity: 1;
    overflow: hidden;
    transform: translateY(0);
    transition: opacity var(--drawer-animation-speed) var(--animation-easing),
      transform var(--drawer-animation-speed) var(--animation-easing);

    @starting-style {
      opacity: 0;
      transform: translateY(-0.5rem);
    }
  }

  .cart-item__error {
    display: flex;
    align-items: flex-start;
    width: 100%;
    font-size: var(--font-size--sm);
    padding-block: var(--padding-2xs);
  }

  .cart-item__error .svg-wrapper {
    flex-shrink: 0;
    width: var(--icon-size-xs);
    height: var(--icon-size-xs);
    margin-inline: var(--margin-3xs) var(--margin-xs);
    margin-block-start: var(--margin-3xs);
  }

  @container cart-items (min-width: 720px) {
    /* Cart page: original layout */
    .cart-items__table-row {
      --cart-item-price-width: 6rem;

      grid-template-columns: 7.5rem 1fr 1fr minmax(var(--cart-item-price-width), auto);
      grid-template-rows: min-content 1fr;
      grid-template-areas:
        'media details quantity price'
        'media details error error';
    }

    .cart-items__quantity,
    .cart-items__price {
      grid-area: initial;
    }

    .cart-items__quantity {
      margin-top: 0;
    }

    .cart-items__price {
      min-height: var(--minimum-touch-target);
      display: flex;
      flex-direction: column;
      align-items: flex-end;
    }

    /* Cart drawer: separate areas for variants and unit price */
    .cart-drawer .cart-items__table-row--full-width-variants {
      grid-template-rows: min-content min-content min-content 1fr;
      grid-template-areas:
        'media details quantity price'
        'media variants variants variants'
        'media unit_price unit_price unit_price'
        'media error error error';

      .cart-items__quantity,
      .cart-items__price {
        grid-area: initial;
      }
    }
  }

  .cart__subtotal-container,
  .cart__total-container {
    display: flex;
    flex-direction: column;
  }

  .cart__total-container {
    row-gap: var(--gap-2xs);

    &.cart__total-container--has-installments {
      row-gap: var(--gap-xs);
    }
  }

  .cart__subtotal-container:empty {
    display: none;
  }

  .cart__summary-totals {
    display: flex;
    flex-direction: column;
    gap: var(--gap-xl);
    width: 100%;
    border-block-start: none;

    &:has(> :first-child:not(.cart__subtotal-container, .cart__total-container)) {
      padding-block-start: 0;
      border-block-start: none;
    }

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

  .cart__subtotal-container,
  .cart__subtotal-container * {
    font-size: var(--font-size--sm);
  }

  .cart__total {
    font-weight: var(--font-weight-bold);
  }

  .cart__total-label {
    font-size: var(--font-size--sm);
  }

  .cart__total-value {
    font-size: var(--font-size--xl);

    @media screen and (max-width: 749px) {
      font-size: var(--font-size--lg);
    }
  }

  .cart-primary-typography {
    font-family: var(--cart-primary-font-family);
    font-style: var(--cart-primary-font-style);
    font-weight: var(--cart-primary-font-weight);
  }

  .cart-secondary-typography {
    font-family: var(--cart-secondary-font-family);
    font-style: var(--cart-secondary-font-style);
    font-weight: var(--cart-secondary-font-weight);
  }

  .cart__ctas {
    width: 100%;
    display: grid;
    gap: var(--checkout-button-gap);
    grid-auto-flow: row;
    grid-template-columns: 1fr;
  }

  .cart__additional-checkout-buttons {
    width: 100%;
  }

  shopify-accelerated-checkout-cart {
    --shopify-accelerated-checkout-inline-alignment: center;
    --shopify-accelerated-checkout-button-border-radius: var(--style-border-radius-buttons-primary);
    --shopify-accelerated-checkout-row-gap: var(--checkout-button-gap, 10px);
  }

  /* Remove animation */
  .remove-icon-bottom,
  .remove-icon-top {
    transition: transform var(--animation-speed) var(--animation-easing);
  }

  .cart-items__remove:hover .remove-icon-top {
    transform: translate(calc(-1 * var(--icon-stroke-width)), var(--icon-stroke-width)) rotate(-15deg);
  }

  .cart-items__remove:is(:hover, :active) .remove-icon-bottom {
    transform: translateY(var(--icon-stroke-width));
  }

  .cart-items__table-row.removing .remove-icon-bottom {
    transform: translateY(0);
  }

  .cart-items__table-row.removing .remove-icon-top {
    animation: removeButtonClickedIconTop var(--animation-speed) var(--animation-easing) forwards;
  }

  @keyframes removeButtonClickedIconTop {
    50% {
      transform: translate(0, calc(-1 * var(--icon-stroke-width)));
    }

    100% {
      transform: translate(0, 0);
    }
  }

  .cart-items__properties {
    display: block;
    margin-block-start: var(--margin-2xs);
  }

  .cart-items__property {
    display: block;
  }

  .cart-items__properties dt,
  .cart-items__properties dd {
    display: inline;
    margin: 0;
    overflow-wrap: break-word;
  }

  @media screen and (min-width: 750px) {
    .cart-items .quantity-selector {
      --quantity-selector-width: 105px;
      height: var(--button-size-md);
      width: var(--quantity-selector-width);
    }

    .cart-items .quantity-selector button {
      width: var(--button-size-md);
      height: var(--button-size-md);
    }

    .cart-items .quantity-selector input {
      max-width: calc(var(--quantity-selector-width) - var(--button-size-md) * 2);
    }
  }

  @media screen and (prefers-reduced-motion: no-preference) {
    html:active-view-transition-type(empty-cart-drawer) {
      .cart-items__empty-button,
      .cart__checkout-button {
        view-transition-name: cart-drawer-primary-action;

        & > .button-text {
          view-transition-name: cart-drawer-primary-action-text;
        }
      }
    }
  }

  ::view-transition-old(cart-drawer-primary-action-text),
  ::view-transition-new(cart-drawer-primary-action-text) {
    height: 100%;
    object-fit: none;
    overflow: clip;
    overflow-clip-margin: 1em;
  }

  ::view-transition-old(cart-drawer-primary-action-text) {
    animation: cart-drawer-primary-action-text var(--animation-speed) var(--animation-easing) reverse forwards;
  }
  ::view-transition-new(cart-drawer-primary-action-text) {
    animation: cart-drawer-primary-action-text var(--animation-speed) var(--animation-easing) forwards;
  }

  ::view-transition-old(cart-drawer-primary-action),
  ::view-transition-new(cart-drawer-primary-action) {
    height: 100%;
  }

  ::view-transition-group(cart-drawer-primary-action-text),
  ::view-transition-group(cart-drawer-primary-action) {
    animation-duration: var(--spring-d300-b0-duration);
    animation-timing-function: var(--spring-d300-b0-easing);
  }

  @keyframes cart-drawer-primary-action-text {
    from {
      filter: blur(3px);
      opacity: 0;
    }
    to {
      filter: none;
      opacity: 1;
    }
  }
/* END_SNIPPET:cart-products */

/* START_SNIPPET:cart-summary (INDEX:285) */
.cart-actions {
    display: flex;
    flex-direction: column;
    gap: 0;
    border-block: 1px solid var(--color-border);
    padding-block: 0;
    margin-block-start: var(--margin-3xs);
  }

  .cart-actions__divider {
    border-block-start: 1px solid var(--color-border);
  }

  .cart-totals:not(:has(.cart-actions)) {
    margin-block-start: var(--margin-3xs);
    border-block-start: 1px solid var(--color-border);
    padding-block-start: var(--margin-xl);
  }

  .cart-totals__item {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .cart-totals__tax-note {
    color: rgb(var(--color-foreground-rgb) / var(--opacity-subdued-text));
  }

  .cart-totals__tax-note small {
    font-size: var(--font-size--2xs);
  }

  .cart-discounts {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .cart-discounts__item {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .cart-discounts__label {
    display: flex;
    align-items: center;
    gap: var(--gap-2xs);
  }

  .cart-discounts__label svg {
    width: var(--icon-size-sm);
    height: var(--icon-size-sm);
    display: inline-block;
  }

  .cart-totals__original-container,
  .cart-totals__container {
    display: flex;
    flex-direction: column;
  }

  .cart-totals__container {
    row-gap: var(--gap-2xs);

    &.cart-totals__container--has-installments {
      row-gap: var(--gap-xs);
    }
  }

  .cart-totals__original-container:empty {
    display: none;
  }

  .cart-totals {
    display: flex;
    flex-direction: column;
    gap: var(--gap-xl);
    width: 100%;
    border-block-start: none;

    &:has(> :first-child:not(.cart-totals__original-container, .cart-totals__container)) {
      padding-block-start: 0;
      border-block-start: none;
    }

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

  .cart-totals__original-container,
  .cart-totals__original-container * {
    font-size: var(--cart-font-size--sm);
  }

  .cart-totals__total {
    align-items: baseline;
    font-weight: var(--font-weight-bold);
  }

  .cart-totals__total-label {
    font-size: var(--cart-font-size--sm);
  }

  .cart-totals__total-value {
    font-size: var(--cart-font-size--xl);

    @media screen and (max-width: 749px) {
      font-size: var(--font-size--lg);
    }
  }

  .cart-totals__installments {
    color: var(--color-foreground);
    font-size: var(--font-size--2xs);
  }

  .cart-note {
    width: 100%;
  }

  @starting-style {
    .cart-note[open-by-default-on-desktop][open-by-default-on-mobile] .details-content {
      block-size: auto;
      opacity: 1;
      overflow-y: visible;
    }
  }

  .cart-note__inner {
    padding-block: var(--padding-2xs) var(--padding-sm);
  }

  .cart-note__summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .cart-note__summary:hover {
    color: rgb(var(--color-foreground-rgb) / var(--opacity-subdued-text));
  }

  .cart-note__label {
    display: flex;
    align-items: flex-start;
    gap: var(--gap-2xs);
    font-size: var(--font-size--2xs);
    font-weight: 500;
  }

  .cart-note__instructions {
    color: var(--color-input-text);
    background-color: var(--color-input-background);
    border-width: var(--style-border-width-inputs);
    border-color: var(--color-input-border);
    transition: box-shadow var(--animation-speed) ease;
    box-shadow: var(--input-box-shadow);
    min-height: 5.5rem;
    min-width: 100%;
    max-width: 100%;
    font-size: var(--font-size--sm);
    padding: max(4px, calc(var(--style-border-radius-inputs) * (1 - cos(45deg))));
  }

  .cart-totals__icon {
    height: var(--icon-size-xs);
    width: var(--icon-size-xs);
    margin: 0;
  }

  .cart__ctas {
    width: 100%;
    display: grid;
    gap: var(--checkout-button-gap);
    grid-auto-flow: row;
    grid-template-columns: 1fr;
  }

  .cart__ctas .cart__checkout-button {
    width: 100%;
    height: clamp(25px, var(--height-buy-buttons), 55px);
    padding-inline: var(--padding-4xl);
  }

  .cart-drawer__summary .cart-totals:not(:has(.cart-totals__original-container:empty)) {
    border-block-start: var(--style-border-width) solid var(--color-border);
    padding-block-start: var(--padding-2xl);
  }

  .cart-drawer__summary .cart-note {
    @media screen and (min-width: 750px) {
      margin-block-start: var(--margin-3xs);
    }
  }

  .cart-discount__input {
    background-color: var(--color-input-background);
    color: var(--color-input-text);
    border-width: var(--style-border-width-inputs);
    border-color: var(--color-input-border);
    border-style: solid;
    border-radius: var(--style-border-radius-inputs);
    padding: var(--padding-sm) var(--padding-md);
    height: 100%;
    flex-grow: 1;
    min-width: 0;
    font-size: var(--font-size--sm);
  }

  .cart-discount__input::placeholder {
    color: rgb(var(--color-input-text-rgb) / var(--opacity-subdued-text));
  }

  .cart-discount__pill-code {
    overflow: hidden;
    max-width: 100px;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin: 0;
  }

  .cart-discount {
    width: 100%;
  }

  .cart-discount__codes {
    display: none;
    gap: var(--padding-xs);
    flex-wrap: wrap;
    list-style: none;
    padding-inline: 0;
    margin: 0;
  }

  .cart-discount__codes:has(.cart-discount__pill) {
    display: flex;
  }

  .cart-discount__button {
    height: 100%;
  }

  .cart-discount__content {
    height: calc(var(--button-size) + var(--padding-2xs) + var(--padding-sm));
  }

  .cart-discount__pill {
    display: flex;
    color: var(--color-foreground);
    gap: var(--padding-xs);
    align-items: center;
    padding: var(--padding-xs) var(--padding-sm);
    border-radius: var(--style-border-radius-pills);
    background-color: var(--color-input-background);
    text-transform: uppercase;
  }

  .cart-discount__form {
    display: flex;
    gap: var(--padding-md);
    align-items: center;
    height: 100%;
    padding-block: var(--padding-2xs) var(--padding-sm);
  }

  :is(.cart-discount__pill-remove, .cart-discount__pill-remove:hover) {
    --close-icon-opacity: 0.4;

    color: var(--color-foreground);
    background-color: transparent;
    pointer-events: all;
    cursor: pointer;
    height: 100%;
  }

  .cart-discount__error {
    display: flex;
    align-items: center;
    width: 100%;
    padding-block: var(--padding-2xs) var(--padding-sm);
  }

  .cart-discount__error .svg-wrapper {
    flex-shrink: 0;
    width: var(--icon-size-xs);
    height: var(--icon-size-xs);
    margin-inline: var(--margin-3xs) var(--margin-xs);
  }

  .cart-discount__error-text {
    margin-block-start: var(--margin-3xs);
  }

  .cart-discount__summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .cart-discount__summary:hover {
    color: rgb(var(--color-foreground-rgb) / var(--opacity-subdued-text));
  }

  .cart-discount__label {
    display: flex;
    align-items: flex-start;
    gap: var(--gap-2xs);
    font-size: var(--font-size--2xs);
    font-weight: 500;
  }

  @media screen and (min-width: 750px) {
    .cart-summary--extend {
      height: 100%;
    }
  }
/* END_SNIPPET:cart-summary */

/* START_SNIPPET:collection-card (INDEX:287) */
.collection-card {
    --fixed-card-height: var(--height-small);

    flex: 1 1 var(--card-width-small);
  }

  .collection-card > svg {
    height: 100%;
    width: 100%;
    aspect-ratio: var(--ratio);
  }

  .collection-card--image-bg .collection-card__inner {
    height: 100%;
  }

  .collection-card__inner {
    gap: var(--gap);

    a,
    button {
      pointer-events: auto;
    }
  }

  /* allow all blocks to be selectable in editor preview */
  .shopify-design-mode .collection-card__content * {
    pointer-events: auto;
  }

  .collection-card__content {
    max-width: 100%;
    --flex-wrap: wrap;
  }

  /* Nested image block rules */

  .collection-card.collection-card--image-bg {
    aspect-ratio: var(--ratio);
  }

  .collection-card.collection-card--image-bg .collection-card__content {
    padding: var(--padding-lg);
  }

  .collection-card--image-height-fixed {
    height: 100%;
  }

  /* Bento layout rules */
  .collection-card--image-height-fixed .collection-card__image {
    height: var(--fixed-card-height);
    width: 100%;
  }

  .collection-card--image-height-fixed.collection-card--image-bg {
    height: var(--fixed-card-height);
    aspect-ratio: unset;
  }

  .collection-card__image .resource-image__image {
    object-fit: cover;
    width: 100%;
    height: 100%;
    max-width: 100%;
  }

  .collection-card--image-bg .collection-card__image {
    position: absolute;
    width: 100%;
    height: 100%;
  }

  .collection-card__image svg {
    height: 100%;
    width: 100%;
  }

  .resource-list:not(.hidden--desktop) .collection-card--flexible-aspect-ratio {
    &.collection-card.collection-card--image-bg,
    &.collection-card .placeholder-svg {
      aspect-ratio: 99;
    }
  }
/* END_SNIPPET:collection-card */

/* START_SNIPPET:divider (INDEX:289) */
.divider {
    align-self: stretch;
    display: flex;
    align-items: center;
    justify-content: var(--divider-justify-content);
  }

  .divider__line {
    border-bottom: var(--divider-border-thickness) solid var(--color-border);
    border-right: var(--divider-border-thickness) solid var(--color-border);
    border-radius: calc(var(--style-border-radius-sm) * var(--divider-border-rounded));
    flex-basis: var(--divider-flex-basis);
    min-height: var(--divider-flex-basis);
  }
/* END_SNIPPET:divider */

/* START_SNIPPET:editorial-blog-grid (INDEX:290) */
.editorial-blog__grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 1fr;
    gap: var(--gap-xl);

    .shopify-block {
      height: 100%;
    }
  }

  .editorial-blog__spacer {
    aspect-ratio: 1;
  }

  @media screen and (max-width: 749px) {
    .editorial-blog__grid {
      display: flex;
      flex-direction: column;
      gap: var(--gap-2xl);
    }

    .editorial-blog__spacer {
      display: none;
    }

    /* Mobile layout - also horizontally mirrored from collection grid */
    .editorial-blog__item-0 {
      width: 66%;
      align-self: flex-end; /* Originally flex-start, now flex-end */
    }

    .editorial-blog__item-1 {
      width: 83%;
      align-self: flex-start; /* Originally flex-end, now flex-start */
    }

    .editorial-blog__item-2 {
      width: 83%;
      align-self: flex-end; /* Originally flex-start, now flex-end */
    }

    .editorial-blog__item-3 {
      width: 100%;
      align-self: center; /* Stays centered */
    }
  }
/* END_SNIPPET:editorial-blog-grid */

/* START_SNIPPET:editorial-collection-grid (INDEX:291) */
.editorial-collection__grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 1fr;
    gap: var(--gap-xl);

    .resource-list__item,
    .collection-card {
      height: 100%;
    }
  }

  .editorial-collection__spacer {
    aspect-ratio: 1;
  }

  @media screen and (max-width: 749px) {
    .editorial-collection__grid {
      display: flex;
      flex-direction: column;
      gap: var(--gap-2xl);
    }

    .editorial-collection__spacer {
      display: none;
    }

    .editorial-collection__item-0 {
      width: 66%;
      align-self: flex-start;
      aspect-ratio: 4 / 5;
    }

    .editorial-collection__item-1 {
      width: 83%;
      align-self: flex-end;
      aspect-ratio: 5 / 5;
    }

    .editorial-collection__item-2 {
      width: 83%;
      align-self: flex-start;
      aspect-ratio: 8 / 6;
    }

    .editorial-collection__item-3 {
      width: 100%;
      align-self: center;
      aspect-ratio: 8 / 6;
    }
  }
/* END_SNIPPET:editorial-collection-grid */

/* START_SNIPPET:editorial-product-grid (INDEX:292) */
.editorial-product__grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 1fr;
    gap: var(--gap-xl);

    /* Make the aspect ratio super high on width, then increase the height of
     * slideshow containers until they fill all the available space */
    .card-gallery {
      /* stylelint-disable-next-line declaration-no-important */
      --gallery-aspect-ratio: 99 !important;
    }

    .card-gallery,
    slideshow-component,
    slideshow-container,
    slideshow-slides,
    .product-media__image {
      height: 100%;
    }
  }

  .editorial-product__spacer {
    aspect-ratio: 1;
  }

  @media screen and (max-width: 749px) {
    .editorial-product__grid {
      display: flex;
      flex-direction: column;
      gap: var(--gap-2xl);
    }

    .editorial-product__spacer {
      display: none;
    }

    .editorial-product__item-0 {
      width: 83%;
      align-self: flex-start;
      aspect-ratio: 7 / 6;
    }

    .editorial-product__item-1 {
      width: 83%;
      align-self: flex-end;
      aspect-ratio: 4 / 5;
    }

    .editorial-product__item-2 {
      width: 66%;
      align-self: flex-start;
      aspect-ratio: 5 / 5;
    }

    .editorial-product__item-3 {
      width: 100%;
      aspect-ratio: 8 / 6;
    }
  }
/* END_SNIPPET:editorial-product-grid */

/* START_SNIPPET:eg-v2-hub-css (INDEX:306) */
.egvh { font-size: 16px; line-height: 1.6; color: var(--eg-ink); }
.egvh .wrap { max-width: 1200px; margin: 0 auto; padding-inline: 24px; }
.egvh section { padding: 64px 0; }
@media (min-width: 768px) { .egvh section { padding: 96px 0; } }
.egvh section.band { background: var(--eg-paper); }
.egvh section.inv { background: var(--eg-navy); color: var(--eg-white); }
.egvh h1 { font-family: var(--eg-font-display); font-weight: 600; font-size: clamp(40px, 6vw, 72px); line-height: 1; margin: 0; color: var(--eg-navy); text-wrap: balance; }
.egvh h2 { font-family: var(--eg-font-display); font-weight: 600; font-size: clamp(27px, 3.4vw, 40px); line-height: 1.1; margin: 0; text-wrap: balance; }
.egvh h3 { font-family: var(--eg-font-display); font-weight: 600; font-size: 19px; line-height: 1.28; margin: 0; }
.egvh p { margin: 0; }
.egvh .eyebrow { font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--eg-muted); font-weight: 500; margin: 0 0 12px; }
.egvh .eyebrow.od { color: rgba(255,255,255,.62); }
.egvh .rule { width: 32px; height: 2px; background: var(--eg-accent); margin: 0 0 16px; }
.egvh .sechead { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; margin-bottom: 32px; flex-wrap: wrap; }
.egvh .sechead .lede { font-size: 15px; color: var(--eg-muted); max-width: 52ch; margin-top: 12px; }
.egvh .seclink { font-size: 12.5px; color: var(--eg-navy); border-bottom: 1px solid var(--eg-border); padding-bottom: 3px; white-space: nowrap; text-decoration: none; }
.egvh .btn { display: inline-block; padding: 12px 24px; border-radius: var(--eg-radius); font-family: var(--eg-font-body); font-size: 14.5px; font-weight: 500; letter-spacing: .02em; border: 1px solid var(--eg-navy); text-align: center; text-decoration: none; cursor: pointer; transition: background 200ms var(--eg-ease), transform 200ms var(--eg-ease); }
.egvh .btn-p { background: var(--eg-navy); color: var(--eg-white); }
.egvh .btn-p:hover { background: var(--eg-navy-hover); transform: translateY(-1px); }
.egvh .btn-s { background: var(--eg-white); color: var(--eg-navy); }
.egvh .btn-s:hover { background: var(--eg-paper); }
.egvh .inv .btn-p { background: var(--eg-white); color: var(--eg-navy); border-color: var(--eg-white); }

.egvh .crumb { display: flex; gap: 8px; align-items: center; font-size: 12px; color: var(--eg-muted); padding: 24px 0 0; flex-wrap: wrap; }
.egvh .crumb a { color: inherit; text-decoration: none; }
.egvh .crumb a:hover { color: var(--eg-navy); }
.egvh .crumb i { opacity: .4; font-style: normal; }
.egvh .chero { padding: 48px 0 64px; border-bottom: 1px solid var(--eg-border); }
/* Full-bleed split hero (corporate + education, 2026-08-03). Copy sits on the
   navy ground, imagery bleeds off the opposite edge. Stacks image-first on
   mobile so the page opens on a picture rather than a wall of type. */
.egvh .cherobleed { display: grid; grid-template-columns: 1fr; border-bottom: 1px solid var(--eg-border); }
.egvh .cherobleed .cb-copy { background: var(--eg-navy); color: var(--eg-white); padding: 44px 24px 52px; order: 2; }
.egvh .cherobleed .cb-inner { max-width: 640px; margin-left: auto; margin-right: auto; }
.egvh .cherobleed .cb-img { order: 1; position: relative; aspect-ratio: 16/9; overflow: hidden; background: var(--eg-paper); }
.egvh .cherobleed .cb-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.egvh .cherobleed .eyebrow { color: rgba(255,255,255,.66); }
.egvh .cherobleed .rule { background: var(--eg-accent); }
.egvh .cherobleed h1 { color: var(--eg-white); }
.egvh .cherobleed .lede { color: rgba(255,255,255,.82); max-width: 56ch; }
.egvh .cherobleed .btn-p { background: var(--eg-white); color: var(--eg-navy); border-color: var(--eg-white); }
.egvh .cherobleed .btn-p:hover { background: rgba(255,255,255,.88); }
.egvh .cherobleed .btn-s { color: var(--eg-white); border-color: rgba(255,255,255,.5); background: transparent; }
.egvh .cherobleed .btn-s:hover { border-color: #fff; }
@media (min-width: 900px) {
  .egvh .cherobleed { grid-template-columns: 1fr 1fr; align-items: stretch; }
  .egvh .cherobleed .cb-copy { order: 1; display: flex; align-items: center; padding: 64px 48px; }
  .egvh .cherobleed .cb-inner { margin-right: 0; max-width: 600px; }
  .egvh .cherobleed .cb-img { order: 2; aspect-ratio: auto; min-height: 100%; }
}
.egvh .chero .lede { font-size: 17px; color: var(--eg-muted); max-width: 58ch; margin-top: 16px; }
.egvh .ccta { display: flex; gap: 12px; margin-top: 32px; flex-wrap: wrap; }

.egvh .facts { border-bottom: 1px solid var(--eg-border); padding: 32px 0; }
.egvh .fg { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
@media (min-width: 700px) { .egvh .fg { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1080px) { .egvh .fg { grid-template-columns: repeat(7, 1fr); } }
.egvh .fg > div { display: flex; flex-direction: column; gap: 5px; }
.egvh .fg b { font-size: 12.5px; font-weight: 500; }
.egvh .fg span { font-size: 11px; color: var(--eg-muted); line-height: 1.4; }
.egvh .fg svg { color: var(--eg-accent); }

.egvh .rms { display: grid; gap: 16px; }
@media (min-width: 820px) { .egvh .rms { grid-template-columns: repeat(3, 1fr); } }
.egvh .rm { border: 1px solid var(--eg-border); border-radius: var(--eg-radius); padding: 0; background: var(--eg-white); display: flex; flex-direction: column; overflow: hidden; text-decoration: none; color: var(--eg-ink); transition: box-shadow 200ms var(--eg-ease), transform 200ms var(--eg-ease), border-color 200ms var(--eg-ease); }
.egvh .rm .rmimg { display: block; aspect-ratio: 7/5; background: var(--eg-paper); }
.egvh .rm .rmimg img { width: 100%; height: 100%; object-fit: cover; transition: transform 320ms var(--eg-ease); }
.egvh .rm:hover .rmimg img { transform: scale(1.03); }
.egvh .rm .rmbody { display: flex; flex-direction: column; gap: 10px; padding: 20px 24px 24px; }
.egvh .rm:hover { box-shadow: 0 8px 24px rgb(39 55 85 / .10); transform: translateY(-2px); border-color: var(--eg-navy); }
.egvh .rm b { font-family: var(--eg-font-display); font-size: 23px; font-weight: 600; }
.egvh .rm p { font-size: 13.5px; color: var(--eg-muted); }
.egvh .rm em { font-style: normal; font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--eg-accent); margin-top: auto; padding-top: 8px; }

.egvh .routes { display: grid; gap: 16px; }
@media (min-width: 860px) { .egvh .routes { grid-template-columns: repeat(2, 1fr); } }
.egvh .route { border: 1px solid var(--eg-border); border-radius: var(--eg-radius); padding: 48px 24px; background: var(--eg-white); display: flex; flex-direction: column; gap: 12px; transition: box-shadow 200ms var(--eg-ease), transform 200ms var(--eg-ease), border-color 200ms var(--eg-ease); }
.egvh .route:hover { box-shadow: 0 8px 24px rgb(39 55 85 / .10); transform: translateY(-2px); border-color: var(--eg-navy); }
.egvh .route .rmeta { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--eg-accent); }
.egvh .route h3 { font-size: 28px; }
.egvh .route p { font-size: 14.5px; color: var(--eg-muted); }
.egvh .route ul { margin: 8px 0 24px; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 8px; }
.egvh .route li { font-size: 13.5px; display: flex; gap: 8px; align-items: flex-start; }
.egvh .route li svg { color: var(--eg-accent); flex-shrink: 0; margin-top: 3px; }
.egvh .route .btn { align-self: flex-start; margin-top: auto; }

.egvh .ways { display: grid; gap: 24px; }
@media (min-width: 820px) { .egvh .ways { grid-template-columns: repeat(2, 1fr); } }
.egvh .way { border-top: 2px solid var(--eg-navy); padding-top: 20px; }
.egvh .way b { font-family: var(--eg-font-display); font-size: 24px; font-weight: 600; display: block; margin-bottom: 8px; }
.egvh .way .wayn { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--eg-accent); display: block; margin-bottom: 8px; }
.egvh .way p { font-size: 14.5px; color: var(--eg-muted); }

.egvh .pills { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px; }
.egvh .pill { border: 1px solid var(--eg-border); border-radius: var(--eg-radius-pill); padding: 7px 16px; font-size: 12.5px; cursor: pointer; background: var(--eg-white); font-family: var(--eg-font-body); color: var(--eg-ink); transition: border-color 200ms var(--eg-ease); }
.egvh .pill:hover { border-color: var(--eg-navy); }
.egvh .pill[aria-pressed="true"] { background: var(--eg-navy); border-color: var(--eg-navy); color: var(--eg-white); }
.egvh .pill span { opacity: .6; font-variant-numeric: tabular-nums; margin-left: 4px; }
.egvh .grp { margin-bottom: 40px; }
.egvh .grp h3 { font-family: var(--eg-font-body); font-size: 12px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: var(--eg-muted); border-bottom: 1px solid var(--eg-border); padding-bottom: 10px; margin-bottom: 20px; display: flex; justify-content: space-between; }
.egvh .grp h3 em { font-style: normal; font-variant-numeric: tabular-nums; }
.egvh .pgrid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
@media (min-width: 640px) { .egvh .pgrid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px) { .egvh .pgrid { grid-template-columns: repeat(4, 1fr); gap: 24px; } }
@media (min-width: 1140px) { .egvh .pgrid { grid-template-columns: repeat(6, 1fr); } }
.egvh .sc { text-decoration: none; color: inherit; display: flex; flex-direction: column; gap: 6px; }
.egvh .sc:focus-visible { outline: 2px solid var(--eg-navy); outline-offset: 4px; border-radius: var(--eg-radius); }
.egvh .sci { display: block; aspect-ratio: 1; border-radius: var(--eg-radius); overflow: hidden; background: var(--eg-paper); position: relative; }
.egvh .sci img { width: 100%; height: 100%; object-fit: cover; transition: transform 320ms var(--eg-ease); }
.egvh .sc:hover .sci img { transform: scale(1.045); }
.egvh .sci .ph { display: none; }
.egvh .sci.noimg { box-shadow: inset 0 0 0 1px var(--eg-border); }
.egvh .sci.noimg img { display: none; }
.egvh .sci.noimg .ph { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; position: absolute; inset: 0; padding: 12px; text-align: center; }
.egvh .sci.noimg .ph b { font-family: var(--eg-font-display); font-weight: 600; font-size: 17px; color: var(--eg-navy); }
.egvh .sci.noimg .ph i { display: block; width: 22px; height: 2px; background: var(--eg-accent); }
.egvh .sct { font-size: 14px; }
.egvh .scg { font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--eg-muted); display: flex; gap: 5px; }
.egvh .sc:hover .scg { color: var(--eg-navy); }

.egvh .calc { display: grid; gap: 32px; align-items: start; }
@media (min-width: 980px) { .egvh .calc { grid-template-columns: .85fr 1.15fr; gap: 64px; } }
.egvh .selrow { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 24px; }
.egvh .selrow button { flex: 1; min-width: 78px; border: 1px solid var(--eg-border); background: var(--eg-white); border-radius: var(--eg-radius); padding: 12px 8px; cursor: pointer; font-family: var(--eg-font-body); display: flex; flex-direction: column; align-items: center; gap: 2px; transition: border-color 200ms var(--eg-ease); }
.egvh .selrow button:hover { border-color: var(--eg-navy); }
.egvh .selrow button[aria-pressed="true"] { background: var(--eg-navy); border-color: var(--eg-navy); color: var(--eg-white); }
.egvh .selrow b { font-family: var(--eg-font-display); font-weight: 600; font-size: 26px; }
.egvh .selrow small { font-size: 10.5px; letter-spacing: .08em; text-transform: uppercase; opacity: .7; }
.egvh .basket { border: 1px solid var(--eg-border); border-radius: var(--eg-radius); background: var(--eg-white); padding: 8px 16px; margin-bottom: 16px; }
.egvh .brow { display: grid; grid-template-columns: 1fr auto; gap: 12px; align-items: baseline; padding: 12px 0; border-bottom: 1px solid var(--eg-border); }
.egvh .brow:last-child { border-bottom: 0; }
.egvh .brow .bn { font-size: 13.5px; font-weight: 500; }
.egvh .brow .bq { font-size: 11.5px; color: var(--eg-muted); }
.egvh .brow.capped .bq { color: #8a6d1f; }
.egvh .brow .bp { font-size: 13.5px; font-variant-numeric: tabular-nums; text-align: right; }
.egvh .brow .bp s { color: var(--eg-muted); font-size: 12px; margin-right: 6px; }
.egvh .cpanel { background: var(--eg-navy); color: var(--eg-white); border-radius: var(--eg-radius); padding: 32px 24px; }
.egvh .cnums { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; border-bottom: 1px solid rgba(255,255,255,.2); padding-bottom: 20px; margin-bottom: 16px; }
.egvh .cnums b { font-family: var(--eg-font-display); font-weight: 600; font-size: clamp(28px, 3.6vw, 42px); display: block; line-height: 1; }
.egvh .cnums span { font-size: 11px; letter-spacing: .08em; text-transform: uppercase; opacity: .66; display: block; margin-top: 6px; }
.egvh .csave { font-size: 14px; color: #b8e0c2; margin-bottom: 10px; }
.egvh .cnote { font-size: 12.5px; color: rgba(255,255,255,.72); line-height: 1.5; }
.egvh .cbig b { font-family: var(--eg-font-display); font-weight: 600; font-size: clamp(52px, 8vw, 86px); line-height: .9; display: block; }
.egvh .cbig span { font-size: 12px; letter-spacing: .08em; text-transform: uppercase; opacity: .66; display: block; margin: 8px 0 20px; }
.egvh .cbars { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.egvh .cbars .lbl { font-size: 11.5px; opacity: .72; margin-bottom: 6px; display: block; }
.egvh .cbars .num { font-family: var(--eg-font-display); font-size: 22px; font-weight: 600; display: block; margin-bottom: 6px; }
.egvh .bbar { height: 8px; border-radius: var(--eg-radius-pill); background: rgba(255,255,255,.14); overflow: hidden; }
.egvh .bbar i { display: block; height: 100%; background: var(--eg-white); transition: width 320ms var(--eg-ease); }
.egvh .bbar i.dim { background: rgba(255,255,255,.45); }

.egvh .proc { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-bottom: 32px; }
@media (min-width: 900px) { .egvh .proc { grid-template-columns: repeat(4, 1fr); } }
.egvh .proc b { font-family: var(--eg-font-display); font-size: 18px; font-weight: 600; display: block; margin-bottom: 8px; }
.egvh .proc p { font-size: 13px; color: var(--eg-muted); }
.egvh .certs { display: flex; gap: 8px; flex-wrap: wrap; }
.egvh .certs span { border: 1px solid var(--eg-border); border-radius: var(--eg-radius-pill); padding: 5px 13px; font-size: 12px; background: var(--eg-white); }
.egvh .certnote { font-size: 12px; color: var(--eg-muted); margin-top: 12px; }

.egvh .lb { display: grid; gap: 32px; align-items: center; }
@media (min-width: 900px) { .egvh .lb { grid-template-columns: 1fr 1fr; gap: 64px; } }
.egvh .lbcov { display: block; text-decoration: none; color: inherit; border: 1px solid var(--eg-border); border-radius: var(--eg-radius); padding: 48px 32px; background: var(--eg-white); transition: box-shadow 200ms var(--eg-ease), border-color 200ms var(--eg-ease); }
.egvh .lbcov:hover { box-shadow: 0 8px 24px rgb(39 55 85 / .10); border-color: var(--eg-navy); }
.egvh .lbcov .k { font-family: var(--eg-font-display); font-weight: 600; font-size: clamp(30px, 4vw, 44px); line-height: 1.05; color: var(--eg-navy); margin: 12px 0; }
.egvh .lbcov .m { font-size: 12px; color: var(--eg-muted); }
.egvh .lbf label { display: block; font-size: 11px; letter-spacing: .06em; text-transform: uppercase; color: var(--eg-muted); margin: 0 0 6px; }
.egvh .lbf input, .egvh .lbf select { width: 100%; padding: 9px 12px; border: 1px solid var(--eg-border); border-radius: var(--eg-radius); font-family: var(--eg-font-body); font-size: 14px; background: var(--eg-white); color: var(--eg-ink); margin-bottom: 14px; box-sizing: border-box; }
.egvh .lbf .fr2 { display: grid; gap: 0 12px; }
@media (min-width: 560px) { .egvh .lbf .fr2 { grid-template-columns: 1fr 1fr; } }
.egvh .lbcon { display: flex; gap: 10px; align-items: flex-start; font-size: 12px; color: var(--eg-muted); line-height: 1.5; margin-bottom: 14px; }
.egvh .lbcon input { width: 15px; height: 15px; margin-top: 3px; flex-shrink: 0; }

.egvh .quote .lede { color: rgba(255,255,255,.78); font-size: 15.5px; max-width: 56ch; margin-top: 12px; }
.egvh .quote .qcta { display: flex; gap: 12px; margin-top: 32px; flex-wrap: wrap; }
.egvh .quote a.plain { color: var(--eg-white); font-size: 14px; align-self: center; text-decoration: underline; text-underline-offset: 3px; }

.egvh .faq { max-width: 760px; border-top: 1px solid var(--eg-border); }
.egvh .faq details { border-bottom: 1px solid var(--eg-border); }
.egvh .faq summary { cursor: pointer; padding: 16px 0; font-size: 16px; list-style: none; display: flex; justify-content: space-between; gap: 16px; align-items: center; font-family: var(--eg-font-display); font-weight: 600; }
.egvh .faq summary::-webkit-details-marker { display: none; }
.egvh .faq summary::after { content: "+"; color: var(--eg-accent); font-size: 22px; font-weight: 400; }
.egvh .faq details[open] summary::after { content: "\2212"; }
.egvh .faq .a { padding: 0 0 16px; color: var(--eg-muted); font-size: 14.5px; max-width: 66ch; }
/* END_SNIPPET:eg-v2-hub-css */

/* START_SNIPPET:eg-v2-qa (INDEX:307) */
/* visibility + pointer-events guards: an opacity-0 overlay is still tappable,
   which on touch made the bottom of every card a silent add-to-cart. */
.egc .qa, .egh .qa { position: absolute; left: 12px; right: 12px; bottom: 12px; background: rgba(255,255,255,.96); border: 1px solid var(--eg-border); border-radius: var(--eg-radius); padding: 9px; font-size: 12.5px; text-align: center; font-weight: 500; color: var(--eg-navy); opacity: 0; visibility: hidden; pointer-events: none; transform: translateY(6px); transition: opacity 200ms var(--eg-ease), transform 200ms var(--eg-ease), visibility 0s 200ms; cursor: pointer; z-index: 2; }
.egc .pc:hover .qa, .egc .pc:focus-within .qa, .egh .pc:hover .qa, .egh .pc:focus-within .qa { opacity: 1; visibility: visible; pointer-events: auto; transform: none; transition: opacity 200ms var(--eg-ease), transform 200ms var(--eg-ease); }
.egc .qa--done, .egh .qa--done { background: var(--eg-navy); color: var(--eg-white); border-color: var(--eg-navy); }

/* The in-place picker: covers the card image, choose -> adds -> cart */
.qa-pick { position: absolute; inset: 0; background: rgba(255,255,255,.97); z-index: 3; display: flex; flex-direction: column; border-radius: inherit; }
.qa-pick__head { display: flex; justify-content: space-between; align-items: center; padding: 10px 12px; border-bottom: 1px solid var(--eg-border); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: var(--eg-muted); font-weight: 600; }
.qa-pick__x { background: none; border: 0; font-size: 20px; line-height: 1; color: var(--eg-muted); cursor: pointer; padding: 0 2px; }
.qa-pick__x:hover { color: var(--eg-ink); }
.qa-pick__list { overflow-y: auto; padding: 8px; display: flex; flex-direction: column; gap: 6px; }
.qa-pick__list button { display: flex; align-items: center; gap: 10px; width: 100%; padding: 10px 12px; background: var(--eg-white); border: 1px solid var(--eg-border); border-radius: var(--eg-radius); font-family: var(--eg-font-body); font-size: 13.5px; color: var(--eg-ink); cursor: pointer; text-align: left; transition: border-color 160ms var(--eg-ease), background 160ms var(--eg-ease); }
.qa-pick__list button:hover:not(:disabled) { border-color: var(--eg-navy); background: var(--eg-paper); }
.qa-pick__list button:disabled { opacity: .5; cursor: not-allowed; }
.qa-pick__list button i { width: 15px; height: 15px; border-radius: var(--eg-radius-pill); border: 1px solid rgba(0,0,0,.15); flex-shrink: 0; }
.qa-pick__list button b { font-weight: 500; }
.qa-pick__list button em { font-style: normal; font-size: 11px; color: var(--eg-muted); margin-left: auto; }
/* END_SNIPPET:eg-v2-qa */

/* START_SNIPPET:eg-v2-social (INDEX:310) */
.egv2s { padding: 28px 0 40px; }
.egv2s .slab { text-align: center; font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--eg-muted); margin: 0 0 16px; }
.egv2s .row { display: flex; gap: 28px; justify-content: center; flex-wrap: wrap; }
.egv2s .row a { color: var(--eg-muted); opacity: .8; transition: opacity 200ms var(--eg-ease), transform 200ms var(--eg-ease), color 200ms var(--eg-ease); }
.egv2s .row a:hover { opacity: 1; color: var(--eg-navy); transform: translateY(-2px); }
.egv2s .row svg { width: 36px; height: 36px; }
/* END_SNIPPET:eg-v2-social */

/* START_SNIPPET:filter-remove-buttons (INDEX:311) */
/* Facets - Remove buttons */
  .facets-remove {
    --variant-picker-swatch-width: 20px;
    --variant-picker-swatch-height: 20px;

    display: none;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--gap-xs);
    padding: 0 var(--drawer-padding);
    margin: 0;

    @media screen and (min-width: 750px) {
      --variant-picker-swatch-width: 16px;
      --variant-picker-swatch-height: 16px;

      gap: var(--gap-2xs);
    }
  }

  .facets-remove:has(facet-remove-component) {
    display: flex;
    margin-block-start: var(--margin-2xs);
    margin-block-end: var(--margin-md);
  }

  .facets:not(.facets--drawer) .facets-remove--mobile-and-vertical {
    @media screen and (min-width: 750px) {
      padding: 0;
    }
  }

  .facets--horizontal .facets-remove--mobile-and-vertical {
    @media screen and (min-width: 750px) {
      display: none;
    }
  }

  .facets-remove__pill {
    .svg-wrapper,
    .swatch {
      flex-shrink: 0;
    }
  }

  .facets--horizontal .facets-remove {
    @media screen and (min-width: 750px) {
      display: none;
    }
  }
/* END_SNIPPET:filter-remove-buttons */

/* START_SNIPPET:gift-card-recipient-form-styles (INDEX:315) */
.recipient-form {
    --options-border-radius: var(--variant-picker-button-radius);
    --options-border-width: var(--variant-picker-button-border-width);

    display: flex;
    flex-direction: column;
    padding-bottom: var(--padding-2xl);
  }

  .recipient-form__send-to {
    padding: 0;
    margin-block-end: var(--margin-xs);
  }

  .gift-card-form-option {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--gap-sm);
    padding: 0;
    border: none;
  }

  .gift-card-form-option__button-label {
    display: flex;
    align-items: center;
    position: relative;
    padding-block: var(--padding-sm);
    padding-inline: var(--padding-lg);
    border: var(--style-border-width) solid var(--color-variant-border);
    border-radius: var(--options-border-radius);
    border-width: var(--options-border-width);
    overflow: clip;
    justify-content: center;
    min-width: auto;
    background-color: var(--color-variant-background);
    color: var(--color-variant-text);
    transition: background-color var(--animation-speed) var(--animation-easing),
      border-color var(--animation-speed) var(--animation-easing);

    &:hover {
      background-color: var(--color-variant-hover-background);
      border-color: var(--color-variant-hover-border);
      color: var(--color-variant-hover-text);
    }
  }

  .gift-card-form-option__button-label:has(:focus-visible) {
    --variant-picker-stroke-color: var(--color-foreground);

    border-color: var(--color-foreground);
    outline: var(--focus-outline-width) solid var(--color-foreground);
    outline-offset: var(--focus-outline-offset);
  }

  .gift-card-form-option__button-label:has(:checked) {
    color: var(--color-selected-variant-text);
    background-color: var(--color-selected-variant-background);
    border-color: var(--color-selected-variant-border);
    transition: background-color var(--animation-speed) var(--animation-easing),
      border-color var(--animation-speed) var(--animation-easing);

    &:hover {
      background-color: var(--color-selected-variant-hover-background);
      border-color: var(--color-selected-variant-hover-border);
      color: var(--color-selected-variant-hover-text);
    }
  }

  .gift-card-form-option__button-label input {
    position: absolute;
    inset: 0;
    opacity: 0;
    margin: 0;
    cursor: pointer;
    width: 100%;
    height: 100%;
  }

  .recipient-fields {
    display: flex;
    flex-direction: column;
    gap: var(--gap-sm);
    transition: opacity 0.3s var(--animation-easing);
    padding-block-start: var(--padding-xl);
  }

  .recipient-fields[hidden] {
    display: none;
  }

  .field--send-on {
    display: flex;
    flex-direction: column;
  }

  .recipient-form__message {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: var(--gap-sm);
    margin-top: var(--margin-sm);
  }

  .recipient-form-field-label {
    position: absolute;
    left: var(--padding-sm);
    bottom: var(--padding-sm);
    font-style: italic;
    color: var(--color-input-text);
  }

  .recipient-fields__textarea {
    min-height: 5.5rem;
    overflow-y: auto;

    /* Space for the character count */
    padding-bottom: calc(var(--padding-sm) * 3);
    scroll-padding-bottom: calc(var(--padding-sm) * 3);
  }

  .recipient-fields__input {
    flex-grow: 1;
    transition: background-color var(--animation-speed) ease, border-color var(--animation-speed) ease;
    padding: var(--input-padding);
    background-color: var(--color-input-background);
    color: var(--color-input-text);
    text-align: left;
    font-size: var(--font-paragraph--size);
    border: var(--style-border-width-inputs) solid var(--color-input-border);
    border-radius: var(--style-border-radius-inputs);

    &:autofill {
      background-color: var(--color-input-background);
      color: var(--color-input-text);
    }

    &:is(:focus, :hover) {
      background-color: var(--color-input-hover-background);
    }

    &:is(:focus) {
      outline-color: var(--color-input-background);
    }
  }

  /* Date picker calendar icon
   * Safari doesn't show the icon and Firefox correctly applies the color from the input field.
   * Webkit browsers need the mask-image trick to use the correct icon color.
   */
  .field--send-on .recipient-fields__input::-webkit-calendar-picker-indicator {
    cursor: pointer;
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='currentColor' viewBox='0 0 24 24' %3E%3Cg%3E%3Cpath d='M9 11H7v2h2v-2zm4 0h-2v2h2v-2zm4 0h-2v2h2v-2zm2-7h-1V2h-2v2H8V2H6v2H5c-1.11 0-1.99.9-1.99 2L3 20c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 16H5V9h14v11z'%3E%3C/path%3E%3C/g%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-image: none;
    background-color: currentColor;
    mask-type: match-source;
  }

  /* For Webkit browsers - text cursor for input area */
  .field--send-on .recipient-fields__input::-webkit-datetime-edit {
    cursor: text;
  }

  .field--send-on .recipient-fields__input::-webkit-datetime-edit-year-field,
  .field--send-on .recipient-fields__input::-webkit-datetime-edit-month-field,
  .field--send-on .recipient-fields__input::-webkit-datetime-edit-day-field {
    /* Override the disabled color */
    color: var(--color-input-text);
  }

  /* Fallback for other browsers */
  .field--send-on .recipient-fields__input {
    cursor: text;
  }

  /* For Firefox - entire field is clickable, so show pointer */
  @supports (-moz-appearance: none) {
    .field--send-on .recipient-fields__input {
      cursor: pointer;
    }
  }
/* END_SNIPPET:gift-card-recipient-form-styles */

/* START_SNIPPET:grid-density-controls (INDEX:317) */
.column-options-wrapper {
    --icon-offset: -3px;

    display: flex;
    gap: var(--gap-sm);
    min-width: fit-content;
    justify-content: flex-end;
    height: var(--minimum-touch-target);
    align-items: center;
    margin-right: var(--icon-offset);
  }

  .column-options-wrapper:only-child {
    margin-left: auto;
  }

  .facets__form-wrapper > .column-options-wrapper:first-child {
    margin-left: auto;
  }

  .facets .column-options-wrapper {
    display: none;

    @media screen and (min-width: 750px) {
      display: flex;
    }
  }

  .column-options {
    display: flex;
    flex-wrap: wrap;
    gap: var(--gap-xs);
    margin: 0;
    padding: 0;
    border: none;

    @media screen and (min-width: 750px) {
      gap: var(--gap-2xs);
    }
  }

  .column-options__option {
    display: none;
    position: relative;
  }

  .column-options__option:has(.column-picker-mobile--single),
  .column-options__option:has(.column-picker-mobile--double) {
    @media screen and (max-width: 749px) {
      display: flex;
    }
  }

  .column-options__option:has(.column-picker--default),
  .column-options__option:has(.column-picker--zoom-out) {
    @media screen and (min-width: 750px) {
      display: flex;
    }
  }

  /* Override base rule for grid density controls - only when visible */
  .column-options-wrapper .column-options__option:has(input[type="radio"]):has(.column-picker-mobile--single),
  .column-options-wrapper .column-options__option:has(input[type="radio"]):has(.column-picker-mobile--double) {
    @media screen and (max-width: 749px) {
      display: flex;
    }
  }

  .column-options-wrapper .column-options__option:has(input[type="radio"]):has(.column-picker--default),
  .column-options-wrapper .column-options__option:has(input[type="radio"]):has(.column-picker--zoom-out) {
    @media screen and (min-width: 750px) {
      display: flex;
    }
  }

  .column-options__legend {
    padding: 0;
    margin: 0;
  }

  .column-options__option-input {
    /* this is a repeating pattern a bit with the variant picker buttons */

    /* remove the checkbox from the page flow */
    position: absolute;

    /* set the dimensions to match those of the label */
    inset: 0;

    /* hide it */
    opacity: 0;
    margin: 0;
    padding: 0;
    width: auto;
    height: auto;
    aspect-ratio: unset;
    border: none;
    border-radius: 0;
    background: transparent;
    appearance: auto;
    display: block;
    cursor: pointer;
  }

  .column-picker {
    color: rgb(var(--color-foreground-rgb) / var(--opacity-50));
    padding: var(--padding-2xs);
    border-radius: var(--style-border-radius-xs);
    transition: background-color var(--animation-speed) ease, color var(--animation-speed) ease;
  }

  .column-options__option:hover .column-picker {
    background-color: rgb(var(--color-foreground-rgb) / var(--opacity-5));
  }

  .column-options__option-input:checked ~ .column-picker {
    color: rgb(var(--color-foreground-rgb));
    background-color: rgb(var(--color-foreground-rgb) / var(--opacity-5));
  }
/* END_SNIPPET:grid-density-controls */

/* START_SNIPPET:group (INDEX:318) */
.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:319) */
.header {
    --account-offset-top: calc(
      var(--header-group-height) + (var(--header-height) * var(--transparent-header-offset-boolean))
    );

    &[data-sticky-state='active'] {
      --account-offset-top: calc(var(--header-height) - 1px);
    }
  }

  .account-button {
    /* Remove the background color from the color scheme, we want to inherit the color of the header */
    background: transparent;
  }

  .account-button__icon,
  .account-button__text {
    color: var(--color-account-icon);
    transition: color var(--header-content-transition-timing);
    -webkit-font-smoothing: antialiased;
  }

  shopify-account {
    --shopify-account-font-heading: var(--font-heading--family);
    --shopify-account-font-heading-weight: var(--font-heading--weight);
    --shopify-account-font-body: var(--font-body--family);
    --shopify-account-font-body-weight: var(--font-body--weight);
    --shopify-account-radius-base: var(--style-border-radius-popover);
    --shopify-account-radius-button: var(--style-border-radius-buttons-primary);
    --shopify-account-radius-button-small: var(--style-border-radius-buttons-primary);
    --shopify-account-radius-input: var(--style-border-radius-buttons-primary);
    --shopify-account-color-background: var(--color-background);
    --shopify-account-color-text: var(--color-foreground);
    --shopify-account-color-accent: var(--color-primary-button-background);
    --shopify-account-color-accent-text: var(--color-primary-button-text);
    --shopify-account-dialog-position-top: var(--account-offset-top);

    &:not(:defined) {
      min-width: 44px;
      height: 44px;
      display: flex;
      justify-content: center;
      align-items: center;
      /* Match the line height of the other buttons */
      line-height: normal;
    }
  }

  .account-button__fallback {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: var(--shopify-account-color-accent, #0a142f);
  }

  .account-button--text shopify-account {
    color: inherit;
  }

  .cart-drawer {
    --cart-drawer-padding: var(--padding-xl) var(--padding-xl);
    --cart-drawer-padding-desktop: var(--padding-xl) var(--padding-2xl);

    @media screen and (min-width: 750px) {
      margin-inline-end: calc(var(--gap-xs) * -1);
    }
  }

  @media screen and (min-width: 750px) {
    .cart-drawer--text {
      display: flex;
      align-items: center;
    }
  }

  .cart-drawer__dialog {
    position: fixed;
    overflow: hidden;
    border-radius: 0;
    width: 100%;
    height: 100%;
    margin: 0 0 0 auto;
    padding: 0;
    border-left: var(--style-border-drawer);
    box-shadow: var(--shadow-drawer);
    background-color: var(--color-background);

    @media screen and (min-width: 750px) {
      width: var(--sidebar-width);
      max-width: 95vw;
    }
  }

  /* Needed to ensure the drawer is full height */
  .cart-drawer__dialog:modal {
    max-height: 100dvh;
    overflow-y: hidden;
  }

  .cart-drawer__inner {
    height: 100%;
    overflow: hidden;
  }

  .cart-drawer__content {
    height: calc(100% - var(--header-height));
    display: flex;
    flex-direction: column;
    padding: 0;
    background-color: var(--color-background);
    flex-grow: 1;
    overflow-y: auto;
  }

  .cart-drawer__heading {
    display: flex;
    align-items: center;
    gap: var(--gap-xs);
    margin-bottom: 0;
  }

  .cart-drawer__close-button {
    margin-right: calc(var(--padding-sm) * -1);
    top: var(--margin-sm);

    @media screen and (max-width: 749px) {
      top: var(--margin-2xs);
    }
  }

  .cart-drawer--empty .cart-drawer__content {
    text-align: center;
    min-height: auto;
  }

  .cart-drawer--empty .cart-drawer__heading {
    margin-bottom: var(--margin-md);
  }

  .cart-drawer__items .cart-items__table-row {
    padding-bottom: var(--gap-xl);
    border-bottom: var(--style-border-width) solid var(--color-border);
    margin-bottom: var(--gap-xl);
  }

  .cart-drawer__items .cart-items__table-row:has(+ .cart-items__nested-line) {
    border-bottom: none;
    margin-bottom: 0;
  }

  .cart-drawer__items .cart-items__table-row:last-child {
    border-bottom: none;
  }

  .cart-drawer__summary {
    --cart-drawer-summary-padding: var(--padding-lg);

    position: sticky;
    bottom: 0;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--gap-xl);
    padding: var(--cart-drawer-summary-padding);
    margin-top: auto;
    background-color: var(--color-background);
    /* stylelint-disable-next-line color-named */
    mask-image: linear-gradient(to bottom, transparent, black var(--cart-drawer-summary-padding));

    @media screen and (min-width: 750px) {
      --cart-drawer-summary-padding: var(--padding-2xl);
    }
  }

  .cart-drawer__dialog[cart-summary-sticky='false'] .cart-drawer__summary {
    position: static;
    mask-image: none;
  }

  .cart-drawer__dialog[cart-summary-sticky='false'] .cart-drawer__items {
    overflow: unset;
  }

  .cart-actions summary {
    padding-inline: 0;
    padding-block: var(--padding-sm);
    line-height: 1.2;
    min-height: var(--minimum-touch-target);
  }

  .cart-drawer__summary .cart__summary-totals:not(:has(.cart__subtotal-container:empty)) {
    border-block-start: var(--style-border-width) solid var(--color-border);
    padding-block-start: var(--padding-2xl);
  }

  .cart-drawer__summary .cart-note {
    @media screen and (min-width: 750px) {
      margin-block-start: var(--margin-3xs);
    }
  }

  .cart-drawer__heading--empty {
    display: flex;
    justify-content: center;
  }

  .cart-drawer__items {
    display: flex;
    flex-direction: column;
    padding-inline: var(--cart-drawer-padding);
    overflow-y: auto;

    @media screen and (min-width: 750px) {
      padding-inline: var(--cart-drawer-padding-desktop);
    }
  }

  .cart-drawer__items .cart-items__table-row {
    padding-bottom: var(--gap-xl);
    border-bottom: var(--style-border-width) solid var(--color-border);
    margin-bottom: var(--gap-xl);
  }

  .cart-drawer__items .cart-items__table-row:last-child {
    border-bottom: none;
    padding-block-end: 0;
    margin-block-end: 0;
  }

  .cart-drawer--empty .cart-drawer__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100dvh;
    margin-top: 0;
  }

  .cart-drawer:not(:has(.cart-form)) .cart-drawer__content {
    justify-content: center;
  }

  .cart-drawer__header {
    background-color: var(--color-background);
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: var(--cart-drawer-padding);
    border-bottom: var(--style-border-width) solid none;
    position: sticky;
    top: 0;
    z-index: 1;

    @media screen and (min-width: 750px) {
      padding-inline: var(--cart-drawer-padding-desktop);
    }
  }

  .cart-drawer--empty .cart-drawer__header {
    justify-content: right;
    border-bottom: none;
    padding-bottom: 0;
  }

  .cart-drawer--empty .cart-drawer__heading {
    text-align: center;
  }

  header-actions {
    display: flex;

    @media screen and (max-width: 749px) {
      justify-self: flex-end;
    }
  }

  @media screen and (min-width: 750px) {
    .header-actions--text {
      gap: var(--gap-xl);
    }

    .header-actions__text-style {
      font-size: var(--header-actions-font-size);
      font-family: var(--header-actions-font-family);
      font-weight: var(--header-actions-font-weight);
      text-transform: var(--header-actions-text-case);
    }
  }

  #header-component[data-menu-style='drawer'] header-actions {
    justify-self: flex-end;
  }

  .header__column--right header-actions {
    margin-inline-start: calc(var(--gap-md) * -1);
  }

  .header-actions__cart-icon {
    --cart-bubble-size: 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);
  }

  @media screen and (min-width: 750px) {
    .header-actions__cart-icon--text.header-actions__cart-icon .cart-bubble {
      position: relative;
      top: 0;
    }
  }

  .cart-drawer__heading .cart-bubble {
    width: fit-content;
    border-radius: var(--style-border-radius-buttons-primary);
    aspect-ratio: auto;
    padding: var(--cart-padding);
  }

  .cart-drawer__heading .cart-bubble[data-maintain-ratio] {
    width: min(1lh, 22px);
    height: min(1lh, 22px);
  }

  .header-actions__cart-icon .cart-bubble__text,
  .cart-drawer__heading .cart-bubble__text {
    font-family: var(--font-paragraph--family);
    font-weight: var(--font-paragraph--weight);
  }

  .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 .cart-bubble__background {
    background-color: rgb(var(--color-foreground-rgb) / var(--opacity-10-25));
  }

  .cart-drawer__heading .cart-bubble__text {
    color: var(--color-foreground);
    font-size: clamp(var(--font-size--3xs), 0.75em, var(--font-size--xs));
  }

  .cart-bubble.cart-bubble--animating .cart-bubble__background {
    animation: grow var(--animation-speed) var(--animation-easing);
  }

  .cart-bubble--animating .cart-bubble__text {
    --start-y: -1em;
    --start-opacity: 1;
    /* Set initial transform state before animation starts */
    transform: translate(0, var(--start-y, -1em));
    opacity: var(--start-opacity, 1);
    animation: move-and-fade var(--animation-speed) var(--animation-easing);
  }

  cart-icon:has(.cart-bubble__text-count:empty) {
    --cart-bubble-size: 10px;
    --cart-bubble-top: 9px;
    --cart-bubble-right: 9px;

    .svg-wrapper {
      --cart-bubble-top: 4px;
      --cart-bubble-right: 4px;
    }
  }

  @media screen and (min-width: 750px) {
    cart-icon.header-actions__cart-icon--text:has(.cart-bubble__text-count:empty) {
      --cart-bubble-right: 2.5px;
    }
  }

  @media screen and (prefers-reduced-motion: no-preference) {
    html:active-view-transition-type(empty-cart-drawer) {
      .cart-drawer__close-button {
        view-transition-name: cart-drawer-close-button;
      }
    }
  }

  :active-view-transition {
    .cart-drawer__header,
    .cart-drawer__content {
      background: transparent;
    }
  }

  ::view-transition-old(cart-drawer-content) {
    transform-origin: 50% 33%;
    animation: cart-contents-old var(--spring-d280-b0-duration) var(--spring-d280-b0-easing) forwards;
  }

  ::view-transition-new(cart-drawer-content) {
    transform-origin: top center;
    animation: cart-contents-new var(--spring-d280-b0-duration) var(--spring-d280-b0-easing) forwards;
  }

  @keyframes cart-contents-old {
    to {
      scale: 0.92;
      opacity: 0;
    }
  }

  @keyframes cart-contents-new {
    from {
      scale: 1.05;
      translate: 0 128px;
      filter: blur(1px);
      opacity: 0;
    }
  }
  .header-actions__text {
    display: flex;
    align-items: center;
  }

  @media screen and (min-width: 750px) {
    .header-actions__cart-icon--text {
      display: flex;
      align-items: center;
      gap: var(--gap-xs);
    }

    .header__column--right .header-actions--text {
      margin-inline-start: 0;
    }
  }

  /* ============================================================
     Ergovanta header currency / country selector (compact).
     Sits in the header utility row (first action, before the
     account + cart icons), quiet/on-brand for the navy-on-white
     header: navy Inter trigger, hairline border, small caret that
     rotates when the dropdown is open. Reuses Horizon's
     dropdown-localization-component + localization-form (the same
     working mechanism as the footer selector). Desktop-visible;
     hidden under 750px where the footer selector still covers
     mobile. Only rendered when Markets expose more than one
     country. Reversible: delete the markup + this block to revert.
     ============================================================ */
  .eg-header-localization {
    position: relative;
    display: inline-flex;
    align-items: center;
    background-color: transparent;
  }

  @media screen and (max-width: 749px) {
    .eg-header-localization {
      display: none;
    }
  }

  .eg-header-localization__button,
  .eg-header-localization__button:hover {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    min-height: auto;
    padding: 6px 8px;
    font: 500 0.8125rem/1.2 var(--font-body--family);
    letter-spacing: 0.01em;
    color: var(--color-foreground);
    background-color: transparent;
    border: 1px solid rgb(var(--color-foreground-rgb) / 0.22);
    border-radius: var(--style-border-radius-buttons-primary, 4px);
    box-shadow: none;
    cursor: pointer;
    transition: border-color var(--animation-speed) var(--animation-easing), color var(--animation-speed) var(--animation-easing);
  }

  .eg-header-localization__button:is(:hover, :focus-visible) {
    color: #273755;
    border-color: rgb(var(--color-foreground-rgb) / 0.45);
  }

  .eg-header-localization__symbol {
    opacity: 0.65;
  }

  .eg-header-localization__button .svg-wrapper.icon-caret {
    width: var(--icon-size-xs);
    height: var(--icon-size-xs);
    display: inline-flex;
    align-items: center;
    transition: transform var(--animation-speed) var(--animation-easing);
  }

  .eg-header-localization__button[aria-expanded='true'] .icon-caret svg {
    transform: rotate(180deg);
  }

  /* The dropdown panel (country / currency list), anchored to the
     trigger and opening downward + right-aligned so it stays inside
     the viewport at the right edge of the header.
     Ergovanta fix (2026-06-12): the ~237-entry list was overflowing
     this panel (overflow defaulted to visible while max-height was
     capped at 22rem), so the long list read as cut off. The panel
     now scrolls its own content (overflow-y: auto) with a sensible
     cap (min(60vh, 420px)), a wider min-width so full names like
     "United States (USD $)" fit, and a thin on-brand scrollbar.
     Ergovanta fix (2026-06-14): widened to ~320-360px so most
     "Country Name (CUR symbol)" labels fit on one line, and the
     open/close reveal now uses opacity + transform + visibility
     (no display-transition / allow-discrete, which rendered glitchy)
     for a clean, reliable fade-and-slide. */
  .eg-header-localization .localization-wrapper {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: auto;
    z-index: var(--layer-raised, 10);
    display: flex;
    flex-direction: column;
    min-width: 320px;
    max-width: min(92vw, 360px);
    max-height: min(60vh, 420px);
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-width: thin;
    scrollbar-color: rgb(var(--color-foreground-rgb) / 0.35) transparent;
    border-radius: var(--style-border-radius-popover);
    box-shadow: var(--shadow-popover);
    border: var(--style-border-popover);
    background-color: var(--color-background);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0s linear 0.18s;
  }

  .eg-header-localization .localization-wrapper::-webkit-scrollbar {
    width: 8px;
  }

  .eg-header-localization .localization-wrapper::-webkit-scrollbar-thumb {
    background-color: rgb(var(--color-foreground-rgb) / 0.35);
    border-radius: 8px;
  }

  .eg-header-localization .localization-wrapper::-webkit-scrollbar-track {
    background-color: transparent;
  }

  .eg-header-localization .localization-wrapper:not([hidden]) {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: opacity 0.18s ease, transform 0.18s ease;
  }

  .eg-header-localization .localization-form__list-item {
    margin-inline: 8px;
  }
/* END_SNIPPET:header-actions */

/* START_SNIPPET:header-drawer (INDEX:320) */
.header__icon--menu {
    position: initial;
  }

  .menu-drawer-container .header__icon--summary {
    color: var(--color-foreground);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: var(--padding-lg);
  }

  .header__icon--summary .header-drawer-icon {
    margin: auto;
    width: var(--icon-size-xs);
    height: var(--icon-size-xs);
  }

  .menu-drawer__featured-content {
    z-index: var(--layer-base);
    container-type: inline-size;
  }

  .menu-drawer__featured-content--childlist {
    z-index: var(--layer-flat);
  }

  .menu-drawer__featured-content-list {
    display: flex;
    gap: 1em;
    overflow-x: auto;
    padding-block-end: var(--padding-lg);
  }

  .menu-drawer__featured-content-list-item {
    flex: 0 0 auto;
  }

  .menu-drawer__featured-content-list-item--product {
    width: 35cqi;
  }

  .menu-drawer__featured-content-list-item--collection img.resource-card__image {
    width: 80cqi;
  }

  .menu-drawer__featured-content-list-item:first-child {
    margin-inline-start: var(--margin-xl);
  }

  .menu-drawer__featured-content-list-item:last-child {
    margin-inline-end: var(--margin-xl);
  }

  .menu-drawer__navigation {
    padding: 0;

    @media screen and (min-width: 750px) {
      margin-top: var(--drawer-header-desktop-top);
    }
  }

  details:not(.menu-open) .header__icon--menu .header-drawer-icon--close {
    display: none;
  }

  details.menu-open .header__icon--menu .header-drawer-icon--close {
    @media screen and (min-width: 750px) {
      display: none;
    }
  }

  details.menu-open .header__icon--menu .header-drawer-icon--open {
    display: none;

    @media screen and (min-width: 750px) {
      display: flex;
    }
  }

  .menu-drawer {
    position: fixed;
    transform: translateX(-100%);
    visibility: hidden;
    height: var(--drawer-height);
    width: var(--drawer-width);
    max-width: var(--drawer-max-width);
    z-index: var(--layer-menu-drawer);
    left: 0;
    top: 0;
    padding: 0;
    background-color: var(--color-background);
    overflow: auto;
    display: flex;
    border-right: var(--style-border-drawer);
    box-shadow: var(--shadow-drawer);
    flex-direction: column;

    @media screen and (min-width: 750px) {
      width: 25rem;
    }
  }

  /* When opening a submenu we don't want the first-level menu to be scrollable, so we reset the overflow  */
  .menu-drawer.menu-drawer--has-submenu-opened {
    overflow: initial;
  }

  .menu-drawer__backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100dvh;
    backdrop-filter: brightness(0.75);
    z-index: var(--layer-heightened);
    opacity: 0;
    transition: opacity var(--drawer-animation-speed) ease;

    .menu-open & {
      opacity: 1;
    }
  }

  .menu-drawer,
  details[open] > .menu-drawer__submenu {
    transition: transform var(--drawer-animation-speed) ease, visibility var(--drawer-animation-speed) ease,
      opacity var(--drawer-animation-speed) ease;
  }

  .menu-open > .menu-drawer,
  .menu-open > .menu-drawer__submenu:not(.menu-drawer__menu--childlist) {
    transform: translateX(0);
    visibility: visible;
    opacity: 1;
    display: flex;
    flex-direction: column;
  }

  .menu-drawer__inner-container {
    position: relative;
    height: 100%;
  }

  .menu-drawer__navigation-container {
    display: grid;
    grid-template-rows: 1fr auto;
    align-content: space-between;
    overflow-y: auto;
    height: 100%;
  }

  .menu-drawer__inner-submenu {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow-y: auto;

    @media screen and (min-width: 750px) {
      margin-top: var(--drawer-header-desktop-top);
    }
  }

  .menu-drawer__nav-buttons {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .menu-drawer__menu {
    --menu-drawer-inline-padding: calc(var(--padding-sm) + 7px);

    list-style: none;
    padding-inline: var(--drawer-padding);
    margin-inline: 0;
    margin-block-start: 0;
  }

  .menu-drawer__menu--grid {
    display: grid;
    width: 100%;
    grid-template-columns: 1fr 1fr;
    gap: var(--padding-sm);
    padding-inline-end: var(--menu-drawer-inline-padding);
    padding-block-start: var(--padding-xs);
  }

  .menu-drawer__menu--childlist:not(.menu-drawer__menu--grid) {
    flex-grow: 1;
  }

  .menu-drawer__menu.has-submenu,
  .menu-drawer__menu--childlist:not(:has(.menu-drawer__animated-element)) {
    margin-block-end: var(--margin-xs);

    @media screen and (min-width: 750px) {
      margin-block-end: 2.5rem;
    }
  }

  .menu-drawer__list-item--divider {
    border-block-end: 1px solid var(--color-border);
  }

  .menu-drawer__list-item--deep:not(.menu-drawer__list-item--divider) .menu-drawer__menu {
    margin-block-start: -0.3rem;
  }

  .menu-drawer__list-item--flat.menu-drawer__list-item--divider .menu-drawer__menu {
    margin-block-start: -0.4rem;
  }

  .menu-drawer__menu-container--divider {
    border-block-end: 1px solid var(--color-border);
  }

  .menu-drawer__menu > .menu-drawer__list-item {
    display: flex;
    min-height: calc(2 * var(--padding-lg) + var(--icon-size-xs));
  }

  .menu-drawer__list-item--deep .menu-drawer__list-item,
  .menu-drawer__list-item--flat .menu-drawer__list-item {
    min-height: auto;
  }

  .menu-drawer__menu .menu-drawer__list-item--flat {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-block-end: var(--margin-md);
  }

  .menu-drawer__menu--childlist .menu-drawer__list-item--flat {
    margin-block-end: var(--margin-sm);

    @media screen and (min-width: 750px) {
      margin-block-end: var(--margin-lg);
    }
  }

  .menu-drawer__menu--childlist .menu-drawer__list-item--flat.menu-drawer__list-item--divider {
    margin-block-end: 0;
  }

  .menu-drawer__list-item--flat .menu-drawer__menu--childlist {
    width: 100%;
    padding-inline: 0;
  }

  .menu-drawer-container[open] .menu-drawer__animated-element {
    animation: menu-drawer-nav-open var(--drawer-animation-speed) ease-in-out;
    animation-delay: calc(var(--drawer-animation-speed) + (var(--menu-drawer-animation-index) - 1) * 0.1s);
    animation-fill-mode: backwards;
  }

  .menu-drawer__menu accordion-custom .details-content--no-animation {
    animation: none;
    visibility: visible;
    opacity: 1;
    transform: translateX(0);
    transition: none;
  }

  .menu-drawer__menu details,
  .menu-drawer__menu-item,
  .menu-drawer__menu accordion-custom {
    width: 100%;
  }

  .menu-drawer__list-item--divider .menu-drawer__menu-item:not(.menu-drawer__menu-item--child) {
    min-height: calc(2 * var(--padding-lg) + var(--icon-size-xs));
  }

  .menu-drawer__menu-item--mainlist {
    min-height: calc(2 * var(--padding-lg) + var(--icon-size-xs));
    font-family: var(--menu-top-level-font-family);
    font-style: var(--menu-top-level-font-style);
    font-weight: var(--menu-top-level-font-weight);
    font-size: var(--menu-top-level-font-size);
    line-height: var(--menu-top-level-font-line-height);
    text-transform: var(--menu-top-level-font-case);
    color: var(--menu-top-level-font-color);
    justify-content: space-between;

    &:hover {
      color: var(--menu-top-level-font-color);
    }
  }

  .menu-drawer__menu-item--parent {
    font-family: var(--menu-parent-font-family);
    font-style: var(--menu-parent-font-style);
    font-weight: var(--menu-parent-font-weight);
    font-size: var(--menu-parent-font-size);
    line-height: var(--menu-parent-font-line-height);
    text-transform: var(--menu-parent-font-case);
    color: var(--menu-parent-font-color);

    &:hover {
      color: var(--menu-parent-font-color);
    }
  }

  .menu-drawer__menu-item--child {
    font-family: var(--menu-child-font-family);
    font-style: var(--menu-child-font-style);
    font-weight: var(--menu-child-font-weight);
    font-size: var(--menu-child-font-size);
    line-height: var(--menu-child-font-line-height);
    text-transform: var(--menu-child-font-case);
    color: var(--menu-child-font-color);

    &:hover {
      color: var(--menu-child-font-color);
    }
  }

  .menu-drawer__menu--childlist summary.menu-drawer__menu-item {
    display: flex;
    width: 100%;
    padding-inline-end: 0;
  }

  .menu-drawer__list-item--deep .menu-drawer__menu,
  .menu-drawer__menu--grandchildlist {
    padding-inline: 0;
  }

  .menu-drawer__list-item--deep .menu-drawer__menu {
    padding-block-end: 0.5rem;
  }

  .menu-drawer__list-item--deep.menu-drawer__list-item--divider .menu-drawer__menu {
    padding-block-end: 0.3rem;
  }

  .menu-drawer__list-item--flat.menu-drawer__list-item--divider .menu-drawer__menu--grandchildlist {
    padding-block-end: 0.5rem;
  }

  .menu-drawer__menu-item {
    display: flex;
    padding: var(--padding-2xs) 0;
    position: relative;
    text-decoration: none;
    justify-content: space-between;
    align-items: center;
  }

  .menu-drawer__menu-item:has(> .menu-drawer__link-image) {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    row-gap: var(--padding-3xs);
    padding: 0;
  }

  .menu-drawer__link-image {
    width: 100%;
    position: relative;
    aspect-ratio: 16 / 9;
    object-fit: cover;
  }

  /* Fix alignment for collection image mode links without images in drawer */

  /* Target menu items in grids that have images */
  .menu-drawer__menu--grid:has(.menu-drawer__link-image) .menu-drawer__menu-item:not(:has(> .menu-drawer__link-image)) {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    row-gap: var(--padding-3xs);
    padding: 0;
  }

  .menu-drawer__menu--grid:has(.menu-drawer__link-image)
    .menu-drawer__menu-item:not(:has(> .menu-drawer__link-image))::before {
    content: '';
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    background-color: var(--color-foreground-muted);
    opacity: 0.1;
    border-radius: var(--menu-image-border-radius);
  }

  .menu-drawer__close-button {
    position: relative;
    right: auto;
    top: auto;
    width: fit-content;
    height: fit-content;
    color: inherit;
    padding: var(--padding-lg);
  }

  .menu-drawer__back-button {
    display: flex;
    width: 100%;
    padding: var(--padding-md) var(--padding-xl);
    border: none;
    align-items: center;
    color: var(--color-foreground);
    background-color: transparent;
    text-align: left;
    text-decoration: none;
    white-space: nowrap;
    overflow-x: hidden;
    line-height: 1.2;
    box-shadow: none;
  }

  .menu-drawer__menu-item-text {
    overflow: hidden;
    text-overflow: ellipsis;
  }

  /** Styles when the country selector is hidden */
  .menu-drawer .language-selector:not(.menu-drawer__submenu *) {
    width: fit-content;
    padding-inline-start: 0;

    .localization-form__select {
      text-align: left;
    }
  }

  .menu-drawer__menu-item > .svg-wrapper {
    width: fit-content;
    height: fit-content;
    margin: 0;
    padding-block: var(--padding-lg);
    padding-inline-start: var(--padding-xl);
    flex-shrink: 0;
  }

  .menu-drawer__list-item--divider .menu-drawer__menu-item > .svg-wrapper {
    padding-block: var(--padding-md);
  }

  .menu-drawer svg {
    width: var(--icon-size-xs);
    height: var(--icon-size-xs);
  }

  .menu-drawer__submenu {
    position: absolute;
    width: 100%;
    top: 0;
    height: 100dvh;
    left: 0;
    background-color: var(--color-background);
    z-index: var(--layer-flat);
    transform: translateX(-5%);
    visibility: hidden;
    overflow-y: auto;
    opacity: 0;
  }

  .menu-drawer__back-button > .svg-wrapper {
    margin-right: var(--padding-md);
    width: var(--icon-size-xs);
    height: var(--icon-size-xs);
  }

  .menu-drawer__utility-links {
    display: flex;
    flex-direction: column;
    padding: 0;
    margin-block: auto var(--padding-sm);
    margin-inline-start: var(--padding-xl);
    background-color: rgb(var(--color-foreground) 0.03);
  }

  .menu-drawer__account {
    display: inline-flex;
    align-items: center;
    gap: var(--gap-xs);
    text-decoration: none;
    height: 44px;
    font-size: 1.4rem;
    color: rgb(var(--color-foreground));
  }

  .menu-drawer__account svg {
    height: var(--icon-size-sm);
    width: var(--icon-size-sm);
  }

  .menu-drawer__account shop-user-avatar {
    --shop-avatar-size: 2.4rem;

    margin-right: 0.55rem;
    margin-left: -0.45rem;
  }

  .menu-drawer__link-image,
  .menu-drawer__featured-product-image,
  .menu-drawer__featured-collection-image,
  .menu-drawer__featured-collection-link::before {
    border-radius: var(--menu-image-border-radius);
  }

  @keyframes menu-drawer-nav-open {
    0% {
      visibility: hidden;
      opacity: 0;
      transform: translateX(-0.5rem);
    }

    100% {
      visibility: visible;
      opacity: 1;
      transform: translateX(0);
    }
  }

  @keyframes menu-drawer-subnav-open {
    0% {
      visibility: visible;
      opacity: 1;
      transform: translateX(0);
    }

    100% {
      visibility: hidden;
      opacity: 0;
      transform: translateX(-1rem);
    }
  }

  /* Drawer Localization Styles */
  .drawer-localization__button .icon-flag {
    width: var(--menu-localization-font-size, var(--icon-size-sm));
    height: var(--menu-localization-font-size, var(--icon-size-sm));
    clip-path: circle(50%); /* stylelint-disable-line */
    background-position: center;
    background-size: cover;
    margin-inline-end: 4px;
    position: relative;
  }

  .drawer-localization__button .icon-flag::after {
    content: '';
    position: absolute;
    inset: 0;
    box-shadow: inset 0 0 var(--size-shadow) var(--color-shadow);
    border-radius: 50%;
  }

  .drawer-localization .country-filter {
    padding-block: 8px;
  }

  .drawer-localization .drawer-localization__button {
    display: flex;
    padding: 0;
    position: relative;
    text-decoration: none;
    height: 44px;

    &:hover {
      color: var(--color-foreground);
    }
  }

  .drawer-localization .drawer-localization__button .icon-caret {
    width: fit-content;
    height: fit-content;
    margin: 0;
    padding: var(--padding-xl) var(--padding-xl) var(--padding-xl) var(--padding-xs);
  }

  .menu-drawer__localization:not(drawer-localization-component) .language-selector {
    font-family: var(--menu-localization-font);
    font-size: var(--menu-localization-font-size);
  }

  .menu-drawer__localization .language-selector.h5 {
    padding-inline-start: 0;
  }

  .drawer-localization {
    display: contents;
    color: var(--color-foreground);
  }

  .drawer-localization localization-form-component {
    position: relative;
    height: 100%;
  }

  .drawer-localization .mobile-localization,
  .drawer-localization .drawer-localization__button--label {
    display: flex;
    gap: var(--gap-xs);
    margin-block: 0;
    align-items: center;
  }

  .drawer-localization__button--label.h6 {
    font-family: var(--menu-localization-font);
  }

  .drawer-localization img {
    width: var(--icon-size-sm);
  }

  .drawer-localization .localization-button__icon,
  .drawer-localization .localization-button__icon svg {
    width: var(--icon-size-xs);
    height: var(--icon-size-xs);
  }

  .drawer-localization summary.is-disabled {
    pointer-events: none;
  }

  .drawer-localization .localization-wrapper {
    width: 100%;
  }

  .drawer-localization .localization-form {
    display: flex;
    flex-direction: column;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }

  .drawer-localization .localization-form > * {
    padding-inline: var(--padding-xl);
  }

  .drawer-localization .language-selector .svg-wrapper.icon-caret {
    transform: translateY(-50%) rotate(0deg);
  }

  .drawer-localization .language-selector .svg-wrapper.icon-caret svg {
    transform: none;
  }
/* END_SNIPPET:header-drawer */

/* START_SNIPPET:jumbo-text (INDEX:325) */
.jumbo-text__container {
    width: 100%;
  }

  footer .jumbo-text__container {
    pointer-events: none;
  }

  jumbo-text {
    display: block;
    font-family: var(--font-family, inherit);
    font-style: var(--font-style, normal);
    color: var(--color, inherit);
    font-weight: var(--font-weight, inherit);
    letter-spacing: var(--letter-spacing, -0.02em);
    line-height: var(--line-height, 1);
    opacity: 0;
    visibility: hidden;
    text-align: var(--text-align);
    text-box: var(--text-trim, trim-end cap text);
    text-transform: var(--text-transform, none);
    transition: opacity 0.3s ease;
    width: 100%;
    margin-left: var(--margin-left-nudge, 0);
    margin-right: var(--margin-right-nudge, 0);
    overflow: visible;
  }

  jumbo-text.ready {
    opacity: 1;
    visibility: visible;
  }

  jumbo-text[data-cap-text='true'] {
    /* stylelint-disable-next-line plugin/no-unsupported-browser-features */
    text-box-edge: cap text;
  }

  .jumbo-text-line {
    display: inline-flex;
    white-space: pre;
  }

  @media (prefers-reduced-motion: no-preference) {
    /* Blur effect */
    .ready[data-text-effect='blur'] {
      filter: blur(20px);
      opacity: 0.5;
      scale: 1.05;
      transition: filter 1.6s var(--animation-timing-fade-in), opacity 1.3s var(--animation-timing-fade-in),
        scale 1.6s var(--animation-timing-fade-in);
    }

    .jumbo-text-visible[data-text-effect='blur'] {
      filter: blur(0);
      opacity: 1;
      scale: 1;
    }

    /* Reveal effect */
    .ready[data-text-effect='reveal'] {
      overflow: hidden;
    }

    .ready[data-text-effect='reveal'] .jumbo-text-line {
      transform: translateY(100%);
    }

    .jumbo-text-visible[data-text-effect='reveal'] .jumbo-text-line {
      transition: transform 0.5s var(--animation-timing-fade-in) calc(var(--line-index) * 0.05s);
      transform: translateY(0);
    }

    .jumbo-text-visible[data-text-effect='reveal'] {
      overflow: visible;
      transition: overflow 0s linear 0.75s;
    }
  }
/* END_SNIPPET:jumbo-text */

/* START_SNIPPET:list-filter (INDEX:328) */
.facets input:checked + label {
    font-weight: 500;
  }

  .facets .checkbox .icon-checkmark {
    transition: border-color 0.2s ease, background-color 0.2s ease;
  }

  .facets .checkbox:not(.checkbox--disabled):hover .icon-checkmark {
    border-color: rgb(var(--color-foreground-rgb) / var(--opacity-40-60));
    background-color: rgb(var(--color-foreground-rgb) / var(--opacity-5));
  }

  /* Hover state for checked checkboxes - targeting via adjacent sibling */
  .facets .checkbox:not(.checkbox--disabled):hover .checkbox__input:checked + .checkbox__label .icon-checkmark {
    background-color: rgb(var(--color-foreground-rgb) / var(--opacity-85));
  }

  .facets .checkbox:not(.checkbox--disabled):hover .checkbox__label-text {
    color: rgb(var(--color-foreground-rgb) / var(--opacity-90));
  }

  .facets .checkbox .checkbox__label-text {
    transition: color 0.2s ease, font-weight 0.2s ease;
  }

  /* Pill style */
  .facets__pill-label {
    --pill-label-padding-inline: var(--padding-xs);
    --pill-label-border-radius: var(--style-border-radius-md);
    --pill-label-border-width: var(--variant-picker-button-border-width);
    --pill-label-height: var(--button-size-md);
    --pill-label-focus-outline-color: var(--color-foreground);
    --pill-label-color: var(--color-foreground);
    --pill-label-color-rgb: var(--color-foreground-rgb);
    --pill-label-background-color: var(--color-background);
    --pill-label-background-color-rgb: var(--color-background-rgb);
    --pill-label-border-opacity: var(--facets-low-opacity);

    display: inline-flex;
    position: relative;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 0 0 var(--pill-label-border-width) rgb(var(--pill-label-color-rgb) / var(--opacity-10-25));
    border-radius: var(--pill-label-border-radius);
    height: var(--pill-label-height);
    width: 100%;
    padding-inline: var(--pill-label-padding-inline);
    color: rgb(var(--pill-label-color-rgb));
    background-color: rgb(var(--pill-label-background-color-rgb));
    cursor: pointer;
    transition: color var(--animation-speed) var(--animation-easing),
      background-color var(--animation-speed) var(--animation-easing);
    outline-color: var(--pill-label-focus-outline-color);

    &:hover {
      --pill-label-border-opacity: 100%;
    }
  }

  .facets__pill-input {
    &:checked + .facets__pill-label {
      --pill-label-color-rgb: var(--color-background-rgb);
      --pill-label-background-color-rgb: var(--color-foreground-rgb);
      --pill-label-border-opacity: 0;

      font-weight: 500;
    }

    &:disabled + .facets__pill-label {
      opacity: var(--disabled-opacity);
      cursor: not-allowed;

      &:hover {
        --pill-label-border-opacity: var(--facets-low-opacity);
      }
    }
  }

  .facets__status-wrapper {
    display: flex;
    align-items: center;
  }

  .facets--drawer .facets__status-wrapper {
    @media screen and (max-width: 749px) {
      gap: var(--gap-3xs);
    }
  }

  .facets--vertical .facets__status-wrapper {
    gap: var(--gap-xs);
  }

  .facets--horizontal .facets__status-wrapper {
    gap: 0;
  }

  .facets__pill-input:disabled + .facets__pill-label svg {
    position: absolute;
    top: 0;
    left: 0;
    border-radius: var(--style-border-radius-md);
  }

  .facets__pill-label svg line {
    stroke-width: 1.5px;
    stroke: rgb(var(--color-foreground-rgb) / var(--facets-low-opacity));
  }

  .facets__pill-wrapper {
    position: relative;
  }

  .facets__pill-input {
    position: absolute;
    inset: 0;
    margin: 0;
    padding: 0;
    width: auto;
    height: auto;
    aspect-ratio: unset;
    border: none;
    border-radius: 0;
    background: transparent;
    appearance: auto;
    display: block;
    opacity: 0;
    cursor: pointer;
  }

  /* Swatches */
  .facets__status--swatches {
    display: none;
  }

  .facets__swatch-wrapper {
    display: flex;
  }

  .variant-option__swatch-wrapper {
    position: relative;
    overflow: visible;
    border-radius: var(--options-border-radius);
  }

  .variant-option--swatches-disabled {
    pointer-events: none;
    cursor: not-allowed;
  }

  .variant-option--swatches-disabled .variant-option__swatch-wrapper {
    overflow: hidden;
  }

  .facets--horizontal .facets__status--swatches {
    @media screen and (min-width: 750px) {
      display: flex;
    }
  }

  .facets--horizontal .sorting-filter .facets__status {
    @media screen and (min-width: 750px) {
      display: none;
    }
  }

  .facets__status--swatches .swatch {
    width: calc(var(--variant-picker-swatch-width) / 1.5);
    height: calc(var(--variant-picker-swatch-height) / 1.5);
  }

  .facets__status--swatches .swatch + .swatch {
    margin-left: calc(var(--variant-picker-swatch-width) / -3);
    outline: 1px solid rgb(var(--color-background-rgb));
  }

  .facets__inputs-wrapper .facets__inputs-list--images {
    display: grid;
    grid-template-columns: repeat(var(--image-columns), 125px);
    gap: var(--gap-sm);
  }

  .facets--drawer .facets__inputs-wrapper .facets__inputs-list--images {
    grid-template-columns: repeat(3, 1fr);

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

  .facets--vertical .facets__inputs-wrapper .facets__inputs-list--images {
    grid-template-columns: repeat(2, 1fr);
  }

  .facets--drawer .facets__inputs-list--images {
    padding-top: var(--padding-xs);
  }

  .facets__image-wrapper {
    aspect-ratio: 1/1;
    width: 100%;
    padding: var(--padding-xs);
    position: relative;
    overflow: hidden;
  }

  .facets__image-wrapper img {
    height: 100%;
    width: 100%;
    object-fit: contain;
    border-radius: calc(var(--border-radius) / 2);
  }

  .facets__image-label {
    width: 100%;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding-block-end: var(--padding-xs);
    cursor: pointer;
  }

  .facets__inputs-list-item--disabled .facets__image-label {
    cursor: not-allowed;
  }

  .facets__inputs-list-item:not(.facets__inputs-list-item--disabled) .facets__image-label:hover {
    font-weight: 500;
  }

  /* Filter-specific variant-option styles */
  .facets__inputs-list--swatches-grid .variant-option__button-label--has-swatch:hover .swatch {
    --focus-outline: var(--focus-outline-width) solid rgb(var(--color-foreground-rgb) / var(--opacity-35-55));

    outline: var(--focus-outline);
    outline-offset: var(--focus-outline-offset);
  }

  .facets__inputs-list--swatches-grid .variant-option__button-label:has(:focus-visible) .swatch {
    --focus-outline: var(--focus-outline-width) solid currentcolor;

    outline: var(--focus-outline);
    outline-offset: var(--focus-outline-offset);
  }

  .facets__inputs-list--swatches-grid .variant-option__button-label:has(:focus-visible) {
    outline: none;
  }

  .facets__inputs-list--swatches-grid .variant-option__button-label--has-swatch:hover {
    outline: none;
  }

  .facets__inputs-list--swatches-grid .variant-option__button-label--has-swatch:has(:checked) {
    --focus-outline: none;
  }

  .facets__inputs-list--swatches-grid .variant-option__button-label--has-swatch:has(:checked) .swatch {
    outline: var(--focus-outline);
    outline-offset: var(--focus-outline-offset);
  }

  .facets__inputs-list--swatches .variant-option__button-label {
    --color-variant-text: var(--color-foreground);
  }

  .facets__inputs-list--swatches {
    --variant-picker-swatch-width: 32px;
    --variant-picker-swatch-height: 32px;

    @media screen and (min-width: 750px) {
      --variant-picker-swatch-width: 26px;
      --variant-picker-swatch-height: 26px;
    }
  }

  .facets--vertical .facets__inputs-wrapper .facets__inputs-list--swatches-grid {
    gap: var(--gap-sm);
  }

  .facets--vertical .facets__inputs-list--swatches .facets__inputs-list-item {
    display: flex;
  }

  .facets__inputs-wrapper .facets__inputs-list--swatches-grid {
    --columns: 2;

    display: grid;
    grid-template-columns: repeat(var(--columns), 1fr);
  }

  .facets__inputs-wrapper .facets__inputs-list--swatches-grid .variant-option--swatches {
    cursor: pointer;
    overflow: visible;
  }

  .facets__inputs-list-item--disabled .variant-option--swatches {
    cursor: not-allowed;
  }

  .facets__inputs-wrapper .facets__inputs-list--swatches-grid label {
    cursor: pointer;
    word-break: break-word;
    white-space: normal;
  }

  .facets__inputs-list--swatches-grid .facets__inputs-list-item--disabled label {
    cursor: not-allowed;
  }

  .facets__inputs-list-item--disabled .variant-option__button-label {
    cursor: not-allowed;
  }

  .facets__inputs-wrapper
    .facets__inputs-list--swatches-grid
    .variant-option__button-label--has-swatch:has(input[type='checkbox']) {
    align-items: center;
    overflow: visible;
    justify-content: flex-start;
    display: flex;
    width: 100%;
    flex-basis: unset;
    gap: var(--gap-sm);
  }

  .facets__inputs-wrapper .facets__inputs-list--swatches-grid .variant-option__button-label:has(:checked) {
    color: rgb(var(--color-foreground-rgb));
    background-color: rgb(var(--color-background-rgb));
    font-weight: 500;
    transition: font-weight 0.2s ease;
  }

  .facets .variant-option--swatches {
    --options-border-radius: var(--variant-picker-swatch-radius);

    width: auto;
  }

  .facets__inputs-list-item:not(.facets__inputs-list-item--disabled) .variant-option__button-label:hover {
    font-weight: 500;
  }

  /* Variant option images (filters) */
  .variant-option--images {
    --image-facet-border-width: var(--variant-picker-button-border-width);
    --image-facet-border-opacity: var(--facets-low-opacity);
    --image-facet-border-radius: var(--style-border-radius-xs);

    position: relative;
    border-radius: var(--image-facet-border-radius);
    box-shadow: inset 0 0 0 var(--image-facet-border-width)
      rgb(var(--color-foreground-rgb) / var(--image-facet-border-opacity));

    &:hover {
      --image-facet-border-opacity: 100%;
    }

    &:has(input:checked) {
      font-weight: 500;
      transition: font-weight 0.2s ease;
    }

    &:has(input:checked):hover {
      --image-facet-border-width: calc(var(--variant-picker-button-border-width) + 0.5px);
    }

    &:has(input:focus-visible) {
      outline: var(--focus-outline-width) solid currentcolor;
      outline-offset: var(--focus-outline-offset);
    }
  }

  .variant-option--images input {
    /* remove the checkbox from the page flow */
    position: absolute;

    /* set the dimensions to match those of the label */
    inset: 0;

    /* hide it */
    opacity: 0;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    aspect-ratio: unset;
    border: none;
    border-radius: 0;
    background: transparent;
    appearance: auto;
    display: block;
    cursor: pointer;
  }

  .facets__inputs-list-item--disabled .variant-option--images {
    --image-facet-border-opacity: 0;

    opacity: var(--disabled-opacity);
    cursor: not-allowed;

    &:hover {
      --image-facet-border-opacity: 0;
    }

    img {
      opacity: var(--disabled-opacity);
    }

    input,
    label,
    .facets__image-label {
      cursor: not-allowed;
    }

    .facets__image-wrapper {
      border: var(--style-border-width) solid rgb(var(--color-foreground-rgb) / var(--opacity-30));
      border-radius: var(--image-facet-border-radius);
    }
  }

  /* Position disabled-svg */
  .variant-option--images svg {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    stroke-width: var(--border-width);
    stroke: rgb(var(--color-foreground-rgb) / var(--opacity-5));
  }

  /* Position label text and handle overflow */
  .facets__inputs-list-item,
  .variant-option--images {
    min-width: 0;
  }

  /* Safari < 16.4 outline border-radius workaround - filter-specific */
  @supports not (background-color: rgb(from red 150 g b / alpha)) {
    .facets__inputs-list--swatches-grid .variant-option__button-label--has-swatch:hover .swatch {
      outline: none;
      position: relative;
      overflow: visible;
    }

    .facets__inputs-list--swatches-grid .variant-option__button-label--has-swatch:hover .swatch::after {
      content: '';
      position: absolute;
      inset: calc(-1 * var(--focus-outline-offset));
      border: var(--focus-outline);
      border-radius: var(--focus-outline-radius, 50%);
      background-color: transparent;
      display: inherit;
    }
  }
/* END_SNIPPET:list-filter */

/* START_SNIPPET:localization-form (INDEX:329) */
/* Localization */
  localization-form-component {
    display: flex;
    width: var(--width, auto);

    @media screen and (min-width: 750px) {
      position: relative;
    }
  }

  localization-form-component[data-show-filter='false'] .country-selector-form__wrapper {
    padding-block-start: var(--padding-xs);
  }

  .localization-form {
    width: 100%;
  }

  localization-form-component .button:is(:not(.country-filter__reset-button)) {
    --button-color: var(--color-primary);
    --button-background-color: var(--language-button-background-color, var(--color-background));
    --button-border-color: var(--language-button-border-color, var(--color-border));

    text-decoration-color: transparent;
    text-decoration-thickness: 0.075em;
    text-underline-offset: 0.125em;
    transition: text-decoration-color var(--animation-speed) var(--animation-easing);
  }

  localization-form-component .button:is(:not(.country-filter__reset-button)):hover,
  .localization-form__list-item:hover,
  .localization-form__list-item:focus {
    --button-color: var(--color-primary-hover);

    background-color: rgb(var(--color-primary-hover-rgb) / var(--opacity-8));
  }

  .localization-form__list-item[aria-current='true'] {
    --button-color: var(--color-primary-active);

    background-color: rgb(var(--color-primary-hover-rgb) / var(--opacity-10));
  }

  .localization-form__list-item-disabled {
    pointer-events: none;
  }

  .localization-form__list-item:focus-visible {
    outline: none;
  }

  localization-form-component .localization-selector {
    display: flex;
    align-items: center;
    gap: var(--margin-2xs);
  }

  localization-form-component .country-filter__search-icon {
    left: 8px;
    right: auto;
    color: var(--color-foreground-muted);
    pointer-events: none;
  }

  .country-filter__search-icon .svg-wrapper svg {
    width: var(--icon-size-sm);
    height: var(--icon-size-sm);
  }

  .disclosure {
    width: 100%;
  }

  .localization-form__list {
    position: relative;
    width: 100%;
    padding-block: 0 var(--padding-xs);
    font-size: var(--font-size-lg);
    scroll-padding: var(--padding-xs) 0;
    overflow-y: auto;
    /* Ergovanta (2026-06-14): keep the list on a single line so every option row
       is a uniform height. Long names ellipsize cleanly (the panel is widened to
       ~320-360px in header-actions / footer-utilities so most fit), instead of
       wrapping to two lines and making rows uneven. */
    white-space: nowrap;

    /* Hide scrollbar which would cause extra right padding in Safari */
    scrollbar-width: none;

    &::-webkit-scrollbar {
      display: none;
    }
  }

  .localization-form__list-item:not([hidden]) {
    margin-block-end: var(--margin-3xs);
    display: flex;
    gap: var(--margin-sm);
    padding: 8px;
    border-radius: 8px;
    line-height: var(--font-line-height-md);
    align-items: center;
    /* Ergovanta (2026-06-14): fixed min-height so every option row is identical;
       the flag + label are vertically centered and nothing wraps to two lines. */
    min-height: 40px;
    text-align: start;
    cursor: pointer;
    transition: background-color var(--animation-speed) var(--animation-easing);

    .country {
      flex: 1;
      min-width: 0;
      color: var(--color-foreground);
      /* Ergovanta (2026-06-14): single line; ellipsize the rare very long name
         instead of wrapping, so the row height never grows. */
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    &:hover {
      background-color: rgb(var(--color-foreground-rgb) / var(--opacity-8));
    }

    &[aria-current='true'] {
      .country {
        font-weight: 500;
      }
    }
  }

  /* Ergovanta: country flag image (flagcdn) shown left of the country name.
     Flag IMAGES (not emoji) because flag emoji do not render on Windows.
     The list item is already display:flex/align-items:center, so the flag
     sits inline with the checkmark and name. */
  .localization-form__flag {
    width: 24px;
    height: 18px;
    object-fit: cover;
    border-radius: 2px;
    border: 1px solid rgb(39 55 85 / 0.12);
    /* Ergovanta (2026-06-14): neutral placeholder so an unloaded lazy flag
       reads as a tidy box, not empty space, before flagcdn responds. */
    background-color: #F5F5F5;
    flex-shrink: 0;
    margin-inline-end: 10px;
    vertical-align: middle;
  }

  .localization-form__list-item#no-results-message {
    grid-template-columns: 1fr;
    text-align: center;
    color: rgb(var(--color-foreground-rgb) / var(--opacity-subdued-text));
  }

  .is-searching .localization-form__list-item .country {
    color: rgb(var(--color-foreground-rgb) / var(--opacity-80));
  }

  .localization-form__list-item .country mark {
    font-weight: 500;
    background: none;
    color: var(--color-foreground);
  }

  .country-filter {
    position: relative;
    padding: var(--padding-xs);
    border-bottom: var(--style-border-width) solid transparent;
    transition: border-color var(--animation-values);
  }

  .country-filter.is-scrolled {
    border-color: var(--color-border);
  }

  .country-selector-form__wrapper {
    overflow-y: auto;
    max-height: 100%;
    flex-grow: 1;
  }

  .language-selector {
    display: flex;
    gap: var(--gap-xs);
    padding: var(--padding-md) var(--padding-lg);
    position: relative;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }

  .language-selector__label {
    flex-shrink: 0;
    color: rgb(var(--color-foreground-rgb) / var(--opacity-subdued-text));
  }

  .localization-form__select {
    border: none;
    color: var(--color-foreground);
    appearance: none;
    background-color: var(--color-input-background);
    padding-block: var(--padding-3xs);
    padding-inline: var(--padding-xs) calc(var(--icon-size-xs) + var(--padding-xs));
    text-align: right;
    cursor: pointer;
    max-width: 40vw;
    text-overflow: ellipsis;
    field-sizing: content;

    &:focus-visible {
      outline: var(--focus-outline-width) solid currentcolor;
    }

    &:focus {
      outline: none;
    }
  }

  #header-component[transparent] localization-form-component .localization-form .localization-form__select {
    background-color: transparent;
  }

  .localization-form__select option {
    background-color: var(--color-input-background);
    color: var(--color-input-text);
  }

  .language-selector .svg-wrapper.icon-caret {
    width: var(--icon-size-xs);
    height: var(--icon-size-xs);
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
  }

  .language-selector--collapse-space {
    padding-inline-end: var(--padding-2xs);
  }

  .language-selector--collapse-space .localization-form__select {
    padding-inline-end: var(--icon-size-xs);
  }

  .language-selector--collapse-space .svg-wrapper.icon-caret {
    right: 0;
  }

  .localization-form .icon-checkmark {
    width: var(--icon-size-xs);
    height: var(--icon-size-xs);
  }

  .localization-form .svg-wrapper.icon-checkmark {
    visibility: hidden;
  }

  .localization-form__list-item[aria-current='true'] .svg-wrapper.icon-checkmark {
    visibility: visible;
  }

  .country-filter__input {
    width: 100%;
    height: 44px;
    font-size: var(--font-size-lg);
    padding: var(--padding-md) var(--padding-lg) var(--padding-md) calc(var(--margin-md) + var(--padding-xl));
    border: 1px solid var(--color-foreground);
    color: var(--color-input-text);
    background-color: var(--color-input-background);
    outline-offset: -1px;

    @media screen and (min-width: 750px) {
      height: 36px;
    }
  }

  .country-filter__input::placeholder {
    color: inherit;
  }

  .country-filter .field {
    position: relative;
  }

  .country-filter .field__label {
    font-size: var(--font-size-lg);
    left: var(--margin-2xl);
    top: var(--margin-xl);
    pointer-events: none;
    position: absolute;
  }

  .country-filter__input:focus ~ .field__label,
  .country-filter__input:not(:placeholder-shown) ~ .field__label,
  .country-filter__input:-webkit-autofill ~ .field__label {
    font-size: var(--font-size-xs);
    top: var(--margin-xs);
  }

  .country-filter .field__button:not([hidden]) {
    display: flex;
    height: fit-content;
    position: absolute;
    padding: 0;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    align-items: center;
    background-color: transparent;
    color: var(--color-input-text);
    border: 0;
  }

  input[type='search']::-webkit-search-cancel-button {
    appearance: none;
  }

  .country-selector__close-button {
    display: none;
  }
/* END_SNIPPET:localization-form */

/* START_SNIPPET:media (INDEX:330) */
.media-block {
    overflow: hidden;
    position: relative;

    @media screen and (min-width: 750px) {
      min-height: var(--media-height);
    }
  }

  .media-block__media {
    height: var(--media-height-mobile, auto);
    object-fit: var(--image-position, 'cover');
    object-position: center center;
    width: 100%;

    @media screen and (min-width: 750px) {
      height: 100%;
      position: absolute;
    }
  }

  deferred-media[class].media-block__media
    :is(.deferred-media__poster-button img, .deferred-media__poster-button ~ video) {
    object-fit: var(--video-position, 'cover');
  }

  /* This is to support corner radius on video and align the video to the center of the block */
  .media-block__placeholder {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center center;
    overflow: hidden;
    position: relative;
  }

  .media-block__media--video {
    display: flex;
    align-items: center;
    justify-content: center;

    @media screen and (max-width: 749px) {
      --media-height-mobile: auto;
    }
  }
/* END_SNIPPET:media */

/* START_SNIPPET:overlay (INDEX:335) */
.overlay {
    position: absolute;
    inset: 0;
    z-index: var(--overlay-layer);
    pointer-events: none;
    border-radius: var(--overlay-border-radius, 0);
  }

  .overlay--solid {
    background: var(--overlay-color);
  }

  .overlay--gradient {
    background: linear-gradient(var(--overlay-direction), var(--overlay-color), var(--overlay-color--end));
  }
/* END_SNIPPET:overlay */

/* START_SNIPPET:pagination-controls (INDEX:336) */
.pagination {
    --pagination-size: 36px;
    --pagination-inset: 2px;
    --pagination-radius: 6;

    display: flex;
    justify-content: center;
    padding: var(--padding-xl) var(--padding-sm);
    margin-top: var(--padding-xl);
    position: relative;
  }

  .pagination__list {
    display: flex;
    gap: 0;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
  }

  .pagination__item {
    width: var(--pagination-size);
    aspect-ratio: 1;
    display: grid;
    place-items: center;
  }

  .pagination__link {
    display: grid;
    place-items: center;
    color: var(--color-foreground);
    text-decoration: none;
    width: 100%;
    height: 100%;
    user-select: none;
    position: relative;
    outline-color: var(--color-foreground);
    -webkit-tap-highlight-color: transparent;
    font-size: var(--font-size--md);
    font-weight: var(--font-weight-normal);
    border-radius: calc(var(--pagination-radius) * 1px);
    transition: color var(--hover-transition-duration) var(--hover-transition-timing),
      opacity var(--hover-transition-duration) var(--hover-transition-timing);
  }

  .pagination__link:focus-visible {
    outline: 2px solid var(--color-foreground);
    outline-offset: 2px;
  }

  .pagination__link--current {
    color: var(--color-background);
    font-weight: var(--font-weight-medium);
    cursor: default;
  }

  .pagination__link--gap {
    cursor: default;
    pointer-events: none;
  }

  .pagination__link--arrow {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .pagination__link--disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
  }

  .pagination__link svg {
    width: 0.5rem;
    height: 0.75rem;
    flex-shrink: 0;
  }

  .pagination__item--mobile-only {
    display: none;
  }

  /* Fallback for browsers without anchor positioning support */
  @supports not (anchor-name: --pagination-active) {
    .pagination__link:not(.pagination__link--gap)::before {
      content: '';
      position: absolute;
      inset: var(--pagination-inset);
      border-radius: calc(var(--pagination-radius) * 1px);
      background: rgb(var(--color-foreground-rgb) / var(--opacity-10));
      z-index: -1;
      opacity: 0;
      transition: background var(--hover-transition-duration) var(--hover-transition-timing),
        opacity var(--hover-transition-duration) var(--hover-transition-timing);
    }

    .pagination__link[aria-current='page']::before {
      background: var(--color-foreground);
      opacity: 1;
    }

    .pagination__link:hover:not([aria-current='page'], .pagination__link--gap, .pagination__link--disabled)::before {
      opacity: 1;
    }
  }

  /* Modern approach with anchor positioning */
  @supports (anchor-name: --pagination-active) {
    .pagination__list::before {
      content: '';
      z-index: -1;
      position: absolute;
      width: calc(var(--pagination-size) - (2 * var(--pagination-inset)));
      aspect-ratio: 1;
      pointer-events: none;
      opacity: 0;
      border-radius: calc(var(--pagination-radius) * 1px);
      background: rgb(var(--color-foreground-rgb) / var(--opacity-10));
      transition: left var(--hover-transition-duration) var(--hover-transition-timing),
        top var(--hover-transition-duration) var(--hover-transition-timing);
    }

    /* Hide hover indicator on touch devices */
    @media (hover: none) and (pointer: coarse) {
      .pagination__list::before {
        content: unset;
      }
    }

    .pagination__list:has(
        .pagination__link:is(:hover, :focus-visible):not(.pagination__link--gap, .pagination__link--disabled))::before {
      opacity: 1;
    }

    /* Style current page directly */
    .pagination__link[aria-current='page']::before {
      content: '';
      position: absolute;
      inset: var(--pagination-inset);
      border-radius: calc(var(--pagination-radius) * 1px);
      background: var(--color-foreground);
      z-index: -1;
    }

    .pagination__list
      .pagination__item:has(
        .pagination__link:is(:hover, :focus-visible):not(.pagination__link--gap, .pagination__link--disabled)) {
      anchor-name: --pagination-hover;
    }

    /* Position hover indicator using anchor */
    .pagination__list::before {
      position-anchor: --pagination-hover;
      left: calc(anchor(left) + var(--pagination-inset));
      top: calc(anchor(top) + var(--pagination-inset));
    }

    .pagination__item:has(+ .pagination__item--gap) .pagination__link::after,
    .pagination__item--gap + .pagination__item .pagination__link::after {
      position: absolute;
      content: '';
      pointer-events: auto;
    }

    .pagination__item:has(+ .pagination__item--gap) .pagination__link::after {
      inset: 0 -50% 0 100%;
    }

    .pagination__item--gap + .pagination__item .pagination__link::after {
      inset: 0 100% 0 -50%;
    }
  }

  @media screen and (max-width: 749px) {
    .pagination {
      --pagination-size: 44px;
      --pagination-inset: 5px;

      padding: var(--padding-lg) var(--padding-sm);
    }

    .pagination__link {
      font-size: var(--font-size--sm);
    }

    .pagination__item--mobile-hide {
      display: none;
    }

    .pagination__item--mobile-only {
      display: grid;
    }

    .pagination__item:has(.pagination__link--gap) {
      width: calc(var(--pagination-size) * 0.5);
    }
  }
/* END_SNIPPET:pagination-controls */

/* START_SNIPPET:password-layout-styles (INDEX:337) */
.password-main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
  }

  .password-dialog {
    max-width: 100vw;
    max-height: 100svh;
    width: 100vw;
    height: 100svh;
    border: none;
    transition: opacity var(--animation-values), display var(--animation-speed) allow-discrete,
      overlay var(--animation-speed) allow-discrete;

    &::backdrop {
      display: none;
    }
  }

  .password-dialog[open] {
    opacity: 1;
    top: 0;
    left: 0;
  }

  @starting-style {
    .password-dialog[open] {
      opacity: 0;
    }
  }

  .password-dialog:not([open]) {
    opacity: 0;
  }

  @starting-style {
    .password-dialog:not([open]) {
      opacity: 1;
    }
  }

  .password-dialog__close-button {
    cursor: pointer;
  }

  .password-dialog__header {
    position: absolute;
    top: 0;
    right: 0;
    padding: var(--padding-lg);
    z-index: var(--layer-raised);
  }

  .password-dialog__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: var(--padding-lg);
    height: 100%;
    transition: transform var(--animation-values);
  }

  .password-dialog__content .email-signup__message {
    padding-block-start: var(--padding-xl);
  }

  .password-dialog[open] .password-dialog__content {
    transform: translateY(0);
  }

  @starting-style {
    .password-dialog[open] .password-dialog__content {
      transform: translateY(1em);
    }
  }

  .password-dialog:not([open]) .password-dialog__content {
    transform: translateY(1em);
  }

  @starting-style {
    .password-dialog:not([open]) .password-dialog__content {
      transform: translateY(0);
    }
  }

  .storefront-password-form {
    max-width: 400px;
    width: 100%;
  }

  .email-signup__input-group,
  .password-dialog__submit-button {
    width: 100%;

    @media screen and (min-width: 750px) {
      width: auto;
    }
  }
/* END_SNIPPET:password-layout-styles */

/* START_SNIPPET:predictive-search-styles (INDEX:341) */
/* Shared predictive search styles (used by both predictive-search and predictive-search-empty sections) */
  .predictive-search-dropdown {
    display: flex;
    flex-direction: column;
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--layer-base);
  }

  .predictive-search-results__title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: var(--font-size--body-md);
    font-weight: 500;
    margin-block: var(--margin-sm) var(--margin-xs);
    width: 100%;
    text-transform: var(--title-case);

    &:first-of-type {
      margin-block-start: 0;
    }

    @media screen and (max-width: 749px) {
      margin-block: var(--margin-lg) var(--margin-sm);
    }
  }

  .predictive-search-results__no-results {
    animation-delay: 100ms;
    transition: opacity var(--animation-speed-medium) var(--animation-timing-fade-in);
  }

  .predictive-search-results__no-results:last-child {
    margin-block: var(--margin-lg);
    text-align: center;
  }

  /* Predictive search section styles */
  input[type='search']::-webkit-search-decoration {
    -webkit-appearance: none; /* stylelint-disable-line */
  }

  .search-action .predictive-search {
    z-index: calc(var(--layer-header-menu) + 2);
  }

  .search-action .search-modal .predictive-search {
    z-index: var(--layer-window-overlay);
  }

  .header__column--right .predictive-search-form__content-wrapper {
    right: 0;
    left: unset;
  }

  .search-modal .predictive-search-form__content-wrapper {
    width: 100%;

    @media screen and (min-width: 750px) {
      height: fit-content;
    }
  }
  .dialog-modal .predictive-search-form__header-inner {
    @media screen and (min-width: 750px) {
      border: 0;
    }
  }

  .search-modal__content .predictive-search-form__content {
    max-height: var(--modal-max-height);
  }

  .predictive-search:has(.predictive-search-dropdown) .search-input {
    outline-color: transparent;
  }

  .predictive-search:has(.predictive-search-dropdown) .predictive-search-form__header-inner:focus-within {
    border-top-color: transparent;
    border-right-color: transparent;
    border-left-color: transparent;

    @media screen and (max-width: 749px) {
      border-bottom-color: transparent;
    }
  }

  .predictive-search:has(.predictive-search-dropdown[aria-expanded='true'])
    .predictive-search-form__header-inner:focus-within {
    border-top-color: transparent;
    border-right-color: transparent;
    border-left-color: transparent;
    border-radius: var(--search-border-radius);

    @media screen and (max-width: 749px) {
      border-radius: var(--style-border-radius-inputs);
    }
  }

  .dialog-modal .predictive-search-form__header {
    border: 0;
    border-radius: 0;
    background-color: var(--color-background);
    border-bottom: var(--style-border-width) solid var(--color-border);

    @media screen and (min-width: 750px) {
      padding: var(--padding-2xs) var(--padding-2xs) 0;
      border-bottom: var(--search-border-width) solid var(--color-border);
    }

    @media screen and (max-width: 749px) {
      transition: box-shadow 0.2s ease;
      box-shadow: none;
    }
  }

  .search-action .predictive-search:has(.predictive-search-dropdown) .predictive-search-form__header:focus-within {
    border-radius: var(--search-border-radius) var(--search-border-radius) 0 0;
    transition: box-shadow var(--animation-speed) var(--animation-easing);
    background-color: var(--color-background);

    @media screen and (max-width: 749px) {
      border-radius: var(--style-border-radius-inputs) var(--style-border-radius-inputs) 0 0;
    }
  }

  @media screen and (max-width: 749px) {
    .dialog-modal .predictive-search__close-modal-button {
      padding-inline-start: var(--margin-xs);
      margin-inline-start: 0;
    }
  }

  .dialog-modal[open] {
    @media screen and (max-width: 749px) {
      border-radius: 0;
    }
  }

  .dialog-modal .predictive-search-form__header:has(.predictive-search-form__header-inner:focus-within) {
    @media screen and (min-width: 750px) {
      border-bottom-color: transparent;
    }
  }

  @media screen and (max-width: 749px) {
    .dialog-modal {
      .predictive-search__reset-button-icon {
        display: none;
      }

      .predictive-search__reset-button-text {
        display: block;
      }

      .predictive-search-form__content {
        /* The parent has overflow auto, we want to prevent a double scrollbar during animation */
        max-height: 100%;
      }

      .predictive-search-form__content-wrapper {
        box-shadow: none;
      }

      .predictive-search-form__header {
        box-shadow: none;
      }

      .predictive-search-form__footer {
        padding-block: var(--padding-2xl);
      }
    }
  }

  .predictive-search-results__pill {
    font-weight: 500;
    white-space: nowrap;
    color: var(--color-foreground);
    transition: background-color var(--animation-speed-medium) var(--animation-timing-hover),
      box-shadow var(--animation-speed-medium) var(--animation-timing-bounce),
      transform var(--animation-speed-medium) var(--animation-timing-bounce);
    margin: 2px;

    &:hover {
      transform: scale(1.03);
      box-shadow: 0 2px 5px rgb(0 0 0 / var(--opacity-8));
    }
  }

  .predictive-search-results__pill mark {
    background-color: transparent;
    font-weight: 200;
    color: rgb(var(--color-foreground-rgb) / var(--opacity-80));
  }

  .predictive-search-results__pill:focus,
  .predictive-search-results__pill:hover,
  .predictive-search-results__card--query:is([aria-selected='true'], :focus-within) .predictive-search-results__pill {
    --pill-background-color: rgb(var(--color-foreground-rgb) / var(--opacity-8));

    background-color: var(--pill-background-color);
    outline: var(--border-width-sm) solid var(--color-border);
    border: var(--border-width-sm);
    text-decoration: none;
  }

  .predictive-search-results__wrapper.predictive-search-results__wrapper-queries {
    margin-bottom: var(--margin-lg);
    padding-inline: var(--padding-xl);
    gap: var(--gap-2xs);
  }

  .predictive-search-results__card {
    --title-font-size: var(--font-size--md);
    --title-margin-block: var(--margin-xs);

    flex: 0 0 auto;
    scroll-snap-align: start;
    scroll-margin-block: calc(var(--title-font-size) + var(--title-margin-block) + var(--padding-sm))
      calc(var(--padding-xl) + var(--button-padding-block) * 2);
    transition: transform var(--animation-speed-medium) var(--animation-timing-default),
      background-color var(--animation-speed-medium) var(--animation-timing-hover),
      border-color var(--animation-speed-medium) var(--animation-timing-hover);

    &:nth-last-child(3) {
      scroll-snap-align: end;
    }

    &:active {
      transform: scale(0.97);
      transition: transform 100ms var(--animation-timing-active);
    }
  }

  .recently-viewed-wrapper .predictive-search-results__card {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.25s cubic-bezier(0.4, 0, 0.2, 1), transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .recently-viewed-wrapper.removing .predictive-search-results__card {
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
  }

  .predictive-search-results__card--product,
  .recently-viewed-wrapper .predictive-search-results__card--product {
    &:active {
      transform: scale(0.97);
      transition: transform 100ms var(--animation-timing-active);
    }

    &:hover {
      background-color: var(--card-bg-hover);
      border-radius: var(--product-corner-radius);
      padding: calc(var(--padding-2xs) + 2px);
      margin: calc((var(--padding-2xs) + 2px) * -1);
    }

    &:is([aria-selected='true'].keyboard-focus, &:focus-visible, &:has(.resource-card:focus-visible)) {
      background-color: var(--card-bg-hover);
      padding: calc(var(--padding-2xs) + 1px);
      margin: calc((var(--padding-2xs) + 1px) * -1);
      outline: var(--border-width-sm) solid var(--color-border);
      border-radius: calc(var(--product-corner-radius) + 1px);
      border-color: var(--card-border-focus);
    }
  }

  .predictive-search-results__card:not(.predictive-search-results__card--product) {
    padding: var(--padding-sm);
    border: var(--border-width-sm) solid var(--color-border);
    border-radius: var(--card-corner-radius);
    width: 60cqi;
    content-visibility: visible;

    @media screen and (min-width: 750px) {
      width: 27.5cqi;
    }

    &:hover {
      border-color: var(--card-border-hover);
      background-color: var(--card-bg-hover);
    }

    &[aria-selected='true'].keyboard-focus {
      border-color: var(--card-border-hover);
      background-color: var(--card-bg-hover);
    }

    &:active {
      transform: scale(0.97);
      transition: transform var(--animation-speed-medium) var(--animation-timing-active);
    }
  }

  @keyframes search-element-scale-in {
    0% {
      transform: scale(0.95);
      opacity: 0;
    }

    40% {
      opacity: 1;
    }

    100% {
      transform: scale(1);
      opacity: 1;
    }
  }

  @keyframes search-element-scale-out {
    0% {
      transform: scale(1);
      opacity: 1;
    }

    100% {
      transform: scale(0.95);
      opacity: 0;
    }
  }

  @keyframes search-element-slide-in-top {
    from {
      margin-top: calc(var(--modal-top-margin) + var(--padding-sm));
      opacity: 0;
    }

    to {
      margin-top: var(--modal-top-margin);
      opacity: 1;
    }
  }

  @keyframes search-element-slide-out-top {
    from {
      margin-top: var(--modal-top-margin);
      opacity: 1;
    }

    to {
      margin-top: calc(var(--modal-top-margin) + var(--padding-sm));
      opacity: 0;
    }
  }

  @keyframes content-slide {
    from {
      transform: translateY(var(--slide-from, 0));
      opacity: var(--slide-opacity-from, 1);
    }

    to {
      transform: translateY(var(--slide-to, 0));
      opacity: var(--slide-opacity-to, 1);
    }
  }

  .predictive-search-results__list {
    --slide-width: 27.5%;
    --slideshow-gap: var(--gap-md);

    /* Make space for the outline to be visible */
    padding-block-start: var(--border-width-sm);
  }

  .predictive-search-results__list slideshow-arrows {
    @media screen and (max-width: 749px) {
      display: none;
    }
  }

  .predictive-search-results__no-results,
  .predictive-search-results__wrapper,
  .predictive-search-results__wrapper-products .predictive-search-results__card {
    animation: search-element-slide-up var(--animation-speed-medium) var(--animation-timing-bounce) backwards;
  }

  slideshow-slide .resource-card {
    /* stylelint-disable-next-line declaration-no-important */
    animation-delay: 0ms !important;
  }

  .predictive-search-results__list,
  .predictive-search-results__wrapper {
    animation-duration: var(--animation-speed-medium);
  }

  .predictive-search-results__wrapper-queries {
    animation-delay: 50ms;
  }

  .predictive-search-results__list:nth-of-type(2) {
    animation-delay: 150ms;
  }

  .predictive-search-results__list:nth-of-type(3) {
    animation-delay: 200ms;
  }

  .predictive-search-results__list:nth-of-type(4) {
    animation-delay: 250ms;
  }

  .predictive-search-results__list:last-child {
    margin-block-end: 0;
  }

  [data-resource-type] {
    /* stylelint-disable-next-line declaration-no-important */
    animation-delay: 0ms !important;
  }

  .predictive-search-results__no-results.removing,
  .predictive-search-results__wrapper.removing {
    animation: search-element-slide-down var(--animation-speed-medium) var(--animation-timing-fade-out) forwards;
  }

  .predictive-search-results__card.removing {
    animation: fadeOut var(--animation-speed-medium) var(--animation-timing-fade-out) forwards;
  }

  .predictive-search-results__wrapper {
    transition: opacity var(--animation-speed-medium) var(--animation-timing-fade-in);
  }

  @keyframes search-element-slide-up {
    from {
      opacity: 0;
      transform: translateY(8px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes search-element-slide-down {
    from {
      opacity: 1;
      transform: translateY(0);
    }

    to {
      opacity: 0;
      transform: translateY(8px);
    }
  }

  .predictive-search-results__card--query {
    transition: transform var(--animation-speed-medium) var(--animation-timing-bounce);
    transform-origin: center;

    &:active {
      transform: scale(0.97);
    }
  }

  /* Products list styles */
  .predictive-search-results__products {
    padding-inline: var(--padding-xl);
  }

  .recently-viewed-wrapper {
    display: grid;
    grid-template-rows: auto auto;
    max-height: 1000px;
    opacity: 1;
    overflow: visible;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: top center;
    transform: translateY(0);
  }

  .recently-viewed-wrapper.removing {
    max-height: 0;
    opacity: 0;
    transform: translateY(-10px);
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s cubic-bezier(0.4, 0, 0.2, 1),
      transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
  }

  .predictive-search-results__clear.button-unstyled {
    color: var(--color-foreground);
    opacity: 0.68;
    transition: opacity var(--animation-speed-medium) var(--animation-easing);
    padding: 0;
    margin-left: var(--margin-sm);

    &:hover {
      opacity: 1;
    }
  }

  .recently-viewed-wrapper.removing .predictive-search-results__card {
    transition: none;
    transform: none;
    opacity: 1;
  }

  .recently-viewed-wrapper > * {
    transition: opacity 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .predictive-search-results__wrapper-products .predictive-search-results__card:nth-child(1) {
    animation-delay: 30ms;
  }

  .predictive-search-results__wrapper-products .predictive-search-results__card:nth-child(2) {
    animation-delay: 60ms;
  }

  .predictive-search-results__wrapper-products .predictive-search-results__card:nth-child(3) {
    animation-delay: 90ms;
  }

  .predictive-search-results__wrapper-products .predictive-search-results__card:nth-child(4) {
    animation-delay: 120ms;
  }

  .predictive-search-results__wrapper-products .predictive-search-results__card:nth-child(n + 5) {
    animation-delay: 150ms;
  }

  .predictive-search-results__wrapper-products {
    animation-delay: 50ms;
  }

  /* Resource carousel styles */
  .predictive-search-results__wrapper {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    padding-block-end: var(--padding-sm);
    padding-inline: 0;
    scroll-snap-type: x mandatory;
    scroll-padding: 0 var(--padding-xl);
    scrollbar-width: none;
    -ms-overflow-style: none;

    &::-webkit-scrollbar {
      display: none;
    }
  }

  .predictive-search-results__wrapper slideshow-slides {
    --gutter-slide-width: var(--padding-xl);

    /* Add padding to prevent hover animations from being clipped in slideshow
       15px accommodates:
       - Scale effect (9px on each side from 1.03 scale)
       - Lift effect (4px upward movement)
       - Shadow (15px spread with -5px offset)
       Using 16px for better alignment with our spacing scale */
    padding-block: var(--padding-xl);
    margin-block: calc(-1 * var(--padding-xl));
    gap: var(--gap-md);
  }

  .predictive-search-results__resource-header {
    display: flex;
    padding-inline: var(--padding-xl);
    justify-content: space-between;
    align-items: center;
    height: 32px;
  }

  .predictive-search-results__resource-header .svg-wrapper {
    width: var(--icon-size-xs);
  }

  .predictive-search-results__wrapper-products {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    padding-block-end: var(--padding-sm);
    gap: var(--gap-md);
    transition: height var(--animation-speed-medium) var(--animation-easing);

    @container (min-width: 550px) {
      grid-template-columns: repeat(4, 1fr);
    }
  }

  .predictive-search-results__wrapper-products:last-child {
    padding-block-end: var(--padding-lg);

    @media screen and (min-width: 750px) {
      padding-block-end: var(--padding-sm);
    }
  }

  .predictive-search-results__resource-header .predictive-search-results__title {
    margin-block-end: 0;
  }

  .predictive-search-results__resource-header:has(slideshow-controls) .predictive-search-results__title {
    margin-block-end: 0;
  }

  .predictive-search-results__resource-header slideshow-controls {
    @media screen and (max-width: 749px) {
      display: none;
    }
  }
/* END_SNIPPET:predictive-search-styles */

/* START_SNIPPET:price-filter (INDEX:342) */
/* Price filter */
  .price-facet {
    container-type: inline-size;
    display: flex;
    flex-direction: column;
  }
  .price-facet--horizontal {
    min-width: 360px;
  }

  .price-facet__inputs-wrapper {
    display: flex;
    flex-direction: row;
    padding: var(--style-border-width-inputs);
    gap: calc(var(--gap-sm) + (var(--style-border-width-inputs) * 2));
  }

  @container (max-width: 199px) {
    .price-facet__inputs-wrapper {
      flex-wrap: wrap;
    }
  }

  .price-facet__input {
    width: 100%;
    text-align: right;
    padding-left: calc(2.5 * var(--input-padding-x));
  }

  .price-facet__input::placeholder {
    color: var(--facets-input-label-color);
  }

  .price-facet__separator {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-paragraph--size);
  }

  .price-facet__highest-price {
    padding: var(--padding-xs) 0 var(--padding-sm);
  }

  .price-facet__highest-price--horizontal {
    padding: 0 var(--padding-md) var(--padding-xs);
  }

  .price-facet__label {
    top: 0;
    left: 0;
    color: var(--facets-input-label-color);
    padding: var(--input-padding-y) var(--input-padding-x);
    transform: none;
  }
/* END_SNIPPET:price-filter */

/* START_SNIPPET:product-badges-styles (INDEX:344) */
.product-badges {
    --badge-inset: max(var(--padding-xs), calc((var(--border-radius) + var(--padding-xs)) * (1 - cos(45deg))));

    position: absolute;
    z-index: var(--layer-flat);
  }

  .product-badges--bottom-left {
    bottom: calc(var(--badge-inset) + var(--padding-block-start));
    left: calc(var(--badge-inset) + var(--padding-inline-start));
  }

  .product-badges--top-left {
    top: calc(var(--badge-inset) + var(--padding-block-start));
    left: calc(var(--badge-inset) + var(--padding-inline-start));
  }

  .product-badges--top-right {
    top: calc(var(--badge-inset) + var(--padding-block-start));
    right: calc(var(--badge-inset) + var(--padding-inline-start));
  }

  .product-badges__badge {
    --badge-font-size: var(--font-size--xs);

    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--color-foreground);
    background: var(--color-background);
    font-size: var(--badge-font-size);
    font-family: var(--badge-font-family);
    font-weight: var(--badge-font-weight);
    text-transform: var(--badge-text-transform);
    border-radius: var(--badge-border-radius);
  }

  .product-badges__badge--rectangle {
    padding-block: var(--badge-rectangle-padding-block);
    padding-inline: var(--badge-rectangle-padding-inline);
  }
/* END_SNIPPET:product-badges-styles */

/* START_SNIPPET:product-card (INDEX:345) */
.product-card__placeholder-image svg {
    height: 100%;
  }

  .product-card__content slideshow-component {
    --cursor: pointer;
  }

  @media screen and (max-width: 749px) {
    .product-card slideshow-arrows .slideshow-control {
      display: none;
    }
  }

  /* ---------------------------------------------------------------
     Ergovanta kit alignment (design-system comp-product-card.html).
     - Card TITLE renders in Cormorant Garamond 600 navy ~14px (kit),
       not the Horizon body/Inter default. var(--font-heading--family)
       resolves to Cormorant per theme settings (type_heading_font).
     - Card FRAME: hairline #E5E5E5 border + ~12px radius, image clipped.
     - PRICE stays Inter; nudged to weight 500 + tabular figures (kit).
     Scoped to .product-card so the PDP main product title is untouched.
     No eyebrow and no watermark are added to the card (kit rule). */
  .product-card .product-card__content {
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    overflow: hidden;
  }

  .product-card a[ref='productTitleLink'] .text-block,
  .product-card a[ref='productTitleLink'] [role='heading'],
  .product-card .product-card-gallery__title-placeholder {
    font-family: var(--font-heading--family);
    font-weight: 600;
    color: #273755;
    letter-spacing: 0.005em;
  }

  /* ---------------------------------------------------------------
     Ergovanta collection-card type scale (added 2026-06-15).
     The standard product card (collection grid, search results, related
     strips) ran an oversized title + price now that the phone grid is 2-up
     (see main-collection.liquid mobile 2-up override). Bring both down a
     step so they read balanced in the narrower tile, preserving the kit's
     title:price relationship (price stays a hair larger than the title, as
     before -- 14:16 became 13:15 at all widths, 12:13 on phones). Scoped to
     .product-card, so it covers EVERY standard product card (collection /
     search / related) but NEVER the homepage .eg-product-row shelf, which
     uses its own .eg-product-row__title / __price classes and is untouched.
     The title rule below replaces the previous flat 14px / 1.25 line-height.
     Reversible: restore 14px + remove the price-size + @media rules. */
  .product-card a[ref='productTitleLink'] [role='heading'] {
    font-size: 13px;
    line-height: 1.2;
  }

  .product-card .price {
    font-weight: 500;
    font-variant-numeric: tabular-nums;
    font-size: 15px;
  }

  @media screen and (max-width: 749px) {
    .product-card a[ref='productTitleLink'] [role='heading'] {
      font-size: 12px;
      line-height: 1.2;
    }

    .product-card .price {
      font-size: 13px;
    }
  }
/* END_SNIPPET:product-card */

/* START_SNIPPET:product-grid (INDEX:346) */
.product-grid {
    --product-grid-gap: var(--product-grid-gap-mobile);
    --mobile-columns: 2; /* Default value */

    isolation: isolate;

    @media screen and (min-width: 750px) {
      --product-grid-gap: var(--product-grid-gap-desktop);
    }
  }

  .product-grid slideshow-arrows .slideshow-control {
    display: none;

    @media screen and (min-width: 750px) {
      display: grid;
    }
  }

  /* This triggers iOS < 16.4 */
  @supports not (background-color: rgb(from red 150 g b / alpha)) {
    /* Force aspect ratio to auto for iOS < 16.4 since it's not compatible with the infinite pagination */
    .product-grid .product-media,
    .product-grid .product-media-container {
      aspect-ratio: auto;
    }
  }

  .main-collection-grid {
    grid-column: var(--grid-column--mobile);
    padding: var(--grid--margin--mobile);

    @media screen and (min-width: 750px) {
      grid-column: var(--grid-column--desktop);
      padding: var(--padding-block-start) var(--padding-inline-end) var(--padding-block-end) var(--padding-inline-start);
    }
  }

  .main-collection-grid__empty {
    padding-block: var(--padding-6xl);
    padding-inline: var(--page-margin);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--padding-sm);
  }

  .main-collection-grid__empty-title {
    margin: 0;
  }
/* END_SNIPPET:product-grid */

/* START_SNIPPET:product-information-content (INDEX:347) */
.product-information {
    gap: var(--gap) 0;
  }

  /* Base grid layout */
  .product-information__grid {
    display: grid;
    grid-template-columns: subgrid;
    grid-column: 1 / -1;
  }

  /* Default column positions */
  .product-details {
    order: 1;
  }

  .product-information__media {
    order: 0;
    width: 0;
    min-width: 100%;
  }

  .product-information__media .product-media-gallery__placeholder-image {
    width: 100%;
    height: 100%;
  }

  /* Mobile styles */
  @media screen and (max-width: 749px) {
    .product-information__media {
      grid-column: 1 / -1;
    }

    .product-details {
      grid-column: 2 / 3;
    }
  }

  /* Desktop styles */
  @media screen and (min-width: 750px) {
    .product-information__grid {
      grid-column: 2;
    }

    /* Position when there is no media */
    .product-information__grid.product-information--media-none {
      .product-details {
        width: var(--narrow-content-width);
        margin: 0 auto;
      }
    }

    /* Position when there is media */
    .product-information__grid:not(.product-information--media-none) {
      /* Media on the left side */
      &.product-information--media-left {
        grid-template-columns: 1fr min(50vw, var(--sidebar-width));

        .product-information__media {
          padding-right: calc(var(--gap, 0) / 2);
        }

        .product-details {
          padding-left: calc(var(--gap, 0) / 2);
        }

        &:has(.media-gallery--extend) {
          grid-column: 1 / 3;
        }
      }

      /* Media on the right side */
      &.product-information--media-right {
        grid-template-columns: min(50vw, var(--sidebar-width)) 1fr;

        .product-information__media {
          padding-left: calc(var(--gap, 0) / 2);
          order: 1;
        }

        .product-details {
          padding-right: calc(var(--gap, 0) / 2);
          order: 0;
        }

        &:has(.media-gallery--extend) {
          grid-column: 2 / -1;
        }
      }

      /* Equal width columns */
      &.product-information__grid--half,
      &.product-information__grid--half:has(.media-gallery--extend) {
        grid-column: 1 / -1;
        grid-template-columns:
          var(--full-page-grid-margin) calc(var(--full-page-grid-central-column-width) / 2) calc(
            var(--full-page-grid-central-column-width) / 2
          )
          var(--full-page-grid-margin);

        &.product-information--media-left {
          .product-information__media {
            grid-column: 2 / 3;

            &:has(.media-gallery--extend) {
              grid-column: 1 / 3;
            }
          }

          .product-details {
            grid-column: 3 / 4;
          }
        }

        &.product-information--media-right {
          .product-information__media {
            grid-column: 3 / 4;

            &:has(.media-gallery--extend) {
              grid-column: 3 / -1;
            }
          }

          .product-details {
            grid-column: 2 / 3;
          }
        }
      }
    }

    /* Handle full width section */
    .section--full-width {
      .product-information__grid:not(.product-information--media-none) {
        &.product-information--media-left,
        &.product-information--media-right {
          grid-column: 1 / -1;
        }

        &.product-information--media-left .product-details {
          padding-inline-end: var(--padding-lg);
        }

        &.product-information--media-right .product-details {
          padding-inline-start: var(--padding-lg);
        }

        &.product-information__grid--half.product-information--media-left {
          .product-information__media {
            grid-column: 1 / 3;
          }

          .product-details {
            grid-column: 3 / -1;
          }
        }

        &.product-information__grid--half.product-information--media-right {
          .product-information__media {
            grid-column: 3 / -1;
          }

          .product-details {
            grid-column: 1 / 3;
          }
        }
      }
    }
  }

  /* Wider sidebar for large screens */
  @media screen and (min-width: 1200px) {
    .product-information__grid:not(
        .product-information__grid--half,
        .product-information--media-none
      ).product-information--media-left {
      grid-template-columns: 2fr 1fr;
    }

    .product-information__grid:not(
        .product-information__grid--half,
        .product-information--media-none
      ).product-information--media-right {
      grid-template-columns: 1fr 2fr;
    }
  }

  .product-information__grid--limit-details .product-details > .group-block {
    --details-max-width: var(--sidebar-width);
    max-width: var(--details-max-width);
  }

  @media screen and (min-width: 1600px) {
    .product-information__grid--limit-details .product-details > .group-block {
      --details-max-width: 32rem;
    }
  }

  /* If the header is sticky, make product details content stick underneath the header */
  body:has(#header-group #header-component[data-sticky-state='active']) .product-details.sticky-content--desktop {
    --sticky-header-offset: var(--header-height);
  }
/* END_SNIPPET:product-information-content */

/* START_SNIPPET:product-media-gallery-content-styles (INDEX:348) */
media-gallery:where(.media-gallery--grid) .media-gallery__grid {
    display: none;
  }

  media-gallery.media-gallery--grid .media-gallery__grid .product-media-container {
    /* Needed for safari to stretch to full grid height */
    height: 100%;
  }

  @media screen and (min-width: 750px) {
    .media-gallery--two-column .media-gallery__grid {
      grid-template-columns: repeat(2, 1fr);
    }

    /* Display grid view as a carousel on mobile, grid on desktop */
    media-gallery:is(.media-gallery--grid) slideshow-component {
      display: none;
    }

    media-gallery:where(.media-gallery--grid) .media-gallery__grid {
      display: grid;
    }
  }

  .product-media-container__zoom-button {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: var(--layer-flat);
    cursor: zoom-in;
    background-color: transparent;

    &:hover {
      background-color: transparent;
    }
  }

  slideshow-slide.product-media-container--tallest {
    content-visibility: visible;
  }

  .product-media__drag-zoom-wrapper {
    aspect-ratio: inherit;
    min-height: inherit;
    min-width: inherit;
    display: inherit;
    flex: inherit;
  }

  .media-gallery__mobile-controls {
    grid-area: auto;
  }

  .product-media-container--zoomable.product-media-container--image {
    cursor: zoom-in;
  }
/* END_SNIPPET:product-media-gallery-content-styles */

/* START_SNIPPET:product-media-gallery-content (INDEX:349) */
.dialog-thumbnails-list-container {
    position: fixed;
    width: 100%;
    bottom: 0;
    display: flex;
    z-index: var(--layer-raised);
  }

  .dialog-thumbnails-list {
    --active-thumbnail-border-color: rgb(var(--color-border-rgb) / var(--media-border-opacity));

    position: relative;
    display: inline-flex;
    flex-direction: row;
    gap: 8px;
    bottom: 0;
    overflow-x: auto;
    opacity: 0;
    padding: var(--padding-lg);
    margin-inline: auto;
    scrollbar-width: none;
    animation: thumbnailsSlideInBottom calc(var(--animation-speed) * 0.75) var(--animation-easing) forwards;
    animation-delay: calc(var(--animation-speed) * 1.5);
  }

  .dialog--closed .dialog-thumbnails-list {
    animation: thumbnailsSlideOutBottom var(--animation-speed) var(--animation-easing) forwards;
  }

  @media screen and (min-width: 750px) {
    .dialog-thumbnails-list {
      position: fixed;
      flex-direction: column;
      inset: 50% var(--margin-lg) auto auto;
      right: 0;
      max-height: calc(100vh - 200px);
      overflow-y: auto;
      animation: thumbnailsSlideInTop var(--spring-d220-b0-duration) var(--spring-d220-b0-easing) forwards;
      animation-delay: calc(var(--spring-d220-b0-duration) * 0.5);
    }

    .dialog--closed .dialog-thumbnails-list {
      animation: thumbnailsSlideOutTop var(--animation-speed) var(--animation-easing) forwards;
    }
  }

  .dialog-thumbnails-list__thumbnail {
    width: var(--thumbnail-width);
    height: auto;
    transition: transform var(--animation-speed) var(--animation-easing);
    flex-shrink: 0;
    border-radius: var(--media-radius);

    img {
      height: 100%;
      object-fit: cover;
      border-radius: var(--media-radius);
      aspect-ratio: var(--aspect-ratio);
    }

    &:is([aria-selected='true']) {
      outline: var(--focus-outline-width) solid currentcolor;
      outline-offset: calc(var(--focus-outline-offset) / 2);
      border: var(--style-border-width) solid var(--active-thumbnail-border-color);
    }
  }

  @supports (anchor-name: --test) {
    .dialog-thumbnails-list:has(.dialog-thumbnails-list__thumbnail:is([aria-selected='true']))::after {
      --inset-offset: calc(var(--focus-outline-offset) / 2);

      content: '';
      position: absolute;
      inset: anchor(top) anchor(right) anchor(bottom) anchor(left);
      position-anchor: --selected-thumbnail;
      outline: var(--focus-outline-width) solid currentcolor;
      outline-offset: calc(var(--focus-outline-offset) / 2);
      border: var(--style-border-width) solid var(--active-thumbnail-border-color);
      border-radius: var(--media-radius);
      z-index: var(--layer-raised);
    }

    @media (prefers-reduced-motion: no-preference) {
      .dialog-thumbnails-list:has(.dialog-thumbnails-list__thumbnail:is([aria-selected='true']))::after {
        transition-property: inset;
        transition-duration: var(--spring-d180-b0-duration);
        transition-timing-function: var(--spring-d180-b0-easing);
      }
    }

    .dialog-thumbnails-list__thumbnail:is([aria-selected='true']) {
      outline: none;
      border: none;
      anchor-name: --selected-thumbnail;
    }
  }

  .dialog-zoomed-gallery .shopify-model-viewer-ui__controls-area.shopify-model-viewer-ui__controls-area {
    /* Move the controls above the thumbnails. Need to calculate the height of the thumbnails list */
    bottom: calc(var(--thumbnail-width) / var(--media-preview-ratio) + var(--padding-lg) * 2);
    right: var(--padding-lg);
  }

  @media screen and (min-width: 750px) {
    .dialog-zoomed-gallery .shopify-model-viewer-ui__controls-area.shopify-model-viewer-ui__controls-area {
      /* Move the controls up to match the padding on the thumbnails */
      bottom: var(--padding-lg);

      /* Move the controls to the left of the thumbnails list on the right */
      right: calc(var(--thumbnail-width) + var(--padding-lg) * 2);
    }
  }

  @media screen and (max-width: 749px) {
    /* Media gallery has a peeking slide on the right side always, and on the left side when the current slide is the last one */
    .media-gallery--hint
      :is(
        slideshow-slide:has(+ slideshow-slide[aria-hidden='false']:last-of-type),
        slideshow-slide[aria-hidden='false'] + slideshow-slide
      ) {
      content-visibility: auto;

      slideshow-component[actioned] & {
        content-visibility: visible;
      }
    }
  }

  .dialog-zoomed-gallery__dialog {
    background-color: var(--color-background);
    view-transition-name: zoom-dialog-ui;
  }

  .dialog-zoomed-gallery {
    cursor: zoom-out;
  }

  .dialog--preloading {
    opacity: 0;
  }

  @media screen and (max-width: 749px) {
    .dialog-zoomed-gallery {
      /* Prevent scroll wheel or swipe scrolling */
      overscroll-behavior: none;
      scrollbar-width: none;
      display: flex;
      scroll-snap-type: x mandatory;
      overflow-x: hidden;
      scroll-behavior: smooth;
      height: 100%;

      &::-webkit-scrollbar {
        display: none;
      }
    }

    .dialog-zoomed-gallery .product-media-container {
      flex: 0 0 100%;
      scroll-snap-align: start;
      position: relative;
    }

    .dialog-zoomed-gallery .product-media-container--image .product-media {
      aspect-ratio: auto;
      height: 100%;
      width: 100%;
      overflow: hidden;
    }

    .dialog-zoomed-gallery .product-media-container--video,
    .dialog-zoomed-gallery .product-media-container--external_video {
      align-content: center;
    }

    .dialog-zoomed-gallery
      :is(.product-media-container--video, .product-media-container--external_video, .product-media-container--model)
      .product-media {
      aspect-ratio: auto;
      align-items: center;
      height: 100%;

      .product-media__image {
        height: 100%;
      }
    }

    .product-media__drag-zoom-wrapper {
      display: flex;
      aspect-ratio: auto;
      height: 100%;
      width: 100%;
      overflow: scroll;
      scrollbar-width: none;
      justify-content: center;

      &::-webkit-scrollbar {
        display: none;
      }
    }

    .product-media__drag-zoom-wrapper .product-media__image {
      --product-media-fit: contain;

      object-fit: var(--product-media-fit);
      overflow: hidden;
      transform: scale(var(--drag-zoom-scale))
        translate(var(--drag-zoom-translate-x, 0), var(--drag-zoom-translate-y, 0));
    }

    .media-gallery--hint {
      --slideshow-gap: var(--gap-2xs);

      :not(.dialog-zoomed-gallery) > .product-media-container:not(:only-child) {
        width: 90%;

        .product-media img {
          object-fit: cover;
        }
      }
    }
  }

  .dialog-zoomed-gallery__close-button {
    color: #fff;
    mix-blend-mode: difference;
    z-index: var(--layer-raised);
  }

  /* Mobile thumbnails styling */
  @media screen and (max-width: 749px) {
    .media-gallery__mobile-controls[thumbnails] {
      --thumbnail-width: 44px;
    }

    .media-gallery__mobile-controls[thumbnails] .slideshow-controls__thumbnail {
      width: var(--thumbnail-width);
      height: auto;
    }
  }

  .dialog-zoomed-gallery .product-media-container--zoomable.product-media-container--image {
    cursor: zoom-out;
  }

  .dialog-zoomed-gallery .product-media-container--video deferred-media,
  .dialog-zoomed-gallery .product-media-container--external_video deferred-media {
    height: auto;
    aspect-ratio: var(--ratio);
  }

  .dialog-zoomed-gallery .product-media-container--model .product-media__image {
    /* Make the height match the height of the model-viewer */
    height: 100vh;
  }

  :root:active-view-transition .dialog-zoomed-gallery__dialog {
    background-color: transparent;
  }

  ::view-transition-group(zoom-dialog-ui) {
    z-index: calc(var(--layer-overlay) + 1);
  }

  ::view-transition-old(gallery-item-open),
  ::view-transition-new(gallery-item-open) {
    animation-timing-function: step-start;
  }

  ::view-transition-old(gallery-item-close),
  ::view-transition-new(gallery-item-close) {
    animation-timing-function: step-end;
  }

  @media screen and (min-width: 750px) {
    :root:active-view-transition .product-media__image {
      background-color: transparent;
    }
  }

  ::view-transition-group(gallery-item-open),
  ::view-transition-group(gallery-item-close) {
    z-index: var(--layer-overlay);
    border-radius: var(--gallery-media-border-radius);
    overflow: clip;
  }

  ::view-transition-group(gallery-item-open) {
    animation-timing-function: var(--spring-d300-b0-easing);
    animation-duration: var(--spring-d300-b0-duration);
  }

  ::view-transition-group(gallery-item-close) {
    animation-timing-function: var(--spring-d220-b0-easing);
    animation-duration: var(--spring-d220-b0-duration);
  }

  @media screen and (max-width: 749px) {
    ::view-transition-group(gallery-item-open),
    ::view-transition-group(gallery-item-close) {
      animation-timing-function: step-start;
      animation-duration: 0.1s;
    }

    ::view-transition-new(gallery-item-open) {
      animation: fade-in var(--spring-d180-b0-duration) var(--spring-d180-b0-easing) forwards;
      animation-timing-function: var(--spring-d180-b0-easing);
      animation-duration: var(--spring-d180-b0-duration);
    }

    ::view-transition-old(gallery-item-close) {
      animation: fade-out 0.08s linear forwards;
    }
  }

  @keyframes fade-in {
    from {
      scale: 0.98;
      opacity: 0.8;
    }
  }

  @keyframes fade-out {
    to {
      opacity: 0;
    }
  }

  /*
   * Product media gallery slideshow context styles
   */
  .product-media-gallery__slideshow--single-media slideshow-container {
    @media screen and (max-width: 749px) {
      grid-area: unset;
    }
  }

  /* Display grid view as a carousel on mobile, grid on desktop */
  media-gallery:is(.media-gallery--grid) slideshow-component {
    @media screen and (min-width: 750px) {
      display: none;
    }
  }

  @media screen and (max-width: 749px) {
    /* Media gallery has a peeking slide on the right side always, and on the left side when the current slide is the last one */
    .media-gallery--hint
      :is(
        slideshow-slide:has(+ slideshow-slide[aria-hidden='false']:last-of-type),
        slideshow-slide[aria-hidden='false'] + slideshow-slide
      ) {
      content-visibility: auto;

      slideshow-component[actioned] & {
        content-visibility: visible;
      }
    }
  }

  @media screen and (min-width: 750px) {
    .media-gallery--carousel slideshow-component:has(slideshow-controls[thumbnails]) {
      &:has(slideshow-controls[pagination-position='right']) {
        display: grid;
        grid-template:
          'container controls' auto
          'arrows controls' min-content
          / 1fr auto;
      }

      &:has(slideshow-controls[pagination-position='left']) {
        display: grid;
        grid-template:
          'controls container' auto
          'controls arrows' min-content
          / auto 1fr;
      }

      slideshow-controls[pagination-position='left'] {
        order: -1;
      }
    }
  }

  .media-gallery--carousel slideshow-arrows .slideshow-control {
    padding-inline: 0 var(--padding-md);
    opacity: 1;
  }

  @media screen and (max-width: 749px) {
    slideshow-component:has(:not(.mobile\:hidden) :is(.slideshow-controls__dots, .slideshow-controls__counter))
      .shopify-model-viewer-ui__controls-area {
      /* Position the controls just above the counter */
      bottom: calc(var(--minimum-touch-target) + var(--padding-sm));
    }
  }

  @media screen and (min-width: 750px) {
    slideshow-component:has(:not(.desktop\:hidden) :is(.slideshow-controls__dots, .slideshow-controls__counter))
      .shopify-model-viewer-ui__controls-area {
      /* Position the controls just above the counter */
      bottom: calc(var(--minimum-touch-target) + var(--padding-sm));
    }
  }

  slideshow-slide.product-media-container--tallest {
    content-visibility: visible;
  }
/* END_SNIPPET:product-media-gallery-content */

/* START_SNIPPET:product-media (INDEX:350) */
.product-media {
    aspect-ratio: var(--gallery-aspect-ratio, var(--ratio));
    min-height: 0;
    min-width: 0;
  }

  .product-media__image {
    object-position: var(--focal-point, center center);
  }

  /*** Media border-radius feature ****/
  @media screen and (min-width: 750px) {
    .media-gallery--carousel slideshow-container,
    .media-gallery--grid .product-media > * {
      border-radius: var(--media-radius, 0);
      overflow: hidden;
    }

    /* When the CAROUSEL is on the LEFT side */
    .product-information:not(.product-information--media-right)
      .media-gallery--carousel.media-gallery--extend
      slideshow-container {
      border-top-left-radius: 0;
      border-bottom-left-radius: 0;
    }

    /* When the CAROUSEL is on the RIGHT side */
    .product-information.product-information--media-right
      .media-gallery--carousel.media-gallery--extend
      slideshow-container {
      border-top-right-radius: 0;
      border-bottom-right-radius: 0;
    }

    /* When the GRID is on the LEFT side */
    .product-information:not(.product-information--media-right) {
      /* One column */
      .media-gallery--grid.media-gallery--extend:not(.media-gallery--two-column) .product-media > *,
      /* Two column, small first image */
      .media-gallery--grid.media-gallery--extend.media-gallery--two-column:not(.media-gallery--large-first-image)
        .product-media-container:nth-of-type(odd)
        .product-media
        > *,
      /* Two column, large first image */
      .media-gallery--grid.media-gallery--extend.media-gallery--two-column.media-gallery--large-first-image
        .product-media-container:is(:first-of-type, :nth-of-type(even))
        .product-media
        > * {
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
      }
    }

    /* When the GRID is on the RIGHT side */
    .product-information.product-information--media-right {
      /* One column */
      .media-gallery--grid.media-gallery--extend:not(.media-gallery--two-column) .product-media > *,
      /* Two column, small first image */
      .media-gallery--grid.media-gallery--extend.media-gallery--two-column:not(.media-gallery--large-first-image)
        .product-media-container:nth-of-type(even)
        .product-media
        > *,
      /* Two column, large first image */
      .media-gallery--grid.media-gallery--extend.media-gallery--two-column.media-gallery--large-first-image
        .product-media-container:is(:first-of-type, :nth-of-type(odd))
        .product-media
        > * {
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
      }
    }
  }
/* END_SNIPPET:product-media */

/* START_SNIPPET:quantity-selector (INDEX:351) */
.quantity-selector-wrapper {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: calc(var(--gap-sm) / 2);

    @media screen and (min-width: 750px) {
      gap: var(--gap-sm);
    }
  }

  .price-per-item {
    display: block;
    color: var(--color-foreground);
    font-size: var(--font-size--sm);
    font-weight: normal;
  }
/* END_SNIPPET:quantity-selector */

/* START_SNIPPET:quick-add-modal-styles (INDEX:352) */
#quick-add-dialog {
    display: contents;
  }

  @media screen and (min-width: 750px) {
    .quick-add-modal {
      width: var(--quick-add-modal-width);
      height: var(--quick-add-modal-height);
      max-width: none;
    }
  }

  .quick-add-modal {
    padding: 0;
    border: var(--style-border-popover);
    overflow: hidden;
    box-shadow: 0 5px 30px rgb(0 0 0 / var(--opacity-15));

    @media screen and (max-width: 749px) {
      position: fixed;
      margin: auto 0 0 0;
      min-height: unset;
      max-width: 100%;
      border-radius: 0;
      overflow: clip;
      height: fit-content;
    }
  }

  .quick-add-modal[open] {
    @media screen and (max-width: 750px) {
      border-top-left-radius: var(--style-border-radius-popover);
      border-top-right-radius: var(--style-border-radius-popover);
    }
  }

  .quick-add-modal[open] {
    @media screen and (min-width: 750px) {
      display: flex;
    }
  }

  .quick-add-modal .view-more-details__wrapper {
    @media screen and (max-width: 749px) {
      display: none;
    }
  }

  .quick-add-modal[open] {
    animation: modalSlideInTop var(--animation-speed) var(--animation-easing) forwards;
  }

  .quick-add-modal.dialog-closing {
    animation: modalSlideOutTop var(--animation-speed) var(--animation-easing) forwards;
  }

  .quick-add-modal__close {
    position: absolute;
    top: var(--margin-2xs);
    right: var(--margin-2xs);
    transition: transform 0.15s var(--animation-timing-bounce);
    z-index: var(--layer-raised);
    overflow: visible;
    transform-origin: center;
  }

  .quick-add-modal__close:active {
    transform: scale(0.99) translateY(1px);
  }

  .quick-add-modal__close {
    &:focus-visible {
      outline: none;
    }

    &:focus-visible::after {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: calc(var(--style-border-radius-popover) - var(--margin-2xs));
      outline: var(--focus-outline-width) solid currentColor;
    }
  }

  .quick-add-modal__content {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    grid-template-rows: 100% 1fr;
    position: relative;
    overflow-y: auto;
    max-height: 100vh;
    flex-grow: 1;

    @media screen and (max-width: 749px) {
      grid-template-columns: repeat(4, 1fr);
      grid-template-rows: auto;
      padding-inline: var(--padding-xl);
      padding-block: var(--padding-xl);
      gap: var(--gap-lg);
      flex: 1;
      min-height: 0;
      overflow-y: auto;
      height: auto; /* Prevent a bug in Safari where height:fit-content is not respected */
      max-height: 100vh;
    }
  }

  .quick-add-modal__content .media-gallery--grid .media-gallery__grid {
    grid-template-columns: 1fr;
  }

  .quick-add-modal__content .media-gallery--grid.media-gallery--two-column .product-media-container:first-child {
    grid-column: auto;
  }

  .quick-add-modal__content {
    /* One column */
    .media-gallery--grid:not(.media-gallery--two-column) .product-media > *,
      /* Two column, small first image */
      .media-gallery--grid.media-gallery--two-column:not(.media-gallery--large-first-image)
      .product-media-container:nth-of-type(odd)
      .product-media > *,
      /* Two column, large first image */
      .media-gallery--grid.media-gallery--two-column.media-gallery--large-first-image
        .product-media-container:is(:first-of-type, :nth-of-type(even))
        .product-media > *,
        /* Carousel */
      .media-gallery--carousel slideshow-container {
      border-top-left-radius: 0;
      border-bottom-left-radius: 0;
    }
  }

  .quick-add-modal__content .view-more-details__wrapper {
    display: flex;
    justify-content: flex-start;
    width: 100%;
  }

  .view-more-details__wrapper .view-more-details {
    display: flex;
    align-items: center;
    width: fit-content;
  }

  .quick-add-modal__content .product-header {
    @media screen and (max-width: 749px) {
      display: flex;
      flex-direction: column;
      grid-column: 2 / -1;
      grid-row: 1;
      padding-right: var(--padding-2xl);
    }
  }

  .quick-add-modal__content .product-header a:not(product-price *) {
    @media screen and (max-width: 749px) {
      font-size: var(--font-size--md);
      font-weight: 500;
      color: inherit;
      width: fit-content;
    }
  }

  .quick-add-modal__content variant-picker,
  .quick-add-modal__content product-form-component {
    @media screen and (max-width: 749px) {
      grid-column: 1 / -1;
    }
  }

  .quick-add-modal__content .product-media-container__zoom-button {
    cursor: default;
  }

  .quick-add-modal__content .product-details {
    grid-column: 4 / -1;
    grid-row: 1 / span 2;
    display: flex;
    flex-direction: column;
    justify-content: stretch;
    height: 100%;
    min-height: 0;
    overflow-y: auto;
    position: relative;

    dialog[open] & {
      animation: fadeSlideIn 0.3s var(--animation-timing-fade-in) both;
      animation-delay: 0.1s;
    }

    @media screen and (max-width: 749px) {
      grid-column: 2 / span 2;
      grid-row: span 1;
      max-height: 100%;
      height: 100%;
    }
  }

  @property --quick-add-modal-mask-start {
    syntax: '<length>';
    initial-value: 0px;
    inherits: false;
  }

  @property --quick-add-modal-mask-end {
    syntax: '<length>';
    initial-value: 0px;
    inherits: true;
  }

  @keyframes detect-scroll {
    from,
    to {
      --can-scroll: ;
    }
  }

  @supports (animation-timeline: scroll(self)) {
    dialog[open] .quick-add-modal__content .product-details {
      mask-image: linear-gradient(to bottom, transparent 0%, #000 var(--quick-add-modal-mask-start), #000 100%);
      animation: 0.3s var(--animation-timing-fade-in) 0.1s both fadeSlideIn, scrollStart 1s linear both,
        scrollEnd 1s linear both, detect-scroll 1ms linear none;
      animation-timeline: auto, scroll(self), scroll(self), scroll(self);
      animation-range: normal, 0px 48px, calc(100% - 48px) 100%, 0% 100%;
    }
  }

  @keyframes scrollStart {
    from {
      --quick-add-modal-mask-start: 0px;
    }
    to {
      --quick-add-modal-mask-start: 48px;
    }
  }

  @keyframes scrollEnd {
    from {
      --quick-add-modal-mask-end: 0px;
    }
    to {
      --quick-add-modal-mask-end: 48px;
    }
  }

  .quick-add-modal__content .product-details > .group-block {
    flex-grow: 1;
    width: auto;
  }

  .quick-add-modal__content > * {
    min-height: 0;
  }

  .quick-add-modal__content .product-details :is(.view-product-title, .buy-buttons-block) {
    flex: 0 0 auto;
  }
  .quick-add-modal__content .product-details :is(.buy-buttons-block) {
    margin-top: auto;
    position: sticky;
    bottom: 0;
    padding-bottom: var(--padding-3xl);
    background-color: var(--color-background);
    z-index: var(--layer-raised);

    &::before {
      --quick-add-modal-mask-end-progressive-enhanced: 0px;

      position: absolute;
      content: '';
      display: block;
      inset: auto 0 100% 0;
      pointer-events: none;
      height: min(var(--gap-2xl), var(--gap));
      background-color: inherit;
      mask-image: linear-gradient(
        to top,
        #000 0%,
        #000 calc(var(--gap-2xs)),
        transparent calc(100% - var(--quick-add-modal-mask-end-progressive-enhanced)),
        transparent
      );
    }
  }

  .quick-add-modal__content .product-details .buy-buttons-block:has(gift-card-recipient-form) {
    position: static;
    padding-bottom: 0;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
  }

  .quick-add-modal__content .product-details .buy-buttons-block:has(gift-card-recipient-form) > product-form-component {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
  }

  .quick-add-modal__content .product-details .buy-buttons-block:has(gift-card-recipient-form) form {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
  }

  .quick-add-modal__content .product-details .buy-buttons-block:has(gift-card-recipient-form)::before {
    display: none;
  }

  .quick-add-modal__content .product-details .buy-buttons-block__bar {
    display: block;
    position: sticky;
    bottom: 0;
    margin-top: auto;
    padding-block: var(--gap-md) var(--padding-3xl);
    background-color: var(--color-background);
    z-index: var(--layer-raised);

    &::before {
      --quick-add-modal-mask-end-progressive-enhanced: 0px;

      position: absolute;
      content: '';
      display: block;
      inset: auto 0 100% 0;
      pointer-events: none;
      height: min(var(--gap-2xl), var(--gap));
      background-color: inherit;
      mask-image: linear-gradient(
        to top,
        #000 0%,
        #000 calc(var(--gap-2xs)),
        transparent calc(100% - var(--quick-add-modal-mask-end-progressive-enhanced)),
        transparent
      );
    }
  }

  @supports (animation-timeline: scroll(self)) {
    .quick-add-modal__content .product-details :is(.buy-buttons-block)::before,
    .quick-add-modal__content .product-details .buy-buttons-block__bar::before {
      --mask-if-scroll: var(--can-scroll) var(--quick-add-modal-mask-end);
      --mask-if-no-scroll: 48px;
      --quick-add-modal-mask-end-progressive-enhanced: var(--mask-if-scroll, var(--mask-if-no-scroll));
      height: calc(var(--gap-2xs) + 48px);
    }
  }

  .quick-add-modal__content .product-details .variant-picker {
    flex: 0 0 auto;

    padding-block: min(var(--gap-2xl), var(--gap));
    margin-block-end: calc(var(--focus-outline-offset) + var(--focus-outline-width));
  }

  .quick-add-modal__content .variant-option--swatches {
    padding-inline-start: var(--padding-2xs);
  }

  .quick-add-modal__content .variant-option--swatches legend {
    margin-inline-start: calc(-1 * var(--padding-2xs));
  }

  .quick-add-modal__content:not(:has(.product-information__media)) .product-details {
    grid-column: 1 / -1;
  }

  .quick-add-modal__content .view-product-title {
    display: flex;
    padding-block: 0;
    margin-block-end: 12px;

    /* Prevent overlap between title and close button */
    padding-inline-end: calc(var(--padding-2xl) + calc(var(--minimum-touch-target) / 2));
  }

  .quick-add-modal__content .view-product-title a {
    color: inherit;
    text-decoration: none;
    text-align: left;
    font-size: var(--font-size--2xl);
    font-weight: 600;
    line-height: 1.2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color 0.2s var(--animation-easing);
  }

  .quick-add-modal__content .product-details product-price {
    --text-align: left;
  }

  .quick-add-modal__content .product-details product-price.text-block--align-center {
    margin-inline: 0;
  }

  .quick-add-modal__content .product-details product-price.text-center {
    --text-align: left;
  }

  .quick-add-modal__content .product-details product-price > * {
    text-align: left;
  }

  .quick-add-modal__content
    .product-details
    *:not(
      .group-block,
      .group-block-content,
      .buy-buttons-block,
      .buy-buttons-block *,
      .view-product-title,
      .view-product-title *,
      variant-picker,
      variant-picker *,
      product-price,
      product-price *,
      product-inventory,
      product-inventory *,
      .view-more-details__wrapper,
      .view-more-details__wrapper *
    ) {
    @media screen and (min-width: 750px) {
      /* stylelint-disable-next-line declaration-no-important */
      display: none !important;
    }
  }

  .quick-add-modal__content
    .group-block:not(
      :has(
          .buy-buttons-block,
          .buy-buttons-block *,
          .view-product-title,
          .view-product-title *,
          variant-picker,
          variant-picker *,
          product-price,
          product-price *,
          product-inventory,
          product-inventory *,
          .view-more-details__wrapper,
          .view-more-details__wrapper *
        ),
      .buy-buttons-block
    ) {
    display: none;
  }

  @media screen and (min-width: 750px) {
    .quick-add-modal__content .group-block-content {
      gap: 0;
    }

    .quick-add-modal__content .media-gallery__grid {
      gap: min(var(--gap-2xs), var(--image-gap));
      border-radius: var(--style-border-radius-popover, 0);
    }

    .quick-add-modal__content .media-gallery--grid .product-media img {
      border-radius: 0;
    }
  }

  .quick-add-modal__content .product-details > .group-block {
    padding-block: var(--padding-3xl) 0;
  }

  .quick-add-modal__content :where(.product-details > .group-block > .group-block-content > *) {
    padding-inline: var(--padding-3xl);
  }

  .quick-add-modal__content slideshow-slide:not([aria-hidden='false']) {
    content-visibility: auto;
  }

  .quick-add-modal__content .product-information__media {
    width: 100%;
    grid-column: 1 / span 1;
    grid-row: 1;
    position: relative;
    top: 0;
    animation: fadeIn 0.4s var(--animation-timing-fade-in) both;

    @media screen and (min-width: 750px) {
      position: sticky;
      grid-column: 1 / 4;
      width: var(--quick-add-modal-gallery-width);
      overflow-y: auto;
      -ms-overflow-style: none;
      scrollbar-width: none;
    }

    &::-webkit-scrollbar {
      display: none;
    }
  }

  .quick-add-modal__content .product-information__media media-gallery {
    pointer-events: none;

    @media screen and (min-width: 750px) {
      position: absolute;
      inset: 0;
    }
  }

  .quick-add-modal media-gallery {
    padding: 0;
  }

  .quick-add-modal__content .product-information__media slideshow-arrows {
    display: none;
  }

  .quick-add-modal__content .product-information__media slideshow-container {
    display: block;
  }

  .quick-add-modal__content .product-information__media slideshow-slides {
    display: flex;
    flex-direction: column;
    gap: var(--gap-2xs);
    overflow: visible;
    scroll-snap-type: none;
  }

  .quick-add-modal__content .product-information__media slideshow-slide {
    width: 100%;
    flex: none;
    scroll-snap-align: unset;
    position: relative;
    transform: none;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s var(--animation-easing);
  }

  .quick-add-modal__content .product-information__media slideshow-slide[aria-hidden='true'] {
    @media screen and (max-width: 749px) {
      display: none;
    }
  }

  .quick-add-modal__content .product-information__media slideshow-slide:nth-child(1) {
    animation: fadeSlideIn 0.3s var(--animation-timing-fade-in) both;
  }

  .quick-add-modal__content .product-information__media slideshow-slide:nth-child(2) {
    animation: fadeSlideIn 0.3s var(--animation-timing-fade-in) both;
    animation-delay: 0.05s;
  }

  .quick-add-modal__content .product-information__media slideshow-slide:nth-child(3) {
    animation: fadeSlideIn 0.3s var(--animation-timing-fade-in) both;
    animation-delay: 0.1s;
  }

  .quick-add-modal__content .product-information__media :is(slideshow-controls, slideshow-controls[thumbnails]) {
    display: none;
  }

  .quick-add-modal__content .sticky-content,
  .quick-add-modal__content .sticky-content--desktop {
    top: 0;
  }

  .quick-add-modal__content .text-block.rte:not(product-price),
  .quick-add-modal__content .view-more-details__wrapper {
    display: none;
  }

  @keyframes fadeSlideIn {
    from {
      opacity: 0;
      transform: translateY(10px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
/* END_SNIPPET:quick-add-modal-styles */

/* START_SNIPPET:quick-add-styles (INDEX:354) */
/* Quick Add */
  .quick-add {
    --quick-add-offset: var(--padding-sm);
    --quick-add-right: calc(var(--quick-add-offset) + var(--padding-inline-end));
    --quick-add-bottom: calc(var(--quick-add-offset) + var(--padding-block-end));

    position: absolute;
    inset: 0;
    z-index: var(--layer-raised);
    pointer-events: none;

    @media screen and (min-width: 750px) {
      --quick-add-offset: var(--padding-md);
    }
  }

  .quick-add .variant-option__button-label input[data-option-available='false'] {
    cursor: not-allowed;
  }

  .quick-add[class*='color-scheme-'] {
    background-color: #0000;
  }

  product-card:is(:hover, :focus-within) .quick-add__button {
    opacity: 1;
  }

  .quick-add__button {
    display: var(--quick-add-mobile-display, none);
    align-items: center;
    background: linear-gradient(var(--color-background) 0 100%) padding-box;
    padding: 0;
    border-radius: 50px;
    border: 2px solid hsl(0 0% 0% / 0.15);
    height: var(--button-size-md);
    cursor: pointer;
    opacity: var(--quick-add-mobile-opacity, 0);
    overflow: hidden;
    color: var(--color-foreground);
    pointer-events: all;
    position: absolute;
    right: max(var(--quick-add-right), calc((var(--border-radius) + var(--quick-add-right)) * (1 - cos(45deg))));
    bottom: max(var(--quick-add-bottom), calc((var(--border-radius) + var(--quick-add-bottom)) * (1 - cos(45deg))));
    backdrop-filter: blur(20px) saturate(180%);

    &:hover {
      scale: 1.03;

      /* Hover stabilizer: extends hit area to maintain hover state */
      &::before {
        content: '';
        position: absolute;
        inset: -10px;
        z-index: -1;
      }
    }

    &:active {
      scale: 0.99;
    }

    .quick-add[stay-visible] & {
      display: grid;
    }

    @media screen and (min-width: 750px) {
      display: var(--quick-add-display, flex);
      opacity: 0;
    }
  }

  .quick-add__button.add-to-cart-button {
    height: var(--button-size-md);
  }

  .quick-add__button .add-to-cart-text {
    background: var(--color-background);
    overflow: hidden;
    border-radius: 50px;
    height: 100%;
    gap: 0;
  }

  .quick-add__button .svg-wrapper .checkmark-burst {
    width: 22px;
    height: 22px;
  }

  .quick-add__button .add-to-cart-icon {
    /* account for border width */
    height: 100%;
    width: calc(var(--button-size-md) - 4px);
  }

  .quick-add__button .add-to-cart-text__content {
    display: grid;
    grid-template-columns: 0fr;

    & > span {
      min-width: 0;

      span {
        padding-right: var(--padding-sm);
        opacity: 0;
        display: inline-block;
        filter: blur(2px);
        translate: 0.5ch 0;
      }
    }
  }

  .quick-add__button[data-added='true'] .add-to-cart-text {
    animation-name: atc-fade-out;
  }

  .quick-add__button[data-added='true'] .add-to-cart-text--added {
    translate: 0 0;
    animation-name: atc-fade-in;
  }

  .quick-add__product-form-component {
    height: 100%;
  }

  .quick-add__product-form-component .shopify-product-form {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    container-type: inline-size;
    height: 100%;
  }

  .quick-add-modal .product-media {
    width: 100%;
    height: 100%;
  }

  .quick-add-modal deferred-media {
    display: none;
  }

  .quick-add-modal .media-gallery--carousel slideshow-component {
    --cursor: default;
  }

  .quick-add__button:is(:hover, :focus-visible) {
    .add-to-cart-text__content {
      grid-template-columns: 1fr;

      span span {
        opacity: 1;
        translate: 0 0;
        filter: blur(0);
      }
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .quick-add__button .add-to-cart-text__content {
      grid-template-columns: 1fr;

      span span {
        opacity: 1;
        translate: 0 0;
        filter: blur(0);
      }
    }
  }

  @media (prefers-reduced-motion: no-preference) {
    .quick-add__button {
      transition-property: scale, translate, opacity;
      transition-duration: var(--animation-speed);
      transition-timing-function: var(--ease-out-cubic);
    }

    .quick-add__button:is(:hover, :focus-visible) {
      .add-to-cart-text__content,
      .add-to-cart-text__content span span {
        transition-delay: var(--animation-speed);
      }
    }

    .quick-add__button .add-to-cart-text__content {
      transition-property: grid-template-columns;
      transition-duration: var(--animation-speed);
      transition-timing-function: var(--ease-out-cubic);

      span span {
        transition-property: opacity, filter, translate;
        transition-duration: var(--animation-speed-slow);
        transition-timing-function: var(--ease-out-quad);
      }
    }
  }
/* END_SNIPPET:quick-add-styles */

/* START_SNIPPET:resource-card (INDEX:356) */
.resource-card {
    --resource-card-secondary-image-opacity: 0;
    --resource-card-primary-image-opacity: calc(1 - var(--resource-card-secondary-image-opacity));

    display: flex;
    flex-direction: column;
    row-gap: var(--padding-xs);
    position: relative;
    text-decoration: none;
    height: 100%;
    opacity: 0;
    animation: fadeIn var(--animation-speed-medium) var(--animation-timing-fade-in) forwards;
  }

  .resource-card__link {
    position: absolute;
    inset: 0;
    z-index: 1;
  }

  .resource-card__content {
    display: flex;
    flex-direction: column;
    color: var(--color-foreground);
    gap: var(--padding-3xs);

    .price {
      font-weight: 500;
    }

    .volume-pricing-note {
      display: block;
      margin-top: var(--padding-3xs);
      font-family: var(--font-body--family);
      font-weight: normal;
      font-size: min(0.85em, var(--font-paragraph--size));
      line-height: normal;
      letter-spacing: normal;
      text-transform: none;
      color: rgb(var(--color-foreground-rgb) / var(--opacity-subdued-text));
    }
  }

  .resource-card[data-resource-type='article'] .resource-card__content,
  .resource-card[data-resource-type='page'] .resource-card__content {
    gap: var(--padding-xs);
  }

  .resource-card__image {
    aspect-ratio: var(--resource-card-aspect-ratio, auto);
    object-fit: cover;
    border-radius: var(--resource-card-corner-radius);
    opacity: var(--resource-card-primary-image-opacity);
  }

  .resource-card__image--secondary {
    position: absolute;
    top: 0;
    opacity: var(--resource-card-secondary-image-opacity);
    border-radius: var(--resource-card-corner-radius);
  }

  .resource-card__media:empty {
    display: none;
  }

  .resource-card__image-placeholder {
    padding: var(--padding-sm);
    font-size: var(--font-size--lg);
    line-height: var(--line-height--display-loose);
    word-break: break-word;
    background-color: rgb(var(--color-foreground-rgb) / var(--opacity-5));
    aspect-ratio: var(--resource-card-aspect-ratio, auto);
    border-radius: var(--resource-card-corner-radius);
    color: var(--color-foreground);
  }

  .resource-card__title {
    margin-block: 0;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    line-height: 1.3;
    word-break: break-word;
    overflow-wrap: break-word;
  }

  .resource-card__title.paragraph {
    line-height: 1.3;
  }

  .resource-card--overlay {
    height: 100%;

    &::before {
      content: '';
      position: absolute;
      inset: 50% 0 0;
      background: var(--gradient-image-overlay);
      border-radius: var(--resource-card-corner-radius);
      pointer-events: none;
      z-index: var(--layer-flat);
    }
  }

  .resource-card--overlay .resource-card__image {
    height: 100%;
  }

  .resource-card--overlay .resource-card__content {
    position: absolute;
    inset: auto 0 0;
    padding: var(--padding-lg) var(--padding-lg) var(--padding-sm);
    z-index: var(--layer-raised);
  }

  .resource-card--overlay .resource-card__title {
    color: var(--color-white);
  }

  /* Collection images */
  .resource-card__image-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--gap-2xs);
  }

  .resource-card__collection-image {
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: calc(var(--card-corner-radius) - (var(--padding-xs) / 2));
  }

  .resource-card__subtext {
    color: rgb(var(--color-foreground-rgb) / var(--opacity-subdued-text));
    margin-block-start: 0;
  }

  .resource-card__subtext.paragraph {
    font-size: var(--font-size--body-sm);
    line-height: var(--line-height--body-tight);
    color: rgb(var(--color-foreground-rgb) / var(--opacity-subdued-text));
  }

  .resource-card:has(.resource-card__image--secondary) {
    &:hover,
    &:focus {
      --resource-card-secondary-image-opacity: 1;
    }
  }
/* END_SNIPPET:resource-card */

/* START_SNIPPET:resource-image (INDEX:357) */
.resource-image {
    position: relative;
    display: flex;
    width: 100%;
    height: 100%;
    z-index: var(--layer-base);
    overflow: hidden;
    max-width: 100%;
    max-height: 100%;
    aspect-ratio: var(--ratio);
  }

  .resource-image__image {
    object-fit: cover;
    aspect-ratio: var(--ratio);
    width: 100%;
    height: 100%;
  }

  .resource-image--placeholder {
    width: 100%;
    height: 100%;
  }
/* END_SNIPPET:resource-image */

/* START_SNIPPET:resource-list-carousel (INDEX:358) */
.resource-list__carousel {
    --slide-width: 60vw;
    width: 100%;
    position: relative;
    container-type: inline-size;
    container-name: resource-list-carousel;

    .slideshow-control[disabled] {
      display: none;
    }

    .slideshow-control--next {
      margin-inline-start: auto;
    }
  }

  @container resource-list-carousel (max-width: 749px) {
    .resource-list__carousel .resource-list__slide {
      --slide-width: clamp(150px, var(--mobile-card-size, 60cqw), var(--slide-width-max));
    }
  }

  @container resource-list-carousel (min-width: 750px) {
    .resource-list__carousel .resource-list__slide {
      --section-slide-width: calc(
        (100% - (var(--resource-list-column-gap) * (var(--column-count) - 1)) - var(--peek-next-slide-size)) /
          var(--column-count)
      );
      --fallback-slide-width: clamp(150px, var(--mobile-card-size, 60cqw), var(--slide-width-max));
      --slide-width: var(--section-slide-width, var(--fallback-slide-width));
    }
  }

  .resource-list__carousel slideshow-slides {
    gap: var(--resource-list-column-gap);

    /* Add padding to prevent hover animations from being clipped in slideshow
     15px accommodates:
     - Scale effect (9px on each side from 1.03 scale)
     - Lift effect (4px upward movement)
     - Shadow (15px spread with -5px offset)
     Using 16px for better alignment with our spacing scale */
    margin-block: -16px;
    padding-block: 16px;
  }

  .resource-list__carousel slideshow-arrows {
    padding-inline: var(--util-page-margin-offset);
  }

  .resource-list__carousel .resource-list__slide {
    width: var(--slide-width);
    flex: 0 0 auto;
    scroll-snap-align: start;
    min-width: 0;
  }

  /*
   * Resource list carousels have peeking slides on both sides.
   * We try to kick load them beforehand (they are lazy loaded otherwise).
   */
  .resource-list__carousel
    :is(
      slideshow-slide:has(+ slideshow-slide[aria-hidden='false']),
      slideshow-slide[aria-hidden='false'] + slideshow-slide
    ) {
    content-visibility: auto;

    slideshow-component[actioned] & {
      content-visibility: visible;
    }
  }
/* END_SNIPPET:resource-list-carousel */

/* START_SNIPPET:search-modal (INDEX:361) */
/* Search modal style */
  .search-modal {
    --search-border-radius: var(--style-border-radius-popover);
    --search-border-width: var(--style-border-width);
  }

  .search-modal__content {
    /* Approx set the top so when the content is at max height, the modal is centered */
    --modal-top-margin: calc(50dvh - var(--modal-max-height) / 2 - 2rem);
    --modal-width: 66dvw;

    padding: 0;
    border: var(--style-border-popover);

    @media screen and (min-width: 750px) {
      width: var(--modal-width);
      margin-block-start: var(--modal-top-margin);
      overflow: hidden;
    }
  }

  /* Hide the default dialog backdrop on small screens */
  @media screen and (max-width: 749px) {
    .search-modal__content::backdrop {
      display: none;
    }
  }

  .dialog-modal[open].search-modal__content {
    transform-origin: bottom center;
    animation: search-element-slide-in-bottom 300ms var(--ease-out-quad) forwards;
    border-radius: var(--search-border-radius);
    box-shadow: var(--shadow-popover);

    @media screen and (max-width: 749px) {
      border-radius: 0;
    }
  }

  .dialog-modal.search-modal__content.dialog-closing {
    animation: search-element-slide-out-bottom 200ms var(--ease-out-quad) forwards;
  }

  .search-modal__content[open] {
    display: flex;
  }

  .search-modal__content :is(.predictive-search-dropdown, .predictive-search-form__content-wrapper) {
    position: relative;
  }

  .dialog-modal
    .predictive-search-form__header:has(
      .predictive-search__reset-button:not(.predictive-search__reset-button[hidden])
    )::before {
    content: '';
    position: absolute;
    right: calc(var(--padding-sm) + var(--minimum-touch-target));
    top: 0;
    bottom: 0;
    width: var(--border-width-sm);
    background-color: var(--color-border);
  }

  .dialog-modal
    .predictive-search-form__header:has(.predictive-search__reset-button:not(.predictive-search__reset-button[hidden]))
    > .predictive-search__close-modal-button {
    &::before {
      content: none;
    }
  }

  @media screen and (min-width: 750px) {
    .dialog-modal
      .predictive-search-form__header:has(
        .predictive-search__reset-button:not(.predictive-search__reset-button[hidden])
      )::before {
      right: calc(var(--padding-2xl) * 2);
    }
  }

  predictive-search-component {
    --resource-card-corner-radius: var(--product-corner-radius);

    display: flex;
    width: 100%;
    position: relative;
    margin-inline: auto;
    align-items: center;
    background-color: var(--color-background);
    z-index: var(--layer-heightened);
  }

  .predictive-search-form__footer {
    display: none;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;

    @media screen and (min-width: 750px) {
      --to-top-gradient-background: linear-gradient(
        to top,
        rgb(var(--color-background-rgb) / var(--opacity-90)),
        rgb(var(--color-background-rgb) / var(--opacity-80)),
        rgb(var(--color-background-rgb) / var(--opacity-40)),
        transparent
      );

      padding-block: var(--padding-xs) var(--padding-lg);
      background-image: var(--to-top-gradient-background);
    }
  }

  predictive-search-component:has([data-search-results]):not(:has(.predictive-search-results__no-results))
    .predictive-search-form__footer {
    display: block;
  }

  .predictive-search-form {
    position: relative;
    width: 100%;
    align-self: flex-start;
  }

  .predictive-search-form__content {
    max-height: 50dvh;
    overflow-y: auto;
    background-color: var(--color-background);

    /* Firefox */
    scrollbar-width: none;

    /* Webkit browsers */
    &::-webkit-scrollbar {
      display: none;
    }
  }

  .predictive-search-form__content-wrapper {
    position: absolute;
    top: 100%;
    width: 100%;
    left: 0;
    z-index: var(--layer-raised);
    display: flex;
    flex-direction: column;
    border-radius: 0 0 var(--search-border-radius) var(--search-border-radius);
    transition: box-shadow var(--animation-speed) var(--animation-easing);
    transform: translateZ(0);
    will-change: transform, opacity;
    overflow: hidden;

    @media screen and (max-width: 749px) {
      border-radius: 0;
    }

    @media screen and (min-width: 750px) {
      max-height: var(--modal-max-height);
    }
  }

  /* Add new rule to apply bottom padding only when search button exists */
  .predictive-search-form__content-wrapper:has([data-search-results]):not(:has(.predictive-search-results__no-results))
    > .predictive-search-form__content {
    padding-block-end: var(--padding-6xl);
  }

  .predictive-search-form__header-inner {
    background: var(--color-background);
    border: var(--search-border-width) solid var(--color-border);
    color: var(--color-foreground);
    border-radius: var(--style-border-radius-popover);
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;

    @media screen and (max-width: 749px) {
      border-radius: var(--style-border-radius-inputs);
      border: none;
    }
  }

  .predictive-search-form__header-inner:focus-within {
    outline-offset: var(--focus-outline-offset);

    @media screen and (min-width: 750px) {
      outline: var(--focus-outline-width) solid var(--color-primary);
    }
  }

  .predictive-search-form__header {
    display: flex;
    position: sticky;
    top: 0;
    z-index: var(--layer-heightened);
    width: 100%;
    align-items: center;
    background-color: var(--color-input-background);
    border: var(--search-border-width) solid var(--color-border);
    border-radius: var(--style-border-radius-inputs);

    @media screen and (max-width: 749px) {
      padding: var(--padding-2xs) var(--padding-sm);
    }
  }

  .predictive-search-form__header:focus-within,
  .predictive-search-form__header-inner:focus-within,
  .predictive-search-form__header-inner:has(.search-input:is(:focus, :focus-visible)) {
    outline: none;
    box-shadow: none;
    /* stylelint-disable-next-line declaration-no-important */
    border-color: var(--color-border) !important;
  }

  input.search-input {
    border-radius: var(--style-border-radius-inputs);
    padding-block: var(--padding-sm);
    font-size: var(--font-size--md);
    width: 100%;
    color: var(--color-foreground);
    padding-inline: calc(var(--margin-lg) + var(--icon-size-lg)) 0;
    background: transparent;
    text-overflow: ellipsis;
    overflow: hidden;
    outline: none;
    border: 0;
  }

  .search-input::placeholder {
    color: rgb(var(--color-foreground-rgb) / var(--opacity-subdued-text));
  }

  .search-input,
  .search-input:is(:focus, :focus-visible, :focus-within),
  .predictive-search-form__header *:is(:focus, :focus-visible) {
    outline: none;
    box-shadow: none;
  }

  .search-input:hover {
    background-color: transparent;
  }

  .predictive-search__icon {
    position: absolute;
    left: var(--margin-xl);
    top: auto;
    width: var(--icon-size-lg);
    height: var(--icon-size-lg);
    color: rgb(var(--color-foreground-rgb) / var(--opacity-60));

    @media screen and (min-width: 750px) {
      left: var(--margin-md);
    }
  }

  .predictive-search__icon > svg {
    width: var(--icon-size-md);
    height: var(--icon-size-md);
  }

  .predictive-search__reset-button {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: var(--minimum-touch-target);
    height: var(--minimum-touch-target);
    padding: 0;
    margin-inline-end: var(--margin-md);
    background: transparent;
    color: var(--color-foreground);
    opacity: 0.68;
    transition: opacity var(--animation-speed-medium) var(--animation-timing-fade-out),
      visibility var(--animation-speed-medium) var(--animation-timing-fade-out);

    &:hover {
      color: var(--color-foreground);
    }

    &:active {
      transform: scale(0.9);
      transition: transform 100ms var(--animation-timing-active);
    }

    @media screen and (min-width: 750px) {
      margin-inline-end: var(--margin-2xs);
    }
  }

  .predictive-search__reset-button[hidden] {
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
  }

  .predictive-search__reset-button-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: var(--icon-size-lg);
    height: var(--icon-size-lg);
    transition: background-color var(--animation-speed-medium) ease-in-out,
      transform var(--animation-speed-medium) var(--animation-timing-bounce);
    border-radius: 50%;

    &:hover {
      background-color: rgb(var(--color-primary-hover-rgb) / var(--opacity-8));
    }
  }

  .predictive-search__reset-button:active .predictive-search__reset-button-icon {
    transform: scale(0.85);
    transition-timing-function: var(--animation-timing-active);
    transition-duration: 100ms;
  }

  .predictive-search__reset-button svg {
    width: var(--icon-size-md);
    height: var(--icon-size-md);
  }

  .predictive-search__reset-button-text {
    display: none;
  }

  .predictive-search__search-button {
    margin: auto;
    z-index: var(--layer-raised);
    transition: transform var(--animation-speed-medium) var(--animation-timing-bounce),
      box-shadow var(--animation-speed-medium) var(--animation-timing-hover);
    transform-origin: center;

    &:hover {
      transform: translateY(-2px);
      box-shadow: 0 4px 8px rgb(0 0 0 / var(--opacity-5));
    }

    &:active {
      transform: scale(0.97);
      transition: transform 100ms var(--animation-timing-active);
      box-shadow: none;
    }
  }

  .predictive-search__close-modal-button {
    --button-color: var(--color-foreground);
    --button-background-color: transparent;

    display: flex;
    justify-content: center;
    align-items: center;
    width: var(--minimum-touch-target);
    height: var(--minimum-touch-target);
    margin-inline-start: var(--margin-sm);
    padding: 0;
    box-shadow: none;

    &:active {
      transform: scale(0.8);
      transition: transform 100ms var(--animation-timing-active);
    }

    .svg-wrapper,
    svg {
      width: var(--icon-size-xs);
      height: var(--icon-size-xs);
    }
  }

  .predictive-search__close-modal-button:hover {
    --button-color: var(--color-foreground);
    --button-background-color: transparent;
  }
/* END_SNIPPET:search-modal */

/* START_SNIPPET:search (INDEX:362) */
.search-action {
    --search-border-radius: var(--style-border-radius-inputs);
    --search-border-width: var(--style-border-width-inputs);

    display: flex;
  }

  @media screen and (max-width: 749px) {
    .search-action--hidden-on-drawer {
      display: none;
    }
  }

  @media screen and (min-width: 750px) {
    [data-menu-style='drawer'] .search-action--hidden-on-drawer {
      display: none;
    }

    [data-menu-style='menu'] .search-action--hidden-on-menu {
      display: none;
    }
  }

  [data-menu-style='menu'] .header__column--left .search-action {
    @media screen and (min-width: 750px) {
      margin-inline: calc(var(--padding-lg) * -1);
    }
  }

  .header__column--right .search-action {
    @media screen and (min-width: 750px) {
      margin-inline: calc(var(--gap-md) * -1) calc(var(--gap-xs) * -1);
    }
  }

  @media screen and (min-width: 750px) {
    .header__column--right .search-action--text {
      margin-inline: 0;
    }

    [data-menu-style='menu'] .header__column--left .search-action--text {
      margin-inline: 0;
    }
  }
/* END_SNIPPET:search */

/* START_SNIPPET:section (INDEX:363) */
.section-wrapper {
    --section-height-offset: 0px;
  }

  .section[data-shopify-visual-preview] {
    min-height: var(--section-preview-height);
    padding-top: 0;
  }

  .section[data-shopify-visual-preview] .custom-section-background {
    display: none;
  }

  body:has(> #header-group > .header-section > #header-component[transparent]):not(
      :has(> #header-group > .header-section + .shopify-section)
    )
    > main
    > .section-wrapper:first-child {
    --section-height-offset: var(--header-group-height, 0);
  }

  .custom-section-background {
    grid-column: 1 / -1;
  }

  .custom-section-content {
    z-index: var(--layer-flat);
  }
/* END_SNIPPET:section */

/* START_SNIPPET:skip-to-content-link (INDEX:365) */
.skip-to-content-link {
    position: absolute;
    left: -99999px;
  }

  .skip-to-content-link:focus {
    z-index: var(--layer-temporary);
    overflow: auto;
    width: auto;
    height: auto;
    padding: var(--padding-lg) var(--padding-4xl);
    left: var(--margin-lg);
    top: var(--margin-lg);
    background-color: var(--color-background);
    box-shadow: 0 0 0 var(--focus-outline-offset) var(--color-background);
  }
/* END_SNIPPET:skip-to-content-link */

/* START_SNIPPET:slideshow-arrow (INDEX:367) */
.slideshow-control--large {
    .icon-caret {
      --icon-stroke-width: 1px;
    }

    .icon-caret {
      --icon-stroke-width: 1px;
    }

    .svg-wrapper,
    svg {
      width: var(--slideshow-controls-icon);
      height: var(--slideshow-controls-icon);
    }
  }

  /* Slideshow control shape styles */
  .slideshow-control.slideshow-control--shape-square,
  .slideshow-control.slideshow-control--shape-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1 / 1;
    background-color: var(--color-primary-button-background);
    color: var(--color-primary-button-text);
  }

  .slideshow-control.slideshow-control--shape-circle {
    border-radius: 50%;
  }

  .slideshow-control.slideshow-control--shape-square {
    border-radius: 0;
  }

  .slideshow-control .icon-caret {
    rotate: -90deg;
  }
/* END_SNIPPET:slideshow-arrow */

/* START_SNIPPET:slideshow-arrows (INDEX:368) */
slideshow-arrows {
    --cursor-previous: w-resize;
    --cursor-next: e-resize;

    position: absolute;
    inset: 0;
    display: flex;
    z-index: var(--layer-heightened);
    pointer-events: none;
    mix-blend-mode: difference;
    align-items: flex-end;

    &[position='left'] {
      justify-content: flex-start;
      padding-inline: var(--padding-xs);
    }

    &[position='right'] {
      justify-content: flex-end;
      padding-inline: var(--padding-xs);
    }

    &[position='center'] {
      justify-content: space-between;
      align-items: center;
    }
  }

  slideshow-arrows:has(.slideshow-control--shape-square),
  slideshow-arrows:has(.slideshow-control--shape-circle) {
    mix-blend-mode: normal;
  }

  slideshow-component[disabled='true'] slideshow-arrows {
    display: none;
  }

  slideshow-arrows .slideshow-control {
    pointer-events: auto;
    opacity: 0;
    min-height: var(--minimum-touch-target);
    min-width: var(--minimum-touch-target);
    padding: 0 var(--padding-xs);
    color: var(--color-white);
  }

  slideshow-arrows .slideshow-control.slideshow-control--style-none {
    display: none;
  }
/* END_SNIPPET:slideshow-arrows */

/* START_SNIPPET:slideshow-controls (INDEX:369) */
slideshow-controls {
    flex-shrink: 0;
    display: flex;
    justify-content: space-between;
    scrollbar-width: none;
    min-height: var(--minimum-touch-target);
    grid-area: controls;

    &[controls-on-media] {
      position: absolute;
      bottom: 0;
    }
  }

  slideshow-controls::-webkit-scrollbar {
    display: none;
  }

  slideshow-controls button {
    --color: rgb(var(--color-foreground-rgb) / var(--opacity-30));
    --color-active: var(--color-foreground);
    --color-hover: rgb(var(--color-foreground-rgb) / var(--opacity-50));

    display: inline-block;
    height: var(--minimum-touch-target);
    width: var(--minimum-touch-target);
    cursor: pointer;
  }

  slideshow-controls .icon {
    width: var(--icon-size-sm);
    height: var(--icon-size-xs);
  }

  slideshow-controls[pagination-position='center'] {
    align-items: center;
    justify-content: center;
  }

  slideshow-controls[pagination-position='center'][thumbnails] {
    width: 100%;
  }

  slideshow-controls[pagination-position='center']:not([controls-on-media], [thumbnails], [icons-on-media]) {
    justify-content: space-between;
  }

  @media screen and (min-width: 750px) {
    slideshow-controls[thumbnails]:is([pagination-position='right'], [pagination-position='left']) {
      display: flex;
      flex-direction: column;
      height: 0;
      min-height: 100%;

      .slideshow-controls__thumbnails-container {
        overflow: hidden auto;
      }

      &:not([controls-on-media]) {
        .slideshow-controls__thumbnails-container {
          position: sticky;
          top: var(--sticky-header-offset, 0);
        }

        .slideshow-controls__thumbnails {
          padding-block-start: var(--focus-outline-offset);
        }
      }
    }

    slideshow-controls:is([pagination-position='right'], [pagination-position='left']) .slideshow-controls__thumbnails {
      flex-direction: column;
    }

    slideshow-controls:not([controls-on-media]) {
      &:is([pagination-position='left'], [pagination-position='right']) .slideshow-controls__thumbnails {
        padding-block: var(--padding-2xs);
      }

      &[pagination-position='right'] .slideshow-controls__thumbnails {
        padding-inline-end: var(--slideshow-thumbnails-padding-inline, var(--focus-outline-offset));
      }

      &[pagination-position='left'] .slideshow-controls__thumbnails {
        padding-inline-start: var(--slideshow-thumbnails-padding-inline, var(--focus-outline-offset));
      }
    }
  }

  slideshow-controls:not([controls-on-media])[icons-on-media] {
    &[pagination-position='right'] {
      justify-content: flex-end;
    }

    &[pagination-position='left'] {
      justify-content: flex-start;
    }
  }

  slideshow-controls[controls-on-media] {
    z-index: var(--layer-raised);

    &:has(.slideshow-controls__dots, .slideshow-controls__counter) {
      --color-foreground: #fff;
      --color-foreground-rgb: var(--color-white-rgb);
    }

    &[pagination-position='right'] {
      right: 0;
    }

    &[pagination-position='left'] {
      left: 0;
    }

    &[pagination-position='center'] {
      width: 100%;
    }

    &:not([thumbnails])[pagination-position='left'] {
      width: fit-content;
      align-self: flex-start;
    }

    &:not([thumbnails])[pagination-position='right'] {
      width: fit-content;
      align-self: flex-end;
    }
  }

  .slideshow-controls__arrows {
    display: flex;
    justify-content: space-between;
    height: var(--minimum-touch-target);
    grid-area: arrows;

    button {
      padding: 0 var(--padding-xs);
    }
  }

  .slideshow-controls__dots,
  .slideshow-controls__counter {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    list-style: none;

    button {
      --color: rgb(var(--color-foreground-rgb) / var(--opacity-30));
      --color-active: var(--color-foreground);
      --color-hover: rgb(var(--color-foreground-rgb) / var(--opacity-50));
    }
  }

  slideshow-controls:has(.slideshow-controls__dots),
  slideshow-component[autoplay] slideshow-controls {
    mix-blend-mode: difference;
  }

  .slideshow-controls__dots {
    gap: 0.6rem;
    padding: var(--padding-sm) var(--padding-lg);
    border-radius: 3rem;
    overflow: hidden;

    button {
      --size: 0.56rem;

      display: flex;
      align-items: center;
      justify-content: center;
      width: calc(var(--size) * 2);
      height: calc(var(--size) * 2);
      margin: calc(var(--size) / -2);
      font-size: 0;
      border-radius: calc(var(--size));

      &::after {
        content: '';
        display: block;
        background-color: var(--color);
        height: var(--size);
        width: var(--size);
        border-radius: calc(var(--size) / 2);
        box-shadow: inset 0 0 0 1.5px hsl(0 0% 0% / 0.15);

        @supports not (view-timeline-axis: inline) {
          &[aria-selected='true'] {
            --color: var(--color-active);
          }
        }

        &:hover {
          --color: var(--color-hover);
        }
      }

      &[aria-selected='true'] {
        --color: var(--color-active);

        &::after {
          box-shadow: inset 0 0 0 1.5px hsl(0 0% 0% / 0.4);
        }
      }
    }
  }

  .slideshow-controls__dots,
  .slideshow-controls__counter {
    &:only-child {
      margin-inline: auto;
    }
  }

  .slideshow-controls__counter {
    color: var(--color-foreground);
    background-color: rgb(0 0 0 / 40%);
    width: auto;
    border-radius: 2rem;
    padding: 0.3rem var(--padding-sm);
    margin-inline: var(--margin-sm);
    backdrop-filter: blur(10px);
    font-variant-numeric: tabular-nums;
    font-size: var(--font-size--xs);

    .slash {
      color: rgb(var(--color-foreground-rgb) / var(--opacity-40));
      padding-inline: var(--padding-2xs);
      margin-block-start: -0.1rem;
    }
  }

  .slideshow-control[disabled] {
    opacity: 0.5;
    cursor: not-allowed;
  }

  /* Slideshow Thumbnails */
  .slideshow-controls__thumbnails-container {
    display: flex;
    width: 100%;
    max-height: 100%;
    overflow-x: scroll;
    scrollbar-width: none;
  }

  .slideshow-controls__thumbnails {
    display: inline-flex;
    padding-inline: var(--slideshow-thumbnails-padding-inline, var(--padding-sm));
    padding-block: var(--slideshow-thumbnails-padding-block, var(--padding-sm));
    gap: var(--gap-xs);
    margin-inline: auto;
    height: fit-content;

    .slideshow-control {
      border-radius: var(--thumbnail-radius, var(--media-radius));
      width: clamp(44px, 7vw, var(--thumbnail-width));
      height: auto;
      aspect-ratio: var(--aspect-ratio);

      img {
        height: 100%;
        object-fit: cover;
        border-radius: var(--thumbnail-radius, var(--media-radius));
      }

      &:is([aria-selected='true']) {
        outline: var(--focus-outline-width) solid currentcolor;
        outline-offset: calc(var(--focus-outline-offset) / 2);
        border: var(--style-border-width) solid rgb(var(--color-border-rgb) / var(--media-border-opacity));
      }
    }
  }

  .slideshow-controls__thumbnail {
    position: relative;
  }

  .slideshow-controls__thumbnail-badge {
    position: absolute;
    top: var(--padding-2xs);
    right: var(--padding-2xs);
    width: clamp(16px, 10%, 20px);
    height: clamp(16px, 10%, 20px);
    background-color: var(--color-background);
    border-radius: var(--style-border-radius-xs);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 1px rgb(var(--color-foreground-rgb) / var(--opacity-5));
  }

  .slideshow-controls__thumbnail-badge svg {
    width: 60%;
    height: 60%;
    fill: var(--color-foreground);
    opacity: 0.6;
  }

  /* Slideshow Play/Pause */
  .slideshow-control:is(.icon-pause, .icon-play) {
    color: var(--color-active);

    &:hover {
      color: var(--color-hover);
    }

    svg {
      display: none;
    }
  }

  slideshow-component:is([autoplay]) {
    &:is([paused]) {
      .icon-play > svg {
        display: block;
      }
    }

    &:not([paused]) {
      .icon-pause > svg {
        display: block;
      }
    }
  }
/* END_SNIPPET:slideshow-controls */

/* START_SNIPPET:slideshow-styles (INDEX:371) */
/*
   * Slideshow Component
   */
  slideshow-component {
    --cursor: grab;
    --slide-offset: 6px;

    position: relative;
    display: flex;
    flex-direction: column;
    timeline-scope: var(--slideshow-timeline);
  }

  .slideshow--single-media {
    --cursor: default;
  }

  a slideshow-component {
    --cursor: pointer;
  }

  slideshow-component [data-placeholder='true'] * {
    cursor: grab;
  }

  /*
   * Slideshow Slides
   */
  slideshow-slides {
    width: 100%;
    position: relative;
    display: flex;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-color: transparent transparent;
    scrollbar-width: none;
    gap: var(--slideshow-gap, 0);
    cursor: var(--cursor);
    min-height: var(--slide-min-height);
    align-items: var(--slideshow-align-items, normal);

    @media (prefers-reduced-motion) {
      scroll-behavior: auto;
    }

    &::-webkit-scrollbar {
      width: 0;
    }

    &::-webkit-scrollbar-track {
      background: transparent;
    }

    &::-webkit-scrollbar-thumb {
      background: transparent;
      border: none;
    }

    @media screen and (min-width: 750px) {
      min-height: var(--slide-min-height-desktop);
    }
  }

  .slideshow--stretch-content slideshow-slides > * {
    height: auto;
  }

  slideshow-component[disabled='true'] slideshow-slides {
    overflow: hidden;
  }

  /**
   * By default, slideshows have overflow: hidden (no compositor layer).
   * When the slideshow enters the viewport, JavaScript adds [in-viewport] which enables scrolling.
   */
  slideshow-component:not([in-viewport]) slideshow-slides {
    overflow: hidden;
  }

  slideshow-component[mobile-disabled] slideshow-slides {
    @media screen and (max-width: 749px) {
      overflow: hidden;
    }
  }

  slideshow-slides[gutters*='start'] {
    padding-inline-start: var(--gutter-slide-width, 0);
    scroll-padding-inline-start: var(--gutter-slide-width, 0);
  }

  slideshow-slides[gutters*='end'] {
    padding-inline-end: var(--gutter-slide-width, 0);
  }

  slideshow-component[dragging] {
    --cursor: grabbing;

    * {
      pointer-events: none;
    }
  }

  slideshow-component[dragging] slideshow-arrows {
    display: none;
  }

  slideshow-container {
    width: 100%;
    display: block;
    position: relative;
    grid-area: container;
    container-type: inline-size;
    background-color: var(--color-background);
  }

  /*
   * Be specific about HTML children structure to avoid targeting nested slideshows.
   * Ensure that the content is 'visible' while scrolling instead of 'auto' to avoid issues in Safari.
   */
  slideshow-component:is([dragging], [transitioning], :hover) > slideshow-container > slideshow-slides > slideshow-slide {
    content-visibility: visible;
  }

  @keyframes slide-reveal {
    0% {
      translate: calc(var(--slideshow-slide-offset, 6) * 1rem) 0;
      opacity: 0;
    }

    50% {
      opacity: 1;
    }

    100% {
      translate: calc(var(--slideshow-slide-offset, 6) * -1rem) 0;
      opacity: 0;
    }
  }

  /*
   * Slideshow Slide
   */
  slideshow-slide {
    position: relative;
    scroll-snap-align: center;
    width: var(--slide-width, 100%);
    max-height: 100%;
    flex-shrink: 0;
    view-timeline-name: var(--slideshow-timeline);
    view-timeline-axis: inline;
    content-visibility: auto;
    contain-intrinsic-size: auto none;
    border-radius: var(--corner-radius, 0);
    overflow: hidden;

    slideshow-component[actioned] &,
    &[aria-hidden='false'] {
      content-visibility: visible;
    }

    slideshow-component slideshow-slide:not([aria-hidden='false']) {
      content-visibility: hidden;
    }

    &[hidden]:not([reveal]) {
      display: none;
    }

    /* Make inactive slides appear clickable */
    &[aria-hidden='true'] {
      cursor: pointer;
    }
  }

  slideshow-slide .shopify-model-viewer-ui__controls-area.shopify-model-viewer-ui__controls-area {
    bottom: var(--padding-sm);
    right: var(--padding-sm);
  }

  slideshow-component.slideshow--content-below-media slideshow-slide {
    display: grid;
  }

  .slideshow--content-below-media slideshow-slide :is(.slide__image-container, .slide__content) {
    position: static;
  }

  .slideshow--content-below-media slideshow-slide {
    grid-template-rows: var(--grid-template-rows);

    @media screen and (min-width: 750px) {
      grid-template-rows: var(--grid-template-rows-desktop);
    }
  }
/* END_SNIPPET:slideshow-styles */

/* START_SNIPPET:sorting (INDEX:373) */
.sorting-filter__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-inline: var(--drawer-padding) 0;
    padding-block: var(--padding-sm);
    margin-inline-end: var(--margin-md);
    position: relative;
  }

  .sorting-filter__container .facets__label {
    font-size: var(--font-h4--size);
  }

  .sorting-filter__select-wrapper {
    display: flex;
    position: relative;
    border-radius: var(--variant-picker-button-radius);
    align-items: center;
    overflow: clip;
    padding: var(--padding-2xs) var(--padding-xs);
  }

  .sorting-filter__select-wrapper:has(:focus-visible) {
    outline: var(--focus-outline-width) solid currentcolor;
    outline-offset: var(--focus-outline-offset);
  }

  .sorting-filter__select-wrapper:has(:focus-visible) .sorting-filter__select {
    outline: none;
  }

  .sorting-filter__container .sorting-filter__select {
    appearance: none;
    border: 0;
    margin: 0;
    cursor: pointer;
    width: 100%;
    padding-inline-end: var(--icon-size-2xs);
    text-align: right;

    /* Needed for Safari */
    text-align-last: right;
  }

  .sorting-filter__select .icon {
    position: absolute;
    right: var(--padding-md);
    top: 50%;
    transform: translateY(-50%);
    width: var(--icon-size-2xs);
    height: var(--icon-size-2xs);
    pointer-events: none;
  }

  .sorting-filter {
    @media screen and (min-width: 750px) {
      z-index: var(--facets-upper-z-index);
    }
  }

  .sorting-filter__options {
    display: grid;
    grid-template-rows: 0fr;
    opacity: 0;
    position: absolute;
    top: 100%;
    right: 0;
    color: var(--color-foreground);
    z-index: var(--facets-upper-z-index);
    box-shadow: var(--shadow-popover);
    border: var(--style-border-popover);
    background-color: var(--color-background);
    border-radius: var(--style-border-radius-popover);
    width: max-content;
    min-width: var(--facets-panel-min-width);
    min-height: 0;

    transition: grid-template-rows var(--animation-speed-slow) var(--animation-easing),
      opacity var(--animation-speed-slow) var(--animation-easing);
  }

  details[open] .sorting-filter__options {
    opacity: 1;
    grid-template-rows: 1fr;
  }

  .sorting-filter__options-inner {
    display: flex;
    flex-direction: column;
    grid-row: 1 / span 2;
    gap: var(--gap-sm);
    padding: calc(var(--drawer-padding) / 2);
    color: var(--color-foreground);
    overflow: clip;
    scrollbar-width: none;
    -ms-overflow-style: none;

    &::-webkit-scrollbar {
      display: none;
    }

    @media screen and (min-width: 750px) {
      gap: 0;
    }
  }

  .sorting-filter__option {
    cursor: pointer;
    display: grid;
    grid-template-columns: var(--icon-size-sm) 1fr;
    gap: var(--margin-2xs);
    align-items: center;
    min-width: 180px;
    max-width: 16em;
    padding: var(--padding-2xs) calc(var(--drawer-padding) / 2) var(--padding-2xs) var(--padding-2xs);

    &:hover {
      border-radius: calc(var(--style-border-radius-popover) / 2);
      background-color: rgb(var(--color-foreground-rgb) / var(--opacity-8));
    }

    &:focus {
      border-radius: calc(var(--style-border-radius-popover) / 2);
    }
  }

  .sorting-filter__input {
    display: none;

    &:checked + .sorting-filter__checkmark + .sorting-filter__label {
      font-weight: 500;
    }
  }

  .sorting-filter__checkmark {
    visibility: hidden;
  }

  *:checked ~ .sorting-filter__checkmark {
    visibility: visible;
  }

  .sorting-filter__label {
    cursor: pointer;
    pointer-events: none;
  }

  .facets-toggle--no-filters .sorting-filter__select-wrapper {
    @media screen and (max-width: 749px) {
      padding-inline-start: 0;
    }
  }

  .facets-mobile-wrapper .sorting-filter .facets__panel {
    padding-inline: 0;
    position: relative;
  }

  .facets-mobile-wrapper .sorting-filter .facets__status {
    display: none;
  }

  .facets-mobile-wrapper:has(> :nth-child(2)) .sorting-filter .sorting-filter__options {
    left: 0;
    right: unset;
  }

  .facets-mobile-wrapper .sorting-filter .facets__label {
    margin-inline-end: var(--margin-2xs);
    font-size: var(--font-paragraph--size);
    color: var(--color-foreground-muted);
  }

  .facets-toggle .sorting-filter__container {
    @media screen and (max-width: 749px) {
      padding: 0;
    }
  }

  .facets-toggle .sorting-filter__container .facets__label {
    @media screen and (max-width: 749px) {
      display: none;
    }
  }

  .facets-toggle .sorting-filter::before {
    @media screen and (max-width: 749px) {
      display: none;
    }
  }

  .facets--drawer .sorting-filter {
    @media screen and (min-width: 750px) {
      display: none;
    }
  }
/* END_SNIPPET:sorting */

/* START_SNIPPET:text (INDEX:381) */
:root {
    --text-align-default: left;
  }

  [style*='--horizontal-alignment: center'] .text-block {
    --text-align-default: center;
  }

  [style*='--horizontal-alignment: flex-end'] .text-block {
    --text-align-default: right;
  }

  [style*='--horizontal-alignment: flex-start'] > .text-block {
    --text-align-default: left;
  }

  [style*='--horizontal-alignment: center'] > .text-block {
    --text-align-default: center;
  }

  [style*='--horizontal-alignment: flex-end'] > .text-block {
    --text-align-default: right;
  }

  .text-block {
    width: var(--width);
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: var(--horizontal-alignment);
  }

  .text-block > * {
    width: var(--width);
    max-inline-size: min(100%, var(--max-width, 100%));
    text-align: var(--text-align, var(--text-align-default));
    text-wrap: var(--text-wrap);
  }

  .text-block:not(.text-block--full-width).rte,
  .text-block:not(.text-block--full-width).paragraph {
    /* Safari doesn't support pretty, so fallback to balance */
    text-wrap: balance;
    text-wrap: pretty;
  }

  .text-block:not(.text-block--full-width):is(.h1, .h2, .h3, .h4, .h5, .h6) {
    text-wrap: balance;
  }

  /* Hide underline unless text is using paragraph styles. */
  .text-block:is(.h1, .h2, .h3, .h4, .h5, .h6) a {
    text-decoration-color: transparent;
  }

  .text-block h1,
  .text-block.h1 > * {
    margin-block: var(--font-h1--spacing);
  }

  .text-block h2,
  .text-block.h2 > * {
    margin-block: var(--font-h2--spacing);
  }

  .text-block h3,
  .text-block.h3 > * {
    margin-block: var(--font-h3--spacing);
  }

  .text-block h4,
  .text-block.h4 > * {
    margin-block: var(--font-h4--spacing);
  }

  .text-block h5,
  .text-block.h5 > * {
    margin-block: var(--font-h5--spacing);
  }

  .text-block h6,
  .text-block.h6 > * {
    margin-block: var(--font-h6--spacing);
  }

  .text-block p,
  .text-block.p > * {
    margin-block: var(--font-paragraph--spacing);
  }

  .text-block > *:first-child {
    margin-block-start: 0;
  }

  .text-block > *:last-child {
    margin-block-end: 0;
  }

  .text-block--align-center,
  .text-block--align-center > * {
    margin-inline: auto;
  }

  .text-block--align-right,
  .text-block--align-right > * {
    margin-inline-start: auto;
  }

  .text-block--background {
    background-color: var(--text-background-color);
    border-radius: var(--text-corner-radius);

    /* To avoid text being cropped when using a border radius we add a minimum padding. */
    padding-block-start: max(var(--text-padding), var(--padding-block-start, 0));
    padding-block-end: max(var(--text-padding), var(--padding-block-end, 0));
    padding-inline-start: max(var(--text-padding), var(--padding-inline-start, 0));
    padding-inline-end: max(var(--text-padding), var(--padding-inline-end, 0));
  }

  .custom-color,
  .custom-color > :is(h1, h2, h3, h4, h5, h6, p, *) {
    color: var(--color);
  }
/* END_SNIPPET:text */

/* START_SNIPPET:variant-main-picker (INDEX:390) */
/* Variant picker container styles - unique to main variant picker */
  .variant-picker {
    width: 100%;
  }

  .variant-picker__form {
    width: 100%;
  }

  .variant-picker[data-shopify-visual-preview] {
    min-width: 300px;
    padding-inline-start: max(4px, var(--padding-inline-start));
  }

  /* Dropdown variant option styles */
  .variant-option__select-wrapper {
    display: flex;
    position: relative;
    border: var(--style-border-width-inputs) solid var(--color-border);
    border-radius: var(--style-border-radius-inputs);
    align-items: center;
    margin-top: var(--margin-2xs);
    overflow: clip;
  }

  .variant-option__select-wrapper:has(.swatch) {
    --variant-picker-swatch-width: 20px;
    --variant-picker-swatch-height: 20px;
  }

  .variant-option__select-wrapper:hover {
    border-color: var(--color-variant-hover-border);
  }

  .variant-option__select:focus-visible {
    outline: var(--focus-outline-width) solid currentcolor;
    outline-offset: var(--focus-outline-offset);
  }

  .variant-option__select {
    padding-block: var(--padding-md);
    padding-inline: var(--padding-lg) calc(var(--padding-lg) + var(--icon-size-2xs));
    appearance: none;
    border: 0;
    width: 100%;
    margin: 0;
    cursor: pointer;
  }

  .variant-option__select-wrapper .icon {
    position: absolute;
    right: var(--padding-md);
    top: 50%;
    transform: translateY(-50%);
    width: var(--icon-size-2xs);
    height: var(--icon-size-2xs);
    pointer-events: none;
  }

  .variant-option__select--has-swatch {
    padding-inline-start: calc((2 * var(--padding-sm)) + var(--variant-picker-swatch-width));
  }

  .variant-option__select-wrapper .swatch {
    position: absolute;
    top: 50%;
    left: var(--padding-md);
    transform: translateY(-50%);
  }

  /* Variant picker alignment modifiers */
  .variant-picker--center,
  .variant-picker--center .variant-option {
    text-align: center;
    align-items: center;
    justify-content: center;
    width: 100%;
  }

  .variant-picker--right,
  .variant-picker--right .variant-option {
    text-align: right;
    justify-content: right;
  }

  /* --- Ergovanta: hidden color option-name label (custom) --- */
  /* When the redundant "Color" legend text is suppressed (rendered visually
     hidden), collapse the legend's reserved bottom margin so the swatches don't
     sit below an empty gap. Horizon sets margin-block-end on
     .variant-option--buttons legend; we zero it only for the label-hidden case.
     Other options keep their visible label and normal spacing. */
  .variant-option--label-hidden legend {
    margin-block-end: 0;
  }

  /* --- Ergovanta color-hover preview (custom) --- */
  /* On color-style option buttons, previewing the color on hover/focus.
     Strictly scoped to labels that carry the --ev-swatch hint set in Liquid,
     so size / non-color options and all other buttons are unaffected.
     The selected (checked) button keeps Horizon's own selected styling. */
  .variant-option__button-label--ev-color:not(:has(:checked)):hover,
  .variant-option__button-label--ev-color:not(:has(:checked)):has(:focus-visible) {
    background: var(--ev-swatch);
    border-color: color-mix(in srgb, var(--ev-swatch) 82%, #000);
    color: var(--ev-swatch-text);
  }

  /* Keep the value text legible above the colored background. */
  .variant-option__button-label--ev-color:not(:has(:checked)):hover .variant-option__button-label__text,
  .variant-option__button-label--ev-color:not(:has(:checked)):has(:focus-visible) .variant-option__button-label__text {
    color: var(--ev-swatch-text);
  }
/* END_SNIPPET:variant-main-picker */

/* START_SNIPPET:variant-swatches (INDEX:391) */
swatches-variant-picker-component {
    display: flex;
    width: 100%;
    flex-direction: row;
    justify-content: var(--product-swatches-alignment-mobile);

    @media screen and (min-width: 750px) {
      justify-content: var(--product-swatches-alignment);
    }

    --overflow-list-padding-block: calc(
        var(--product-swatches-padding-block-start) + var(--focus-outline-offset) + var(--focus-outline-width)
      )
      calc(var(--product-swatches-padding-block-end) + var(--focus-outline-offset) + var(--focus-outline-width));
    --overflow-list-padding-inline: calc(
        var(--product-swatches-padding-inline-start) + var(--focus-outline-offset) + (1.5 * var(--focus-outline-width))
      )
      calc(var(--product-swatches-padding-inline-end) + var(--focus-outline-offset) + var(--focus-outline-width));

    overflow-list::part(list) {
      gap: var(--gap-sm);
    }
  }

  swatches-variant-picker-component overflow-list[disabled='true'] {
    --overflow-list-padding-block: 0px;
    margin-block-start: calc(
      var(--product-swatches-padding-block-start) + var(--focus-outline-offset) + var(--focus-outline-width)
    );
    margin-block-end: calc(
      var(--product-swatches-padding-block-end) + var(--focus-outline-offset) + var(--focus-outline-width)
    );
  }

  .hidden-swatches__count {
    display: flex;
    align-self: center;
    align-items: center;
    justify-content: center;
    color: rgb(var(--color-foreground-rgb) / var(--opacity-40-60));
    background-color: transparent;
    padding: 0;
    border: 0;
    border-radius: 0;

    &::before {
      /* This doesn't work in Safari without the counter-reset. https://stackoverflow.com/a/40179718 */
      counter-reset: overflow-count var(--overflow-count);
      content: '+' counter(overflow-count);
      line-height: 1;
      cursor: pointer;
    }
  }

  .hidden-swatches__count:hover {
    color: var(--color-foreground-rgb);
  }
/* END_SNIPPET:variant-swatches */

/* START_SNIPPET:video (INDEX:392) */
.video-interaction-hint {
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: var(--layer-flat);
  }

  .video-interaction-hint:hover {
    opacity: 1;
  }
/* END_SNIPPET:video */

/* START_SNIPPET:volume-pricing-info (INDEX:393) */
.volume-pricing-info {
    display: inline-flex;
  }

  .volume-pricing-info__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: var(--minimum-touch-target);
    height: var(--minimum-touch-target);
    color: var(--color-foreground-secondary);
    cursor: pointer;
    transition: color var(--animation-speed) var(--animation-easing);
    flex-shrink: 0;
  }

  .volume-pricing-info__button:hover {
    color: var(--color-foreground);
  }

  .volume-pricing-info__button .svg-wrapper {
    width: var(--icon-size-sm);
    height: var(--icon-size-sm);
  }

  .volume-pricing-info__button--with-label {
    width: auto;
    gap: var(--gap-sm);
  }

  .volume-pricing-info__popover {
    --volume-pricing-popover-max-width: 320px;
    --volume-pricing-popover-spacing: 8px;
    --volume-pricing-popover-viewport-margin: 16px;

    min-inline-size: 280px;
    max-inline-size: var(--volume-pricing-popover-max-width);
    background: var(--color-background);
    border: var(--style-border-popover);
    border-radius: var(--style-border-radius-popover, 0);
    box-shadow: var(--shadow-popover);
    overflow: hidden;
    padding: 0;
    margin: 0;
    transition-property: display, opacity, translate;
    transition-duration: 0.3s;
    transition-timing-function: var(--ease-out-quad);
    transition-behavior: allow-discrete;
    translate: 0 20px;
    opacity: 0;
  }

  /* Native anchor positioning for supported browsers */
  .volume-pricing-info__popover {
    inset: unset;
    top: calc(anchor(bottom) + var(--volume-pricing-popover-spacing));
    left: anchor(left);
  }

  @supports (position-try-fallbacks: --top-left) {
    .volume-pricing-info__popover {
      position-try-fallbacks: --top-left;
    }

    @position-try --top-left {
      top: calc(anchor(top) - var(--volume-pricing-popover-spacing));
      bottom: auto;
      transform: translateY(-100%);
    }
  }

  /* Fallback positioning using custom properties */
  @supports not (position-anchor: --volume-pricing-trigger) {
    .volume-pricing-info__popover {
      position: fixed;
      top: calc(var(--anchor-bottom) * 1px + var(--volume-pricing-popover-spacing));
      left: max(
        var(--volume-pricing-popover-viewport-margin),
        min(
          var(--anchor-left) * 1px,
          100vw - var(--volume-pricing-popover-max-width) - var(--volume-pricing-popover-viewport-margin)
        )
      );
    }
  }

  .volume-pricing-info__popover:popover-open {
    translate: 0 0;
    opacity: 1;
  }

  @starting-style {
    .volume-pricing-info__popover:popover-open {
      translate: 0 20px;
      opacity: 0;
    }
  }

  .volume-pricing-info__rules {
    display: flex;
    flex-direction: column;
    gap: var(--gap-2xs);
    padding: var(--padding-md);
    font-size: var(--font-size--xs);
  }

  .volume-pricing-info__rules,
  .volume-pricing-info__rules > span {
    color: rgb(var(--color-foreground-rgb) / var(--opacity-subdued-text));
  }

  .volume-pricing-info__table {
    display: flex;
    flex-direction: column;
  }

  .volume-pricing-info__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--padding-sm) var(--padding-md);
    font-size: var(--font-size--sm);
    background: var(--color-background);
    border-inline-start: 3px solid transparent;
    transition: border-color var(--animation-speed) var(--animation-easing);
  }

  .volume-pricing-info__row:nth-child(odd) {
    background: rgb(var(--color-foreground-rgb) / var(--opacity-5));
  }

  .volume-pricing-info__row--active {
    border-inline-start-color: var(--color-foreground);
    font-weight: var(--font-weight-medium);
  }

  .volume-pricing-info__quantity {
    color: var(--color-foreground);
  }

  .volume-pricing-info__price {
    display: flex;
    align-items: center;
    color: var(--color-foreground);
  }

  .volume-pricing-info__checkmark {
    display: none;
    width: var(--icon-size-sm);
    height: var(--icon-size-sm);
    color: var(--color-primary);
  }

  .volume-pricing-info__row--active .volume-pricing-info__checkmark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
/* END_SNIPPET:volume-pricing-info */