/** Shopify CDN: Minification failed

Line 6168:22 Unexpected "{"
Line 6168:31 Expected ":"

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:blog-tag-filter (INDEX:6) */
.blog-filter-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 1.5rem 0;
  }

  .tab-link {
    display: inline-flex;
    align-items: center;
    height: 28px;
    padding: 5px 16px;
    border-radius: 100px;
    border: 1px solid #292929;
    background: transparent;
    color: #292929;
    cursor: pointer;
    font-family: var(--font-heading--family);
    font-size: 11px;
    font-weight: 500;
    line-height: 1;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
  }

  .tab-link.active,
  .tab-link:hover {
    background: #EB2529;
    border-color: #EB2529;
    color: #F5F5F5;
  }

  @media screen and (max-width: 900px) {
    .blog-filter-tabs {
      gap: 8px;
    }
  }

  @media screen and (max-width: 749px) {
    .blog-filter-tabs {
      padding: 1rem 0;
    }
  }
/* END_SECTION:blog-tag-filter */

/* START_SECTION:careers-gallery (INDEX:8) */
.careers-gallery {
    --cg-gap: 8px;
    --cg-py: 24px;
    --cg-placeholder: #D9D9D9;
    background-color: #ffffff;
    overflow: hidden;
  }

  .careers-gallery__gallery {
    padding: var(--cg-py) 0;
    overflow: hidden;
  }

  .careers-gallery__track {
    display: flex;
    flex-direction: row;
    gap: var(--cg-gap);
    width: max-content;
    margin-bottom: var(--cg-gap);
  }

  .careers-gallery__track:last-child {
    margin-bottom: 0;
  }

  /* Item base – h-267, rounded-20 (desktop) */
  .careers-gallery__item {
    flex-shrink: 0;
    height: 267px;
    border-radius: 20px;
    overflow: hidden;
    background: var(--cg-placeholder);
  }

  /* Row 1 widths: 664 / 664 / 302 */
  .careers-gallery__track--row1 .careers-gallery__item:nth-child(3n+1) { width: 664px; }
  .careers-gallery__track--row1 .careers-gallery__item:nth-child(3n+2) { width: 664px; }
  .careers-gallery__track--row1 .careers-gallery__item:nth-child(3n+3) { width: 302px; }

  /* Row 2 widths: 372 / 464 / 581 / 581 */
  .careers-gallery__track--row2 .careers-gallery__item:nth-child(4n+1) { width: 372px; }
  .careers-gallery__track--row2 .careers-gallery__item:nth-child(4n+2) { width: 464px; }
  .careers-gallery__track--row2 .careers-gallery__item:nth-child(4n+3) { width: 581px; }
  .careers-gallery__track--row2 .careers-gallery__item:nth-child(4n+4) { width: 581px; }

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

  .careers-gallery__placeholder {
    width: 100%;
    height: 100%;
    background: var(--cg-placeholder);
  }

  /* Infinite scroll animations – row 1 scrolls left, row 2 scrolls right */
  .careers-gallery__gallery:not([data-disabled]) .careers-gallery__track--row1 {
    animation: cg-gallery-left 40s linear infinite;
  }

  .careers-gallery__gallery:not([data-disabled]) .careers-gallery__track--row2 {
    animation: cg-gallery-right 45s linear infinite;
  }

  .careers-gallery__gallery:hover .careers-gallery__track--row1,
  .careers-gallery__gallery:hover .careers-gallery__track--row2 {
    animation-play-state: paused;
  }

  @media (prefers-reduced-motion: reduce) {
    .careers-gallery__track--row1,
    .careers-gallery__track--row2 {
      animation: none;
    }
  }

  @keyframes cg-gallery-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }

  @keyframes cg-gallery-right {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
  }

  /* Tablet (750–989px) */
  @media screen and (min-width: 750px) and (max-width: 989px) {
    .careers-gallery__item {
      height: 200px;
    }

    .careers-gallery__track--row1 .careers-gallery__item:nth-child(3n+1) { width: 400px; }
    .careers-gallery__track--row1 .careers-gallery__item:nth-child(3n+2) { width: 400px; }
    .careers-gallery__track--row1 .careers-gallery__item:nth-child(3n+3) { width: 180px; }

    .careers-gallery__track--row2 .careers-gallery__item:nth-child(4n+1) { width: 220px; }
    .careers-gallery__track--row2 .careers-gallery__item:nth-child(4n+2) { width: 280px; }
    .careers-gallery__track--row2 .careers-gallery__item:nth-child(4n+3) { width: 350px; }
    .careers-gallery__track--row2 .careers-gallery__item:nth-child(4n+4) { width: 350px; }
  }

  /* Mobile (≤749px) */
  @media screen and (max-width: 749px) {
    .careers-gallery__gallery:not([data-disabled]) .careers-gallery__track--row1 {
      animation: cg-gallery-left 20s linear infinite;
    }

    .careers-gallery__gallery:not([data-disabled]) .careers-gallery__track--row2 {
      animation: cg-gallery-right 24s linear infinite;
    }

    .careers-gallery__gallery {
      padding: 16px 0 32px;
      overflow-x: auto;
    }

    .careers-gallery__track {
      margin-bottom: 4px;
      gap: 4px;
    }

    .careers-gallery__item {
      height: 81px;
      border-radius: 11px;
    }

    /* Row 1 mobile widths: 207 / 207 / 94 */
    .careers-gallery__track--row1 .careers-gallery__item:nth-child(3n+1) { width: 207px; }
    .careers-gallery__track--row1 .careers-gallery__item:nth-child(3n+2) { width: 207px; }
    .careers-gallery__track--row1 .careers-gallery__item:nth-child(3n+3) { width: 94px; }

    /* Row 2 mobile widths: 116 / 145 / 181 / 181 */
    .careers-gallery__track--row2 .careers-gallery__item:nth-child(4n+1) { width: 116px; }
    .careers-gallery__track--row2 .careers-gallery__item:nth-child(4n+2) { width: 145px; }
    .careers-gallery__track--row2 .careers-gallery__item:nth-child(4n+3) { width: 181px; }
    .careers-gallery__track--row2 .careers-gallery__item:nth-child(4n+4) { width: 181px; }
  }

  /* ≤480px */
  @media screen and (max-width: 480px) {
    .careers-gallery__item {
      height: 81px;
    }

    .careers-gallery__track--row1 .careers-gallery__item:nth-child(3n+1) { width: 180px; }
    .careers-gallery__track--row1 .careers-gallery__item:nth-child(3n+2) { width: 180px; }
    .careers-gallery__track--row1 .careers-gallery__item:nth-child(3n+3) { width: 82px; }

    .careers-gallery__track--row2 .careers-gallery__item:nth-child(4n+1) { width: 100px; }
    .careers-gallery__track--row2 .careers-gallery__item:nth-child(4n+2) { width: 126px; }
    .careers-gallery__track--row2 .careers-gallery__item:nth-child(4n+3) { width: 158px; }
    .careers-gallery__track--row2 .careers-gallery__item:nth-child(4n+4) { width: 158px; }
  }
/* END_SECTION:careers-gallery */

/* START_SECTION:careers-hero (INDEX:9) */
.careers-hero {
    --ch-black: #292929;
    --ch-bg: #F5F5F5;
    width: 100%;
    margin-top: var(--ch-margin-top, 0px);
  }

  .careers-hero__wrap {
    position: relative;
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    left: 0;
    box-sizing: border-box;
    background-color: var(--ch-bg);
    overflow: hidden;
  }

  .careers-hero__bg-image {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
  }

  .careers-hero__bg-image-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .careers-hero__bg-overlay {
    position: absolute;
    inset: 0;
    background: #000;
    z-index: 1;
    pointer-events: none;
  }

  .careers-hero__inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1512px;
    margin: 0 auto;
    box-sizing: border-box;
  }

  /* Mobile-first hero (adapted from work-portfolio) */
  .careers-hero__content {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .careers-hero__left {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .careers-hero__title {
    font-family: var(--font-heading--family);
    font-weight: 500;
    font-size: 72px;
    line-height: 78px;
    color: var(--ch-black);
    margin: 0;
    letter-spacing: 0;
  }

  .careers-hero__tagline {
    font-family: var(--font-heading--family);
    font-weight: 400;
    font-size: 12px;
    line-height: 18px;
    color: var(--ch-black);
    margin: 0;
  }

  .careers-hero__tagline--mobile-only {
    display: block;
  }

  .careers-hero__tagline--desktop-only {
    display: none;
  }

  /* Desktop (≥990px) – scale up title; layout stays column until 1440px */
  @media screen and (min-width: 990px) {
    .careers-hero__title {
      font-size: clamp(72px, 18.65vw, 282px);
      line-height: 1.08;
    }
  }

  /* Wide desktop (≥1440px) – title left, tagline right, bottom-aligned */
  @media screen and (min-width: 1440px) {
    .careers-hero__content {
      flex-direction: row;
      align-items: flex-end;
      justify-content: space-between;
      gap: 48px;
    }

    .careers-hero__left {
      gap: 48px;
      flex: 1 1 auto;
      min-width: 0;
    }

    .careers-hero__tagline--mobile-only {
      display: none;
    }

    .careers-hero__tagline--desktop-only {
      display: block;
    }

    .careers-hero__tagline {
      font-size: 14px;
      line-height: 20px;
      max-width: 308px;
      flex-shrink: 0;
      text-align: right;
    }
  }
/* END_SECTION:careers-hero */

/* START_SECTION:careers-perks (INDEX:10) */
.careers-perks {
    --cp-black: #292929;
    --cp-dark-gray: #464646;
    --cp-border: rgba(70, 70, 70, 0.5);
    --cp-placeholder: #D9D9D9;
    background-color: #ffffff;
  }

  .careers-perks__inner {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: var(--cp-pt, 40px) 16px var(--cp-pb, 60px);
    width: 100%;
    max-width: 1512px;
    margin: 0 auto;
    box-sizing: border-box;
  }

  /* Accordion */
  .careers-perks__accordion {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
  }

  .careers-perks__item {
    border-bottom: 0.5px solid var(--cp-border);
  }

  .careers-perks__trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 24px 16px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    gap: 16px;
    -webkit-tap-highlight-color: transparent;
  }

  .careers-perks__trigger-label {
    font-family: var(--font-heading--family);
    font-weight: 400;
    font-size: 18px;
    line-height: 1;
    color: var(--cp-black);
  }

  .careers-perks__chevron {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s ease;
  }

  .careers-perks__item.is-open .careers-perks__chevron {
    transform: rotate(-90deg);
  }

  .careers-perks__body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
  }

  .careers-perks__body-inner {
    font-family: var(--font-heading--family);
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    color: var(--cp-dark-gray);
    padding: 0 16px 24px;
  }

  .careers-perks__body-inner p {
    margin: 0 0 8px;
  }

  .careers-perks__body-inner p:last-child {
    margin-bottom: 0;
  }

  /* Image */
  .careers-perks__image-wrap {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
  }

  .careers-perks__image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    border-radius: 10px;
  }

  .careers-perks__image-placeholder {
    width: 100%;
    height: 400px;
    background: var(--cp-placeholder);
    border-radius: 10px;
  }

  /* Desktop (≥990px) – side by side */
  @media screen and (min-width: 990px) {
    .careers-perks__inner {
      flex-direction: row;
      align-items: flex-start;
      justify-content: space-between;
      gap: 40px;
      padding: var(--cp-pt, 40px) 60px var(--cp-pb, 80px);
    }

    .careers-perks__accordion {
      flex: 0 0 auto;
      width: 611px;
      max-width: 50%;
    }

    .careers-perks__trigger-label {
      font-size: 24px;
    }

    .careers-perks__image-wrap {
      flex: 1 1 auto;
      max-width: 710px;
    }

    .careers-perks__image,
    .careers-perks__image-placeholder {
      height: 800px;
    }
  }

  /* Tablet (750–989px) */
  @media screen and (min-width: 750px) and (max-width: 989px) {
    .careers-perks__inner {
      padding: var(--cp-pt, 40px) 40px var(--cp-pb, 60px);
    }

    .careers-perks__trigger-label {
      font-size: 20px;
    }

    .careers-perks__image,
    .careers-perks__image-placeholder {
      height: 500px;
    }
  }
/* END_SECTION:careers-perks */

/* START_SECTION:case-study-main-v2 (INDEX:12) */
/* ═══════════════════════════════════════════════════════
   Case Study Main V2 (csm2)
   Figma node 4302-33994, canvas 1512px
   Tokens: Black #292929, Dark gray #464646, Tech White #F5F5F5
   ═══════════════════════════════════════════════════════ */

.csm2 {
  --csm2-gap: 32px;
  --csm2-gap-tight: 12px;
  --csm2-pad: 16px;
  --csm2-radius: 10px;

  width: 100%;
  font-family: var(--font-heading--family);
  background: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

/*
  Spacing lives on the children, not as a parent `gap`, so a block with
  spacing_above: tight can override just its own leading space. Blank blocks are
  never rendered at all, so no phantom space is left behind either way.
*/
.csm2 > * + * {
  margin-top: var(--csm2-gap);
}

.csm2 > * + *.csm2-block--tight {
  margin-top: var(--csm2-gap-tight);
}

/* Figma: header content ends, then 60px to the banner. */
.csm2 > .csm2__header + * {
  margin-top: 32px;
}

/* ── Hero header (identical geometry to v1) ─────────────── */

.csm2__header {
  padding: 32px var(--csm2-pad) 0;
}

.csm2__header-inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.csm2__header-left {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.csm2__hero-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.csm2__title {
  font-family: var(--font-heading--family);
  font-weight: 400;
  font-size: var(--csm2-title-fs-mobile, 36px);
  line-height: var(--csm2-title-lh-mobile, 42px);
  letter-spacing: 0;
  color: #292929;
  margin: 0;
}

.csm2__hero-lower {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.csm2__description {
  font-family: var(--font-body--family);
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  letter-spacing: 0;
  color: #292929;
  margin: 0;
  max-width: 696px;
}

.csm2__description p {
  margin: 0 0 0.75em;
}

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

/* Tags */
.csm2__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.csm2__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 16px;
  border: 1px solid #292929;
  border-radius: 100px;
  font-family: var(--font-body--family);
  font-weight: 500;
  font-size: 11px;
  line-height: 18px;
  letter-spacing: 0;
  color: #292929;
  white-space: nowrap;
}

/* Specs */
.csm2__specs {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.csm2__spec {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.csm2__spec-label {
  font-family: var(--font-body--family);
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0;
  color: #464646;
  opacity: 0.5;
}

.csm2__spec-value {
  font-family: var(--font-body--family);
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0;
  color: #292929;
}

.csm2__spec--link .csm2__spec-value {
  display: none;
}

.csm2__spec-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body--family);
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0;
  color: #292929;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.csm2__spec-link:hover {
  opacity: 0.8;
}

.csm2__spec-link svg {
  flex-shrink: 0;
}

/* ── Shared wide media (banner + image_full) ────────────── */

.csm2__banner,
.csm2__full {
  padding-inline: var(--csm2-pad);
}

/*
  aspect-ratio is set explicitly on every image box so the tall image stack
  reserves its height before decode. Without it this page is a CLS generator.
*/
.csm2__media--wide {
  aspect-ratio: 1392 / 738;
  border-radius: var(--csm2-radius);
  overflow: hidden;
}

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

/* ── Image pair ─────────────────────────────────────────── */

.csm2__pair {
  padding-inline: var(--csm2-pad);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.csm2__pair-panel {
  aspect-ratio: 688 / 640;
  border-radius: var(--csm2-radius);
  overflow: hidden;
  flex: 1 1 0%;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.csm2__pair-img {
  display: block;
}

.csm2__pair-panel--cover .csm2__pair-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/*
  Figma 4302:34062 – panel background with the image inset inside it. The inset is on the
  image, not as padding on the panel: the panel is a flex item with flex-basis 0 and
  box-sizing border-box, and a flex base size can never resolve below the item's own
  padding. Padding here therefore inflated this panel's base size by 24% of the row and
  starved its --cover sibling (805px vs 490px at 1512px, against Figma's equal 688px).
  Percentages resolve against the panel, so 76% x 87.7% reproduces the old 12% / 5.7%
  inset. Exact values are not critical: object-fit: contain letterboxes to the image's
  own aspect ratio well inside the box, so the inset only needs to be generous.
*/
.csm2__pair-panel--contain .csm2__pair-img {
  width: 76%;
  height: 87.7%;
  object-fit: contain;
  border-radius: 20px;
}

/* Only one side populated: fill the page column rather than leave a hole. */
.csm2__pair--single .csm2__pair-panel {
  aspect-ratio: 1392 / 738;
}

/* ── Framed image ───────────────────────────────────────── */

.csm2__framed {
  margin-inline: var(--csm2-pad);
  background-color: #f5f5f5;
  border-radius: var(--csm2-radius);
  padding: 16px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.csm2__framed-media {
  aspect-ratio: 16 / 9;
  border-radius: var(--csm2-radius);
  overflow: hidden;
  width: 100%;
}

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

/* ── Image slider ───────────────────────────────────────── */

.csm2__slider-panel {
  --csm2-slide-w: 85vw;
  --csm2-slide-gap: 16px;
  --csm2-slide-radius: 12px;
  --csm2-slide-border: 4px;

  margin-inline: var(--csm2-pad);
  background-color: #f5f5f5;
  border-radius: var(--csm2-radius);
  padding-block: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  overflow: hidden;
}

.csm2__slider {
  width: 100%;
  min-width: 0;
}

.csm2__slider-track {
  display: flex;
  align-items: center;
  gap: var(--csm2-slide-gap);
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  /* Lets any slide, including the first and last, come to rest centred. */
  padding-inline: calc((100% - var(--csm2-slide-w)) / 2);
}

.csm2__slider-track::-webkit-scrollbar {
  display: none;
}

.csm2__slider-track.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
  scroll-behavior: auto;
}

.csm2__slider-track--single {
  overflow-x: hidden;
  scroll-snap-type: none;
}

.csm2__slide {
  flex: 0 0 var(--csm2-slide-w);
  width: var(--csm2-slide-w);
  aspect-ratio: 780 / 485.469;
  scroll-snap-align: center;
  /* One slide per swipe. Without this a hard flick can outrun the cloned runway either side
     and dead-stop against the true end of the track. */
  scroll-snap-stop: always;
  border: var(--csm2-slide-border) solid #292929;
  border-radius: var(--csm2-slide-radius);
  overflow: hidden;
  box-sizing: border-box;
}

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

.csm2__slider-nav {
  display: flex;
  align-items: center;
  gap: 13px;
}

.csm2__slider-arrow {
  appearance: none;
  background: none;
  border: 0;
  padding: 12px 0;
  margin: 0;
  cursor: pointer;
  color: #292929;
  display: inline-flex;
  align-items: center;
  transition: opacity 0.2s ease;
}

.csm2__slider-arrow svg {
  display: block;
  width: 72px;
  height: auto;
}

.csm2__slider-arrow:disabled {
  color: #464646;
  opacity: 0.5;
  cursor: default;
}

.csm2__slider-arrow:focus-visible {
  outline: 2px solid #292929;
  outline-offset: 4px;
}

/* ── Design showcase (carried over from v1) ─────────────── */

.csm2__showcase {
  margin: 0 var(--csm2-pad);
  border-radius: 20px;
  overflow: hidden;
  padding: 10px;
}

.csm2__showcase-inner {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.csm2__showcase-single {
  overflow: hidden;
  border-radius: 10px;
}

.csm2__showcase-photo--single {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.csm2__showcase-gallery {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.csm2__showcase-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.csm2__showcase-cell {
  overflow: hidden;
  border-radius: 10px;
}

.csm2__showcase-cell--large {
  aspect-ratio: 1.71 / 1;
}

.csm2__showcase-cell--small {
  aspect-ratio: 1.05 / 1;
}

.csm2__showcase-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── Content rows ───────────────────────────────────────── */

.csm2__row {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-inline: var(--csm2-pad);
  padding-top: var(--csm2-row-pt, 40px);
  padding-bottom: var(--csm2-row-pb, 40px);
}

.csm2__row--white {
  background: #ffffff;
}

.csm2__row--gray {
  background: #f5f5f5;
}

/*
  Page-width: full-viewport background band; inner matches the theme page column.
  Carried over from v1 (sections/case-study-main.liquid:676-694).
*/
.csm2__band {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  box-sizing: border-box;
}

.csm2__band--gray {
  background: #f5f5f5;
}

.csm2__band > .csm2__row--in-band,
.csm2__band > .csm2__impact--in-band {
  box-sizing: border-box;
  max-width: var(--full-page-grid-central-column-width);
  margin-inline: auto;
  width: 100%;
  background: transparent;
}

/* Figma: Headlines/H3 | Regular, Manrope 48/60. v1 used 16/24 here. */
.csm2__row-label {
  font-family: var(--font-heading--family);
  font-size: 28px;
  line-height: 34px;
  font-weight: 400;
  letter-spacing: 0;
  color: #292929;
  flex-shrink: 0;
}

.csm2__row-body {
  font-family: var(--font-body--family);
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  letter-spacing: 0;
  color: #292929;
}

.csm2__row-body p {
  margin: 0 0 1em;
}

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

.csm2__row-body ul,
.csm2__row-body ol {
  padding-left: 1.5em;
  margin: 0 0 1em;
}

.csm2__row-body li {
  margin-bottom: 0.5em;
}

.csm2__row-body h2,
.csm2__row-body h3,
.csm2__row-body h4 {
  font-family: var(--font-heading--family);
  font-weight: 400;
  margin: 0 0 0.75em;
}

.csm2__row-body h2 {
  font-size: 24px;
  line-height: 32px;
}

.csm2__row-body h3 {
  font-size: 20px;
  line-height: 28px;
}

.csm2__row-body strong {
  font-weight: 600;
}

/* ── Impact ─────────────────────────────────────────────── */

.csm2__impact {
  background: #f5f5f5;
  padding: 40px var(--csm2-pad);
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.csm2__impact-label {
  font-family: var(--font-heading--family);
  font-size: 28px;
  line-height: 34px;
  font-weight: 400;
  letter-spacing: 0;
  color: #292929;
  flex-shrink: 0;
}

.csm2__impact-right {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.csm2__stats {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 32px;
}

.csm2__stat {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 0 0 calc(50% - 16px);
  min-width: 100px;
}

.csm2__stat-value {
  font-family: var(--font-heading--family);
  font-size: clamp(36px, 10vw, 59px);
  line-height: 0.78;
  font-weight: 400;
  letter-spacing: 0;
  color: #292929;
}

.csm2__stat-desc {
  font-family: var(--font-body--family);
  font-size: 12px;
  line-height: 18px;
  font-weight: 400;
  letter-spacing: 0;
  color: #464646;
}

.csm2__stat-divider {
  display: none;
}

.csm2__impact-body {
  font-family: var(--font-body--family);
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  letter-spacing: 0;
  color: #292929;
}

.csm2__impact-body p {
  margin: 0 0 1em;
}

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

.csm2__impact-body ul,
.csm2__impact-body ol {
  padding-left: 1.5em;
  margin: 0 0 1em;
}

.csm2__impact-body li {
  margin-bottom: 0.5em;
}

/* ═══════════════════════════════════════════════════════
   Tablet – min-width: 768px
   ═══════════════════════════════════════════════════════ */

@media screen and (min-width: 768px) {
  .csm2 {
    --csm2-gap: 40px;
    --csm2-gap-tight: 16px;
    --csm2-pad: 40px;
  }

  .csm2 > .csm2__header + * {
    margin-top: 48px;
  }

  /* Header */
  .csm2__header {
    padding: 48px var(--csm2-pad) 0;
  }

  .csm2__header-inner {
    flex-direction: row;
    align-items: flex-end;
    gap: 48px;
  }

  .csm2__header-left {
    flex: 1;
    min-width: 0;
  }

  .csm2__specs {
    flex: 0 0 178px;
    width: 178px;
    gap: 16px;
  }

  .csm2__title {
    font-size: var(--csm2-title-fs-tablet, 56px);
    line-height: var(--csm2-title-lh-tablet, 62px);
  }

  .csm2__tags {
    gap: 16px;
  }

  /* Image pair */
  .csm2__pair {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
  }

  /* Framed image */
  .csm2__framed {
    padding: 40px;
  }

  /* Slider */
  .csm2__slider-panel {
    --csm2-slide-w: 600px;
    --csm2-slide-gap: 40px;
    --csm2-slide-radius: 16px;
    --csm2-slide-border: 6px;

    padding-block: 64px;
    gap: 32px;
  }

  /* Showcase */
  .csm2__showcase {
    margin: 0 var(--csm2-pad);
    padding: 10px;
  }

  .csm2__showcase-row {
    flex-direction: row;
    gap: 10px;
    align-items: stretch;
  }

  .csm2__showcase-row--normal .csm2__showcase-cell--large,
  .csm2__showcase-row--reversed .csm2__showcase-cell--large {
    flex: 0 0 62%;
  }

  .csm2__showcase-row--normal .csm2__showcase-cell--small,
  .csm2__showcase-row--reversed .csm2__showcase-cell--small {
    flex: 1;
  }

  /* Content rows */
  .csm2__row {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 48px;
    padding-inline: var(--csm2-pad);
    padding-top: var(--csm2-row-pt, 56px);
    padding-bottom: var(--csm2-row-pb, 56px);
  }

  .csm2__row-label {
    flex: 0 0 260px;
    font-size: 36px;
    line-height: 44px;
  }

  .csm2__row-body {
    flex: 1 1 auto;
    min-width: 0;
    max-width: 674px;
  }

  /* Impact */
  .csm2__impact {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 48px;
    padding: 64px var(--csm2-pad);
  }

  .csm2__impact-label {
    flex: 0 0 260px;
    font-size: 36px;
    line-height: 44px;
  }

  .csm2__impact-right {
    flex: 1 1 auto;
    min-width: 0;
    max-width: 632px;
  }

  .csm2__stats {
    flex-wrap: nowrap;
    gap: 0;
    align-items: flex-start;
    justify-content: space-between;
  }

  .csm2__stat {
    flex: 1 1 0%;
    min-width: 0;
  }

  .csm2__stat-desc {
    overflow-wrap: break-word;
  }

  .csm2__stat-divider {
    display: block;
    width: 1px;
    height: 51px;
    margin: 8px 20px 0;
    background: #464646;
    opacity: 0.4;
    flex-shrink: 0;
  }

  .csm2__stat-value {
    font-size: clamp(36px, 5vw, 59px);
  }
}

/* ═══════════════════════════════════════════════════════
   Desktop – min-width: 990px
   Matches the Figma 1512px canvas
   ═══════════════════════════════════════════════════════ */

@media screen and (min-width: 990px) {
  .csm2 {
    --csm2-gap: 52px;
    --csm2-gap-tight: 16px;
    --csm2-pad: 60px;
  }

  .csm2 > .csm2__header + * {
    margin-top: 60px;
  }

  /* Header – Figma: pt=32, px=60, gap=360, left=696px, right=178px */
  .csm2__header {
    padding: 32px var(--csm2-pad) 0;
  }

  .csm2__header-inner {
    gap: 360px;
    align-items: flex-end;
  }

  .csm2__header-left {
    flex: 0 1 696px;
  }

  .csm2__title {
    font-size: var(--csm2-title-fs-desktop, 72px);
    line-height: var(--csm2-title-lh-desktop, 78px);
    max-width: 696px;
  }

  .csm2__description {
    max-width: 696px;
  }

  .csm2__tags {
    gap: 16px;
  }

  /* Framed image – Figma 4302:34033: py=67, px=104 */
  .csm2__framed {
    padding: 67px 104px;
  }

  /* Slider – Figma 4302:34042: py=88, slide 780x485.469, gap 68, nav 40 below */
  .csm2__slider-panel {
    --csm2-slide-w: 780px;
    --csm2-slide-gap: 68px;
    --csm2-slide-radius: 20px;
    --csm2-slide-border: 8px;

    padding-block: 88px;
    gap: 40px;
  }

  /* Showcase */
  .csm2__showcase {
    margin: 0 var(--csm2-pad);
    padding: 10px;
  }

  /* Content rows – Figma 4302:34027: py=80, px=60, label=300px, body=674px */
  .csm2__row {
    padding-inline: var(--csm2-pad);
    padding-top: var(--csm2-row-pt, 80px);
    padding-bottom: var(--csm2-row-pb, 80px);
    gap: 60px;
  }

  /*
    Bases are the Figma widths at 1512px, but they must be allowed to shrink: at 990px the
    content box is only 870px, so fixed 300 + 674 would overflow by ~104px. `0 1` keeps the
    exact Figma widths once there is room and shrinks them proportionally below that.
  */
  .csm2__row-label {
    flex: 0 1 300px;
    font-size: 48px;
    line-height: 60px;
  }

  .csm2__row-body {
    flex: 0 1 674px;
    max-width: 674px;
  }

  /* Impact – Figma 4302:34068: py=32 outer + 60 inner, label=300px, right=632px */
  .csm2__impact {
    padding: 92px var(--csm2-pad);
    gap: 60px;
  }

  .csm2__impact-label {
    flex: 0 1 300px;
    font-size: 48px;
    line-height: 60px;
  }

  .csm2__impact-right {
    flex: 0 1 632px;
    max-width: 632px;
    /* Figma leaves 44px of slack to the right of this column, not 0. */
    margin-right: 44px;
  }

  .csm2__stat-divider {
    margin: 8px 48px 0;
  }

  .csm2__stat-value {
    font-size: clamp(40px, 3.9vw, 59px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .csm2__slider-track {
    scroll-behavior: auto;
  }
}
/* END_SECTION:case-study-main-v2 */

/* START_SECTION:case-study-main (INDEX:13) */
/* ═══════════════════════════════════════════════════════
   Case Study Main (csm)
   Figma node 1643-21489, canvas 1512px
   ═══════════════════════════════════════════════════════ */

.csm {
  width: 100%;
  font-family: var(--font-heading--family);
  background: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 40px;
}

/* ── Hero Header ───────────────────────────────────────── */

.csm__header {
  padding: 32px 16px 0;
}

.csm__header-inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.csm__header-left {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Hero content block */
.csm__hero-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.csm__title {
  font-family: var(--font-heading--family);
  font-weight: 400;
  font-size: var(--csm-title-fs-mobile, 36px);
  line-height: var(--csm-title-lh-mobile, 42px);
  letter-spacing: 0;
  color: #292929;
  margin: 0;
}

.csm__hero-lower {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.csm__description {
  font-family: var(--font-body--family);
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  letter-spacing: 0;
  color: #292929;
  margin: 0;
  max-width: 696px;
}

.csm__description p {
  margin: 0 0 0.75em;
}

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

/* Tags */
.csm__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.csm__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 16px;
  border: 1px solid #292929;
  border-radius: 100px;
  font-family: var(--font-body--family);
  font-weight: 500;
  font-size: 11px;
  line-height: 18px;
  letter-spacing: 0;
  color: #292929;
  white-space: nowrap;
}

/* Specs sidebar */
.csm__specs {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.csm__spec {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.csm__spec-label {
  font-family: var(--font-body--family);
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0;
  color: #464646;
  opacity: 0.5;
}

.csm__spec-value {
  font-family: var(--font-body--family);
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0;
  color: #292929;
}

.csm__spec--link .csm__spec-value {
  display: none;
}

.csm__spec-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body--family);
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0;
  color: #292929;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.csm__spec-link:hover {
  opacity: 0.8;
}

.csm__spec-link svg {
  flex-shrink: 0;
}

/* ── Header Image ────────────────────────────────────────── */

.csm__header-image {
  padding: 0 16px;
  overflow: hidden;
}

.csm__header-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  object-fit: cover;
}

/* ── Design Showcase ─────────────────────────────────────── */

.csm__showcase {
  margin: 0 16px;
  border-radius: 20px;
  overflow: hidden;
  padding: 10px;
}

.csm__showcase-inner {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Single Image Block */
.csm__showcase-single {
  overflow: hidden;
  border-radius: 10px;
}

.csm__showcase-photo--single {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Gallery Block */
.csm__showcase-gallery {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.csm__showcase-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.csm__showcase-cell {
  overflow: hidden;
  border-radius: 10px;
}

.csm__showcase-cell--large {
  aspect-ratio: 1.71 / 1;
}

.csm__showcase-cell--small {
  aspect-ratio: 1.05 / 1;
}

.csm__showcase-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── Content Rows ────────────────────────────────────────── */

.csm__row {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-inline: 16px;
  padding-top: var(--csm-row-pt, 40px);
  padding-bottom: var(--csm-row-pb, 40px);
}

.csm__row--white {
  background: #ffffff;
}

.csm__row--gray {
  background: #f5f5f5;
}

/*
  Page-width: full-viewport background band; inner matches theme page column (--full-page-grid-central-column-width).
  Only output in Liquid when section_width is page-width (gray rows + impact).
*/
.csm__band {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  box-sizing: border-box;
}

.csm__band--gray {
  background: #f5f5f5;
}

.csm__band > .csm__row--in-band,
.csm__band > .csm__impact--in-band {
  box-sizing: border-box;
  max-width: var(--full-page-grid-central-column-width);
  margin-inline: auto;
  width: 100%;
  background: transparent;
}

.csm__row-label {
  font-family: var(--font-body--family);
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  letter-spacing: 0;
  color: #292929;
  flex-shrink: 0;
}

.csm__row-body {
  font-family: var(--font-body--family);
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  letter-spacing: 0;
  color: #292929;
}

.csm__row-body p {
  margin: 0 0 1em;
}

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

.csm__row-body ul,
.csm__row-body ol {
  padding-left: 1.5em;
  margin: 0 0 1em;
}

.csm__row-body li {
  margin-bottom: 0.5em;
}

.csm__row-body h2,
.csm__row-body h3,
.csm__row-body h4 {
  font-family: var(--font-heading--family);
  font-weight: 400;
  margin: 0 0 0.75em;
}

.csm__row-body h2 {
  font-size: 24px;
  line-height: 32px;
}

.csm__row-body h3 {
  font-size: 20px;
  line-height: 28px;
}

.csm__row-body strong {
  font-weight: 600;
}

/* ── Impact Section ──────────────────────────────────────── */

.csm__impact {
  background: #f5f5f5;
  padding: 40px 16px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.csm__impact-label {
  font-family: var(--font-body--family);
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  letter-spacing: 0;
  color: #292929;
  flex-shrink: 0;
}

.csm__impact-right {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.csm__stats {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 32px;
}

.csm__stat {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 0 0 calc(50% - 16px);
  min-width: 100px;
}

.csm__stat-value {
  font-family: var(--font-heading--family);
  font-size: clamp(36px, 10vw, 59px);
  line-height: 0.78;
  font-weight: 400;
  letter-spacing: 0;
  color: #292929;
}

.csm__stat-desc {
  font-family: var(--font-body--family);
  font-size: 12px;
  line-height: 18px;
  font-weight: 400;
  letter-spacing: 0;
  color: #464646;
}

.csm__stat-divider {
  display: none;
}

.csm__impact-body {
  font-family: var(--font-body--family);
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  letter-spacing: 0;
  color: #292929;
}

.csm__impact-body p {
  margin: 0 0 1em;
}

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

.csm__impact-body ul,
.csm__impact-body ol {
  padding-left: 1.5em;
  margin: 0 0 1em;
}

.csm__impact-body li {
  margin-bottom: 0.5em;
}

/* ═══════════════════════════════════════════════════════
   Tablet – min-width: 768px
   ═══════════════════════════════════════════════════════ */

@media screen and (min-width: 768px) {
  .csm {
    gap: 60px;
  }

  /* Header */
  .csm__header {
    padding: 48px 40px 0;
  }

  .csm__header-inner {
    flex-direction: row;
    align-items: flex-end;
    gap: 48px;
  }

  .csm__header-left {
    flex: 1;
    min-width: 0;
  }

  .csm__specs {
    flex: 0 0 178px;
    width: 178px;
    gap: 16px;
  }

  .csm__title {
    font-size: var(--csm-title-fs-tablet, 56px);
    line-height: var(--csm-title-lh-tablet, 62px);
  }

  .csm__tags {
    gap: 16px;
  }

  /* Header image */
  .csm__header-image {
    padding: 0 40px;
  }

  .csm__header-img {
    border-radius: 16px;
  }

  /* Showcase */
  .csm__showcase {
    margin: 0 40px;
    padding: 10px;
  }

  .csm__showcase-inner {
    gap: 10px;
  }

  /* Gallery blocks */
  .csm__showcase-gallery {
    gap: 10px;
  }

  .csm__showcase-row {
    flex-direction: row;
    gap: 10px;
    align-items: stretch;
  }

  .csm__showcase-row--normal .csm__showcase-cell--large,
  .csm__showcase-row--reversed .csm__showcase-cell--large {
    flex: 0 0 62%;
  }

  .csm__showcase-row--normal .csm__showcase-cell--small,
  .csm__showcase-row--reversed .csm__showcase-cell--small {
    flex: 1;
  }

  /* Content rows */
  .csm__row {
    flex-direction: row;
    align-items: flex-start;
    gap: 40px;
    padding-inline: 40px;
    padding-top: var(--csm-row-pt, 48px);
    padding-bottom: var(--csm-row-pb, 48px);
  }

  .csm__row-label {
    flex: 0 0 220px;
    padding-top: 2px;
  }

  .csm__row-body {
    flex: 1;
    min-width: 0;
  }

  /* Impact */
  .csm__impact {
    flex-direction: row;
    align-items: flex-start;
    gap: 40px;
    padding: 48px 40px;
  }

  .csm__impact-label {
    flex: 0 0 220px;
    padding-top: 2px;
  }

  .csm__stats {
    flex-wrap: nowrap;
    gap: 0;
    align-items: flex-start;
    justify-content: space-between;
  }

  .csm__stat {
    flex: 1 1 0%;
    min-width: 0;
  }

  .csm__stat-desc {
    overflow-wrap: break-word;
  }

  .csm__stat-divider {
    display: block;
    width: 1px;
    height: 51px;
    margin: 8px 20px 0;
    background: var(--color-foreground);
    opacity: 0.2;
    flex-shrink: 0;
  }

  .csm__stat-value {
    font-size: clamp(36px, 5vw, 59px);
  }
}

/* ═══════════════════════════════════════════════════════
   Desktop – min-width: 990px
   Pixel-perfect match to Figma 1512px canvas
   ═══════════════════════════════════════════════════════ */

@media screen and (min-width: 990px) {
  .csm {
    gap: 80px;
  }

  /* Header – Figma: px=60, gap=360, left=696px, right=178px */
  .csm__header {
    padding: 60px 60px 0;
  }

  .csm__header-inner {
    gap: 360px;
    align-items: flex-end;
  }

  .csm__header-left {
    flex: 0 1 696px;
  }

  .csm__title {
    font-size: var(--csm-title-fs-desktop, 72px);
    line-height: var(--csm-title-lh-desktop, 78px);
    max-width: 696px;
  }

  .csm__description {
    max-width: 696px;
  }

  .csm__tags {
    gap: 16px;
  }

  /* Header image */
  .csm__header-image {
    padding: 0 60px;
  }

  .csm__header-img {
    border-radius: 20px;
  }

  /* Showcase – Figma: mx=60, inner padding=10, gap=10 */
  .csm__showcase {
    margin: 0 60px;
    padding: 10px;
  }

  .csm__showcase-inner {
    gap: 10px;
  }

  /* Gallery blocks */
  .csm__showcase-gallery {
    gap: 10px;
  }

  .csm__showcase-row {
    gap: 10px;
  }

  /* Content rows – Figma: pl=60, pr=240, py=60, label=300px */
  .csm__row {
    padding-inline: 60px 240px;
    padding-top: var(--csm-row-pt, 60px);
    padding-bottom: var(--csm-row-pb, 60px);
    gap: 60px;
  }

  .csm__row-label {
    flex: 0 0 300px;
    padding-top: 0;
  }

  /* Impact – Figma: pl=60, pr=240, py=60, label=300px */
  .csm__impact {
    padding: 60px 240px 60px 60px;
    gap: 60px;
  }

  .csm__impact-label {
    flex: 0 0 300px;
    padding-top: 0;
  }

  /* Stats – Figma: stat value ~59px, divider h=51px */
  .csm__stat-divider {
    margin: 8px 48px 0;
  }

  .csm__stat-value {
    font-size: clamp(40px, 3.9vw, 59px);
  }
}
/* END_SECTION:case-study-main */

/* START_SECTION:collection-links (INDEX:15) */
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:directory-category (INDEX:20) */
.directory-category__heading {
  margin: 56px 0 28px;
}
.directory-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 6px 28px;
  list-style: none;
  padding: 22px 0 0;
  margin: 0 0 28px;
}
.directory-grid__item {
  margin: 0;
}
/* END_SECTION:directory-category */

/* START_SECTION:featured-product (INDEX:25) */
.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:27) */
.utilities {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--gap);
    text-wrap: nowrap;
    border-top: var(--border-width) solid var(--color-border);
    color: var(--color-foreground-muted);

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

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

  .utilities > * {
    text-align: center;

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

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

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

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

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

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

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

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

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

  @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;
    }
  }
  .site-footer .footer-links .menu__item:first-child a{
    color: #ffffff !important;
  }
/* END_SECTION:footer */

/* START_SECTION:free-tools (INDEX:29) */
.free-tool {
    --ft-ink: #292929;
    --ft-secondary: #464646;
    --ft-accent: #eb2529;
    --ft-hairline: #e4e2da;
    padding-block-start: var(--ft-pt, 40px);
    padding-block-end: var(--ft-pb, 80px);
  }

  .free-tool__inner {
    max-width: var(--page-width);
    margin-inline: auto;
    padding-inline: var(--page-margin);
    box-sizing: border-box;
  }

  .free-tool__hero {
    margin-block: 24px 32px;
  }

  .free-tool__icon {
    margin-bottom: 16px;
  }

  .free-tool__icon img {
    display: block;
    width: 64px;
    height: auto;
  }

  .free-tool__eyebrow {
    margin: 0 0 12px;
    font-family: var(--font-heading--family);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ft-accent);
  }

  .free-tool__title {
    margin: 0;
    font-family: var(--font-heading--family);
    font-weight: 600;
    line-height: 1.08;
    color: var(--ft-ink);
    font-size: 36px;
  }

  .free-tool__desc {
    margin-top: 16px;
    max-width: 720px;
    font-family: var(--font-body--family);
    font-size: 16px;
    line-height: 1.6;
    color: var(--ft-secondary);
  }

  .free-tool__embed {
    margin-block: 32px;
    width: 100%;
  }

  .free-tool__embed--framed {
    border: 1px solid var(--ft-hairline);
    border-radius: 14px;
    overflow: hidden;
  }

  .free-tool__embed iframe {
    display: block;
    width: 100%;
    max-width: 100%;
    border: 0;
  }

  .free-tool__cta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    margin-top: 40px;
    padding: 24px;
    border: 1px solid var(--ft-hairline);
    border-radius: 14px;
  }

  .free-tool__cta-heading {
    margin: 0;
    flex: 1 1 auto;
    font-family: var(--font-body--family);
    font-size: 16px;
    color: var(--ft-ink);
  }

  .free-tool__cta-btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 14px;
    background: var(--ft-accent);
    color: #fff;
    font-family: var(--font-heading--family);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    transition: opacity 0.2s ease;
  }

  .free-tool__cta-btn:hover {
    opacity: 0.88;
  }

  @media screen and (min-width: 768px) {
    .free-tool__title {
      font-size: 56px;
    }
  }

  @media screen and (min-width: 990px) {
    .free-tool__title {
      font-size: 64px;
    }
  }
/* END_SECTION:free-tools */

/* START_SECTION:header-announcements (INDEX:30) */
.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:hero-shero-slider (INDEX:32) */
/* Figma Frame 1597881350: padding 0 */
  .hero-slider-section.hero-slider-section {
    padding: 0;
  }

  .hero-slider {
    --hero-slider-text: #292929;
    --hero-slider-accent: #eb2529;
    width: 100%;
    background-color: var(--color-background);
  }

  /* Figma Frame 1597881350: 1512×985, flex row, space-between, padding 0 */
  .hero-slider__container {
    max-width: 1512px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
    min-height: 985px;
    padding: 0;
    overflow: visible;
    height: auto;
  }

  .hero-slider--media-full-width .hero-slider__container {
    max-width: none;
  }

  .hero-slider-section--media-full-width {
    overflow-x: clip;
  }

  /* Content section - 743px to fit 623px inner text + 60px padding each side */
  .hero-slider__content {
    flex: 0 0 743px;
    width: 743px;
    min-height: 985px;
    padding: 284px 0 212px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    background: #F5F5F5;
  }

  .hero-slider__content-inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0 60px;
    gap: 16px;
    width: 100%;
    max-width: 623px;
  }

  /* Figma Hero Title: Manrope 400, 60px, line-height 72px (120%), #292929, normal case */
  .hero-slider__heading {
    font-family: var(--font-heading--family);
    font-weight: 400;
    font-size: clamp(36px, 4.5vw, 60px);
    line-height: 1.2;
    letter-spacing: 0;
    text-transform: none;
    color: var(--hero-slider-text);
    margin: 0;
  }

  .hero-slider__accent {
    color: var(--hero-slider-accent);
  }

  /* Figma Hero Description: Manrope 400, 18px, line-height 28px (156%) */
  .hero-slider__subheading {
    font-family: var(--font-heading--family);
    font-weight: 400;
    font-size: clamp(16px, 1.2vw, 18px);
    line-height: 1.56;
    letter-spacing: 0;
    color: var(--hero-slider-text);
    margin: 0;
    max-width: 623px;
  }

  /* Big screens: Figma specs at 1512px+ */
  @media screen and (min-width: 1512px) {
    .hero-slider__heading {
      font-size: 60px;
      line-height: 72px;
    }

    .hero-slider__subheading {
      font-size: 18px;
      line-height: 28px;
    }
  }

  /* Figma Rectangle 30: 977×985, no border-radius or shadow */
  .hero-slider__media-wrapper {
    flex: 1;
    min-width: 0;
    min-height: 985px;
    overflow: hidden;
    background: var(--color-background);
  }

  .hero-slider__media-wrapper:not(.hero-slider__media-wrapper--auto-aspect) {
    aspect-ratio: var(--hero-slider-aspect, 16/9);
  }

  /* At Figma width (1512px): media fills height 985px */
  @media screen and (min-width: 1512px) {
    .hero-slider__media-wrapper:not(.hero-slider__media-wrapper--auto-aspect) {
      aspect-ratio: auto;
    }
  }

  .hero-slider__media-inner {
    width: 100%;
    height: 100%;
    position: relative;
    min-height: 0;
    overflow: hidden;
  }

  .hero-slider__media {
    width: 100%;
    height: 100%;
    object-fit: var(--hero-slider-fit, cover);
    object-position: var(--hero-slider-position, center);
    display: block;
  }

  .hero-slider__media--external {
    position: relative;
  }

  .hero-slider__media-iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    border: none;
  }

  .hero-slider__media-placeholder {
    width: 100%;
    height: 100%;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgb(var(--color-foreground-rgb) / 0.08);
  }

  .hero-slider__media-placeholder-svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
  }

  @media screen and (min-width: 1024px) {
    .hero-slider__container {
      height: calc(100dvh - 90px);
      min-height: 0;
      overflow: hidden;
    }

    .hero-slider__content,
    .hero-slider__media-wrapper {
      min-height: 0;
    }
  }

  /* Responsive - Laptop/smaller desktop (1024px–1511px) */
  @media screen and (max-width: 1511px) and (min-width: 1024px) {
    .hero-slider__content {
      flex: 0 0 49%;
      width: 49%;
      min-height: 0;
      /* Scale padding: Figma 284/212 at 1512px */
      padding: clamp(48px, 18vw, 284px) 0 clamp(40px, 14vw, 212px);
    }

    .hero-slider__content-inner {
      padding: 0 clamp(20px, 3.5vw, 60px);
    }

    .hero-slider__container {
      min-height: 0;
    }

    .hero-slider__media-wrapper {
      width: auto;
      min-height: 0;
    }
  }

  /* Responsive - Small laptop: allow content to use full width */
  @media screen and (max-width: 1200px) {
    .hero-slider__content-inner {
      max-width: 100%;
    }

    .hero-slider__subheading {
      max-width: 100%;
    }
  }

  /* Responsive - Tablet/small laptop: stack layout */
  @media screen and (max-width: 1023px) {
    .hero-slider__container {
      flex-direction: column;
      min-height: auto;
      height: auto;
      align-items: stretch;
    }

    .hero-slider__content {
      flex: none;
      width: 100%;
      min-height: auto;
      padding: clamp(40px, 6vw, 60px) clamp(24px, 5vw, 60px) clamp(32px, 5vw, 48px);
    }

    .hero-slider__content-inner {
      max-width: none;
      padding: 0;
      gap: 16px;
    }

    .hero-slider__heading {
      font-size: clamp(36px, 5.5vw, 48px);
      line-height: 1.2;
    }

    .hero-slider__subheading {
      max-width: none;
    }

    .hero-slider__media-wrapper {
      width: 100%;
      min-height: 300px;
      aspect-ratio: 16/9;
    }

    .hero-slider__media-inner {
      min-height: 300px;
    }

    .hero-slider__media-placeholder {
      min-height: 300px;
    }
  }

  /* Responsive - Mobile */
  @media screen and (max-width: 749px) {
    .hero-slider__content {
      padding: 40px 20px 32px;
    }

    .hero-slider__content-inner {
      padding: 0;
      gap: 16px;
    }

    .hero-slider__heading {
      font-size: 36px;
      line-height: 43px;
    }

    .hero-slider__subheading {
      font-size: 16px;
      line-height: 28px;
    }

    .hero-slider__media-wrapper {
      min-height: 250px;
      aspect-ratio: 16/9;
    }

    .hero-slider__media-inner {
      min-height: 250px;
    }

    .hero-slider__media-placeholder {
      min-height: 250px;
    }
  }
/* END_SECTION:hero-shero-slider */

/* START_SECTION:hero-shero (INDEX:33) */
.hero-shero {
    --hero-shero-text: #292929;
    --hero-shero-accent: #eb2529;
    --hero-shero-bg: #ffffff;
    background-color: var(--hero-shero-bg);
    overflow-x: clip;
  }

  .hero-shero__container {
    max-width: 1512px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    width: 100%;
     height: calc(100dvh - 90px);
     overflow-y: visible;
  }

@media screen and (max-width: 830px) {
    .hero-shero__container {
     height: 100%
    }
  }
@media screen and (min-width: 831px) and (max-width: 980px) {
.hero-shero__container {
      height: auto ;
      }

}
@media screen and (min-height: 1831px){
.hero-shero__container {
      height: auto ;
      }
}



  .hero-shero__content {
    padding: 32px 30px 40px;
    width: 100%;
    box-sizing: border-box;
  }

  .hero-shero__content-inner {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 1212px;
  }

  .hero-shero__heading {
    font-family: var(--font-heading--family);
    font-weight: 400;
    font-size: clamp(2.5rem, 5.5vw, 90px);
    line-height: 1.22;
    letter-spacing: 0;
    color: var(--hero-shero-text);
    margin: 0;
  }

  .hero-shero__accent {
    color: var(--hero-shero-accent);
    font-family: var(--font-heading--family);
  }

  .hero-shero__subheading {
    font-family: var(--font-heading--family);
    font-weight: 400;
    font-size: clamp(1rem, 1.2vw, 18px);
    line-height: 1.56;
    letter-spacing: 0;
    color: var(--hero-shero-text);
    margin: 0;
    max-width: 719px;
  }

  .hero-shero__title-line {
    display: block;
    overflow: hidden;
  }

  .hero-shero__title-word,
  .hero-shero__title-char {
    display: inline-block;
  }

  .hero-shero__desc-line {
    display: block;
  }

  .hero-shero__desc-word,
  .hero-shero__desc-char {
    display: inline-block;
  }

  .hero-shero__video-wrapper {
    width: 100%;
    aspect-ratio: var(--hero-shero-video-aspect, 1514/900);
    max-height: 900px;
    overflow: hidden;
    background: #f5f5f5;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgb(0 0 0 / 0.08);
  }

  .hero-shero__video-wrapper--full-width {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-inline: -50vw;
    max-width: none;
    border-radius: 0;
    box-shadow: none;
  }
  /* we can use this later */
  /* @media screen and (min-width: 1025px) {
    .hero-shero__video-wrapper {
      height: 34vw;
    }
  } */

  .hero-shero__video-inner {
    width: 100%;
    height: 100%;
    position: relative;
    border-radius: inherit;
    overflow: hidden;
  }

  .hero-shero__video {
    width: 100%;
    height: 100%;
    object-fit: var(--hero-shero-video-fit, cover);
    object-position: var(--hero-shero-video-position, center);
    display: block;
  }

  .hero-shero__video--external {
    position: relative;
  }

  .hero-shero__video-iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    border: none;
  }

  .hero-shero__video-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e8e8e8;
  }

  .hero-shero__video-placeholder-svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
  }

  /* Responsive - Tablet */
  @media screen and (max-width: 989px) {
    .hero-shero__content {
      padding: 28px 40px 32px;
    }

    .hero-shero__heading {
        font-size: 49px;
      line-height: 60px;
      text-transform: none;
      font-family: var(--font-heading--family);
      font-weight: 500;
    }

    .hero-shero__subheading {
      font-size: 16px;
    }

    .hero-shero__video-wrapper {
      max-height: 500px;
    }
  }

  /* Responsive - Mobile */
  @media screen and (max-width: 749px) {
    .hero-shero__content {
      padding: 24px 20px 28px;
    }

    .hero-shero__content-inner {
      gap: 12px;
    }

    .hero-shero__heading {
      font-size: 49px;
      line-height: 60px;
    }

    .hero-shero__subheading {
      font-size: 15px;
      line-height: 1.5;
    }

    .hero-shero__video-wrapper {
      max-height: 280px;
    }
  }
/* END_SECTION:hero-shero */

/* START_SECTION:hero (INDEX:34) */
.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:history-download-button (INDEX:35) */
.history-download {
    padding-inline: clamp(20px, 4vw, 60px);
    padding-block: 40px;
  }

  .history-download__inner {
    border-top: 0.5px solid #464646;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-block: 40px 32px;
    max-width: 1392px;
    margin-inline: auto;
    gap: 24px;
    flex-wrap: wrap;
  }

  .history-download__prompt {
    font-family: var(--font-heading--family, 'Manrope', sans-serif);
    font-weight: 400;
    font-size: 24px;
    line-height: 1.2;
    color: #000;
    margin: 0;
  }

  .history-download__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #292929;
    color: #fff;
    border-radius: 10px;
    height: 40px;
    padding: 10px 16px;
    font-family: var(--font-heading--family, 'Manrope', sans-serif);
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    text-decoration: none;
    transition: background-color 0.15s ease-in-out;
    white-space: nowrap;
  }
  .history-download__button:hover { background: #000; color: #fff; }
  .history-download__button--disabled { opacity: 0.5; pointer-events: none; }

  .history-download__icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
  }

  @media screen and (max-width: 749px) {
    .history-download__prompt { font-size: 20px; }
    .history-download__inner { padding-block: 24px; }
  }
/* END_SECTION:history-download-button */

/* START_SECTION:history-hero (INDEX:36) */
.history-hero {
    background-color: #f5f5f5;
    width: 100%;
    margin-top: calc(var(--header-height, 60px) * -1);
    padding-block-start: calc(var(--header-height, 60px) + var(--history-hero-pt, 70px));
    padding-block-end: var(--history-hero-pb, 60px);
    padding-inline: clamp(20px, 4vw, 60px);
    overflow: hidden;
  }

  .history-hero__inner {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 32px;
    width: 100%;
    max-width: 1392px;
    margin-inline: auto;
  }

  .history-hero__title {
    font-family: var(--font-heading--family, 'Manrope', sans-serif);
    font-weight: 500;
    font-size: var(--history-hero-title-max, 282px);
    line-height: 1.08;
    color: #292929;
    margin: 0;
    letter-spacing: -0.02em;
    flex: 1;
    word-break: break-word;
  }

  .history-hero__tagline {
    font-family: var(--font-heading--family, 'Manrope', sans-serif);
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #000;
    text-align: right;
    max-width: 230px;
    margin: 0 0 12px 0;
    flex-shrink: 0;
  }

  @media screen and (max-width: 999px) {
    .history-hero__inner {
      flex-direction: column;
      align-items: flex-start;
      gap: 16px;
    }
    .history-hero__title {
      font-size: 70px;
      font-weight: 500;
      line-height: 108px;
    }
    .history-hero__tagline {
      text-align: left;
      max-width: 100%;
    }
  }

  @media screen and (max-width: 749px) {
    .history-hero {
      padding-block-start: calc(var(--header-height, 60px) + var(--history-hero-pt-mobile, 20px));
      padding-block-end: var(--history-hero-pb-mobile, 40px);
    }
  }

  @media screen and (max-width: 540px) {
    .history-hero__title {
      font-size: 50px;
      font-weight: 500;
      line-height: 78px;
    }
  }
/* END_SECTION:history-hero */

/* START_SECTION:history-intro (INDEX:37) */
.history-intro {
    padding-block-start: var(--history-intro-pt, 40px);
    padding-block-end: var(--history-intro-pb, 80px);
    padding-inline: clamp(20px, 4vw, 60px);
  }

  .history-intro__inner {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    max-width: 1392px;
    margin-inline: auto;
    padding-right: clamp(0px, 10vw, 140px);
  }

  .history-intro__label {
    font-family: var(--font-heading--family, 'Manrope', sans-serif);
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    color: #292929;
    flex-shrink: 0;
    width: 300px;
  }
  .history-intro__label p { margin: 0; }

  .history-intro__content {
    display: flex;
    flex-direction: column;
    gap: 48px;
    flex: 1;
    max-width: 753px;
  }

  .history-intro__body {
    font-family: var(--font-heading--family, 'Manrope', sans-serif);
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #292929;
  }
  .history-intro__body h2 {
    font-family: var(--font-heading--family, 'Manrope', sans-serif);
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    color: var(--Black, #292929);
    margin: 0 0 24px 0;
  }
  .history-intro__body p { margin: 0 0 24px 0; }
  .history-intro__body p:last-child { margin-bottom: 0; }
  .history-intro__body strong { font-weight: 700; }
  .history-intro__body ul,
  .history-intro__body ol {
    margin: 12px 0 0;
    padding-left: 20px;
    list-style: disc outside;
  }
  .history-intro__body ol { list-style: decimal outside; }
  .history-intro__body li {
    margin: 0 0 4px 0;
    padding-left: 4px;
    display: list-item;
  }
  .history-intro__body li::marker { color: #292929; }

  .history-intro__stats {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
  }

  .history-intro__stat {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }

  .history-intro__stat-value {
    font-family: var(--font-heading--family, 'Manrope', sans-serif);
    font-weight: 400;
    font-size: 47px;
    line-height: 43px;
    color: #292929;
    margin: 0;
    white-space: nowrap;
  }

  .history-intro__stat-label {
    font-family: var(--font-heading--family, 'Manrope', sans-serif);
    font-weight: 400;
    font-size: 12px;
    line-height: 18px;
    color: #464646;
    margin: 0;
    white-space: nowrap;
  }

  .history-intro__stat-divider {
    display: block;
    width: 1px;
    height: 48px;
    background: #292929;
    opacity: 0.2;
    flex-shrink: 0;
  }

  @media screen and (max-width: 1024px) {
    .history-intro__inner {
      padding-right: 0;
      gap: 32px;
    }
    .history-intro__label { width: 180px; }
  }

  @media screen and (max-width: 749px) {
    .history-intro {
      padding-block-end: 48px;
    }
    .history-intro__inner {
      flex-direction: column;
      gap: 24px;
    }
    .history-intro__label { width: 100%; }
    .history-intro__content { gap: 32px; }
    .history-intro__stats {
      display: grid;
      grid-template-columns: 1fr 1fr;
      column-gap: 24px;
      row-gap: 24px;
      align-items: stretch;
    }
    .history-intro__stat {
      padding: 0 0 24px 0;
      gap: 6px;
    }
    .history-intro__stat:nth-child(odd of .history-intro__stat) {
      padding-right: 24px;
      border-right: 1px solid rgba(41, 41, 41, 0.2);
      height: 48px;
    }
    .history-intro__stat:nth-last-child(-n + 2 of .history-intro__stat) {
      padding-bottom: 0;
      border-bottom: none;
    }
    .history-intro__stat-value { font-size: 36px; line-height: 1; }
    .history-intro__stat-divider { display: none; }
  }
/* END_SECTION:history-intro */

/* START_SECTION:history-timeline (INDEX:38) */
.history-timeline {
    position: relative;
    padding-block-start: var(--history-timeline-pt, 60px);
    padding-block-end: var(--history-timeline-pb, 60px);
    padding-inline: clamp(20px, 4vw, 60px);
  }

  .history-timeline__inner {
    position: relative;
    max-width: 1392px;
    margin-inline: auto;
  }

  /* Central vertical axis */
  .history-timeline__axis {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    background: rgba(41, 41, 41, 0.12);
    pointer-events: none;
  }

  /* Sticky tracking ellipse — GPU-animated via transform in JS */
  .history-timeline__track {
    position: sticky;
    top: 50vh;
    display: block;
    width: 0;
    height: 0;
    margin-left: 50%;
    z-index: 0;
    pointer-events: none;
    will-change: transform;
  }
  .history-timeline__ellipse {
    position: absolute;
    top: 0;
    left: 0;
    width: 681px;
    height: 948px;
    max-width: none;
    transform: translate(-50%, -50%);
    display: block;
  }

  .history-timeline__cards {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
    z-index: 1;
    perspective: 1400px;
  }

  /* Full-width 3-column grid keeps the tick exactly on the center axis */
  .history-timeline__row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: start;
    column-gap: 32px;
    width: 100%;
    justify-items: center;
    align-content: start;
    justify-content: start;
    align-items: start;
    grid-auto-flow: column;
    padding-top: 20px;
  }

  /* Right-side: year | tick | card */
  .history-timeline__row--right .history-timeline__year {
    grid-column: 1;
    justify-self: end;
    text-align: right;
  }
  .history-timeline__row--right .history-timeline__tick { grid-column: 2; }
  .history-timeline__row--right .history-timeline__card {
    grid-column: 3;
    justify-self: start;
    text-align: left;
  }

  /* Left-side: card | tick | year (year column after axis, card before) */
  .history-timeline__row--left .history-timeline__card {
    grid-column: 1;
    justify-self: end;
    text-align: right;
  }
  .history-timeline__row--left .history-timeline__tick { grid-column: 2; }
  .history-timeline__row--left .history-timeline__year {
    grid-column: 3;
    justify-self: start;
    text-align: left;
  }

  .history-timeline__year {
    font-family: var(--font-heading--family, 'Manrope', sans-serif);
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    color: #EB2529;
    white-space: nowrap;
  }

  .history-timeline__tick {
    display: inline-flex;
    width: 10px;
    height: 22px;
  }
  .history-timeline__tick svg {
    width: 100%;
    height: 100%;
    display: block;
  }

  .history-timeline__card {
    width: 100%;
    max-width: 436px;
    background: transparent;
    border: 0.5px solid #292929;
    border-radius: 10px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    transform-style: preserve-3d;
    backface-visibility: hidden;
    will-change: transform, opacity;
  }

  .history-timeline__card-title {
    font-family: var(--font-heading--family, 'Manrope', sans-serif);
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    color: #292929;
    margin: 0;
  }

  .history-timeline__card-desc {
    font-family: var(--font-heading--family, 'Manrope', sans-serif);
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #464646;
  }
  .history-timeline__card-desc p { margin: 0; }
  .history-timeline__card-desc p + p { margin-top: 6px; }
  .history-timeline__card-desc strong { font-weight: 700; color: #292929; }
  .history-timeline__card-desc ul,
  .history-timeline__card-desc ol {
    margin: 8px 0 0;
    padding-left: 20px;
    list-style: disc outside;
  }
  .history-timeline__card-desc ol { list-style: decimal outside; }
  .history-timeline__card-desc li {
    margin: 0 0 4px 0;
    padding-left: 4px;
    display: list-item;
  }
  .history-timeline__card-desc li::marker { color: #464646; }

  /* Mobile — per Figma: year | dot | card, all left-aligned, tighter spacing */
  @media screen and (max-width: 749px) {
    .history-timeline__axis {
      left: calc(40px + 16px + 4px);
      transform: none;
    }
    .history-timeline__track {
      display: none;
    }
    .history-timeline__cards {
      gap: 32px;
    }
    .history-timeline__row,
    .history-timeline__row--left,
    .history-timeline__row--right {
      grid-template-columns: auto auto minmax(0, 1fr);
      column-gap: 16px;
      padding-left: 0;
    }
    .history-timeline__row--left .history-timeline__year,
    .history-timeline__row--right .history-timeline__year {
      grid-column: 1;
      justify-self: start;
      text-align: left;
      font-size: 14px;
      line-height: 20px;
      padding-top: 24px;
      min-width: 40px;
    }
    .history-timeline__row--left .history-timeline__tick,
    .history-timeline__row--right .history-timeline__tick {
      grid-column: 2;
      justify-self: start;
      width: 8px;
      height: 20px;
      margin-top: 26px;
    }
    .history-timeline__row--left .history-timeline__card,
    .history-timeline__row--right .history-timeline__card {
      grid-column: 3;
      justify-self: stretch;
      text-align: left;
      max-width: 100%;
      padding: 24px 16px;
    }
    .history-timeline__card-title {
      font-size: 14px;
      line-height: 20px;
    }
    .history-timeline__card-desc,
    .history-timeline__card-desc p {
      font-size: 12px;
      line-height: 18px;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .history-timeline__track {
      transform: none !important;
    }
  }
/* END_SECTION:history-timeline */

/* START_SECTION:insights-post-hero (INDEX:40) */
/* === MOBILE BASE === */

  .blog-hero {
    background: #f5f5f5;
    padding: 25px 46px 23px;
  }

  .blog-hero--full-width {
    margin-top: calc(var(--header-height, 60px) * -1);
    padding-top: calc(var(--header-height, 60px) + 25px);
  }

  .blog-hero--page-width {
    max-width: 2000px;
    margin-left: auto;
    margin-right: auto;
  }

  .blog-hero__inner {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 1440px;
    margin: 0 auto;
  }

  .blog-hero__left {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .blog-hero__title {
    font-family: var(--font-heading--family);
    font-weight: 500;
    font-size: 72px;
    line-height: 78px;
    color: #292929;
    margin: 0;
    width: 450px;
  }

  .blog-hero__description {
    font-family: var(--font-heading--family);
    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
    color: #000000;
    margin: 0;
  }

  /* Dual-instance responsive toggle */
  .blog-hero__description--mobile-only  { display: block; }
  .blog-hero__description--desktop-only { display: none; }

  /* Achieve 24px gap between tagline and filters on mobile:
     hero-left gap (16px) + margin-top (8px) = 24px */
  .blog-filter-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
  }

  .tab-link {
    display: inline-flex;
    align-items: center;
    height: 28px;
    padding: 4px 16px;
    border-radius: 100px;
    border: 1px solid #292929;
    background: transparent;
    color: #292929;
    cursor: pointer;
    font-family: var(--font-heading--family);
    font-size: 11px;
    font-weight: 500;
    line-height: 1;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
  }

  .tab-link.active,
  .tab-link:hover {
    background: #EB2529;
    border-color: #EB2529;
    color: #F5F5F5;
  }

  /* === TABLET (750px+) === */

  @media screen and (min-width: 750px) {
    .blog-hero__title {
      width: auto;
    }
  }
    @media screen and (max-width: 750px) {

    .blog-hero__title {
      width: auto !important;
    }
  }

  /* === DESKTOP (1440px+) === */

  @media screen and (min-width: 1440px) {
    .blog-hero {
      padding: 70px 46px 36px;
    }

    .blog-hero--full-width {
      padding-top: calc(var(--header-height, 60px) + 70px);
    }

    .blog-hero__inner {
      flex-direction: row;
      align-items: flex-end;
      justify-content: space-between;
      gap: 48px;
    }

    .blog-hero__left {
      gap: 48px;
      flex: 1 1 auto;
      min-width: 0;
    }

    .blog-hero__title {
      /* 18.65vw at 1512px = 282px; column ≥ ~1036px at this width so title fits */
      font-size: clamp(72px, 18.65vw, 282px);
      line-height: 1.08;
    }

    /* Swap tagline visibility */
    .blog-hero__description--mobile-only  { display: none; }
    .blog-hero__description--desktop-only { display: block; }

    .blog-hero__description {
      font-size: 14px;
      line-height: 20px;
      max-width: 308px;
      flex-shrink: 0;
      text-align: right;
    }

    /* Reset mobile margin; desktop gap comes from hero-left's gap: 48px */
    .blog-filter-tabs {
      gap: 16px;
      margin-top: 0;
    }

    .tab-link {
      padding: 5px 16px;
    }
  }
/* END_SECTION:insights-post-hero */

/* START_SECTION:layered-slideshow (INDEX:41) */
.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:42) */
.logo-section {
    width: calc(var(--logo-width) + var(--padding-inline-start) + var(--padding-inline-end));
    max-width: 100%;
    max-height: calc(var(--logo-height, 100%) + var(--padding-block-start) + var(--padding-block-end));
    font-size: var(--logo-height);
    display: flex;

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

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

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

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

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

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

/* START_SECTION:main-blog-post (INDEX:44) */
/* ── Blog Post Hero ── */
  .bph {
    background-color: #f5f5f5;
    width: 100%;
  }

  .bph__inner {
    max-width: 1514px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 40px 35px 40px 35px;
    box-sizing: border-box;
  }

  /* Left column */
  .bph__content {
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex: 1 1 0;
    min-width: 0;
    max-width: 696px;
  }

  /* Title */
  .bph__title {
    font-family: var(--font-heading--family);
    font-size: 48px;
    font-weight: 400;
    line-height: 60px;
    letter-spacing: 0;
    color: #292929;
    margin: 0;
  }

  /* Author boxes wrapper */
  .bph__authors {
    display: flex;
    flex-direction: row;
    gap: 10px;
    flex-wrap: wrap;
  }

  /* Author box */
  .bph__author {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 4px 8px;
    border-radius: 10px;
    background-color: rgba(0, 0, 0, 0);
    box-shadow: 0 0 0 1px #ffffff, inset 0 4px 8px rgba(0, 0, 0, 0.05);
    flex-wrap: wrap;
    width: fit-content;
  }

  .bph__author-avatar {
    flex-shrink: 0;
    width: 69px;
    height: 69px;
    border-radius: 50%;
    overflow: hidden;
  }

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

  .bph__author-meta {
    display: flex;
    flex-direction: column;
    height: 41px;
    justify-content: center;
  }

  .bph__author-name {
    font-family: var(--font-heading--family);
    font-size: 16px;
    font-weight: 400;
    font-style: normal;
    line-height: 24px;
    color: #292929;
    margin: 0;
  }

  .bph__author-name strong {
    font-weight: 700;
    color: #292929;
  }

  /* Byline name links to the author's bio panel on /pages/our-team */
  .bph__author-link {
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 2px;
  }

  .bph__author-link:focus-visible {
    outline: 2px solid #292929;
    outline-offset: 2px;
  }

  .bph__author-role {
    font-family: var(--font-heading--family);
    font-size: 14px;
    font-weight: 300;
    font-style: normal;
    line-height: 24px;
    color: #292929;
    margin: 0;
  }

  /* Right column — featured image */
  .bph__image-wrap {
    flex: 0 0 auto;
    width: 45%;
    max-width: 587px;
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 587 / 295;
  }

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

  @media screen and (max-width: 1440px) {
    .bph__inner {
      padding: 32px 70px 32px 70px;
      gap: 28px;
    }
  }
  /* Tablet */
  @media screen and (max-width: 989px) {
    .bph__inner {
      padding: 32px 70px 32px 70px;
      gap: 28px;
    }

    .bph__title {
      font-size: 36px;
      line-height: 46px;
    }

    .bph__image-wrap {
      width: 42%;
    }
  }

  /* Mobile */
  @media screen and (max-width: 749px) {
    .bph__inner {
      flex-direction: column;
      padding: 24px 20px 24px 20px;
      gap: 20px;
    }

    .bph__content {
      max-width: 100%;
    }

    .bph__title {
      font-size: 28px;
      line-height: 36px;
    }

    .bph__image-wrap {
      width: 100%;
      max-width: 100%;
      aspect-ratio: 18 / 9;
    }
  }
/* END_SECTION:main-blog-post */

/* START_SECTION:main-blog (INDEX:45) */
/**
   * Blog posts grid
   */
  .blog-posts-list {
    overflow-x: hidden;
  }

  .blog-posts {
    --page-content-width: var(--narrow-page-width);
    --page-width: calc(var(--page-content-width) + (var(--page-margin) * 2));
  }

  .blog-posts-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 32px;
    row-gap: 32px;
    padding: 32px 0px;
    width: var(--size-style-width);
    height: var(--size-style-height);
  }

  .blog-post-item {
    min-width: 0;
  }


  @media screen and (min-width: 749px) and (max-width: 1024px) {
    .blog-posts-container {
      grid-template-columns: 1fr 1fr;
      padding: 24px 0px;
    }
  }

  @media screen and (max-width: 748px) {
    .blog-posts-container {
      grid-template-columns: 1fr;
      padding: 24px 0px;
    }
  }
  figure.wp-block-table {
    margin: 0;
}
/* END_SECTION:main-blog */

/* START_SECTION:main-cart (INDEX:46) */
.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);
    }
  }

  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);
    }
  }
/* END_SECTION:main-cart */

/* START_SECTION:main-collection (INDEX:48) */
.main-collection-grid {
    grid-column: var(--grid-column--mobile);

    @media screen and (min-width: 750px) {
      grid-column: var(--grid-column--desktop);
    }
  }
/* END_SECTION:main-collection */

/* START_SECTION:marquee (INDEX:50) */
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:51) */
.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:mosaic-gallery (INDEX:53) */
/* ── Mosaic Gallery ── */
  .mosaic-gallery {
    --mg-gap: 16px;
    --mg-height: 520px;
    --mg-col-narrow: 318px;
    --mg-col-wide: 432px;
    --mg-radius: 10px;
    --mg-placeholder: #D9D9D9;
    overflow: hidden;
  }

  .mosaic-gallery__track {
    display: flex;
    gap: var(--mg-gap);
    width: max-content;
    animation: mg-scroll 80s linear infinite;
  }

  .mosaic-gallery__track:hover {
    animation-play-state: paused;
  }

  @media (prefers-reduced-motion: reduce) {
    .mosaic-gallery__track {
      animation: none;
    }
  }

  @keyframes mg-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }

  /* Columns */
  .mosaic-gallery__col {
    display: flex;
    flex-direction: column;
    gap: var(--mg-gap);
    height: var(--mg-height);
    flex-shrink: 0;
  }

  .mosaic-gallery__col--a,
  .mosaic-gallery__col--c,
  .mosaic-gallery__col--d {
    width: var(--mg-col-narrow);
  }

  .mosaic-gallery__col--b,
  .mosaic-gallery__col--e {
    width: var(--mg-col-wide);
  }

  /* Items */
  .mosaic-gallery__item {
    flex-shrink: 0;
    border-radius: var(--mg-radius);
    overflow: hidden;
    background: var(--mg-placeholder);
  }

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

  .mosaic-gallery__placeholder {
    width: 100%;
    height: 100%;
    background: var(--mg-placeholder);
  }

  /* Height variants */
  .mosaic-gallery__item--tall { height: 307px; }
  .mosaic-gallery__item--short { height: 197px; }
  .mosaic-gallery__item--full { height: var(--mg-height); }
  .mosaic-gallery__item--mid-a { height: 253px; }
  .mosaic-gallery__item--mid-b { height: 251px; }

  /* ── Mobile (<=749px) ── */
  @media screen and (max-width: 749px) {
    .mosaic-gallery {
      --mg-gap: 8px;
      --mg-height: 240px;
      --mg-col-narrow: 146px;
      --mg-col-wide: 200px;
      --mg-radius: 6px;
    }

    .mosaic-gallery__item--tall { height: 142px; }
    .mosaic-gallery__item--short { height: 90px; }
    .mosaic-gallery__item--full { height: var(--mg-height); }
    .mosaic-gallery__item--mid-a { height: 117px; }
    .mosaic-gallery__item--mid-b { height: 115px; }

    .mosaic-gallery__track {
      animation-duration: 50s;
    }
  }

  /* ── Tablet (750-989px) ── */
  @media screen and (min-width: 750px) and (max-width: 989px) {
    .mosaic-gallery {
      --mg-gap: 12px;
      --mg-height: 380px;
      --mg-col-narrow: 232px;
      --mg-col-wide: 316px;
    }

    .mosaic-gallery__item--tall { height: 224px; }
    .mosaic-gallery__item--short { height: 144px; }
    .mosaic-gallery__item--full { height: var(--mg-height); }
    .mosaic-gallery__item--mid-a { height: 185px; }
    .mosaic-gallery__item--mid-b { height: 183px; }
  }
/* END_SECTION:mosaic-gallery */

/* START_SECTION:our-values-section (INDEX:56) */
.c-values {
    font-family: var(--font-heading--family);
    background: #f5f5f5;
    max-width: 2000px;
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
    padding: 0;
  }

  /* ── Desktop Header ── */
  .c-values__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
    padding: 60px 45px 40px;
    max-width: 2000px;
    margin: 0 auto;
  }

  .c-values__title {
    font-size: clamp(28px, 2.8vw, 48px);
    font-weight: 400;
    line-height: 1.25;
    color: #292929;
    margin: 0;
    flex-shrink: 0;
    max-width: 400px;
  }

  .c-values__desc {
    font-size: clamp(14px, 1.4vw, 16px);
    font-weight: 400;
    line-height: 1.5;
    color: #464646;
    margin: 0;
    max-width: 560px;
    padding-top: 8px;
  }

  /* ── Cards Row ── */
  .c-values__cards {
    display: flex;
    align-items: stretch;
    gap: 8px;
    padding: 0 45px 60px;
    max-width: 2000px;
    margin: 0 auto;
    height: 550px;
  }

  /* ── Individual Card ── */
  .c-values__card {
    background: #ffffff;
    border-radius: 5px;
    flex: 0 0 240px;
    overflow: hidden;
    cursor: pointer;
    transition: flex 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
  }

  .c-values__card.is-active {
    flex: 1 1 0%;
    cursor: default;
  }

  .c-values__card-inner {
 display: flex;
    flex-direction: column;
    height: 100%;
    padding: 60px 32px 60px 16px;
    min-height: 493px;
    justify-content: space-between;
    align-items: flex-start;
  }

  .c-values__card.is-active .c-values__card-inner {
    padding: 60px 32px;
  }

  .c-values__card-top {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .c-values__card-number {
    font-size: clamp(14px, 1.4vw, 20px);
    font-weight: 400;
    line-height: 1.2;
    color: #464646;
    margin: 0;
  }

  .c-values__card.is-active .c-values__card-number {
    font-size: clamp(18px, 1.8vw, 24px);
    color: #292929;
  }

  .c-values__card-title-row {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .c-values__card-title {
    font-size: clamp(16px, 1.6vw, 22px);
    font-weight: 400;
    line-height: 1.27;
    color: #292929;
    margin: 0;
  }

  .c-values__card.is-active .c-values__card-title {
    font-size: clamp(22px, 2.2vw, 32px);
    font-weight: 400;
    line-height: 1.19;
  }

  .c-values__card-letter {
    color: #eb2529;
  }

  .c-values__card-subtitle {
    font-size: clamp(12px, 1.2vw, 14px);
    font-weight: 400;
    line-height: 1.43;
    color: #464646;
    margin: 0;
  }

  .c-values__card.is-active .c-values__card-subtitle {
    font-size: clamp(16px, 1.6vw, 24px);
    font-weight: 400;
    line-height: 1.33;
  }

  /* ── Card Body (bullets, hidden when collapsed) ── */
  .c-values__card-body {
    display: none;
    margin-top: 0;
  }

  .c-values__card.is-active .c-values__card-body {
    display: block;
    margin-top: 32px;
  }

  .c-values__card-bullets {
    font-size: clamp(13px, 1.3vw, 16px);
    font-weight: 400;
    line-height: 1.5;
    color: #292929;
  }

  .c-values__card-bullets ul {
    list-style: disc;
    padding-left: 24px;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .c-values__card-bullets li {
  }

  /* ── Card Icon (plus/minus at bottom) ── */
  .c-values__card-icon {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }

  .c-values__card-icon--minus {
    display: none;
  }

  .c-values__card-icon--plus {
    display: block;
  }

  .c-values__card.is-active .c-values__card-icon--minus {
    display: block;
  }

  .c-values__card.is-active .c-values__card-icon--plus {
    display: none;
  }

  .c-values__card-icon svg {
    width: 32px;
    height: 32px;
    color: #292929;
  }

  /* ── Mobile ── */
  .c-values__mobile {
    display: none;
  }

  /* ─────────────────────────────────────── */
  /* ── Responsive ── */
  /* ─────────────────────────────────────── */
  @media (max-width: 999px) {
    .c-values {
      max-width: 100%;
      border-radius: 0;
      margin: 0;
    }

    .c-values__header {
      display: none;
    }

    .c-values__cards {
      display: none;

    }

    .c-values__mobile {
      display: flex;
      flex-direction: column;
      gap: 24px;
      padding: 26px;
    }

    .c-values__mobile-header {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .c-values__mobile-title {
      font-size: clamp(22px, 5.5vw, 32px);
      font-weight: 500;
      line-height: 1.25;
      color: #292929;
      margin: 0;
    }

    .c-values__mobile-desc {
      font-size: clamp(14px, 2.5vw, 16px);
      font-weight: 400;
      line-height: 1.5;
      color: #464646;
      margin: 0;
    }

    /* ── Slider ── */
    .c-values__slider-track {
      overflow-x: auto;
      overflow-y: hidden;
      border-radius: 0;
      scroll-snap-type: x mandatory;
      scrollbar-width: none;
    }

    .c-values__slider-track::-webkit-scrollbar {
      display: none;
    }

    .c-values__slides {
      display: flex;
    }

    .c-values__slide {
      min-width: 100%;
      background: #ffffff;
      padding: 24px;
      box-sizing: border-box;
      display: flex;
      flex-direction: column;
      gap: 16px;
      min-height: 320px;
      scroll-snap-align: start;
    }

    .c-values__slide-number {
      font-size: 16px;
      font-weight: 400;
      line-height: 24px;
      color: #292929;
      margin: 0;
    }

    .c-values__slide-title {
      font-size: clamp(16px, 3.5vw, 22px);
      font-weight: 600;
      line-height: 1.27;
      color: #292929;
      margin: 0;
    }

    .c-values__slide-subtitle {
      font-size: clamp(12px, 2.2vw, 14px);
      font-weight: 400;
      line-height: 1.43;
      color: #464646;
      margin: 0;
    }

    .c-values__slide-bullets {
      font-size: clamp(13px, 2.5vw, 16px);
      font-weight: 400;
      line-height: 1.5;
      color: #292929;
    }

    .c-values__slide-bullets ul {
      list-style: disc;
      padding-left: 24px;
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .c-values__slide-bullets li {
    }

    /* ── Progress Track ── */
    .c-values__progress {
      padding: 16px 0 0;
    }

    .c-values__progress-track {
      width: 100%;
      height: 2px;
      background-color: rgba(41, 41, 41, 0.15);
      border-radius: 100px;
      overflow: hidden;
    }

    .c-values__progress-fill {
      height: 2px;
      background-color: #eb2529;
      border-radius: 100px;
      transition: width 0.4s ease;
      width: 0%;
    }
  }

  /* ── Tablet: 2 slides visible at once ── */
  @media (min-width: 600px) and (max-width: 999px) {
    .c-values__slide {
      min-width: 50%;
    }
  }

  @media (min-width: 1000px) and (max-width: 1400px) {
    .c-values__header {
      padding: 40px 28px 28px;
      gap: 24px;
    }

    .c-values__cards {
      padding: 0 28px 48px;
      gap: 6px;
      max-height: 450px;
    }

    .c-values__card {
      width: 206px;
    }

    .c-values__card-inner {
      padding: 40px 20px 40px 14px;
      min-height: 420px;
    }

    .c-values__card.is-active .c-values__card-inner {
      padding: 40px 24px;
    }
  }

  @media screen and (min-width: 2000px) {
    .c-values__header {
      padding-left: 45px;
      padding-right: 45px;
    }

    .c-values__cards {
      padding-left: 45px;
      padding-right: 45px;
    }
  }
/* END_SECTION:our-values-section */

/* START_SECTION:our-work-header (INDEX:57) */
.our-work-header {
    width: 100%;
    background: var(--color-background);
    color: var(--color-foreground);
  }

  .our-work-header__inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 60px 80px;
    display: flex;
    gap: 360px;
    align-items: flex-end;
    box-sizing: border-box;
  }

  .our-work-header__main {
    flex: 0 1 696px;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .our-work-header__back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-foreground);
    text-decoration: none;
    font-family: var(--font-body--family);
    font-weight: 400;
    font-size: 12px;
    line-height: 18px;
    transition: opacity 0.2s ease;
  }

  .our-work-header__back:hover {
    opacity: 0.8;
  }

  .our-work-header__back-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
  }

  .our-work-header__text-block {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .our-work-header__heading {
    font-family: var(--font-heading--family);
    font-weight: 400;
    font-size: 72px;
    line-height: 78px;
    letter-spacing: 0;
    color: var(--color-foreground);
    margin: 0;
    max-width: 696px;
  }

  .our-work-header__content {
    display: flex;
    flex-direction: column;
    gap: 32px;
  }

  .our-work-header__description {
    font-family: var(--font-body--family);
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: var(--color-foreground);
    margin: 0;
    max-width: 696px;
  }

  .our-work-header__description p {
    margin: 0 0 0.75em;
  }

  .our-work-header__description p:last-child {
    margin-bottom: 0;
  }

  .our-work-header__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
  }

  .our-work-header__tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 5px 16px;
    border: 1px solid var(--color-foreground);
    border-radius: 100px;
    font-family: var(--font-body--family);
    font-weight: 500;
    font-size: 11px;
    line-height: 18px;
    color: var(--color-foreground);
  }

  .our-work-header__sidebar {
    flex: 0 0 178px;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .our-work-header__spec {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  .our-work-header__spec-label {
    font-family: var(--font-body--family);
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: var(--color-foreground);
    opacity: 0.6;
  }

  .our-work-header__spec-value {
    font-family: var(--font-body--family);
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: var(--color-foreground);
  }

  .our-work-header__spec--link .our-work-header__spec-value {
    display: none;
  }

  .our-work-header__spec-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body--family);
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: var(--color-foreground);
    text-decoration: none;
    transition: opacity 0.2s ease;
  }

  .our-work-header__spec-link:hover {
    opacity: 0.8;
  }

  .our-work-header__spec-link svg {
    flex-shrink: 0;
  }

  /* GSAP targets: mask lines for reveal */
  .our-work-header__heading,
  .our-work-header__description {
    overflow: hidden;
  }

  .our-work-header__heading .line,
  .our-work-header__description .line {
    will-change: transform;
  }

  /* Tablet */
  @media screen and (max-width: 1100px) {
    .our-work-header__inner {
      padding: 48px 40px 64px;
      gap: 48px;
      flex-direction: column;
      align-items: flex-start;
    }

    .our-work-header__main {
      flex: 1 1 auto;
      width: 100%;
      max-width: 100%;
    }

    .our-work-header__heading {
      font-size: 48px;
      line-height: 54px;
    }

    .our-work-header__sidebar {
      flex: none;
      width: 100%;
      flex-direction: row;
      flex-wrap: wrap;
      gap: 24px 48px;
    }

    .our-work-header__spec {
      min-width: 140px;
    }
  }

  /* Mobile */
  @media screen and (max-width: 768px) {
    .our-work-header__inner {
      padding: 32px 16px 48px;
      gap: 32px;
    }

    .our-work-header__main {
      gap: 12px;
    }

    .our-work-header__text-block {
      gap: 12px;
    }

    .our-work-header__heading {
      font-size: 32px;
      line-height: 38px;
    }

    .our-work-header__content {
      gap: 24px;
    }

    .our-work-header__description {
      font-size: 15px;
      line-height: 22px;
    }

    .our-work-header__tags {
      gap: 8px;
    }

    .our-work-header__tag {
      font-size: 10px;
      padding: 4px 12px;
    }

    .our-work-header__sidebar {
      gap: 20px;
      flex-direction: column;
    }

    .our-work-header__spec-label,
    .our-work-header__spec-value {
      font-size: 14px;
      line-height: 20px;
    }

    .our-work-header__spec-link {
      font-size: 14px;
      line-height: 20px;
    }
  }
/* END_SECTION:our-work-header */

/* START_SECTION:page-404 (INDEX:58) */
.page-404 {
    width: 100%;
    background-color: #F5F5F5;
  }

  .page-404 ~ * { background-color: transparent; }

  body:has(.page-404),
  body:has(.page-404) main,
  body:has(.page-404) .content-for-layout,
  body:has(.page-404) #MainContent {
    background-color: #F5F5F5;
  }

  .page-404__wrap {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    box-sizing: border-box;
    overflow: hidden;
    background-color: #F5F5F5;
  }

  .page-404__inner {
    width: 100%;
    max-width: 1512px;
    margin: 0 auto;
    box-sizing: border-box;
  }

  .page-404__breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-heading--family);
    font-size: 12px;
    line-height: 18px;
    font-weight: 400;
    color: #888;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
  }

  .page-404__breadcrumb a {
    color: #888;
    text-decoration: none;
    transition: color 0.2s ease;
  }

  .page-404__breadcrumb a:hover {
    color: #292929;
  }

  .page-404__breadcrumb > span[aria-hidden] {
    color: #aaa;
  }

  .page-404__breadcrumb > span:last-child {
    color: #292929;
  }

  .page-404__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: center;
  }

  @media screen and (min-width: 990px) {
    .page-404__grid {
      grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
      gap: 64px;
    }
  }

  .page-404__media {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-height: 1px;
  }

  @media screen and (max-width: 989px) {
    .page-404__media {
      justify-content: center;
      padding: 16px 0 8px;
    }
  }

  .page-404__numeral-wrap {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transform: translate(var(--cursor-x, 0px), var(--cursor-y, 0px));
    transition: transform 0.6s cubic-bezier(0.2, 0, 0.2, 1);
    will-change: transform;
  }

  .page-404__numeral {
    display: block;
    font-family: var(--font-heading--family);
    font-weight: 300;
    font-size: clamp(96px, 16.8vw, 228px);
    line-height: 0.85;
    letter-spacing: -0.05em;
    color: #292929;
    transform-origin: 50% 50%;
    animation: page404NumeralFloat 6s ease-in-out infinite;
    will-change: transform;
  }

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

  @media (prefers-reduced-motion: reduce) {
    .page-404__numeral {
      animation: none;
    }
  }

  .page-404__media-tag {
    position: absolute;
    bottom: 14px;
    left: 14px;
    z-index: 2;
    font-family: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace;
    font-size: 11px;
    color: #BCBCBC;
    letter-spacing: 0.04em;
  }

  .page-404__info {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .page-404__badge {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    background-color: #EB2529;
    color: #FFFFFF;
    font-family: var(--font-heading--family);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 6px 10px;
    border-radius: 2px;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
    animation-delay: 0.05s;
  }

  .page-404__title {
    font-family: var(--font-heading--family);
    font-weight: 400;
    font-size: clamp(36px, 5vw, 72px);
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: #292929;
    margin: 0;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
    animation-delay: 0.15s;
  }

  .page-404__desc {
    font-family: var(--font-heading--family);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6;
    color: #464646;
    margin: 0;
    max-width: 480px;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
    animation-delay: 0.25s;
  }

  .page-404__meta {
    margin: 8px 0 0;
    padding: 24px 0;
    border-top: 1px solid #E4E4E4;
    border-bottom: 1px solid #E4E4E4;
    display: flex;
    flex-direction: column;
    gap: 12px;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
    animation-delay: 0.35s;
  }

  .page-404__meta-row {
    display: grid;
    grid-template-columns: 100px 1fr;
    align-items: center;
    gap: 16px;
    margin: 0;
    font-family: var(--font-heading--family);
    font-size: 14px;
  }

  .page-404__meta-row dt {
    margin: 0;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #888;
  }

  .page-404__meta-row dd {
    margin: 0;
    color: #292929;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-feature-settings: "tnum" 1;
  }

  .page-404__status-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #EB2529;
    box-shadow: 0 0 0 4px rgba(235, 37, 41, 0.15);
  }

  .page-404__cta {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background-color: #EB2529;
    color: #FFFFFF;
    border: none;
    border-radius: 2px;
    font-family: var(--font-heading--family);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 22px 26px;
    box-sizing: border-box;
    overflow: hidden;
    isolation: isolate;
    transition: color 0.3s ease;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
    animation-delay: 0.45s;
  }

  .page-404__cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: #292929;
    transform: translateX(-101%);
    transition: transform 0.4s cubic-bezier(0.65, 0, 0.35, 1);
    z-index: -1;
  }

  .page-404__cta-label,
  .page-404__cta-arrow {
    position: relative;
    z-index: 1;
  }

  .page-404__cta-arrow {
    display: inline-flex;
    align-items: center;
    width: 36px;
    height: 12px;
    flex: none;
  }

  .page-404__cta-arrow svg {
    width: 28px;
    height: 12px;
    flex: none;
    transition: transform 0.4s cubic-bezier(0.65, 0, 0.35, 1);
  }

  .page-404__cta:hover::before,
  .page-404__cta:focus-visible::before {
    transform: translateX(0);
  }

  .page-404__cta:hover .page-404__cta-arrow svg,
  .page-404__cta:focus-visible .page-404__cta-arrow svg {
    transform: translateX(6px);
  }

  .page-404__cta:focus-visible {
    outline: 2px solid #292929;
    outline-offset: 3px;
  }

  .page-404__secondary {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #292929;
    font-family: var(--font-heading--family);
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 4px 0;
    transition: color 0.3s ease, gap 0.3s ease;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
    animation-delay: 0.55s;
  }

  .page-404__secondary::after {
    content: '→';
    transition: transform 0.3s ease;
  }

  .page-404__secondary:hover {
    color: #EB2529;
    gap: 12px;
  }

  .page-404__lifeline {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid #E4E4E4;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
    animation-delay: 0.55s;
  }

  @media screen and (min-width: 990px) {
    .page-404__lifeline {
      margin-top: 40px;
    }
  }

  .page-404__lifeline-eyebrow {
    display: block;
    font-family: var(--font-heading--family);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 20px;
  }

  .page-404__lifeline-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
  }

  .page-404__lifeline-item + .page-404__lifeline-item {
    border-top: 1px solid #E4E4E4;
  }

  @media screen and (min-width: 990px) {
    .page-404__lifeline-list {
      grid-template-columns: repeat(var(--lifeline-cols, 4), minmax(0, 1fr));
    }

    .page-404__lifeline-item + .page-404__lifeline-item {
      border-top: none;
      border-left: 1px solid #E4E4E4;
    }
  }

  .page-404__lifeline-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 20px;
    color: #292929;
    text-decoration: none;
    font-family: var(--font-heading--family);
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 0.04em;
    transition: color 0.3s ease, background-color 0.3s ease;
  }

  .page-404__lifeline-label {
    flex: 1 1 auto;
    min-width: 0;
  }

  .page-404__lifeline-arrow {
    display: inline-flex;
    align-items: center;
    width: 36px;
    height: 12px;
    flex: none;
  }

  .page-404__lifeline-arrow svg {
    width: 28px;
    height: 12px;
    flex: none;
    transition: transform 0.4s cubic-bezier(0.65, 0, 0.35, 1);
  }

  .page-404__lifeline-link:hover,
  .page-404__lifeline-link:focus-visible {
    color: #EB2529;
    background-color: #FFFFFF;
  }

  .page-404__lifeline-link:hover .page-404__lifeline-arrow svg,
  .page-404__lifeline-link:focus-visible .page-404__lifeline-arrow svg {
    transform: translateX(6px);
  }

  .page-404__lifeline-link:focus-visible {
    outline: 2px solid #292929;
    outline-offset: 3px;
  }

  .page-404__variants {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 4px 0 0;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
    animation-delay: 0.4s;
  }

  .page-404__variants-label {
    font-family: var(--font-heading--family);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #888;
  }

  .page-404__variants-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }

  .page-404__variant {
    appearance: none;
    -webkit-appearance: none;
    background: transparent;
    border: 1px solid #D8D8D8;
    border-radius: 2px;
    padding: 10px 16px;
    min-width: 64px;
    font-family: var(--font-heading--family);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.04em;
    color: #292929;
    cursor: pointer;
    position: relative;
    transition: border-color 0.2s ease, color 0.2s ease, background-color 0.2s ease;
  }

  .page-404__variant:hover:not([disabled]) {
    border-color: #292929;
  }

  .page-404__variant--active {
    border-color: #EB2529;
    background-color: #EB2529;
    color: #FFFFFF;
    box-shadow: 0 0 0 2px rgba(235, 37, 41, 0.15);
  }

  .page-404__variant--active:hover {
    border-color: #EB2529;
  }

  .page-404__variant[disabled] {
    color: #BBB;
    border-color: #E4E4E4;
    cursor: not-allowed;
    background-image: linear-gradient(
      to bottom right,
      transparent calc(50% - 0.5px),
      #D8D8D8 calc(50% - 0.5px),
      #D8D8D8 calc(50% + 0.5px),
      transparent calc(50% + 0.5px)
    );
  }

  @media screen and (max-width: 750px) {
    .page-404__meta {
      display: none;
    }
  }

  @media screen and (min-width: 990px) and (max-height: 860px) {
    #shopify-section-{{ section.id }} .page-404__inner,
    .page-404__inner {
      padding-top: 12px !important;
      padding-bottom: 24px !important;
    }
    .page-404__breadcrumb { margin-bottom: 12px; }
    .page-404__grid { gap: 40px; }
    .page-404__numeral { font-size: clamp(72px, 12.6vw, 171px); }
    .page-404__info { gap: 16px; }
    .page-404__title { font-size: clamp(28px, 3.75vw, 54px); }
    .page-404__desc { font-size: 14px; max-width: 420px; }
    .page-404__meta { padding: 14px 0; gap: 8px; margin-top: 4px; }
    .page-404__meta-row { font-size: 13px; }
    .page-404__cta { padding: 16px 22px; font-size: 13px; }
    .page-404__variants { gap: 8px; }
    .page-404__variant { padding: 7px 12px; min-width: 52px; font-size: 13px; }
    .page-404__lifeline { margin-top: 20px; padding-top: 18px; }
    .page-404__lifeline-eyebrow { margin-bottom: 12px; }
    .page-404__lifeline-link { padding: 12px 16px; font-size: 13px; }
  }

  @keyframes fadeInUp {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
  }
/* END_SECTION:page-404 */

/* START_SECTION:partners-parallax (INDEX:59) */
.partners-parallax {
  padding-block-start: 60px;
  padding-block-end: 0;
}

.partners-parallax__list {
  /* No max-width — cards need full-width backgrounds */
  padding-block: 0;
}

.partners-parallax__card-wrapper {
  position: relative;
  margin-bottom: 50px;
  perspective: 500px;
}

.partners-parallax__card-wrapper:last-child {
  margin-bottom: 40px;
}

.partners-parallax__card {
  border-radius: 60px 60px 0 0;
  font-family: var(--font-heading-family);
  opacity: 0;
}

.partners-parallax__card-inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-block: 57px;
  padding-inline: clamp(1.5rem, 8.33vw, 120px);
  max-width: var(--page-width, 1440px);
  margin-inline: auto;
}

.partners-parallax__top-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.partners-parallax__content-row {
  display: flex;
  align-items: flex-start;
  gap: 80px;
}

.partners-parallax__logo {
  max-width: 120px;
  height: auto;
  object-fit: contain;
}

.partners-parallax__number {
  font-size: 36px;
  line-height: 44px;
  font-weight: 400;
  opacity: 0.4;
}

.partners-parallax__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex: 1;
  min-width: 0;
}

.partners-parallax__right {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex-shrink: 0;
  width: 361px;
}

.partners-parallax__name {
  font-size: 48px;
  line-height: 60px;
  font-weight: 400;
  margin-bottom: 0;
}

.partners-parallax__description {
  font-size: 16px;
  line-height: 24px;
}

.partners-parallax__description p {
  margin-bottom: 1em;
}

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

.partners-parallax__image-wrapper {
  width: 361px;
  height: 368px;
  border-radius: 5px;
  overflow: hidden;
  background: white;
}

.partners-parallax__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.partners-parallax__image-caption {
  font-size: 16px;
  line-height: 24px;
  color: #464646;
  text-align: left;
}

@media screen and (min-width: 750px) and (max-width: 1024px) {
  .partners-parallax__list {
    padding-block: 0;
  }

  .partners-parallax__card {
    border-radius: 40px 40px 0 0;
  }

  .partners-parallax__card-inner {
    padding-block: 40px;
    padding-inline: clamp(1.5rem, 11.13vw, 114px);
    gap: 24px;
  }

  .partners-parallax__name {
    font-size: 36px;
    line-height: 44px;
  }

  .partners-parallax__content-row {
    gap: 48px;
  }

  .partners-parallax__right {
    width: 240px;
  }

  .partners-parallax__image-wrapper {
    width: 240px;
    height: 245px;
  }

  .partners-parallax__number {
    font-size: 28px;
    line-height: 36px;
  }
}

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

  .partners-parallax__right {
    width: 100%;
  }

  .partners-parallax__image-wrapper {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
  }
}
/* END_SECTION:partners-parallax */

/* START_SECTION:password-footer (INDEX:60) */
.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:61) */
.section-password {
    flex-grow: 1;
    display: flex;
  }

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

/* START_SECTION:product-hotspots (INDEX:64) */
/* 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:65) */
.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);
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* START_SECTION:quick-order-list (INDEX:68) */
.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:replatform-cta-banner (INDEX:70) */
.rp-cta {
    font-family: var(--font-heading--family);
    background: #ffffff;
  }

  .rp-cta__outer {
    max-width: 1512px;
    margin: 0 auto;
    padding: 0 60px 60px;
  }

  .rp-cta__box {
    background: #292929;
    border-radius: 20px;
    padding: 48px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
  }

  .rp-cta__text-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .rp-cta__heading {
    font-size: clamp(1.5rem, 2.5vw, 38px);
    font-weight: 400;
    line-height: 1.25;
    color: #ffffff;
    margin: 0;
    max-width: 680px;
  }

  .rp-cta__subtext {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
  }

  .rp-cta__button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border: 1px solid #ffffff;
    border-radius: 4px;
    background-color: #ffffff;
    font-size: 15px;
    font-weight: 400;
    line-height: 1;
    color: #292929;
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
    flex-shrink: 0;
    font-family: var(--font-heading--family);
    position: relative;
    overflow: hidden;
    isolation: isolate;
  }

  .rp-cta__button:hover {
    color: #ffffff;
  }

  /* magnetic-fill hover (parity with .header-cta-button): dark flair over a white button */
  .rp-cta__button .button__label,
  .rp-cta__button svg {
    position: relative;
    z-index: 1;
  }

  .rp-cta__button .button__flair {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    transform: scale(0);
    transform-origin: 0 0;
  }

  .rp-cta__button:hover .button__flair,
  .rp-cta__button:focus-visible .button__flair {
    will-change: transform;
  }

  .rp-cta__button .button__flair::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 170%;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    background-color: #292929;
  }

  @media screen and (max-width: 989px) {
    .rp-cta__outer {
      padding: 0 32px 40px;
    }
    .rp-cta__box {
      flex-direction: column;
      align-items: flex-start;
      gap: 28px;
      padding: 40px 32px;
      border-radius: 16px;
    }
    .rp-cta__heading {
      font-size: clamp(1.25rem, 4vw, 28px);
    }
  }

  /* below the button-animation.js gate (innerWidth < 768): disable the flair */
  @media screen and (max-width: 767px) {
    .rp-cta__button {
      overflow: visible;
      isolation: auto;
    }
    .rp-cta__button .button__flair {
      display: none;
    }
    .rp-cta__button .button__label,
    .rp-cta__button svg {
      position: static;
      z-index: auto;
    }
    .rp-cta__button:hover {
      color: #292929;
      background: #ffffff;
    }
  }

  @media screen and (max-width: 749px) {
    .rp-cta__box {
      padding: 32px 24px;
    }
    .rp-cta__heading {
      font-size: 22px;
    }
    .rp-cta__button {
      width: 100%;
      justify-content: center;
      font-size: 12px;
    }
  }
/* END_SECTION:replatform-cta-banner */

/* START_SECTION:replatform-hero (INDEX:71) */
/* ── Hero wrapper ── */
  .rp-hero {
    font-family: var(--font-heading--family);
    background: #f5f5f5;
    position: relative;
    overflow: hidden;
  }

  /* Full-height mode: extends to top of page, header overlays */
  .rp-hero--full-height {
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: flex-end;
    margin-top: 0 !important;
    padding-top: 0 !important;
  }

  /* ── Diagonal stripe bottom decoration ── */
  .rp-hero__grid-item--fit-contain {
    background: #2929290f;
    border: 1px solid #ddd;
}
  /* ── Inner container ── */
  .rp-hero__container {
    position: relative;
    z-index: 1;
    max-width: 1512px;
    margin: 0 auto;
    padding: 122px 60px 60px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 80px;
  }

  /* Adjust container for full-height mode */
  .rp-hero--full-height .rp-hero__container {
    width: 100%;
  }

  /* ── Left column ── */
  .rp-hero__left {
    flex: 0 0 auto;
    max-width: 650px;
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .rp-hero__heading {
    font-size: 72px;
    font-weight: 400;
    line-height: 1.08;
    color: #292929;
    margin: 0;
    letter-spacing: 0;

  }

  .rp-hero__text {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #292929;
    margin: 0;
    max-width: 608px;
  }

  .rp-hero__text p {
    margin: 0;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
    color: inherit;
  }

  .rp-hero__text p + p {
    margin-top: 0.75em;
  }

  /* ── Platforms (from Hero Platforms metaobject list) ── */
  .rp-hero__platforms {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 608px;
  }

  .rp-hero__platforms-heading {
    display: block;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #464646;
    font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  }

  .rp-hero__platforms-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }

  .rp-hero__platforms-item {
    margin: 0;
    padding: 6px 12px;
    border-radius: 8px;
    border: 1px solid rgba(41, 41, 41, 0.25);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
    color: #292929;
    font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  }

  /* ── CTAs ── */
  .rp-hero__ctas {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
  }

  .rp-hero__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 16px;
    height: 40px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.43;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
    font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
    letter-spacing: 0;
  }

  .rp-hero__btn svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
  }

  .rp-hero__btn--primary {
    background: #eb2529;
    color: #f5f5f5;
    border: none;
  }

  .rp-hero__btn--primary:hover {
    background: #d41f23;
    transform: translateY(-1px);
  }

  .rp-hero__btn--secondary {
    background: transparent;
    color: #292929;
    border: 1px solid #292929;
  }

  .rp-hero__btn--secondary:hover {
    background: rgba(41, 41, 41, 0.1);
  }

  /* ── Right: 2×2 image grid ── */
  .rp-hero__grid {
    flex: 0 0 600px;
    max-width: 600px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    min-width: 0;
  }

  .rp-hero__grid-item {
    position: relative;
    overflow: hidden;
    height: 195px;
  }

  .rp-hero__grid-item--1 {
    border-top-left-radius: 10px;
  }

  .rp-hero__grid-item--2 {
    border-top-right-radius: 10px;
  }

  .rp-hero__grid-item--3 {
    border-bottom-left-radius: 10px;
  }

  .rp-hero__grid-item--4 {
    border-bottom-right-radius: 10px;
  }

  .rp-hero__grid-img {
    width: 60%;
    height: 60%;
    object-fit: contain !important;
    object-position: center;
    display: block;
  }

  /* Letterboxing when block uses “Contain” (neutral tile) */
  .rp-hero__grid-item--fit-contain {
    background: rgba(41, 41, 41, 0.06);
  }

  .rp-hero--colored-grid-placeholders .rp-hero__grid-item--pastel-frame.rp-hero__grid-item--fit-contain {
    background: transparent;
  }

  /* Pastel visible around images (toggle on): frame + letterboxing for contain */
  .rp-hero--colored-grid-placeholders .rp-hero__grid-item--pastel-frame {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .rp-hero--colored-grid-placeholders .rp-hero__grid-item--pastel-frame::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    border-radius: inherit;
    background: var(--rp-hero-tile-color);
    pointer-events: none;
  }

  .rp-hero--colored-grid-placeholders .rp-hero__grid-item--pastel-frame .rp-hero__grid-img {
    position: relative;
    z-index: 1;
    width: calc(60% - 12px);
    height: calc(60% - 12px);
    max-width: calc(60% - 12px);
    max-height: calc(60% - 12px);
    flex-shrink: 0;
    border-radius: 6px;
  }

  /* Empty project tiles: neutral by default; full pastel when toggle is on */
  .rp-hero__grid-placeholder {
    width: 100%;
    height: 100%;
    background: #e3e3e3;
  }

  .rp-hero--colored-grid-placeholders .rp-hero__grid-item:nth-child(4n + 1) .rp-hero__grid-placeholder {
    background: #bfdbea;
  }
  .rp-hero--colored-grid-placeholders .rp-hero__grid-item:nth-child(4n + 2) .rp-hero__grid-placeholder {
    background: #eeddbf;
  }
  .rp-hero--colored-grid-placeholders .rp-hero__grid-item:nth-child(4n + 3) .rp-hero__grid-placeholder {
    background: #f5c9c9;
  }
  .rp-hero--colored-grid-placeholders .rp-hero__grid-item:nth-child(4n + 4) .rp-hero__grid-placeholder {
    background: #d9f1e6;
  }

  .rp-hero__grid-label {
    position: absolute;
    bottom: 16px;
    left: 16px;
    z-index: 2;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.5;
    color: #292929;
    letter-spacing: 0;
    font-family: var(--font-heading--family);
  }

  /* ── Responsive: tablet ── */
  @media screen and (max-width: 989px) {
    .rp-hero__container {
      flex-direction: column;
      gap: 32px;
      padding: 80px 32px 48px;
    }
    .rp-hero--full-height .rp-hero__container {
      padding: 100px 32px 48px;
    }
    .rp-hero__left {
      flex: none;
      max-width: 100%;
    }
    .rp-hero__heading {
      font-size: 56px;
      line-height: 1.1;
    }
    .rp-hero__grid {
      width: 100%;
      max-width: 100%;
      flex: none;
    }
    .rp-hero__grid-item {
      height: 180px;
    }
    .rp-hero__grid-label {
      font-size: 18px;
    }
  }

  /* ── Responsive: mobile ── */
  @media screen and (max-width: 749px) {
    .rp-hero__container {
      padding: 60px 20px 40px;
      gap: 28px;
    }
    .rp-hero--full-height {
      min-height: auto;
      align-items: stretch;
    }
    .rp-hero--full-height .rp-hero__container {
      padding: 80px 20px 40px;
    }
    .rp-hero__heading {
      font-size: 36px;
      line-height: 1.15;
    }
    .rp-hero__text {
      font-size: 15px;
    }
    .rp-hero__platforms-item {
      font-size: 13px;
      padding: 5px 10px;
    }
    .rp-hero__ctas {
      flex-direction: column;
      align-items: stretch;
      gap: 12px;
    }
    .rp-hero__btn {
      padding: 10px 16px;
      font-size: 13px;
      height: 38px;
      width: 100%;
    }
    .rp-hero__btn svg {
      width: 16px;
      height: 16px;
    }
    .rp-hero__grid-item {
      height: 150px;
    }
    .rp-hero__grid-label {
      font-size: 16px;
      bottom: 12px;
      left: 12px;
    }
  }
/* END_SECTION:replatform-hero */

/* START_SECTION:replatform-image-grid (INDEX:72) */
.rp-banner {
    background: #ffffff;
  }

  .rp-banner__outer {
    max-width: 1512px;
    margin: 0 auto;
    padding: 0 30px 40px;
  }

  .rp-banner__inner {
    background: #1a1a1a;
    border-radius: 20px;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 16 / 9;
  }

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

  .rp-banner__placeholder {
    width: 100%;
    height: 100%;
    opacity: 0.3;
  }

  @media screen and (max-width: 989px) {
    .rp-banner__outer {
      padding: 0 20px 32px;
    }
    .rp-banner__inner {
      border-radius: 14px;
      aspect-ratio: 4 / 3;
    }
  }

  @media screen and (max-width: 749px) {
    .rp-banner__inner {
      border-radius: 10px;
      aspect-ratio: 3 / 2;
    }
  }
/* END_SECTION:replatform-image-grid */

/* START_SECTION:replatform-process (INDEX:73) */
.rp-process {
    font-family: var(--font-heading--family);
    background: #f5f5f5;
  }

  .rp-process__container {
    max-width: 1512px;
    margin: 0 auto;
    padding: 48px 60px;
    display: flex;
    flex-direction: column;
    gap: 32px;
  }

  /* ── Two-column header (grid layout) ── */
  .rp-process__header {
    display: flex;
    align-items: flex-start;
    gap: 60px;
  }

  .rp-process__header-left {
    flex: 0 0 48%;
    max-width: 48%;
  }

  .rp-process__heading {
    font-size: clamp(2rem, 3.2vw, 52px);
    font-weight: 400;
    line-height: 1.15;
    color: #292929;
    margin: 0;
  }

  /* Full-width heading for row layout */
  .rp-process__heading--row {
    font-size: clamp(2rem, 3.5vw, 56px);
    font-weight: 400;
    line-height: 1.1;
  }

  .rp-process__header-right {
    flex: 1;
    padding-top: 6px;
  }

  .rp-process__description {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.65;
    color: #464646;
    margin: 0;
    max-width: 520px;
  }

  .rp-process__description p {
    margin: 0;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
    color: inherit;
  }

  .rp-process__description p + p {
    margin-top: 0.75em;
  }

  /* ── Shared card internals ── */
  .rp-process__card-number {
    font-size: 14px;
    font-weight: 400;
    color: var(--card-number-color, #292929);
    letter-spacing: 0;
    display: block;
    line-height: 1.43;
  }

  .rp-process__card-number--icon img {
    display: block;
    width: 32px;
    height: 32px;
    object-fit: contain;
  }

  .rp-process__card-title {
    font-size: var(--card-title-fs, 18px);
    font-weight: 400;
    line-height: 1.56;
    color: var(--card-title-color, #292929);
    margin: 0;
  }

  .rp-process__card-title-link {
    color: inherit;
    text-decoration: none;
  }

  .rp-process__card-title-link:hover {
    text-decoration: underline;
  }

  .rp-process__card-text {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--card-text-color, #464646);
    margin: 0;
  }

  .rp-process__card-text p {
    margin: 0;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
    color: inherit;
  }

  .rp-process__card-text p + p {
    margin-top: 0.65em;
  }

  .rp-process__card-link {
    color: var(--card-link-color, #eb2529);
  }

  /* ── Grid layout ── */
  .rp-process__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 0.5px solid var(--card-border-color, rgba(41, 41, 41, 0.2));
    border-left: 0.5px solid var(--card-border-color, rgba(41, 41, 41, 0.2));
  }

  .rp-process__card--grid {
    padding: var(--card-pt, 36px) var(--card-px, 32px) var(--card-pb, 40px);
    border-right: 0.5px solid var(--card-border-color, rgba(41, 41, 41, 0.2));
    border-bottom: 0.5px solid var(--card-border-color, rgba(41, 41, 41, 0.2));
    background: var(--card-bg, transparent);
    border-radius: var(--card-radius, 0px);
    display: flex;
    flex-direction: column;
    gap: var(--card-gap, 12px);
    transition: background 0.2s ease;
  }

  .rp-process__card--grid:hover {
    background: var(--card-hover-bg, #f9f9f9);
  }

  /* ── Row layout ── */
  .rp-process__scroll-wrap {
    overflow-x: auto;
    scrollbar-width: none;
    margin: 0 -60px;
    padding: 0 60px;
  }

  .rp-process__scroll-wrap::-webkit-scrollbar {
    display: none;
  }

  .rp-process__row {
    display: flex;
    border-top: 0.5px solid var(--card-border-color, rgba(41, 41, 41, 0.2));
    width: 100%;
  }

  /* 5 items per row on desktop */
  .rp-process__card--row {
    flex: 0 0 20%;
    min-width: 0;
    padding: var(--card-pt, 32px) var(--card-px, 28px) var(--card-pb, 36px);
    border-right: 0.5px solid var(--card-border-color, rgba(41, 41, 41, 0.2));
    background: var(--card-bg, transparent);
    border-radius: var(--card-radius, 0px);
    display: flex;
    flex-direction: column;
    gap: var(--card-gap, 12px);
    transition: background 0.2s ease;
  }

  .rp-process__card--row:first-child {
    border-left: 0.5px solid var(--card-border-color, rgba(41, 41, 41, 0.2));
  }

  .rp-process__card--row:hover {
    background: var(--card-hover-bg, #f9f9f9);
  }

  /* ── Horizontal clean layout ── */
  .rp-process__horizontal {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
    gap: 0;
  }

  .rp-process__card--horizontal {
    flex: 1;
    padding: var(--card-pt, 32px) var(--card-px, 24px) var(--card-pb, 32px);
    border-right: 0.5px solid var(--card-border-color, #464646);
    background: var(--card-bg, transparent);
    border-radius: var(--card-radius, 5px);
    display: flex;
    align-items: flex-start;
    min-width: 0;
  }

  .rp-process__card--horizontal:last-child {
    border-right: none;
  }

  .rp-process__card-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    max-width: 226px;
  }

  .rp-process__card-header {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .rp-process__card--horizontal .rp-process__card-number {
    font-size: 14px;
    line-height: 1.43;
  }

  .rp-process__card--horizontal .rp-process__card-title {
    font-size: var(--card-title-fs, 18px);
    line-height: 1.56;
  }

  .rp-process__card--horizontal .rp-process__card-text {
    font-size: 12px;
    line-height: 1.5;
    max-width: 217px;
  }

  /* ── Stats style layout ── */
  .rp-process__stats {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
    gap: 0;
  }

  .rp-process__stat-item {
    flex: 1;
    padding: 0 50px;
    border-right: 0.5px solid var(--card-border-color, #464646);
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-width: 0;
  }

  .rp-process__stat-item:last-child {
    border-right: none;
  }

  .rp-process__stat-number {
    font-size: 36px;
    font-weight: 500;
    line-height: 1.22;
    color: var(--card-number-color, #eb2529);
    margin: 0;
  }

  .rp-process__stat-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .rp-process__stat-title {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.56;
    color: var(--card-title-color, #292929);
    margin: 0;
  }

  .rp-process__stat-text {
    font-size: 12px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--card-text-color, #464646);
    margin: 0;
  }

  .rp-process__stat-text p {
    margin: 0;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
    color: inherit;
  }

  .rp-process__stat-text p + p {
    margin-top: 0.65em;
  }

  /* ── Responsive: grid layout ── */
  @media screen and (max-width: 989px) {
    .rp-process__container {
      padding: 40px 32px;
      gap: 32px;
    }
    .rp-process__header {
      flex-direction: column;
      gap: 16px;
    }
    .rp-process__header-left {
      flex: none;
      max-width: 100%;
    }
    .rp-process__grid {
      grid-template-columns: repeat(2, 1fr);
    }
    .rp-process__scroll-wrap {
      margin: 0 -32px;
      padding: 0 32px;
    }
    /* 3 items per row on tablet */
    .rp-process__card--row {
      flex: 0 0 33.333%;
    }
    /* Horizontal clean: scroll on tablet */
    .rp-process__horizontal {
      overflow-x: auto;
      scrollbar-width: none;
      gap: 0;
    }
    .rp-process__horizontal::-webkit-scrollbar {
      display: none;
    }
    .rp-process__card--horizontal {
      flex: 0 0 280px;
    }
    /* Stats style: scroll on tablet */
    .rp-process__stats {
      overflow-x: auto;
      scrollbar-width: none;
      gap: 0;
    }
    .rp-process__stats::-webkit-scrollbar {
      display: none;
    }
    .rp-process__stat-item {
      flex: 0 0 300px;
      padding: 0 32px;
    }
  }

  @media screen and (max-width: 749px) {
    .rp-process__container {
      padding: 32px 20px;
      gap: 24px;
    }
    .rp-process__heading {
      font-size: 28px;
    }
    .rp-process__heading--row {
      font-size: 28px;
    }
    .rp-process__grid {
      grid-template-columns: 1fr;
    }
    .rp-process__card--grid {
      padding: var(--card-pt, 24px) var(--card-px, 20px) var(--card-pb, 28px);
    }
    .rp-process__scroll-wrap {
      margin: 0 -20px;
      padding: 0 20px;
    }
    /* ~2.5 items visible on mobile to hint scroll */
    .rp-process__card--row {
      flex: 0 0 40%;
      padding: var(--card-pt, 24px) var(--card-px, 20px) var(--card-pb, 28px);
    }
    /* Horizontal clean: stack vertically on mobile */
    .rp-process__horizontal {
      flex-direction: column;
      overflow-x: visible;
    }
    .rp-process__card--horizontal {
      border-right: none;
      border-bottom: 0.5px solid var(--card-border-color, #464646);
      flex: none;
      width: 100%;
      padding: var(--card-pt, 24px) var(--card-px, 20px) var(--card-pb, 24px);
    }
    .rp-process__card--horizontal:last-child {
      border-bottom: none;
    }
    .rp-process__card-content {
      max-width: 100%;
    }
    /* Stats style: stack vertically on mobile */
    .rp-process__stats {
      flex-direction: column;
      overflow-x: visible;
      gap: 24px;
    }
    .rp-process__stat-item {
      border-right: none;
      border-bottom: 0.5px solid var(--card-border-color, #464646);
      flex: none;
      width: 100%;
      padding: 0 0 24px 0;
    }
    .rp-process__stat-item:last-child {
      border-bottom: none;
      padding-bottom: 0;
    }
    .rp-process__stat-number {
      font-size: 28px;
    }
    .rp-process__stat-title {
      font-size: 16px;
    }
  }
/* END_SECTION:replatform-process */

/* START_SECTION:replatform-projects-metaobject (INDEX:74) */
/* ── Section wrapper ── */
  .rp-projects {
    font-family: var(--font-heading--family);
    background: #ffffff;
  }

  .rp-projects__container {
    max-width: 1512px;
    margin: 0 auto;
    padding: 60px;
    display: flex;
    flex-direction: column;
    gap: 32px;
  }

  /* ── Header row ── */
  .rp-projects__header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
  }

  .rp-projects__heading {
    font-size: clamp(1.75rem, 3vw, 48px);
    font-weight: 400;
    line-height: 1.15;
    color: #292929;
    margin: 0;
    letter-spacing: -0.01em;
  }

  .rp-projects__view-all {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 400;
    color: #292929;
    text-decoration: none;
    white-space: nowrap;
    border-bottom: 1px solid rgba(41, 41, 41, 0.5);
    padding-bottom: 1px;
    transition: border-color 0.2s ease, color 0.2s ease;
    flex-shrink: 0;
    font-family: var(--font-heading--family);
  }

  .rp-projects__view-all:hover {
    color: #eb2529;
    border-color: #eb2529;
  }

  /* ── Grid ── */
  .rp-projects__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  /* ── Card ── */
  .rp-projects__card {
    background: #ffffff;
    border: 0.5px solid rgba(41, 41, 41, 0.15);
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.2s ease;
    position: relative;
  }

  .rp-projects__card:hover {
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
  }

  /* ── Card media ── */
  .rp-projects__card-media {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #f0f0f0;
  }

  .rp-projects__card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
  }

  .rp-projects__card:hover .rp-projects__card-img {
    transform: scale(1.02);
  }

  .rp-projects__card-img-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e8e8e8 0%, #d0d0d0 100%);
  }

  .rp-projects__badge {
    position: absolute;
    top: 12px;
    left: 14px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: #ffffff;
    background: #eb2529;
    padding: 4px 10px;
    border-radius: 40px;
    line-height: 1.4;
    z-index: 1;
  }

  /* ── Card body ── */
  .rp-projects__card-body {
    padding: var(--card-pt, 24px) var(--card-px, 28px) var(--card-pb, 28px);
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
  }

  /* Text-focused layout styling */
  .rp-projects__card--text_focused {
    background: #f5f5f5;
  }

  .rp-projects__card--text_focused .rp-projects__card-body {
    gap: 24px;
  }

  .rp-projects__card-category {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.43;
    color: #eb2529;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin: 0;
  }

  .rp-projects__card-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-bottom: 16px;
    border-bottom: 0.5px solid rgba(70, 70, 70, 0.6);
  }

  .rp-projects__card--text_focused .rp-projects__card-brand {
    font-size: 36px;
    font-weight: 500;
    line-height: 1.22;
  }

  .rp-projects__card--text_focused .rp-projects__card-desc {
    font-size: 12px;
    line-height: 1.5;
    color: #464646;
  }

  .rp-projects__card--text_focused .rp-projects__card-link {
    font-size: 12px;
    font-weight: 700;
    gap: 4px;
  }

  .rp-projects__card-brand {
    font-size: 26px;
    font-weight: 400;
    line-height: 1.2;
    color: #292929;
    margin: 0;
  }

  .rp-projects__card-desc {
    font-size: 13px;
    font-weight: 400;
    line-height: 1.65;
    color: #646464;
    margin: 0;
    flex: 1;
  }

  .rp-projects__card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 400;
    color: #292929;
    text-decoration: none;
    transition: color 0.2s ease;
  }

  .rp-projects__card-link:hover {
    color: #eb2529;
  }

  @media screen and (max-width: 989px) {
    .rp-projects__container {
      padding: 40px 32px;
    }
    .rp-projects__grid {
      grid-template-columns: 1fr;
    }
  }

  @media screen and (max-width: 749px) {
    .rp-projects__container {
      padding: 32px 20px;
    }
    .rp-projects__heading {
      font-size: 32px;
      line-height: 40px;
    }
    .rp-projects__card--text_focused .rp-projects__card-brand {
      font-size: 28px;
    }
    .rp-projects__card-category {
      font-size: 12px;
    }
  }
/* END_SECTION:replatform-projects-metaobject */

/* START_SECTION:replatform-projects (INDEX:75) */
/* ── Section wrapper ── */
  .rp-projects {
    font-family: var(--font-heading--family);
    background: #ffffff;
  }

  .rp-projects__container {
    max-width: 1512px;
    margin: 0 auto;
    padding: 60px;
    display: flex;
    flex-direction: column;
    gap: 32px;
  }

  /* ── Header row ── */
  .rp-projects__header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
  }

  .rp-projects__heading {
    font-size: clamp(1.75rem, 3vw, 48px);
    font-weight: 400;
    line-height: 1.15;
    color: #292929;
    margin: 0;
    letter-spacing: -0.01em;
  }

  .rp-projects__view-all {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 400;
    color: #292929;
    text-decoration: none;
    white-space: nowrap;
    border-bottom: 1px solid rgba(41, 41, 41, 0.5);
    padding-bottom: 1px;
    transition: border-color 0.2s ease, color 0.2s ease;
    flex-shrink: 0;
    font-family: var(--font-heading--family);
  }

  .rp-projects__view-all:hover {
    color: #eb2529;
    border-color: #eb2529;
  }

  /* ── Grid ── */
  .rp-projects__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  /* ── Card ── */
  .rp-projects__card {
    background: #ffffff;
    border: 0.5px solid rgba(41, 41, 41, 0.15);
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.2s ease;
  }

  .rp-projects__card:hover {
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
  }

  /* ── Card media ── */
  .rp-projects__card-media {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #f0f0f0;
  }

  .rp-projects__card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
  }

  .rp-projects__card:hover .rp-projects__card-img {
    transform: scale(1.02);
  }

  .rp-projects__card-img-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e8e8e8 0%, #d0d0d0 100%);
  }

  .rp-projects__badge {
    position: absolute;
    top: 12px;
    left: 14px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: #ffffff;
    background: #eb2529;
    padding: 4px 10px;
    border-radius: 40px;
    line-height: 1.4;
  }

  /* ── Card body ── */
  .rp-projects__card-body {
    padding: var(--card-pt, 24px) var(--card-px, 28px) var(--card-pb, 28px);
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
  }

  /* Text-focused layout styling */
  .rp-projects__card--text_focused {
    background: #f5f5f5;
  }

  .rp-projects__card--text_focused .rp-projects__card-body {
    gap: 24px;
  }

  .rp-projects__card-category {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.43;
    color: #eb2529;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin: 0;
  }

  .rp-projects__card-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-bottom: 16px;
    border-bottom: 0.5px solid rgba(70, 70, 70, 0.6);
  }

  .rp-projects__card--text_focused .rp-projects__card-brand {
    font-size: 36px;
    font-weight: 500;
    line-height: 1.22;
  }

  .rp-projects__card--text_focused .rp-projects__card-desc {
    font-size: 12px;
    line-height: 1.5;
    color: #464646;
  }

  .rp-projects__card--text_focused .rp-projects__card-link {
    font-size: 12px;
    font-weight: 700;
    gap: 4px;
  }

  .rp-projects__card-brand {
    font-size: 26px;
    font-weight: 400;
    line-height: 1.2;
    color: #292929;
    margin: 0;
  }

  .rp-projects__card-desc {
    font-size: 13px;
    font-weight: 400;
    line-height: 1.65;
    color: #646464;
    margin: 0;
    flex: 1;
  }

  .rp-projects__card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 400;
    color: #292929;
    text-decoration: none;
    margin-top: auto;
    transition: color 0.2s ease;
    font-family: var(--font-heading--family);
  }

  .rp-projects__card-link:hover {
    color: #eb2529;
  }

  /* ── Responsive: tablet ── */
  @media screen and (max-width: 989px) {
    .rp-projects__container {
      padding: 40px 32px;
      gap: 24px;
    }
    .rp-projects__heading {
      font-size: clamp(1.5rem, 4vw, 36px);
    }
  }

  /* ── Responsive: mobile ── */
  @media screen and (max-width: 749px) {
    .rp-projects__container {
      padding: 32px 20px;
      gap: 20px;
    }
    .rp-projects__grid {
      grid-template-columns: 1fr;
      gap: 12px;
    }
    .rp-projects__heading {
      font-size: 26px;
    }
    .rp-projects__header {
      flex-direction: column;
      gap: 8px;
      align-items: flex-start;
    }
    .rp-projects__card-brand {
      font-size: 22px;
    }
    .rp-projects__card--text_focused .rp-projects__card-brand {
      font-size: 28px;
    }
    .rp-projects__card-category {
      font-size: 12px;
    }
  }
/* END_SECTION:replatform-projects */

/* START_SECTION:replatform-stats (INDEX:76) */
.rp-stats {
    font-family: var(--font-heading--family);
    background: #ffffff;
  }

  .rp-stats__container {
    max-width: 1512px;
    margin: 0 auto;
    padding: 60px 60px 40px;
    display: flex;
    align-items: center;
    gap: 0;
  }

  /* Partner badge */
  .rp-stats__partner {
    flex-shrink: 0;
    margin-right: auto;
    max-width: 262px;
  }

  .rp-stats__partner img {
    display: block;
    max-height: 116px;
    width: auto;
  }

  .rp-stats__partner-default {
    display: flex;
    align-items: center;
    gap: 16px;
    height: 116px;
  }

  .rp-stats__partner-icon {
    width: 80px;
    height: 80px;
    background: #1a1a1a;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .rp-stats__partner-icon svg {
    width: 50px;
    height: auto;
  }

  .rp-stats__partner-label {
    display: flex;
    flex-direction: column;
    gap: 2px;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
    color: #1a1a1a;
    letter-spacing: 0.05em;
  }

  /* Divider */
  .rp-stats__divider {
    width: 1px;
    height: 51px;
    background: rgba(41, 41, 41, 0.2);
    flex-shrink: 0;
    margin: 0 48px;
  }

  /* Stat item */
  .rp-stats__item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex-shrink: 0;
  }

  .rp-stats__number {
    font-size: 59px;
    font-weight: 400;
    line-height: 0.78;
    color: #292929;
    margin: 0;
    letter-spacing: 0;
  }

  .rp-stats__label {
    font-size: 12px;
    font-weight: 400;
    line-height: 1.5;
    color: #464646;
    margin: 0;
  }

  @media screen and (max-width: 989px) {
    .rp-stats__container {
      padding: 40px 32px 32px;
      flex-wrap: wrap;
      gap: 24px;
    }
    .rp-stats__partner {
      margin-right: 0;
      flex: 0 0 100%;
    }
    .rp-stats__partner-default {
      height: auto;
    }
    .rp-stats__partner-icon {
      width: 64px;
      height: 64px;
    }
    .rp-stats__partner-icon svg {
      width: 40px;
    }
    .rp-stats__divider {
      display: none;
    }
    .rp-stats__item {
      flex: 1 1 calc(50% - 24px);
    }
    .rp-stats__number {
      font-size: 48px;
    }
  }

  @media screen and (max-width: 749px) {
    .rp-stats__container {
      padding: 32px 20px 24px;
    }
    .rp-stats__partner-icon {
      width: 56px;
      height: 56px;
    }
    .rp-stats__partner-label {
      font-size: 14px;
    }
    .rp-stats__number {
      font-size: 40px;
    }
    .rp-stats__item {
      flex: 1 1 calc(50% - 12px);
    }
  }
/* END_SECTION:replatform-stats */

/* START_SECTION:replatform-testimonial (INDEX:77) */
.rp-testimonial {
    font-family: var(--font-heading--family);
    background: #ffffff;
  }

  .rp-testimonial__outer {
    max-width: 1512px;
    margin: 0 auto;
    padding: 60px 60px;
  }

  .rp-testimonial__box {
    background: #292929;
    border-radius: 20px;
    padding: 56px 60px;
    display: flex;
    flex-direction: column;
    gap: 32px;
  }

  .rp-testimonial__quote {
    font-size: clamp(1.5rem, 2.8vw, 42px);
    font-weight: 400;
    line-height: 1.3;
    color: #ffffff;
    margin: 0;
    max-width: 1000px;
  }

  .rp-testimonial__author {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
  }

  @media screen and (max-width: 989px) {
    .rp-testimonial__outer {
      padding: 40px 32px;
    }
    .rp-testimonial__box {
      padding: 40px 32px;
      gap: 24px;
      border-radius: 16px;
    }
    .rp-testimonial__quote {
      font-size: clamp(1.25rem, 4vw, 28px);
    }
  }

  @media screen and (max-width: 749px) {
    .rp-testimonial__outer {
      padding: 32px 20px;
    }
    .rp-testimonial__box {
      padding: 32px 24px;
    }
    .rp-testimonial__quote {
      font-size: 22px;
      line-height: 1.4;
    }
  }
/* END_SECTION:replatform-testimonial */

/* START_SECTION:replatform-trusted-by (INDEX:78) */
.rp-trusted {
    font-family: var(--font-heading--family);
    background: #ffffff;
    border-top: 0.5px solid rgba(41, 41, 41, 0.15);
    border-bottom: 0.5px solid rgba(41, 41, 41, 0.15);
  }

  .rp-trusted__container {
    max-width: 1512px;
    margin: 0 auto;
    padding: 20px 60px;
    display: flex;
    align-items: center;
    gap: 32px;
  }

  .rp-trusted__label {
    font-size: 14px;
    font-weight: 400;
    color: #464646;
    white-space: nowrap;
    flex-shrink: 0;
  }

  .rp-trusted__track-wrap {
    flex: 1;
    overflow: hidden;
    min-width: 0;
    position: relative;
  }

  /* Fade edges */
  .rp-trusted__track-wrap::before,
  .rp-trusted__track-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 1;
    pointer-events: none;
  }

  .rp-trusted__track-wrap::before {
    left: 0;
    background: linear-gradient(to right, #ffffff 0%, transparent 100%);
  }

  .rp-trusted__track-wrap::after {
    right: 0;
    background: linear-gradient(to left, #ffffff 0%, transparent 100%);
  }

  .rp-trusted__track {
    display: flex;
    width: max-content;
  }

  @media (prefers-reduced-motion: no-preference) {
    .rp-trusted__track {
      animation: rp-trusted-scroll var(--rp-trusted-duration, 30s) linear infinite;
      /* Promote to a GPU layer so mobile Safari composites the marquee (and its
         grayscale-filtered logos) instead of repainting every frame on the main thread. */
      will-change: transform;
      backface-visibility: hidden;
    }
    .rp-trusted__track:hover {
      animation-play-state: paused;
    }
  }

  @keyframes rp-trusted-scroll {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-50%, 0, 0); }
  }

  .rp-trusted__items {
    display: flex;
    align-items: center;
    gap: 48px;
    padding-right: 48px;
  }

  .rp-trusted__item {
    display: flex;
    align-items: center;
    flex-shrink: 0;
  }

  .rp-trusted__item img {
    height: 28px;
    width: auto;
    object-fit: contain;
    opacity: 0.7;
    filter: grayscale(100%);
    transition: opacity 0.2s ease, filter 0.2s ease;
  }

  .rp-trusted__item:hover img {
    opacity: 1;
    filter: grayscale(0%);
  }

  .rp-trusted__item-text {
    font-size: 15px;
    font-weight: 600;
    color: #464646;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    white-space: nowrap;
  }

  .rp-trusted__score {
    font-weight: 700;
    color: #eb2529;
    margin-left: 8px;
  }

  .rp-trusted__den {
    font-weight: 400;
    font-size: 12px;
    color: rgba(70, 70, 70, 0.5);
    letter-spacing: 0;
    margin-left: 3px;
  }

  @media screen and (max-width: 749px) {
    .rp-trusted__container {
      padding: 16px 20px;
      gap: 20px;
    }
    .rp-trusted__label {
      font-size: 13px;
    }
    .rp-trusted__items {
      gap: 32px;
      padding-right: 32px;
    }
    .rp-trusted__track-wrap::before,
    .rp-trusted__track-wrap::after {
      width: 40px;
    }
  }
/* END_SECTION:replatform-trusted-by */

/* START_SECTION:replatform-what-is (INDEX:79) */
.rp-whatis {
    font-family: var(--font-heading--family);
    background: #ffffff;
  }

  .rp-whatis__container {
    max-width: 1512px;
    margin: 0 auto;
    padding: 60px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }

  /* ── Left content ── */
  .rp-whatis__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
    min-width: 0;
  }

  .rp-whatis__section {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .rp-whatis__heading {
    font-size: clamp(1.5rem, 2.5vw, 40px);
    font-weight: 400;
    line-height: 1.2;
    color: #292929;
    margin: 0;
  }

  .rp-whatis__text {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.65;
    color: #464646;
    margin: 0;
  }

  .rp-whatis__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .rp-whatis__list-item {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    color: #464646;
    padding-left: 16px;
    position: relative;
  }

  .rp-whatis__list-item::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #292929;
  }

  .rp-whatis__list-item strong {
    font-weight: 600;
    color: #292929;
  }

  /* ── Right media ── */
  .rp-whatis__media {
    flex: 0 0 46%;
    max-width: 46%;
  }

  .rp-whatis__media-inner {
    background: #f5f0e8;
    border-radius: 16px;
    overflow: hidden;
  }

  .rp-whatis__media-inner img {
    width: 100%;
    height: auto;
    display: block;
  }

  .rp-whatis__placeholder {
    width: 100%;
    height: 400px;
    opacity: 0.3;
  }

  /* ── Two-column text layout (Figma style) ── */
  .rp-whatis__container--text-only {
    gap: 60px;
  }

  .rp-whatis__left-heading {
    flex: 0 0 38%;
    max-width: 460px;
  }

  .rp-whatis__heading--large {
    font-size: 48px;
    line-height: 1.25;
    font-weight: 400;
  }

  .rp-whatis__right-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 740px;
  }

  .rp-whatis__intro {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #292929;
    margin: 0;
  }

  .rp-whatis__bullet-list {
    list-style: disc;
    margin: 16px 0 0 0;
    padding-left: 24px;
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .rp-whatis__bullet-item {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #292929;
    margin: 0;
    padding: 0;
  }

  .rp-whatis__bullet-item::marker {
    color: #292929;
  }

  @media screen and (max-width: 989px) {
    .rp-whatis__container {
      flex-direction: column;
      padding: 40px 32px;
      gap: 32px;
    }
    .rp-whatis__media {
      flex: none;
      max-width: 100%;
      width: 100%;
    }
    .rp-whatis__container--text-only {
      gap: 32px;
    }
    .rp-whatis__left-heading {
      flex: none;
      max-width: 100%;
    }
    .rp-whatis__heading--large {
      font-size: 36px;
    }
    .rp-whatis__right-content {
      max-width: 100%;
    }
  }

  @media screen and (max-width: 749px) {
    .rp-whatis__container {
      padding: 32px 20px;
    }
    .rp-whatis__heading {
      font-size: 28px;
    }
    .rp-whatis__heading--large {
      font-size: 28px;
    }
    .rp-whatis__intro,
    .rp-whatis__bullet-item {
      font-size: 15px;
    }
  }
/* END_SECTION:replatform-what-is */

/* START_SECTION:replatform-why-shero (INDEX:80) */
.rp-why {
    font-family: var(--font-heading--family);
    background: #ffffff;
  }

  .rp-why__container {
    max-width: 1512px;
    margin: 0 auto;
    padding: 60px;
    display: flex;
    gap: 60px;
    align-items: flex-start;
  }

  /* ── Left content ── */
  .rp-why__content {
    flex: 0 0 46%;
    max-width: 46%;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .rp-why__heading {
    font-size: clamp(1.75rem, 2.8vw, 44px);
    font-weight: 400;
    line-height: 1.2;
    color: #292929;
    margin: 0;
  }

  .rp-why__intro {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.65;
    color: #464646;
    margin: 0;
  }

  .rp-why__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .rp-why__list-item {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    color: #464646;
    padding-left: 18px;
    position: relative;
  }

  .rp-why__list-item::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #292929;
    font-size: 16px;
    line-height: 1.4;
  }

  /* ── Right media ── */
  .rp-why__media {
    flex: 1;
    min-width: 0;
  }

  .rp-why__media-inner {
    background: #f5f0e8;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
  }

  .rp-why__media-inner img {
    width: 100%;
    height: auto;
    display: block;
  }

  .rp-why__placeholder {
    width: 100%;
    height: 400px;
    opacity: 0.3;
  }

  @media screen and (max-width: 989px) {
    .rp-why__container {
      flex-direction: column-reverse;
      padding: 40px 32px;
      gap: 32px;
    }
    .rp-why__content {
      flex: none;
      max-width: 100%;
      width: 100%;
    }
    .rp-why__media {
      width: 100%;
    }
    .rp-why__heading {
      font-size: clamp(1.5rem, 5vw, 32px);
    }
  }

  @media screen and (max-width: 749px) {
    .rp-why__container {
      padding: 32px 20px;
      gap: 24px;
    }
    .rp-why__heading {
      font-size: 26px;
    }
  }
/* END_SECTION:replatform-why-shero */

/* START_SECTION:search-results (INDEX:83) */
/* Article and page results borrow the quiet hairline-card treatment from the
     replatform-process grid: neutrals carry the structure, no loud accent. */
  .product-grid-container .resource-card[data-resource-type='article'],
  .product-grid-container .resource-card[data-resource-type='page'] {
    padding: 20px;
    background: transparent;
    border: 0.5px solid rgba(41, 41, 41, 0.2);
    border-radius: 0;
    transition: background 0.2s ease;
  }

  .product-grid-container .resource-card[data-resource-type='article']:hover,
  .product-grid-container .resource-card[data-resource-type='page']:hover {
    background: #f9f9f9;
  }
/* END_SECTION:search-results */

/* START_SECTION:slideshow (INDEX:86) */
.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([data-slide-active='false'])
      )
      > slideshow-container
      > slideshow-arrows
      .slideshow-control--previous,
    slideshow-component.slideshow--with-hints--mobile-with-hints:has(
        slideshow-slide:last-child:not([data-slide-active='false'])
      )
      > 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([data-slide-active='false']))
        > slideshow-container
        > slideshow-arrows
        .slideshow-control--previous,
      slideshow-component.slideshow--with-hints:has(slideshow-slide:last-child:not([data-slide-active='false']))
        > slideshow-container
        > slideshow-arrows
        .slideshow-control--next {
        animation: none;
        opacity: 0;
        pointer-events: none;
      }
    }
  }
/* END_SECTION:slideshow */

/* START_SECTION:view-more-case-studies (INDEX:88) */
.view-more-case-studies {
    --vmcs-black: #292929;
    --vmcs-gray: #464646;
    --vmcs-white: #ffffff;
    font-family: 'Manrope', sans-serif;
    width: 100%;
    margin-inline: auto;
  }

  .view-more-case-studies__inner {
    width: 100%;
    max-width: 1512px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 35px;
  }

  .view-more-case-studies__header {
    padding: 10px 16px 0;
  }

  h2.view-more-case-studies__heading {
    margin: 0;
    font-family: var(--font-heading--family);
    font-weight: 400;
    font-size: var(--vmcs-heading-fs-mobile, 32px);
    line-height: var(--vmcs-heading-lh-mobile, 1.08);
    letter-spacing: 0;
    color: var(--vmcs-black);
  }

  .view-more-case-studies__heading-text {
    display: inline-block;
  }

  .view-more-case-studies__carousel-wrap {
    position: relative;
    padding: 0 16px;
    min-width: 0;
  }

  .view-more-case-studies__viewport {
    width: 100%;
    min-width: 0;
    overflow-x: auto;
    overflow-y: hidden;
    cursor: grab;
  }

  .view-more-case-studies__viewport.is-dragging { cursor: grabbing; user-select: none; }
  .view-more-case-studies__viewport.is-dragging * { pointer-events: none; }

  /* Prevent native image/video drag-ghost on mousedown */
  .view-more-case-studies__viewport img,
  .view-more-case-studies__viewport video {
    -webkit-user-drag: none;
    user-select: none;
    -webkit-touch-callout: none;
  }

  /* While dragging: kill snap so inertia glides, keep grabbing cursor everywhere, suppress any hover state */
  .view-more-case-studies.is-dragging .view-more-case-studies__viewport,
  .view-more-case-studies.is-dragging .view-more-case-studies__card {
    scroll-snap-type: none;
    scroll-snap-align: none;
  }
  .view-more-case-studies.is-dragging,
  .view-more-case-studies.is-dragging *,
  .view-more-case-studies.is-dragging .view-more-case-studies__card,
  .view-more-case-studies.is-dragging .view-more-case-studies__card * {
    cursor: grabbing !important;
  }
  .view-more-case-studies.is-dragging .view-more-case-studies__card-media.is-hovered {
    /* hover frame, view-work pill, overlay all read from .is-hovered — strip it visually during drag */
  }
  .view-more-case-studies.is-dragging .view-more-case-studies__card-hover-frame,
  .view-more-case-studies.is-dragging .view-more-case-studies__view-work {
    opacity: 0 !important;
  }
  .view-more-case-studies.is-dragging .view-more-case-studies__card-video-wrap {
    opacity: 0 !important;
  }

  .view-more-case-studies__track {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .view-more-case-studies__card {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-decoration: none;
    color: inherit;
    position: relative;
  }

  .view-more-case-studies__card-media {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    background: var(--vmcs-gray);
  }

  .view-more-case-studies__card-video-wrap {
    position: absolute;
    inset: 0;
    z-index: 0;
    border-radius: 10px;
    overflow: hidden;
    opacity: 0;
    transition: opacity 0.4s ease;
  }

  .view-more-case-studies__card-media.is-video-active .view-more-case-studies__card-video-wrap {
    opacity: 1;
  }

  .view-more-case-studies__card-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
  }

  .view-more-case-studies__card-media.is-video-active .view-more-case-studies__card-image--default {
    opacity: 0;
  }

  .view-more-case-studies__card-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    transition: opacity 0.4s ease;
  }

  .view-more-case-studies__card-image--placeholder {
    background: var(--vmcs-gray);
  }

  /* Hover image frame – same as work-portfolio (homepage Our Work), CSS-only opacity */
  .view-more-case-studies__card-hover-frame {
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    width: 85%;
    max-width: 400px;
    aspect-ratio: 4 / 3;
    transform: translate(-50%, -50%);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.15);
    z-index: 4;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
  }

  .view-more-case-studies__card-media.is-hovered .view-more-case-studies__card-hover-frame {
    opacity: 1;
  }

  .view-more-case-studies__card-hover-frame .view-more-case-studies__card-image--hover {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .view-more-case-studies__card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    pointer-events: none;
    z-index: 3;
    transition: opacity 0.4s ease;
  }

  .view-more-case-studies__card-media.is-hovered .view-more-case-studies__card-overlay {
    opacity: 0.35;
  }

  .view-more-case-studies__card-tags {
    position: absolute;
    left: 16px;
    top: 16px;
    right: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    z-index: 4;
    pointer-events: none;
  }

  .view-more-case-studies__tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 4px 16px;
    border: 1px solid var(--vmcs-white);
    border-radius: 100px;
    background: transparent;
    white-space: nowrap;
  }

  .view-more-case-studies__tag-text {
    font-family: var(--font-heading--family);
    font-weight: 500;
    font-size: 11px;
    line-height: 18px;
    color: var(--vmcs-white);
  }

  .view-more-case-studies__tag-icon {
    display: block;
    width: 14px;
    height: 14px;
    flex-shrink: 0;
  }

  .view-more-case-studies__tag-icon svg {
    display: block;
    width: 100%;
    height: 100%;
  }

  /* "View work" – matches work-portfolio__card-view-work (homepage Our Work) */
  .view-more-case-studies__view-work {
    position: absolute;
    left: 75.49%;
    top: 65.4%;
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 47px 30px;
    min-width: 0;
    background: rgba(217, 217, 217, 0.11);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 60px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, -50%) scale(0.9);
    transform-origin: center center;
    transition: opacity 0.35s ease, transform 0.35s ease;
  }

  .view-more-case-studies__card-media.is-hovered .view-more-case-studies__view-work {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }

  .view-more-case-studies__view-work-text {
    font-family: var(--font-heading--family);
    font-weight: 500;
    font-size: 11px;
    line-height: 18px;
    color: var(--vmcs-white);
    white-space: nowrap;
  }

  @media (pointer: fine) {
    .view-more-case-studies__card:hover .view-more-case-studies__card-media.is-hovered,
    .view-more-case-studies__card:focus-within .view-more-case-studies__card-media {
      cursor: none;
    }
    .view-more-case-studies__card:hover,
    .view-more-case-studies__card:hover * {
      cursor: none;
    }
  }

  .view-more-case-studies__card-body {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  .view-more-case-studies__card-title {
    margin: 0;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    color: var(--vmcs-black);
  }

  .view-more-case-studies__card-description {
    margin: 0;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: var(--vmcs-gray);
    opacity: 0.7;
  }

  .view-more-case-studies__progress {
    display: none;
    padding: 16px 16px 0;
  }

  /* Desktop */
  @media screen and (min-width: 990px) {
    h2.view-more-case-studies__heading {
      font-size: var(--vmcs-heading-fs-desktop, 60px);
      line-height: var(--vmcs-heading-lh-desktop, 65px);
    }

    .view-more-case-studies__header {
      padding: 10px 60px 0;
    }

    .view-more-case-studies__carousel-wrap {
      padding-left: 60px;
      padding-right: 60px;
    }

    /* Carousel extends to right viewport edge */
    .view-more-case-studies__carousel-wrap--full-width-right {
      width: calc(100% + (50vw - 50%));
      margin-right: calc(50% - 50vw);
      padding-right: 0;
    }

    .view-more-case-studies__viewport {
      scroll-snap-type: x mandatory;
      scrollbar-width: none;
      overscroll-behavior-x: contain;
      touch-action: pan-x pan-y pinch-zoom;
    }

    .view-more-case-studies__viewport::-webkit-scrollbar {
      display: none;
    }

    .view-more-case-studies__track {
      flex-direction: row;
      gap: 7px;
      width: max-content;
    }

    .view-more-case-studies__card {
      flex: 0 0 690px;
      width: 690px;
      max-width: 690px;
      scroll-snap-align: start;
    }

    .view-more-case-studies__card-media {
      height: 500px;
    }
  }

  /*
    Tablet + mobile: native horizontal scroll (750–989px was broken: base CSS was column + overflow hidden).
    Desktop 990+ uses GSAP track transform; without GSAP, [data-vmcs-native-scroll] uses the same scroll rules.
  */
  @media screen and (max-width: 989px) {
    .view-more-case-studies__viewport {
      overflow-x: auto;
      overflow-y: hidden;
      scroll-snap-type: x mandatory;
      scroll-padding-inline: 16px;
      scrollbar-width: none;
      overscroll-behavior-x: contain;
      touch-action: pan-x pan-y pinch-zoom;
    }

    .view-more-case-studies__viewport::-webkit-scrollbar {
      display: none;
    }

    .view-more-case-studies__track {
      flex-direction: row;
      gap: 16px;
      padding-bottom: 4px;
      width: max-content;
      min-width: min-content;
    }

    .view-more-case-studies__card {
      flex: 0 0 85vw;
      width: 85vw;
      max-width: 370px;
      scroll-snap-align: center;
    }

    .view-more-case-studies__progress {
      display: flex;
      align-items: center;
      padding: 16px 16px 0;
    }

    .view-more-case-studies__progress-track {
      width: 100%;
      height: 2px;
      background-color: #f5f5f5;
      border-radius: 100px;
      overflow: hidden;
    }

    .view-more-case-studies__progress-fill {
      height: 2px;
      background-color: #eb2529;
      border-radius: 100px;
      transition: width 0.3s ease;
      width: 0%;
    }
  }

  @media screen and (min-width: 750px) and (max-width: 989px) {
    h2.view-more-case-studies__heading {
      font-size: var(--vmcs-heading-fs-tablet, 48px);
      line-height: var(--vmcs-heading-lh-tablet, 52px);
    }

    .view-more-case-studies__header {
      padding: 10px 40px 0;
    }

    .view-more-case-studies__carousel-wrap {
      padding-left: 40px;
      padding-right: 40px;
    }

    .view-more-case-studies__viewport {
      scroll-padding-inline: 40px;
    }

    .view-more-case-studies__progress {
      padding-left: 40px;
      padding-right: 40px;
    }
  }
/* END_SECTION:view-more-case-studies */

/* START_SECTION:work-portfolio (INDEX:89) */
.work-portfolio {
    --wp-black: #292929;
    --wp-red: #EB2529;
    --wp-gray: #464646;
    --wp-bg: #F5F5F5;
    --wp-white: #FFFFFF;
    --hero-bg: #F5F5F5;
    width: 100%;
    margin-top: calc(var(--wp-section-margin-top, 0px) + var(--wp-section-gap-top, 0px));
    margin-bottom: calc(var(--wp-section-margin-bottom, 0px) + var(--wp-section-gap-bottom, 0px));
    padding-top: var(--wp-section-padding-top, 0px);
    padding-bottom: var(--wp-section-padding-bottom, 0px);
  }

  /* Hero wrapper – full-width background, split from cards (Figma 1178:9358) */
  .work-portfolio__hero-wrap {
    position: relative;
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    left: 0;
    box-sizing: border-box;
    background-color: var(--hero-bg);
    overflow: hidden;
  }

  .work-portfolio__hero-bg-image {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
  }

  .work-portfolio__hero-bg-image-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .work-portfolio__hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: #000;
    z-index: 1;
    pointer-events: none;
  }

  .work-portfolio__inner--hero {
    position: relative;
    z-index: 2;
  }

  .work-portfolio__inner {
    width: 100%;
    max-width: 1512px;
    margin: 0 auto;
  }

  /* Cards area: full-width wrapper for custom background color */
  .work-portfolio__cards-area {
    width: 100%;
    background-color: #fff !important;
  }

  /* Hero – mobile first (Figma 1476:9657, 1474:4683) */
  .work-portfolio__hero {
    padding: 75px 23px 23px;
  }

  .work-portfolio__hero-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .work-portfolio__hero-left {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .work-portfolio__title {
    font-family: var(--font-heading--family);
    font-weight: 500;
    font-size: 72px;
    line-height: 78px;
    color: var(--wp-black);
    margin: 0;
    padding-left: 15px;
    letter-spacing: 0;
  }

  .work-portfolio__tagline {
    font-family: var(--font-heading--family);
    font-weight: 400;
    font-size: 12px;
    line-height: 18px;
    color: var(--wp-black);
    margin: 0;
  }

  /* Mobile tagline sits between title and filters; desktop tagline is the right-side element */
  .work-portfolio__tagline--mobile-only {
    display: block;
  }

  .work-portfolio__tagline--desktop-only {
    display: none;
  }

  /* Push filters down to achieve 24px gap (16px hero-left gap + 8px margin = 24px) */
  .work-portfolio__filters {
    margin-top: 8px;
  }

  /* Filter pills (Figma 1474:4686, 1475:9612) */
  .work-portfolio__filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
  }

  .work-portfolio__filter-pill {
    font-family: var(--font-heading--family);
    font-weight: 500;
    font-size: 11px;
    line-height: 18px;
    padding: 4px 16px;
    border-radius: 100px;
    border: 1px solid var(--wp-black);
    background: transparent;
    color: var(--wp-black);
    cursor: pointer;
    white-space: nowrap;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
    -webkit-tap-highlight-color: transparent;
  }

  .work-portfolio__filter-pill:hover {
    border-color: var(--wp-red);
    color: var(--wp-red);
  }

  .work-portfolio__filter-pill--active {
    background: var(--wp-red);
    border-color: var(--wp-red);
    color: var(--wp-white);
  }

  .work-portfolio__filter-pill--active:hover {
    background: var(--wp-red);
    border-color: var(--wp-red);
    color: var(--wp-white);
    opacity: 0.9;
  }

  .work-portfolio__filter-label {
    display: inline-block;
  }

  /* Floating filter bar (Figma 4302:35249) – transparent band across the viewport bottom */
  .work-portfolio__filter-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    padding: 16px 20px 20px;
    z-index: calc(var(--layer-sticky) - 1); /* below the sticky header */
    /* Hidden by sliding fully below the viewport, not by fading. See the transition below. */
    transform: translateY(calc(100% + 16px));
    visibility: hidden;
    pointer-events: none;
  }

  .work-portfolio__filter-bar[hidden] {
    display: none;
  }

  .work-portfolio__filter-bar[data-visible='true'] {
    transform: none;
    visibility: visible;
    pointer-events: auto;
  }

  /* iOS keeps compositing a backdrop-filter layer while the element is parked off-screen under
     visibility: hidden, which is a likely source of the reported dropdown flicker. Drop the blur
     in that state, where it is invisible anyway. Do NOT reach for will-change or a 3D transform
     to harden this: either one makes the bar a permanent stacking context and backdrop root, so
     the trigger's blur would have nothing to sample and the pill would render flat (BugHerd #129,
     the same trap the comment below describes). */
  .work-portfolio__filter-bar:not([data-visible='true']) .work-portfolio__filter-bar-trigger {
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  /* Never animate opacity here. An ancestor with opacity < 1 forms a backdrop root, which leaves
     the trigger's backdrop-filter nothing to sample: the pill renders flat and see-through for the
     whole fade, then snaps to frosted the frame opacity reaches 1 (BugHerd #129). Transform does
     not form a backdrop root, so the slide keeps the frost intact. Visibility flips instantly on
     the way in and only once the bar has slid away on the way out. */
  @media (prefers-reduced-motion: no-preference) {
    .work-portfolio__filter-bar {
      transition: transform 0.3s ease, visibility 0s linear 0.3s;
    }

    .work-portfolio__filter-bar[data-visible='true'] {
      transition: transform 0.3s ease, visibility 0s linear 0s;
    }

    /* Match the slide's timing when dropping the blur above: the un-blur waits for the bar to
       finish sliding away, so the pill is never flat while it is still on screen. */
    .work-portfolio__filter-bar-trigger {
      transition: -webkit-backdrop-filter 0s linear 0.3s, backdrop-filter 0s linear 0.3s;
    }

    .work-portfolio__filter-bar[data-visible='true'] .work-portfolio__filter-bar-trigger {
      transition: -webkit-backdrop-filter 0s linear 0s, backdrop-filter 0s linear 0s;
    }
  }

  .work-portfolio__filter-bar-details {
    position: relative;
  }

  .work-portfolio__filter-bar-trigger {
    display: flex;
    align-items: center;
    gap: 8px;
    box-sizing: border-box;
    min-height: 52px;
    max-width: calc(100vw - 40px);
    padding: 10px 24px;
    border-radius: 100px;
    /* Frosted glass. The fill is the Figma value (4302:35250) rather than the header's
       rgba(255,255,255,0.3): at 69% opacity the dark label keeps ~7:1 contrast over dark card
       photography, where a 30% fill drops to ~2.6:1 and becomes unreadable. */
    background: rgba(245, 245, 245, 0.69);
    -webkit-backdrop-filter: blur(45px);
    backdrop-filter: blur(45px);
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.06);
    font-family: var(--font-heading--family);
    font-size: 18px;
    line-height: 28px;
    cursor: pointer;
    list-style: none;
    -webkit-tap-highlight-color: transparent;
  }

  .work-portfolio__filter-bar-trigger::-webkit-details-marker {
    display: none;
  }

  .work-portfolio__filter-bar-prefix {
    color: var(--wp-gray);
    white-space: nowrap;
  }

  .work-portfolio__filter-bar-value {
    color: var(--wp-black);
    font-weight: 500;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }

  .work-portfolio__filter-bar-caret {
    display: inline-flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    color: var(--wp-black);
  }

  .work-portfolio__filter-bar-caret svg {
    width: 100%;
    height: 100%;
  }

  .work-portfolio__filter-bar-details[open] .work-portfolio__filter-bar-caret {
    transform: rotate(180deg);
  }

  @media (prefers-reduced-motion: no-preference) {
    .work-portfolio__filter-bar-caret {
      transition: transform 0.2s ease;
    }
  }

  /* Panel opens upward – the trigger sits at the bottom of the viewport */
  .work-portfolio__filter-bar-panel {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: 12px;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    /* Never narrower than the trigger: 100% resolves against the <details>, which is the pill's
       width, so the panel tracks the pill as the selected value changes length. */
    min-width: max(100%, 240px);
    max-width: calc(100vw - 40px);
    /* dvh so the list stops running behind Safari's toolbar; the vh line is the fallback for
       browsers without dvh. */
    max-height: min(60vh, 420px);
    max-height: min(60dvh, 420px);
    overflow-y: auto;
    /* The option list is taller than the cap, so it scrolls. Without this, reaching its end
       chains the scroll out to the document and trips the close-on-scroll. */
    overscroll-behavior: contain;
    padding: 16px;
    border-radius: 20px;
    background: var(--wp-white);
    box-shadow: var(--shadow-popover, 0 8px 24px rgba(0, 0, 0, 0.12));
    /* Hide explicitly rather than relying on the <details> UA hiding, which does not apply
       reliably to an absolutely-positioned child and would leave the options clickable. */
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }

  .work-portfolio__filter-bar-details[open] .work-portfolio__filter-bar-panel {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  /* Closing is animated by JS holding the <details> open for the length of the fade and marking it
     data-closing (see closeFilterBar in work-portfolio.js). The panel cannot fade on its own: the
     moment `open` is removed the UA stops rendering the content, which freezes whatever transition
     is running. Measured in WebKit 26, where the mid-fade frame came back pixel-identical to the
     closed frame both for a plain opacity transition on the panel and for ::details-content with
     content-visibility allow-discrete, even though the computed opacity was reported mid-flight.
     Keeping `open` set is the only thing that keeps the content painted long enough to see the
     fade, and it behaves the same in Chrome and WebKit (SSM-532). */
  .work-portfolio__filter-bar-details[open][data-closing] .work-portfolio__filter-bar-panel {
    opacity: 0;
    pointer-events: none;
  }

  /* The caret leads the close rather than snapping back 200ms later. */
  .work-portfolio__filter-bar-details[open][data-closing] .work-portfolio__filter-bar-caret {
    transform: none;
  }

  @media (prefers-reduced-motion: no-preference) {
    .work-portfolio__filter-bar-panel {
      transition: opacity 0.2s ease;
    }
  }

  .work-portfolio__filter-bar-option {
    padding: 10px 16px;
    border: 0;
    border-radius: 12px;
    background: transparent;
    color: var(--wp-black);
    font-family: var(--font-heading--family);
    font-size: 18px;
    line-height: 28px;
    text-align: left;
    white-space: nowrap;
    cursor: pointer;
  }

  .work-portfolio__filter-bar-option:hover,
  .work-portfolio__filter-bar-option[aria-selected='true'] {
    background: var(--wp-bg);
  }

  /* Options double as filter triggers, so suppress the pill active styling they inherit */
  .work-portfolio__filter-bar-option.work-portfolio__filter-pill--active {
    background: var(--wp-bg);
    border: 0;
    color: var(--wp-black);
  }

  /* Cards wrapper + Load more */
  .work-portfolio__cards-wrapper {
    padding: 0 20px 48px;
  }

  .work-portfolio__cards {
    display: flex;
    flex-direction: column;
    gap: 0;
    /* Filtering hides cards by class. Without this, scroll anchoring re-anchors to whichever card
       boundary survives and yanks the viewport mid-page (BugHerd #130). */
    overflow-anchor: none;
  }

  .work-portfolio__load-more-wrap {
    display: flex;
    justify-content: center;
    padding: 24px 0 48px;
  }

  .work-portfolio__load-more-wrap[hidden] {
    display: none;
  }

  .work-portfolio__load-more {
    font-family: var(--font-heading--family);
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    color: var(--wp-white);
    background: var(--wp-red);
    border: none;
    border-radius: 10px;
    padding: 12px 24px;
    cursor: pointer;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .work-portfolio__load-more:hover {
    opacity: 0.9;
  }

  .work-portfolio__load-more:active {
    transform: scale(0.98);
  }

  .work-portfolio__card {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-bottom: var(--wp-cards-gap-mobile, 48px);
  }

  .work-portfolio__card:last-child {
    padding-bottom: 0;
  }

  .work-portfolio__card.hidden {
    display: none !important;
  }

  .work-portfolio__card-media-wrap {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .work-portfolio__card-link {
    text-decoration: none;
    color: inherit;
    display: block;
  }

  .work-portfolio__card-image-wrap {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    background: var(--wp-gray);
  }

  .work-portfolio__card-image-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 10px;
    z-index: 0;
    pointer-events: none;
  }

  .work-portfolio__card-image,
  .work-portfolio__card-video-wrap {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
  }

  .work-portfolio__card-video-wrap {
    z-index: 0;
    opacity: 0;
    transition: opacity 0.4s ease;
  }

  .work-portfolio__card-image {
    object-fit: cover;
    transition: opacity 0.5s ease;
  }

  .work-portfolio__card-image--default {
    z-index: 1;
  }

  .work-portfolio__card-image-wrap.is-video-active .work-portfolio__card-video-wrap {
    opacity: 1;
  }

  .work-portfolio__card-image-wrap.is-video-active .work-portfolio__card-image--default {
    opacity: 0;
  }

  .work-portfolio__card-image-wrap.is-hovered {
    cursor: none;
  }

  /* Hover image frame – Figma 1043:5699, CSS-only for reliability */
  .work-portfolio__card-hover-frame {
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    width: 85%;
    max-width: 400px;
    aspect-ratio: 4 / 3;
    transform: translate(-50%, -50%);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.15);
    z-index: 4;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
  }

  .work-portfolio__card-image-wrap.is-hovered .work-portfolio__card-hover-frame {
    opacity: 1;
  }

  .work-portfolio__card-hover-frame .work-portfolio__card-image--hover {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .work-portfolio__card-image-wrap.is-hovered .work-portfolio__card-overlay {
    opacity: 0.35;
  }

  .work-portfolio__card-image--placeholder {
    background: var(--wp-gray);
  }

  .work-portfolio__card-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
  }

  .work-portfolio__card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    pointer-events: none;
    z-index: 3;
    transition: opacity 0.4s ease;
  }

  /* Tags on image – Figma overlay pills */
  .work-portfolio__card-tags {
    position: absolute;
    left: 16px;
    top: 16px;
    right: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    z-index: 4;
    pointer-events: none;
  }

  .work-portfolio__card-tag {
    font-family: var(--font-heading--family);
    font-weight: 500;
    font-size: 11px;
    line-height: 18px;
    padding: 4px 16px;
    border-radius: 100px;
    border: 1px solid var(--wp-white);
    color: var(--wp-white);
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }

  .work-portfolio__card-tag-text {
    display: inline-flex;
    align-items: center;
  }

  .work-portfolio__card-tag-icon {
    display: none;
    width: 14px;
    height: 14px;
    flex-shrink: 0;
  }

  /* "View work" – matches homepage our work button style */
  .work-portfolio__card-view-work {
    position: absolute;
    left: 75.49%;
    top: 65.4%;
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 47px 30px;
    min-width: 0;
    background: rgba(217, 217, 217, 0.11);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 60px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, -50%) scale(0.9);
    transform-origin: center center;
    transition: opacity 0.35s ease, transform 0.35s ease;
  }

  .work-portfolio__card-image-wrap.is-hovered .work-portfolio__card-view-work {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }

  .work-portfolio__card-view-work-text {
    font-family: var(--font-heading--family);
    font-weight: 500;
    font-size: 11px;
    line-height: 18px;
    color: var(--wp-white);
    white-space: nowrap;
  }

  .work-portfolio__card-body {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  .work-portfolio__card-title {
    font-family: var(--font-heading--family);
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: var(--wp-black);
    margin: 0;
    padding-top: 0px !important;
  }

  .work-portfolio__card-description {
    font-family: var(--font-heading--family);
    font-weight: 400;
    font-size: 12px;
    line-height: 18px;
    color: var(--wp-gray);
    margin: 0;
    opacity: 0.7;
  }

  /* Desktop (Figma 1178:9358, 1176:10544) */
  @media screen and (min-width: 990px) {
    .work-portfolio__hero {
      padding: 120px 35px 36px;
    }

    .work-portfolio__filter-bar {
      padding: 24px 60px 32px;
    }

    .work-portfolio__hero-content {
      flex-direction: row;
      align-items: flex-end;
      justify-content: space-between;
      gap: 48px;
    }

    .work-portfolio__hero-left {
      gap: 48px;
      flex: 1 1 auto;
      min-width: 0;
    }

    .work-portfolio__title {
      font-size: clamp(72px, 18.65vw, 282px);
      line-height: 1.08;
    }

    /* Swap tagline visibility: hide mobile instance, show desktop instance */
    .work-portfolio__tagline--mobile-only {
      display: none;
    }

    .work-portfolio__tagline--desktop-only {
      display: block;
    }

    .work-portfolio__tagline {
      font-size: 14px;
      line-height: 20px;
      max-width: 308px;
      flex-shrink: 0;
      text-align: right;
    }

    .work-portfolio__filters {
      gap: 16px;
      flex-shrink: 0;
      margin-top: 0;
    }

    .work-portfolio__filter-pill {
      padding: 5px 16px;
    }

    .work-portfolio__cards-wrapper {
      padding: 0 35px 80px;
    }

    .work-portfolio__cards {
      flex-direction: row;
      flex-wrap: wrap;
      gap: var(--wp-cards-gap-desktop-row, 60px) var(--wp-cards-gap-desktop-col, 12px);
      justify-content: space-between;
    }

    .work-portfolio__load-more-wrap {
      padding: 32px 0 48px;
    }

    .work-portfolio__card {
      width: calc((100% - var(--wp-cards-gap-desktop-col)) / 2);
      max-width: 690px;
      padding-bottom: 0;
      gap: 8px;
    }

    .work-portfolio__card-link {
      gap: 8px;
    }

    .work-portfolio__card-image-wrap {
      height: 500px;
    }

    .work-portfolio__card-tags {
      top: 24px;
      left: 16px;
      right: 16px;
      gap: 16px;
    }

    .work-portfolio__card-tag {
      padding: 5px 16px;
    }

    /* Show tag icons on desktop */
    .work-portfolio__card-tag-icon {
      display: block;
    }

    .work-portfolio__card-title {
      font-size: 18px;
      line-height: 28px;
      font-weight: 400;
      padding-top: 0px !important;
    }

    .work-portfolio__card-description {
      font-size: 14px;
      line-height: 20px;
    }
  }
  @media screen and (max-width:950px){
    .work-portfolio__title{
      padding-top: 52px;
    }
  }
/* END_SECTION:work-portfolio */

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

/* START_BLOCK:_announcement (INDEX:91) */
.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:92) */
.blog-post-card {
    display: flex;
    flex-direction: column;
    position: relative;
  }

  .blog-post-card__image-link {
    display: block;
    overflow: hidden;
    border-radius: 10px;
    aspect-ratio: 9 / 7;
    width: 100%;
  }

  .blog-post-card__image {
    width: 100%;
    height: 100%;
    object-fit: fill;
    border-radius: 10px;
    display: block;
    transition: transform 0.3s ease;
  }

  .blog-post-card__image-link:hover .blog-post-card__image {
    transform: scale(1.03);
  }

  .blog-post-card__meta {
    display: flex;
    align-items: center;
    gap: 19px;
    font-family: var(--font-heading--family);
    font-size: 16px;
    font-weight: 500;
    color: #464646;
    padding: 8px 8px 0;
  }

  .blog-post-card__meta-divider {
    width: 1px;
    height: 17px;
    background: currentColor;
    opacity: 0.4;
    flex-shrink: 0;
  }

  .blog-post-card__title-link {
    display: block;
    padding: 0 8px 24px;
    text-decoration: none;
  }

  .blog-post-card__title {
    font-family: var(--font-heading--family);
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    color: #292929;
    transition: color 0.2s ease;
  }



  .blog-post-card__read-btn {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 30;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    height: 32px;
    padding: 0 16px;
    background: #292929;
    color: #ffffff;
    font-family: var(--font-heading--family);
    font-size: 12px;
    font-weight: 400;
    border-radius: 10px;
    text-decoration: none;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease;
  }

  .blog-post-card__read-btn.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: none;
  }

  @media screen and (max-width: 749px) {
    .blog-post-card__read-btn {
      display: none;
    }
  }
/* END_BLOCK:_blog-post-card */

/* START_BLOCK:_blog-post-description (INDEX:94) */
.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:95) */
.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:96) */
.blog-post-card__image {
    width: 100%;
    object-fit: fill;
    object-position: center center;
    height: 100%;
  }

  .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:97) */
.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:98) */
.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:99) */
.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:100) */
.cart-page__title + .cart-page__items {
    margin-block-start: var(--margin-lg);
  }
/* END_BLOCK:_cart-products */

/* START_BLOCK:_cart-summary (INDEX:101) */
.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:102) */
.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__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:105) */
.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:107) */
.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:111) */
.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:112) */
.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:114) */
.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:117) */
.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:118) */
.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:119) */
.header-logo {
    display: flex;
    height: 100%;
    font-size: var(--font-size--md);
    font-family: var(--font-family);
    font-weight: var(--font-weight);
    font-style: var(--font-style);
    color: var(--color-foreground);
    justify-content: center;
    align-items: center;
    text-decoration: none;

    /* Make sure the logo visually hugs the left edge of the column when it is the first item in the left column */
    margin-inline: calc(-1 * var(--padding-inline-start));

    &[data-hidden-on-home-page] {
      display: none;

      #header-component:is(
          [sticky='always']:not([data-scroll-direction='none']),
          [sticky='scroll-up'][data-scroll-direction='up']
        )
        & {
        display: flex;
      }
    }

    @media screen and (max-width: 749px) {
      padding: 0;
    }

    @media screen and (min-width: 750px) {
      flex-shrink: 0;
    }

    &:hover {
      text-decoration: none;
    }
  }

  .header-logo__image {
    object-fit: contain;
    height: var(--header-logo-image-height-mobile);
    width: var(--header-logo-image-width-mobile);

    @media screen and (min-width: 750px) {
      height: var(--header-logo-image-height);
      width: var(--header-logo-image-width);
    }
  }

  .header-logo:has(.header-logo__image-container--inverse) .header-logo__image-container--original {
    display: var(--header-logo-display, block);
  }

  .header-logo__image-container--inverse {
    display: var(--header-logo-inverse-display, none);
  }
/* END_BLOCK:_header-logo */

/* START_BLOCK:_header-menu (INDEX:120) */
.menu-list--mobile {
    &.menu-list {
      display: grid;
    }

    & .menu-list__list {
      width: max-content;
      margin-inline: auto;
      gap: var(--menu-horizontal-gap);
    }

    & li {
      width: max-content;
      padding-block: var(--padding-sm);
    }

    & li:first-of-type {
      padding-inline-start: var(--menu-horizontal-gap);
    }

    & li:last-of-type {
      padding-inline-end: var(--menu-horizontal-gap);
    }

    & a {
      color: var(--color-foreground);
    }
  }

  .menu-list__scroll-container {
    position: relative;
    overflow-x: auto;
    mask-image: linear-gradient(to right, transparent, #000 20px, #000 calc(100% - 20px), transparent);
    padding-block: var(--padding-2xs);
  }

  header-menu {
    width: 100%;
  }

  /* Drawer menu featured content */
  .menu-drawer__featured-content {
    z-index: var(--layer-base);
    container-type: inline-size;
  }

  .menu-drawer__featured-content--childlist {
    z-index: var(--layer-flat);
  }

  .menu-drawer__featured-content-list {
    display: flex;
    gap: 1em;
    overflow-x: auto;
    padding-block-end: var(--padding-lg);
  }

  .menu-drawer__featured-content-list-item {
    flex: 0 0 auto;
  }

  .menu-drawer__featured-content-list-item--product {
    width: 35cqi;
  }

  .menu-drawer__featured-content-list-item--collection img.resource-card__image {
    width: 80cqi;
  }

  .menu-drawer__featured-content-list-item:first-child {
    margin-inline-start: var(--margin-xl);
  }

  .menu-drawer__featured-content-list-item:last-child {
    margin-inline-end: var(--margin-xl);
  }

  .menu-list {
    --menu-horizontal-gap: var(--gap-xl);
    --menu-vertical-gap: var(--gap-xl);

    display: flex;
  }

  .menu-list__list {
    display: flex;
    justify-content: var(--grid-area-alignment);
  }

  .menu-list__list-item {
    flex-shrink: 0;
    white-space: nowrap;
  }

  .menu-list__list-item[aria-hidden='true'] {
    visibility: hidden;
  }

  .menu-list__link {
    font-family: var(--menu-top-level-font-family);
    font-style: var(--menu-top-level-font-style);
    font-weight: var(--menu-top-level-font-weight);
    font-size: var(--menu-top-level-font-size);
    line-height: var(--menu-top-level-font-line-height);
    text-transform: var(--menu-top-level-font-case);
    color: var(--menu-top-level-font-color);
    transition: color var(--animation-speed) var(--animation-easing);
    text-decoration: none;
    display: flex;
    min-height: var(--minimum-touch-target);
    align-items: center;

    &:hover,
    &:focus {
      color: var(--menu-top-level-font-color);
    }

    @media screen and (min-width: 750px) {
      font-size: var(--menu-top-level-font-size-desktop);
    }
  }

  /*
      High specificity selectors to subdue non-hovered links without javascript.
      If the need for js-generated `hovered` and `focused` classes arises for another reason we can simplify these.
    */
  .menu-list:where(:has(.menu-list__list-item:hover)),
  .menu-list:where(:has(.menu-list__list-item:focus-within)),
  .menu-list:where(:has(.menu-list__list-item:not([aria-hidden='true']) .menu-list__link--active)) {
    .menu-list__link {
      color: rgb(var(--menu-top-level-font-color-rgb) / var(--opacity-subdued-text));
    }
  }

  /* stylelint-disable-next-line selector-max-specificity */
  .menu-list:not(:has(.menu-list__list-item:hover)) .menu-list__link--active,
  .menu-list .menu-list__list-item:where(:hover, :focus-within) .menu-list__link,
  .menu-list .menu-list__list-item[slot='overflow'] .menu-list__link[aria-expanded='true'] {
    color: var(--menu-top-level-font-color);
  }

  .overflow-menu::part(list) {
    /* Make sure focus outline is not cut off by overflow hidden */
    --focus-outline-size: calc(var(--focus-outline-offset) + var(--focus-outline-width));

    gap: 0 var(--menu-horizontal-gap);
  }

  .overflow-menu {
    background-color: transparent;
    padding: var(--focus-outline-size);
    margin: calc(-1 * var(--focus-outline-size));
  }

  /* 2026 design: the rounded card lives on .menu-list__submenu-inner, so the
     full-width animated background strip is suppressed. */
  .overflow-menu::after {
    content: none;
  }

  /** 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;
    background-color: var(--color-background);
    position: absolute;
    width: 100%;
    left: 0;
    top: calc(100% - 1px + var(--border-bottom-width));
    z-index: var(--layer-header-menu);
    padding-inline: var(--padding-inline);
    clip-path: rect(0 100% var(--submenu-height) 0); /* stylelint-disable-line */
    transition: clip-path var(--submenu-animation-speed) var(--ease-out-cubic);
  }

  /* 2026 design: regular mega menu wrapper is a transparent positioning shell;
     the rounded card lives on .menu-list__submenu-inner. !important is needed
     because the wrapper carries a `.color-scheme-N` class whose global rule
     (from snippets/color-schemes.liquid) sets background-color and loads
     after this stylesheet. */
  .menu-list__list-item:not([slot='overflow']) > .menu-list__submenu,
  .menu-list__list-item:not([slot='overflow']) > .menu-list__submenu[class*='color-scheme'],
  .menu-list__list-item:not([slot='overflow']) > .menu-list__submenu.color-scheme-matches-parent {
    background-color: transparent !important;
  }

  /* Show the submenus on hover */
  .menu-list__list-item:has([aria-expanded='true']) > .menu-list__submenu,
  /* Show the overflow menu when a menu item is hovered */
  .overflow-menu:has([slot="overflow"] [aria-expanded='true'])::part(overflow),
  /* Keep the submenus open when they are hovered */
  .menu-list__submenu:is(:hover),
  .overflow-menu::part(overflow):hover {
    --submenu-content-opacity: 1;

    visibility: visible;
  }

  .menu-list__list-item:has([data-animating]) > .menu-list__submenu {
    --submenu-content-opacity: 0;

    visibility: visible;

    &::before {
      height: 0;
    }
  }

  .overflow-menu::part(overflow-list) {
    grid-column: 2;
    padding-block-start: var(--submenu-padding-block-start);
    padding-block-end: var(--submenu-padding-block-end);
    padding-inline: var(--section-padding-inline);
  }

  .overflow-menu::part(overflow) {
    --menu-top-level-font-size: var(--font-size--xlarge);

    display: grid;
    grid-template-columns: var(--full-page-grid-with-margins);
  }

  .overflow-menu::part(overflow-list) {
    --submenu-content-opacity: 0;

    position: relative;
    display: grid;
    grid-template-columns: minmax(auto, 200px) 1fr;
    grid-template-areas: 'left right';
    grid-template-rows: max-content;
    grid-gap: 0;
  }

  /* Make overflow menu scrollable when content exceeds viewport */
  .overflow-menu::part(overflow-list) {
    max-height: calc(80vh - var(--header-height));
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: thin;
    scrollbar-color: rgb(var(--color-foreground-rgb) / var(--opacity-40)) transparent;
  }

  .menu-list__list-item:is([slot='overflow']) {
    --menu-top-level-font-color: var(--color-foreground);
    --menu-top-level-font-color-rgb: var(--color-foreground-rgb);

    display: contents;
    white-space: normal;

    .menu-list__link {
      --submenu-content-opacity: 0;

      grid-area: left;
      grid-row: auto;
      height: min-content;
      font-size: var(--font-size--xl);
      opacity: var(--submenu-content-opacity);
      transition: var(--submenu-content-animation);
    }

    .menu-list__submenu {
      visibility: hidden;
      grid-row: 1;
      grid-area: right;
      grid-row-end: span calc(var(--overflow-count) + 1);
      padding-inline-start: var(--menu-horizontal-gap);

      .menu-list__submenu-inner {
        padding-block-start: 0;
        grid-column: unset;
      }
    }

    .menu-list__link[aria-expanded='true'] + .menu-list__submenu {
      visibility: visible;
    }
  }

  .header-menu[data-overflow-expanded='true'] .menu-list__list-item:where([slot='overflow']) .menu-list__link {
    --submenu-content-opacity: 1;
  }

  .menu-list__list-item:where([slot='overflow']):has([data-animating]) > .menu-list__link {
    --submenu-content-opacity: 0;
  }

  .menu-list__submenu-inner {
    position: relative;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    background-color: white;
    gap: 25px;
    width: 100%;
    max-width: 1512px;
    margin-inline: auto;
    padding: 40px 60px 60px;
    border-top: 1px solid rgb(var(--color-foreground-rgb) / 0.3);
    border-radius: 
    20px;
    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;
    opacity: var(--submenu-content-opacity);
    transition: var(--submenu-content-animation);
  }

  /* Inner content spacing/typography per 2026 Figma */
  .menu-list__submenu-inner {
    --menu-vertical-gap: 22px;
    --menu-horizontal-gap: 50px;
    --menu-child-font-size: 14px;
    --menu-child-font-line-height: 20px;
  }

  .mega-menu__link {
    font-family: var(--menu-child-font-family);
    font-style: var(--menu-child-font-style);
    font-weight: var(--menu-child-font-weight);
    font-size: var(--menu-child-font-size);
    line-height: var(--menu-child-font-line-height);
    text-transform: var(--menu-child-font-case);
    color: var(--menu-child-font-color);
    white-space: normal;
    text-decoration: none;
    display: inline-flex;
    padding: var(--padding-2xs) 0;
    transition: color var(--animation-speed) var(--animation-easing);

    &:hover {
      color: var(--menu-child-active-font-color);
    }
  }

  .mega-menu__link--parent {
    font-family: var(--menu-parent-font-family);
    font-style: var(--menu-parent-font-style);
    font-weight: var(--menu-parent-font-weight);
    font-size: var(--menu-parent-font-size);
    line-height: var(--menu-parent-font-line-height);
    text-transform: var(--menu-parent-font-case);
    color: var(--menu-parent-font-color);

    &:hover {
      color: var(--menu-parent-active-font-color);
    }
  }

  @media screen and (max-width: 989px) {
    .mega-menu__content-list-item--hidden-tablet {
      display: none;
    }
  }

  .mega-menu__link:has(.mega-menu__link-image) {
    display: flex;
    flex-direction: column;
    padding-inline: 0;
    padding-block: var(--padding-sm) 0;
  }

  .mega-menu__link-image {
    width: 100%;
    position: relative;
    aspect-ratio: 16 / 9;
    margin-bottom: var(--padding-sm);
    object-fit: cover;
    border-radius: var(--menu-image-border-radius);
  }

  /* Fix alignment for collection image mode links without images */

  /* Target only top-level links (direct children of column > div) in collection image mode */
  .mega-menu__grid:has(.mega-menu__link-image)
    .mega-menu__column
    > div
    > .mega-menu__link:not(:has(.mega-menu__link-image)) {
    display: flex;
    flex-direction: column;
    padding-inline: 0;
    padding-block: var(--padding-sm) 0;
  }

  .mega-menu__grid:has(.mega-menu__link-image)
    .mega-menu__column
    > div
    > .mega-menu__link:not(:has(.mega-menu__link-image))::before {
    content: '';
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    margin-bottom: var(--padding-sm);
    background-color: var(--color-foreground-muted);
    opacity: 0.1;
    border-radius: var(--menu-image-border-radius);
  }

  .mega-menu__grid {
    display: grid;
    grid-template-columns: repeat(var(--menu-columns-tablet), minmax(0, 1fr));
    gap: var(--menu-vertical-gap) var(--menu-horizontal-gap);
    width: 100%;

    @media screen and (min-width: 990px) {
      grid-template-columns: repeat(var(--menu-columns-desktop), minmax(0, 1fr));
    }
  }

  .mega-menu__column {
    grid-column: span 1;
  }

  .mega-menu__column--span-2 {
    grid-column: span 2;
  }

  .mega-menu__column--span-3 {
    grid-column: span 3;
  }

  .mega-menu__column--span-4 {
    grid-column: span 4;
  }

  .mega-menu__column--wide-collection-image {
    grid-column: span 1;

    @media screen and (min-width: 990px) {
      grid-column: span 2;
    }
  }

  .mega-menu__submenu .mega-menu__column--wide-collection-image {
    grid-column: span 1;
  }

  .mega-menu__content-list {
    display: grid;
    justify-content: end;
    gap: var(--menu-vertical-gap) var(--menu-horizontal-gap);
  }

  .mega-menu__content-list--products {
    grid-template-columns: repeat(var(--menu-content-columns-tablet), minmax(0, 1fr));

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

  .mega-menu__content-list--collections {
    grid-template-columns: repeat(var(--menu-content-columns-tablet), minmax(0, 300px));

    @media screen and (min-width: 990px) {
      grid-template-columns: repeat(var(--menu-content-columns-desktop), minmax(0, 300px));
    }
  }

  .mega-menu__list {
    display: grid;
    grid-template-columns: subgrid;
    grid-column: span var(--menu-columns-tablet);
    gap: var(--menu-vertical-gap) var(--menu-horizontal-gap);

    @media screen and (min-width: 990px) {
      grid-column: span var(--menu-columns-desktop);
    }
  }

  /* Desktop-only: inline layout for < 5 items (single horizontal row) */
  @media screen and (min-width: 990px) {
    .mega-menu__list--inline.mega-menu__list--inline {
      display: flex;
      flex-wrap: nowrap;
      align-items: flex-start;
      justify-content: space-around;
      gap: var(--menu-horizontal-gap);
      grid-column: 1 / -1;
    }

    .mega-menu__list--inline .mega-menu__column {
      flex: 0 1 auto;
      min-width: 0;
    }

    /* Two-column layout: ≥ 5 items in 2 vertical columns */
    .mega-menu__list--two-col {
      grid-column: 1 / -1;
      grid-template-columns: repeat(2, 1fr);
    }
  }

  .mega-menu__content {
    grid-column: span var(--menu-content-columns-tablet) / -1;

    @media screen and (min-width: 990px) {
      grid-column: span var(--menu-content-columns-desktop) / -1;
    }
  }

  .menu-list__list-item[slot='overflow'] .section {
    grid-template-columns: 1fr;
  }

  .menu-list__list-item[slot='overflow'] .section .mega-menu__grid {
    grid-column: 1;
  }

  .mega-menu__content-list li {
    white-space: normal;
  }

  /* mega more menu */
  .mega-menu__more-list {
    --menu-child-font-size: var(--font-size--xl);

    width: 200px;
  }

  .mega-menu__more-list-item .mega-menu__link {
    color: rgb(var(--menu-top-level-font-color-rgb) / var(--opacity-subdued-text));
  }

  .mega-menu__more-list-item:where(:hover, .active) .mega-menu__link {
    color: var(--menu-top-level-font-color);
  }

  .mega-menu__more-list-item[aria-hidden='true'] {
    display: none;
  }

  .mega-menu__submenu {
    /* preserves the inherited grid layout when this submenu wrapper is used */
    display: contents;
  }
/* END_BLOCK:_header-menu */

/* START_BLOCK:_image (INDEX:123) */
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:127) */
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:130) */
.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_BLOCK:_product-card-gallery */

/* START_BLOCK:_product-details (INDEX:133) */
/* 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:138) */
.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:139) */
.slide__content {
    height: 100%;
    position: relative;
    z-index: var(--layer-flat);
  }

  .slide__content > * {
    margin: auto;
  }

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

  slideshow-slide > .slide__image-container {
    display: flex;
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: absolute;
  }

  .slide__image-container > .slide__image,
  .slide__image-container > .slide__video,
  .slide__image-container > .slide__video-poster {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
  }

  .slide__image-container > .slide__video-poster {
    position: absolute;
  }
/* END_BLOCK:_slide */

/* START_BLOCK:_social-link (INDEX:140) */
.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);
  }

  svg.social-icons__icon {
    display: none;
  }

  img.social-icons__icon {
    display: block;
  }

  .social-icons__icon-wrapper:has(.social-icons__icon path),
  .social-icons__icon-wrapper:has(img.social-icons__icon) {
    width: var(--icon-size-lg);

    svg.social-icons__icon {
      display: block;
    }

    .social-icons__icon-label {
      display: none;
    }
  }

  /* Disabled state for editor */
  .shopify-design-mode .social-icons__icon-wrapper--disabled {
    opacity: var(--disabled-opacity, 0.5);
    cursor: not-allowed;
  }

  .shopify-design-mode .social-icons__icon-wrapper--disabled a {
    pointer-events: none;
  }
/* END_BLOCK:_social-link */

/* START_BLOCK:accelerated-checkout (INDEX:141) */
.accelerated-checkout-block[data-shopify-visual-preview] {
    width: 300px;
  }

  more-payment-options-link {
    font-size: smaller;
  }

  more-payment-options-link a {
    --button-color: var(--color-primary);
  }

  more-payment-options-link a:hover {
    --button-color: var(--color-primary-hover);
  }

  .shopify-payment-button__more-options[aria-hidden='true'] {
    display: none;
  }
/* END_BLOCK:accelerated-checkout */

/* START_BLOCK:accordion (INDEX:142) */
.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:buy-buttons (INDEX:148) */
.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) {
    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) {
    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;
    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;
  }
/* END_BLOCK:buy-buttons */

/* START_BLOCK:comparison-slider (INDEX:151) */
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:152) */
.submit-button {
    min-width: max-content;
  }
/* END_BLOCK:contact-form-submit-button */

/* START_BLOCK:contact-form (INDEX:153) */
.contact-form__form {
    display: flex;
    flex-direction: column;
    gap: var(--gap-md);
  }

  .contact-form__form-row {
    display: flex;
    flex-direction: column;
    gap: var(--gap-md);

    @media screen and (min-width: 750px) {
      flex-direction: row;
      align-items: center;
    }
  }

  .contact-form__input {
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    color: var(--color-input-text);
    background-color: var(--color-input-background);
    padding: var(--padding-lg) var(--padding-xl);
    border-radius: var(--style-border-radius-inputs);
    border: var(--style-border-width-inputs) solid var(--color-input-border);
    -webkit-font-smoothing: antialiased;
  }

  .contact-form__input--textarea {
    resize: vertical;
    min-height: var(--input-textarea-min-height);
  }

  .contact-form__error,
  .contact-form__success {
    display: flex;
    align-items: center;
    gap: var(--gap-xs);
  }
/* END_BLOCK:contact-form */

/* START_BLOCK:email-signup (INDEX:156) */
.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;
    }

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

  /* ── Custom form (HubSpot / external embed) ─────────────────────────────
     Matches the Figma footer email signup design:
     dark #292929 input · 10px radius · 44px height · #eb2529 red button
     Input + button sit side-by-side with a 21px gap
  ──────────────────────────────────────────────────────────────────────── */

  .email-signup__custom-form {
    display: flex;
    flex-direction: column;
    width: 100%;
  }

  /* Strip all HubSpot wrapper chrome */
  .email-signup__custom-form .hsfc-Renderer,
  .email-signup__custom-form .hsfc-FormWrapper,
  .email-signup__custom-form .hsfc-Form,
  .email-signup__custom-form .hsfc-Step {
    background: none !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .email-signup__custom-form .hsfc-Step__Content {
    padding: 0 !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  /* Input row: side-by-side with 21px gap */
  .email-signup__custom-form .hsfc-Row {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 21px !important;
    margin-bottom: 0 !important;
    width: 100% !important;
    grid-template-columns: unset !important;
  }

  /* Field wrapper stretches to fill available width */
  .email-signup__custom-form .hsfc-EmailField,
  .email-signup__custom-form .hsfc-TextField {
    flex: 1 !important;
    min-width: 0 !important;
    margin: 0 !important;
  }

  .email-signup__custom-form .hsfc-EmailField > *:not(:last-child),
  .email-signup__custom-form .hsfc-TextField > *:not(:last-child) {
    margin-bottom: 0 !important;
  }

  /* Hide the empty HubSpot label */
  .email-signup__custom-form .hsfc-FieldLabel {
    display: none !important;
  }

  /* ── Email input ── */
  .email-signup__custom-form .hsfc-TextInput {
    flex: 1 !important;
    min-width: 0 !important;
    width: 100% !important;
    height: 44px !important;
    background-color: #292929 !important;
    color: rgba(255, 255, 255, 0.7) !important;
    border: none !important;
    border-radius: 10px !important;
    padding: 10px 16px !important;
    font-family: 'Manrope', 'Helvetica Neue', sans-serif !important;
    font-size: 16px !important;
    font-weight: 400 !important;
    line-height: 24px !important;
    box-shadow: none !important;
    outline: none !important;
    box-sizing: border-box !important;
    transition: none !important;
  }

  .email-signup__custom-form .hsfc-TextInput::placeholder {
    color: rgba(255, 255, 255, 0.7) !important;
  }

  .email-signup__custom-form .hsfc-TextInput:hover,
  .email-signup__custom-form .hsfc-TextInput:focus,
  .email-signup__custom-form .hsfc-TextInput:active {
    box-shadow: none !important;
    outline: none !important;
    background-color: #292929 !important;
  }

  /* Navigation row: remove HubSpot's top margin */
  .email-signup__custom-form .hsfc-NavigationRow {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    flex-shrink: 0 !important;
  }

  .email-signup__custom-form .hsfc-NavigationRow__Buttons {
    flex-direction: row !important;
    gap: 0 !important;
    justify-content: flex-start !important;
  }

  /* ── Submit button ── */
  .email-signup__custom-form .hsfc-Button {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    height: 44px !important;
    white-space: nowrap !important;
    background-color: #eb2529 !important;
    background-image: none !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 10px !important;
    padding: 10px 16px !important;
    font-family: 'Manrope', 'Helvetica Neue', sans-serif !important;
    font-size: 16px !important;
    font-weight: 400 !important;
    line-height: 24px !important;
    cursor: pointer !important;
    width: auto !important;
    box-shadow: none !important;
    transform: none !important;
    transition: opacity 0.2s ease !important;
  }

  .email-signup__custom-form .hsfc-Button:not([disabled]):hover {
    background-color: #eb2529 !important;
    color: #ffffff !important;
    transform: none !important;
    opacity: 0.85 !important;
  }

  .email-signup__custom-form .hsfc-Button:not([disabled]):active {
    transform: none !important;
    box-shadow: none !important;
    opacity: 0.7 !important;
  }

  /* ── Error & success messages ── */
  .email-signup__custom-form .hsfc-ErrorAlert {
    color: #eb2529 !important;
    font-family: 'Manrope', sans-serif !important;
    font-size: 14px !important;
    margin-block-start: 8px !important;
  }

  .email-signup__custom-form .hsfc-PostSubmit,
  .email-signup__custom-form .hsfc-RichText {
    color: rgba(255, 255, 255, 0.7) !important;
    font-family: 'Manrope', sans-serif !important;
    font-size: 16px !important;
  }

  /* ── Mobile ── */
  @media screen and (max-width: 749px) {
    .email-signup__custom-form .hsfc-Row {
      flex-direction: column !important;
      gap: 12px !important;
    }

    .email-signup__custom-form .hsfc-TextInput,
    .email-signup__custom-form .hsfc-Button {
      width: 100% !important;
    }

  
    
  }

  .hsfc-Step__Content {
    display: flex;
    flex-wrap: nowrap;
    gap: 15px !important;
    align-items: center;
    justify-content: center;
    flex-direction: row;
}
.email-signup__custom-form .hsfc-ErrorAlert {
    color: #eb2529!important;
    font-family: Manrope,sans-serif!important;
    font-size: 14px!important;
    margin-block-start: 8px!important;
    position: absolute;
}
.email-signup__custom-form .hsfc-TextInput {
    flex: 1!important;
    min-width: 480px!important;
    width: 100%!important;
    height: 44px!important;
    background-color: #292929!important;
    color: #ffffffb3!important;
    border: none!important;
    border-radius: 10px!important;
    padding: 10px 16px!important;
    font-family: Manrope,Helvetica Neue,sans-serif!important;
    font-size: 16px!important;
    font-weight: 400!important;
    line-height: 24px!important;
    box-shadow: none!important;
    outline: none!important;
    box-sizing: border-box!important;
    transition: none!important;
}
.hsfc-NavigationRow__Alerts{
    display: none !important;
}


@media screen and (max-width: 749px) {
  .email-signup__custom-form .hsfc-TextInput {
    flex: 1!important;
    min-width: 280px !important;
    width: 100%!important;
    height: 44px!important;
}
 .email-signup__custom-form.email-signup__input-group {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    align-content: center;
    margin-top: 14px;
}
 
}
/* END_BLOCK:email-signup */

/* START_BLOCK:filters (INDEX:158) */
.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:161) */
.policy-list-trigger {
    anchor-name: --terms-policies-trigger;
    cursor: pointer;
    font-size: var(--font-size, 0.75rem);
    text-transform: var(--text-transform, none);
  }

  .policy_list {
    li {
      border-radius: calc(var(--style-border-radius-popover) - 8px);

      a {
        color: var(--color-foreground);
        display: inline-block;
        padding: 8px;
        text-align: start;
        width: 100%;
        outline-color: #0000;
        font-size: var(--font-size, 0.75rem);
        text-transform: var(--text-transform, none);
      }

      &:is(:hover, :focus-within) {
        background: rgb(var(--color-foreground-rgb) / 0.15);
      }
    }
  }

  .terms-policies-popover {
    position-anchor: --terms-policies-trigger;
    inset: unset;
    bottom: calc(anchor(top) + 1rem);
    left: anchor(left);
    border-radius: var(--style-border-radius-popover);
    background: linear-gradient(var(--color-background) 0 100%),
      linear-gradient(rgb(var(--color-background-rgb) / 0.15) 0 100%);
    background-clip: padding-box, border-box;
    border: 1px solid #0000;
    box-shadow: var(--shadow-popover);
    padding: 8px;
    margin: 0;
    opacity: 0;
    scale: 0.94;
    translate: 0 6px;
    transform-origin: 3.9em 100%;
  }

  .terms-policies-popover.\:popover-open,
  .terms-policies-popover:popover-open {
    opacity: 1;
    translate: 0 0;
    scale: 1;
  }

  @media screen and (max-width: 749px) {
    .terms-policies-popover {
      left: anchor(center);
      transform: translate(-50%, 0);
      transform-origin: 0% 100%;
    }
  }

  @supports not (position-anchor: --account-button-trigger) {
    .terms-policies-popover {
      bottom: unset;
      top: calc(var(--anchor-top) * 1px);
      left: calc(var(--anchor-left) * 1px);
      transform: translate(0, calc(-100% - 1.25rem));
    }

    @media screen and (max-width: 749px) {
      .terms-policies-popover {
        left: calc((var(--anchor-left) + (var(--anchor-width) / 2)) * 1px);
        transform: translate(-50%, calc(-100% - 1.25rem));
      }
    }
  }

  @media (prefers-reduced-motion: no-preference) {
    .terms-policies-popover {
      transition-property: display, overlay, opacity, scale, translate;
      transition-behavior: allow-discrete;
      transition-duration: 0.3s;
      transition-timing-function: var(--ease-out-quad);
    }

    @starting-style {
      .terms-policies-popover.\:popover-open,
      .terms-policies-popover:popover-open {
        opacity: 0.7;
        translate: 0 6px;
        scale: 0.94;
      }
    }
  }
/* END_BLOCK:footer-policy-list */

/* START_BLOCK:icon (INDEX:163) */
.icon-block {
    display: flex;
    flex-shrink: 0;
  }

  .icon-block__media {
    height: auto;
  }
/* END_BLOCK:icon */

/* START_BLOCK:image (INDEX:164) */
.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:166) */
.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:167) */
.menu {
    width: 100%;
  }

  .menu:not(:has(.menu__heading--empty)) .details-content {
    margin-block-start: var(--spacing--size);
  }

  .menu__item + .menu__item {
    margin-block-start: var(--spacing--size);
  }

  .menu .menu__heading--empty {
    display: none;
  }

  .menu__heading__default {
    display: contents;
  }

  .menu__heading__accordion {
    display: none;
  }

  @media screen and (max-width: 749px) {
    /* Always show the fallback heading on mobile when accordion is enabled */
    .menu--accordion .menu__heading--empty {
      display: flex;
    }

    .menu--accordion .menu__heading__accordion {
      display: contents;
    }

    .menu--accordion .menu__heading__default {
      display: none;
    }

    .menu--accordion .details-content {
      margin-block-start: var(--spacing--size);
    }

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

    .menu--dividers .menu__details {
      border-block-end: var(--style-border-width) solid var(--color-border);
    }

    .menu--dividers .details-content {
      padding-block-end: var(--padding-sm);
    }
  }

  .menu--caret .icon-plus,
  .menu--plus .icon-caret {
    display: none;
  }
/* END_BLOCK:menu */

/* START_BLOCK:page (INDEX:169) */
.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:170) */
.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:171) */
.popup-link__button svg {
    display: inline-block;
    position: relative;
    top: var(--margin-2xs);
  }

  .popup-link__content {
    box-shadow: var(--shadow-popover);
    border: var(--style-border-popover);
    border-radius: var(--style-border-radius-popover);
    background-color: var(--color-background);
    padding: var(--padding-4xl) var(--padding-xl) var(--padding-xl);
    max-width: var(--normal-content-width);
    max-height: var(--modal-max-height);

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

  .popup-link__content[open] {
    animation: modalSlideInTop var(--animation-speed) var(--animation-easing) forwards;
  }

  .popup-link__content.dialog-closing {
    animation: modalSlideOutTop var(--animation-speed) var(--animation-easing) forwards;
  }

  .popup-link__content--drawer {
    position: fixed;
    border-radius: 0;
    width: var(--sidebar-width);
    max-width: 95vw;
    height: 100%;
    margin: 0 0 0 auto;
  }

  /* Needed to ensure the drawer is full height */
  .popup-link__content--drawer:modal {
    max-height: 100dvh;
  }

  .popup-link__close {
    top: var(--margin-2xs);
    right: var(--margin-2xs);
    opacity: 0.8;
    animation: none;
  }
/* END_BLOCK:popup-link */

/* START_BLOCK:price (INDEX:172) */
.tax-note:empty {
    display: none;
  }

  form.payment-terms {
    padding-top: 0.5em;
    font-size: min(0.85em, var(--font-paragraph--size));
    font-weight: var(--font-paragraph--weight);
    color: rgb(var(--color-foreground-rgb) / var(--opacity-subdued-text));
  }

  .installments:not(:has(shopify-payment-terms)) {
    display: none;
  }

  /* Volume pricing note should match unit-price styling (small, grey text) */
  product-price .volume-pricing-note,
  product-price.text-block:is(.h1, .h2, .h3, .h4, .h5, .h6) .volume-pricing-note {
    display: block;
    font-family: var(--font-body--family);
    font-weight: normal;
    font-size: var(--font-size--xs);
    line-height: normal;
    letter-spacing: normal;
    text-transform: none;
    color: rgb(var(--color-foreground-rgb) / var(--opacity-subdued-text));
  }
/* END_BLOCK:price */

/* START_BLOCK:product-custom-property (INDEX:174) */
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:176) */
.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:177) */
.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:180) */
.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:182) */
.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:183) */
/* Fill opposite direction */
  .layout-panel-flex--column > .spacer-block {
    width: 100%;
  }

  .layout-panel-flex--row > .spacer-block {
    height: 100%;
  }

  /* Flex - Percent */
  :is(.layout-panel-flex--row, .layout-panel-flex--column) > .spacer-block--size-percent {
    flex: var(--spacer-size);
  }

  /* Flex - Pixel */
  .layout-panel-flex--row > .spacer-block--size-pixel {
    width: var(--spacer-size);
  }

  .layout-panel-flex--column > .spacer-block--size-pixel {
    height: var(--spacer-size);
  }

  /* Mobile */
  @media screen and (max-width: 749px) {
    /* Percent */
    .layout-panel-flex--row:not(.mobile-column) > .spacer-block--size-mobile-percent {
      flex: var(--spacer-size-mobile);
      height: 100%;
    }

    .layout-panel-flex--column > .spacer-block--size-mobile-percent,
    .mobile-column > .spacer-block--size-percent:not(.spacer-block--size-mobile-pixel) {
      width: 100%;
      flex: var(--spacer-size-mobile);
    }

    /* Pixel */
    .layout-panel-flex--row:not(.mobile-column) > .spacer-block--size-mobile-pixel {
      width: var(--spacer-size-mobile);
      height: 100%;
    }

    .layout-panel-flex--column > .spacer-block--size-mobile-pixel,
    .mobile-column > .spacer-block--size-mobile-pixel {
      width: 100%;
      flex: 0;
      height: var(--spacer-size-mobile);
    }
  }
/* END_BLOCK:spacer */

/* START_BLOCK:stat (INDEX:184) */
.rp-stat {
    display: flex;
    flex-direction: column;
    gap: 16px;
    font-family: var(--font-heading--family);
  }

  .rp-stat__number {
    margin: 0;
    font-size: 36px;
    font-weight: 500;
    line-height: 1.22;
    color: var(--rp-stat-number-color, #eb2529);
  }

  .rp-stat__content {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .rp-stat__title {
    margin: 0;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.56;
    color: #292929;
  }

  .rp-stat__text {
    margin: 0;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.5;
    color: #464646;
  }

  .rp-stat__text p {
    margin: 0;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
    color: inherit;
  }

  .rp-stat__text p + p {
    margin-top: 0.65em;
  }
/* END_BLOCK:stat */

/* START_BLOCK:swatches (INDEX:185) */
product-swatches {
    width: 100%;
    display: flex;
    position: relative;
    overflow: hidden;
    gap: 0;
    flex-shrink: 0;
  }
/* END_BLOCK:swatches */

/* START_BLOCK:video (INDEX:188) */
.placeholder-video {
    aspect-ratio: 5 / 3;
  }
/* END_BLOCK:video */

/* CSS from snippet stylesheet tags */
/* START_SNIPPET:account-button (INDEX:190) */
.account-button {
    color: var(--color-foreground);
    appearance: none;
    border: none;
    background: none;
    height: var(--button-size);
    width: var(--button-size);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
    transition: color var(--animation-speed) var(--animation-easing);
    anchor-name: --account-button-trigger;
  }

  .account-button__avatar {
    --account-button-size: 1.3rem;

    display: flex;
    align-items: center;
    justify-content: center;
    width: var(--account-button-size);
    height: var(--account-button-size);
    border-radius: var(--style-border-radius-50);
    background-color: var(--color-primary-button-background);
    font-size: var(--font-size--xs);
    font-weight: 500;
    color: var(--color-primary-button-text);
    text-transform: uppercase;
    line-height: 1;
  }

  .account-button__icon {
    color: currentColor;
    display: inline-flex;
    justify-content: center;
    align-items: center;
  }

  /* The shop avatar doesn't bubble the click event up to our button, so we need to prevent that or the button doesn't work */
  .account-button shop-user-avatar {
    pointer-events: none;
  }
/* END_SNIPPET:account-button */

/* START_SNIPPET:background-media (INDEX:193) */
@media (prefers-reduced-motion: reduce) {
    video-background-component video {
      display: none;
    }
  }
/* END_SNIPPET:background-media */

/* START_SNIPPET:bento-grid (INDEX:194) */
.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:195) */
.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:breadcrumbs (INDEX:198) */
.breadcrumbs {
    margin: 0;
  }

  .breadcrumbs__list {
    display: flex;
    align-items: center;
    gap: 6px;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
  }

  .breadcrumbs__item {
    display: flex;
    align-items: center;
  }

  .breadcrumbs__sep {
    color: #aaaaaa;
    font-family: var(--font-heading--family);
    font-size: 11px;
    line-height: 1;
    user-select: none;
  }

  .breadcrumbs__link {
    font-family: var(--font-heading--family);
    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
    color: #888888;
    text-decoration: none;
    transition: color 0.2s ease;
  }

  .breadcrumbs__link:hover {
    color: #292929;
  }

  .breadcrumbs__current {
    font-family: var(--font-heading--family);
    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
    color: #292929;
  }
/* END_SNIPPET:breadcrumbs */

/* START_SNIPPET:button (INDEX:199) */
.link {
    text-decoration: none;
    text-decoration-color: currentcolor;

    &:hover {
      color: var(--color-primary-hover);
      text-decoration-color: transparent;
    }
  }
/* END_SNIPPET:button */

/* START_SNIPPET:card-gallery (INDEX:200) */
.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;
  }
/* END_SNIPPET:card-gallery */

/* START_SNIPPET:cart-summary (INDEX:204) */
.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:206) */
.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 {
      /* only allow interactive elements to be clickable separate from .collection-card__link */
      pointer-events: auto;
    }
  }

  /* allow all blocks to be selectable in editor preview */
  .shopify-design-mode .collection-card__content * {
    pointer-events: auto;
  }

  .collection-card__content {
    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 .image-block__image {
    object-fit: cover;
    width: 100%;
    height: 100%;
    max-width: 100%;
  }

  .collection-card--image-bg .collection-card__image {
    position: absolute;
    width: 100%;
    height: 100%;
  }

  .collection-card__image svg {
    height: 100%;
    width: 100%;
  }

  .resource-list:not(.hidden--desktop) .collection-card--flexible-aspect-ratio {
    &.collection-card.collection-card--image-bg,
    &.collection-card .placeholder-svg {
      aspect-ratio: 99;
    }
  }
/* END_SNIPPET:collection-card */

/* START_SNIPPET:divider (INDEX:212) */
.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:213) */
.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:214) */
.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:215) */
.editorial-product__grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 1fr;
    gap: var(--gap-xl);

    /* Make the aspect ratio super high on width, then increase the height of
     * slideshow containers until they fill all the available space */
    .card-gallery {
      /* stylelint-disable-next-line declaration-no-important */
      --gallery-aspect-ratio: 99 !important;
    }

    .card-gallery,
    slideshow-component,
    slideshow-container,
    slideshow-slides {
      height: 100%;
    }
  }

  .editorial-product__spacer {
    aspect-ratio: 1;
  }

  @media screen and (max-width: 749px) {
    .editorial-product__grid {
      display: flex;
      flex-direction: column;
      gap: var(--gap-2xl);
    }

    .editorial-product__spacer {
      display: none;
    }

    .editorial-product__item-0 {
      width: 83%;
      align-self: flex-start;
      aspect-ratio: 7 / 6;
    }

    .editorial-product__item-1 {
      width: 83%;
      align-self: flex-end;
      aspect-ratio: 4 / 5;
    }

    .editorial-product__item-2 {
      width: 66%;
      align-self: flex-start;
      aspect-ratio: 5 / 5;
    }

    .editorial-product__item-3 {
      width: 100%;
      aspect-ratio: 8 / 6;
    }
  }
/* END_SNIPPET:editorial-product-grid */

/* START_SNIPPET:filter-remove-buttons (INDEX:216) */
/* 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 (INDEX:220) */
.recipient-form {
    --options-border-radius: var(--variant-picker-button-radius);
    --options-border-width: var(--variant-picker-button-border-width);

    display: flex;
    flex-direction: column;
    padding-bottom: var(--padding-2xl);
  }

  .recipient-form__send-to {
    padding: 0;
    margin-block-end: var(--margin-xs);
  }

  .gift-card-form-option {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--gap-sm);
    padding: 0;
    border: none;
  }

  .gift-card-form-option__button-label {
    display: flex;
    align-items: center;
    position: relative;
    padding-block: var(--padding-sm);
    padding-inline: var(--padding-lg);
    border: var(--style-border-width) solid var(--color-variant-border);
    border-radius: var(--options-border-radius);
    border-width: var(--options-border-width);
    overflow: clip;
    justify-content: center;
    min-width: auto;
    background-color: var(--color-variant-background);
    color: var(--color-variant-text);
    transition: background-color var(--animation-speed) var(--animation-easing),
      border-color var(--animation-speed) var(--animation-easing);

    &:hover {
      background-color: var(--color-variant-hover-background);
      border-color: var(--color-variant-hover-border);
      color: var(--color-variant-hover-text);
    }
  }

  .gift-card-form-option__button-label:has(:focus-visible) {
    --variant-picker-stroke-color: var(--color-foreground);

    border-color: var(--color-foreground);
    outline: var(--focus-outline-width) solid var(--color-foreground);
    outline-offset: var(--focus-outline-offset);
  }

  .gift-card-form-option__button-label:has(:checked) {
    color: var(--color-selected-variant-text);
    background-color: var(--color-selected-variant-background);
    border-color: var(--color-selected-variant-border);
    transition: background-color var(--animation-speed) var(--animation-easing),
      border-color var(--animation-speed) var(--animation-easing);

    &:hover {
      background-color: var(--color-selected-variant-hover-background);
      border-color: var(--color-selected-variant-hover-border);
      color: var(--color-selected-variant-hover-text);
    }
  }

  .gift-card-form-option__button-label input {
    /* remove the checkbox from the page flow */
    position: absolute;

    /* set the dimensions to match those of the label */
    inset: 0;

    /* hide it */
    opacity: 0;
    margin: 0;
    cursor: pointer;
    width: 100%;
    height: 100%;
  }

  .recipient-fields {
    display: flex;
    flex-direction: column;
    gap: var(--gap-sm);
    transition: opacity 0.3s var(--animation-easing);
    padding-block-start: var(--padding-xl);
  }

  .recipient-fields[hidden] {
    display: none;
  }

  .field--send-on {
    display: flex;
    flex-direction: column;
  }

  .recipient-form__message {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: var(--gap-sm);
    margin-top: var(--margin-sm);
  }

  .recipient-form-field-label {
    position: absolute;
    left: var(--padding-sm);
    bottom: var(--padding-sm);
    font-style: italic;
    color: var(--color-input-text);
  }

  .recipient-fields__textarea {
    min-height: 5.5rem;
    overflow-y: auto;

    /* Space for the character count */
    padding-bottom: calc(var(--padding-sm) * 3);
    scroll-padding-bottom: calc(var(--padding-sm) * 3);
  }

  .recipient-fields__input {
    flex-grow: 1;
    transition: background-color var(--animation-speed) ease, 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 */

/* START_SNIPPET:grid-density-controls (INDEX:221) */
.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:222) */
.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:jumbo-text (INDEX:230) */
.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:233) */
.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:234) */
/* Localization */
  localization-form-component {
    display: flex;
    width: var(--width, auto);

    @media screen and (min-width: 750px) {
      position: relative;
    }
  }

  localization-form-component[data-show-filter='false'] .country-selector-form__wrapper {
    padding-block-start: var(--padding-xs);
  }

  .localization-form {
    width: 100%;
  }

  localization-form-component .button:is(:not(.country-filter__reset-button)) {
    --button-color: var(--color-primary);
    --button-background-color: var(--language-button-background-color, var(--color-background));
    --button-border-color: var(--language-button-border-color, var(--color-border));

    text-decoration-color: transparent;
    text-decoration-thickness: 0.075em;
    text-underline-offset: 0.125em;
    transition: text-decoration-color var(--animation-speed) var(--animation-easing);
  }

  localization-form-component .button:is(:not(.country-filter__reset-button)):hover,
  .localization-form__list-item:hover,
  .localization-form__list-item:focus {
    --button-color: var(--color-primary-hover);

    background-color: rgb(var(--color-primary-hover-rgb) / var(--opacity-8));
  }

  .localization-form__list-item[aria-current='true'] {
    --button-color: var(--color-primary-active);

    background-color: rgb(var(--color-primary-hover-rgb) / var(--opacity-10));
  }

  .localization-form__list-item-disabled {
    pointer-events: none;
  }

  .localization-form__list-item:focus-visible {
    outline: none;
  }

  localization-form-component .localization-selector {
    display: flex;
    align-items: center;
    gap: var(--margin-2xs);
  }

  localization-form-component .country-filter__search-icon {
    left: 8px;
    right: auto;
    color: var(--color-foreground-muted);
    pointer-events: none;
  }

  .country-filter__search-icon .svg-wrapper svg {
    width: var(--icon-size-sm);
    height: var(--icon-size-sm);
  }

  .disclosure {
    width: 100%;
  }

  .localization-form__list {
    position: relative;
    width: 100%;
    padding-block: 0 var(--padding-xs);
    font-size: var(--font-size-lg);
    scroll-padding: var(--padding-xs) 0;
    overflow-y: auto;
    white-space: nowrap;

    /* Hide scrollbar which would cause extra right padding in Safari */
    scrollbar-width: none;

    &::-webkit-scrollbar {
      display: none;
    }
  }

  .localization-form__list-item:not([hidden]) {
    margin-block-end: var(--margin-3xs);
    display: flex;
    gap: var(--margin-sm);
    padding: 8px;
    border-radius: 8px;
    line-height: var(--font-line-height-md);
    align-items: center;
    text-align: start;
    cursor: pointer;
    transition: background-color var(--animation-speed) var(--animation-easing);

    .country {
      flex: 1;
      color: var(--color-foreground);
    }

    &:hover {
      background-color: rgb(var(--color-foreground-rgb) / var(--opacity-8));
    }

    &[aria-current='true'] {
      .country {
        font-weight: 500;
      }
    }
  }

  .localization-form__list-item#no-results-message {
    grid-template-columns: 1fr;
    text-align: center;
    color: rgb(var(--color-foreground-rgb) / var(--opacity-subdued-text));
  }

  .is-searching .localization-form__list-item .country {
    color: rgb(var(--color-foreground-rgb) / var(--opacity-80));
  }

  .localization-form__list-item .country mark {
    font-weight: 500;
    background: none;
    color: var(--color-foreground);
  }

  .country-filter {
    position: relative;
    padding: var(--padding-xs);
    border-bottom: var(--style-border-width) solid transparent;
    transition: border-color var(--animation-values);
  }

  .country-filter.is-scrolled {
    border-color: var(--color-border);
  }

  .country-selector-form__wrapper {
    overflow-y: auto;
    max-height: 100%;
    flex-grow: 1;
  }

  .language-selector {
    display: flex;
    gap: var(--gap-xs);
    padding: var(--padding-md) var(--padding-lg);
    position: relative;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }

  .language-selector__label {
    flex-shrink: 0;
    color: rgb(var(--color-foreground-rgb) / var(--opacity-subdued-text));
  }

  .localization-form__select {
    border: none;
    color: var(--color-foreground);
    appearance: none;
    background-color: var(--color-input-background);
    padding-block: var(--padding-3xs);
    padding-inline: var(--padding-xs) calc(var(--icon-size-xs) + var(--padding-xs));
    text-align: right;
    cursor: pointer;
    max-width: 40vw;
    text-overflow: ellipsis;
    field-sizing: content;

    &:focus-visible {
      outline: var(--focus-outline-width) solid currentcolor;
    }

    &:focus {
      outline: none;
    }
  }

  #header-component[transparent] localization-form-component .localization-form .localization-form__select {
    background-color: transparent;
  }

  .localization-form__select option {
    background-color: var(--color-input-background);
    color: var(--color-input-text);
  }

  .language-selector .svg-wrapper.icon-caret {
    width: var(--icon-size-xs);
    height: var(--icon-size-xs);
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
  }

  .language-selector--collapse-space {
    padding-inline-end: var(--padding-2xs);
  }

  .language-selector--collapse-space .localization-form__select {
    padding-inline-end: var(--icon-size-xs);
  }

  .language-selector--collapse-space .svg-wrapper.icon-caret {
    right: 0;
  }

  .localization-form .icon-checkmark {
    width: var(--icon-size-xs);
    height: var(--icon-size-xs);
  }

  .localization-form .svg-wrapper.icon-checkmark {
    visibility: hidden;
  }

  .localization-form__list-item[aria-current='true'] .svg-wrapper.icon-checkmark {
    visibility: visible;
  }

  .country-filter__input {
    width: 100%;
    height: 44px;
    font-size: var(--font-size-lg);
    padding: var(--padding-md) var(--padding-lg) var(--padding-md) calc(var(--margin-md) + var(--padding-xl));
    border: 1px solid var(--color-foreground);
    color: var(--color-input-text);
    background-color: var(--color-input-background);
    outline-offset: -1px;

    @media screen and (min-width: 750px) {
      height: 36px;
    }
  }

  .country-filter__input::placeholder {
    color: inherit;
  }

  .country-filter .field {
    position: relative;
  }

  .country-filter .field__label {
    font-size: var(--font-size-lg);
    left: var(--margin-2xl);
    top: var(--margin-xl);
    pointer-events: none;
    position: absolute;
  }

  .country-filter__input:focus ~ .field__label,
  .country-filter__input:not(:placeholder-shown) ~ .field__label,
  .country-filter__input:-webkit-autofill ~ .field__label {
    font-size: var(--font-size-xs);
    top: var(--margin-xs);
  }

  .country-filter .field__button:not([hidden]) {
    display: flex;
    height: fit-content;
    position: absolute;
    padding: 0;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    align-items: center;
    background-color: transparent;
    color: var(--color-input-text);
    border: 0;
  }

  input[type='search']::-webkit-search-cancel-button {
    appearance: none;
  }

  .country-selector__close-button {
    display: none;
  }
/* END_SNIPPET:localization-form */

/* START_SNIPPET:media (INDEX:235) */
.media-block {
    overflow: hidden;
    position: relative;

    @media screen and (min-width: 750px) {
      min-height: var(--media-height);
    }
  }

  .media-block__media {
    height: var(--media-height-mobile, auto);
    object-fit: var(--image-position, 'cover');
    object-position: center center;
    width: 100%;

    @media screen and (min-width: 750px) {
      height: 100%;
      position: absolute;
    }
  }

  deferred-media[class].media-block__media
    :is(.deferred-media__poster-button img, .deferred-media__poster-button ~ video) {
    object-fit: var(--video-position, 'cover');
  }

  /* This is to support corner radius on video and align the video to the center of the block */
  .media-block__media--video {
    display: flex;
    align-items: center;
    justify-content: center;

    @media screen and (max-width: 749px) {
      --media-height-mobile: auto;
    }
  }
/* END_SNIPPET:media */

/* START_SNIPPET:overlay (INDEX:244) */
.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:245) */
.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:246) */
.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-resource-carousel (INDEX:249) */
.predictive-search-results__wrapper {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    padding-block-end: var(--padding-sm);
    padding-inline: 0;
    scroll-snap-type: x mandatory;
    scroll-padding: 0 var(--padding-xl);
    scrollbar-width: none;
    -ms-overflow-style: none;

    &::-webkit-scrollbar {
      display: none;
    }
  }

  .predictive-search-results__wrapper slideshow-slides {
    --gutter-slide-width: var(--padding-xl);

    /* Add padding to prevent hover animations from being clipped in slideshow
       15px accommodates:
       - Scale effect (9px on each side from 1.03 scale)
       - Lift effect (4px upward movement)
       - Shadow (15px spread with -5px offset)
       Using 16px for better alignment with our spacing scale */
    padding-block: var(--padding-xl);
    margin-block: calc(-1 * var(--padding-xl));
    gap: var(--gap-md);
  }

  .predictive-search-results__resource-header {
    display: flex;
    padding-inline: var(--padding-xl);
    justify-content: space-between;
    align-items: center;
    height: 32px;
  }

  .predictive-search-results__resource-header .svg-wrapper {
    width: var(--icon-size-xs);
  }

  .predictive-search-results__wrapper-products {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    padding-block-end: var(--padding-sm);
    gap: var(--gap-md);
    transition: height var(--animation-speed-medium) var(--animation-easing);

    @container (min-width: 550px) {
      grid-template-columns: repeat(4, 1fr);
    }
  }

  .predictive-search-results__wrapper-products:last-child {
    padding-block-end: var(--padding-lg);

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

  .predictive-search-results__resource-header .predictive-search-results__title {
    margin-block-end: 0;
  }

  .predictive-search-results__resource-header:has(slideshow-controls) .predictive-search-results__title {
    margin-block-end: 0;
  }

  .predictive-search-results__resource-header slideshow-controls {
    @media screen and (max-width: 749px) {
      display: none;
    }
  }
/* END_SNIPPET:predictive-search-resource-carousel */

/* START_SNIPPET:price-filter (INDEX:250) */
/* 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-card (INDEX:252) */
.product-card__placeholder-image svg {
    height: 100%;
  }

  @media screen and (max-width: 749px) {
    .product-card slideshow-arrows .slideshow-control {
      display: none;
    }
  }
/* END_SNIPPET:product-card */

/* START_SNIPPET:product-grid (INDEX:253) */
.product-grid {
    --product-grid-gap: var(--product-grid-gap-mobile);
    --mobile-columns: 2; /* Default value */

    isolation: isolate;

    @media screen and (min-width: 750px) {
      --product-grid-gap: var(--product-grid-gap-desktop);
    }
  }

  .product-grid slideshow-arrows .slideshow-control {
    display: none;

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

  /* This triggers iOS < 16.4 */
  @supports not (background-color: rgb(from red 150 g b / alpha)) {
    /* Force aspect ratio to auto for iOS < 16.4 since it's not compatible with the infinite pagination */
    .product-grid .product-media,
    .product-grid .product-media-container {
      aspect-ratio: auto;
    }
  }

  .main-collection-grid {
    padding: var(--grid--margin--mobile);

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

  .main-collection-grid__empty {
    padding-block: var(--padding-6xl);
    padding-inline: var(--page-margin);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--padding-sm);
  }

  .main-collection-grid__empty-title {
    margin: 0;
  }
/* END_SNIPPET:product-grid */

/* START_SNIPPET:product-information-content (INDEX:254) */
.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 (INDEX:255) */
.dialog-zoomed-gallery__dialog {
    background-color: var(--color-background);
  }

  .dialog-zoomed-gallery {
    cursor: zoom-out;
  }

  .dialog--preloading {
    opacity: 0;
  }

  .product-media__drag-zoom-wrapper {
    aspect-ratio: inherit;
    min-height: inherit;
    min-width: inherit;
    display: inherit;
    flex: inherit;
  }

  @media screen and (max-width: 749px) {
    .dialog-zoomed-gallery {
      /* 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);
  }

  .media-gallery__mobile-controls {
    grid-area: auto;
  }

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

  .product-media-container--zoomable.product-media-container--image {
    cursor: zoom-in;
  }

  .dialog-zoomed-gallery .product-media-container--video deferred-media,
  .dialog-zoomed-gallery .product-media-container--external_video deferred-media {
    height: auto;
    aspect-ratio: var(--ratio);
  }

  .dialog-zoomed-gallery .product-media-container--model .product-media__image {
    /* Make the height match the height of the model-viewer */
    height: 100vh;
  }

  .dialog-zoomed-gallery__dialog {
    view-transition-name: zoom-dialog-ui;
  }

  :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;
    }
  }
/* END_SNIPPET:product-media-gallery-content */

/* START_SNIPPET:product-media (INDEX:256) */
.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:257) */
.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 (INDEX:259) */
/* 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-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 */

/* START_SNIPPET:resource-image (INDEX:263) */
.resource-image {
    position: relative;
    display: flex;
    width: 100%;
    height: 100%;
    z-index: var(--layer-base);
    overflow: hidden;
    max-width: 100%;
    max-height: 100%;
    aspect-ratio: var(--ratio);
  }

  .resource-image .image-block__image {
    object-fit: cover;
    width: 100%;
    height: 100%;
  }

  .resource-image--placeholder {
    width: 100%;
    height: 100%;
  }
/* END_SNIPPET:resource-image */

/* START_SNIPPET:search (INDEX:272) */
.search-action {
    --search-border-radius: var(--style-border-radius-inputs);
    --search-border-width: var(--style-border-width-inputs);

    display: flex;
  }

  .header__column--center .search-action {
    width: auto;
    flex-grow: 1;
  }

  :is(.header__column--left, .header__column--center) .search-action {
    @media screen and (min-width: 750px) {
      margin-inline: calc(var(--padding-lg) * -1);
    }
  }

  .header__column--right .search-action {
    @media screen and (min-width: 750px) {
      margin-inline: calc(var(--gap-md) * -1) calc(var(--gap-xs) * -1);
    }
  }
/* END_SNIPPET:search */

/* START_SNIPPET:section (INDEX:273) */
.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:slideshow (INDEX:281) */
slideshow-slides {
    align-items: var(--slideshow-align-items, normal);
  }

  .slideshow--stretch-content slideshow-slides > * {
    height: auto;
  }
/* END_SNIPPET:slideshow */

/* START_SNIPPET:sorting (INDEX:282) */
.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:303) */
: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:313) */
/* Variant picker container styles - unique to main variant picker */
  .variant-picker {
    width: 100%;
  }

  .variant-picker__form {
    width: 100%;
  }

  .variant-picker[data-shopify-visual-preview] {
    min-width: 300px;
    padding-inline-start: max(4px, var(--padding-inline-start));
  }

  /* Dropdown variant option styles */
  .variant-option__select-wrapper {
    display: flex;
    position: relative;
    border: var(--style-border-width-inputs) solid var(--color-border);
    border-radius: var(--style-border-radius-inputs);
    align-items: center;
    margin-top: var(--margin-2xs);
    overflow: clip;
  }

  .variant-option__select-wrapper:has(.swatch) {
    --variant-picker-swatch-width: 20px;
    --variant-picker-swatch-height: 20px;
  }

  .variant-option__select-wrapper:hover {
    border-color: var(--color-variant-hover-border);
  }

  .variant-option__select:focus-visible {
    outline: var(--focus-outline-width) solid currentcolor;
    outline-offset: var(--focus-outline-offset);
  }

  .variant-option__select {
    padding-block: var(--padding-md);
    padding-inline: var(--padding-lg) calc(var(--padding-lg) + var(--icon-size-2xs));
    appearance: none;
    border: 0;
    width: 100%;
    margin: 0;
    cursor: pointer;
  }

  .variant-option__select-wrapper .icon {
    position: absolute;
    right: var(--padding-md);
    top: 50%;
    transform: translateY(-50%);
    width: var(--icon-size-2xs);
    height: var(--icon-size-2xs);
    pointer-events: none;
  }

  .variant-option__select--has-swatch {
    padding-inline-start: calc((2 * var(--padding-sm)) + var(--variant-picker-swatch-width));
  }

  .variant-option__select-wrapper .swatch {
    position: absolute;
    top: 50%;
    left: var(--padding-md);
    transform: translateY(-50%);
  }

  /* Variant picker alignment modifiers */
  .variant-picker--center,
  .variant-picker--center .variant-option {
    text-align: center;
    align-items: center;
    justify-content: center;
    width: 100%;
  }

  .variant-picker--right,
  .variant-picker--right .variant-option {
    text-align: right;
    justify-content: right;
  }
/* END_SNIPPET:variant-main-picker */

/* START_SNIPPET:variant-swatches (INDEX:314) */
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);
    }
  }

  .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:315) */
.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:316) */
.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 */