/** Shopify CDN: Minification failed

Line 2333:11 Unexpected "{"
Line 2333:20 Expected ":"
Line 2333:27 Unexpected "{"
Line 2334:13 Unexpected "{"
Line 2334:22 Expected ":"
Line 2335:13 Unexpected "{"
Line 2335:22 Expected ":"
Line 2336:13 Unexpected "{"
Line 2336:22 Expected ":"
Line 2338:13 Unexpected "{"
... and 195 more hidden warnings

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

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

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

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

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

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

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

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

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

    --closed-underlay-height: 0px;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    position: relative;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .dropdown-localization:not(dropdown-localization-component) .language-selector {
    font-family: var(--menu-localization-font);
    font-size: var(--menu-localization-font-size);
  }
/* END_SECTION:header */
/* START_SECTION:inyou-announcement-bar (INDEX:19) */
.inyou-ann {
    width: 100%;
    overflow: hidden;
    padding: 0;
    position: relative;
    z-index: 10;
  }

  .inyou-ann__inner {
    display: flex;
    align-items: center;
    width: 100%;
    overflow: hidden;
  }

  .inyou-ann__track {
    display: flex;
    width: max-content;
    flex: 0 0 auto;
    animation: inyouAnnScroll var(--ann-speed, 30s) linear infinite;
  }

  /* ── Fixed clock — never scrolls ── */
  .inyou-ann__clock {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0 1.25rem;
    font-size: var(--ann-font-size, 12px);
    font-weight: var(--ann-font-weight, 500);
    letter-spacing: var(--ann-letter-spacing, 0.08em);
    white-space: nowrap;
  }
  .inyou-ann__clock-item {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
  }
  .inyou-ann__clock-label {
    opacity: 0.65;
    text-transform: uppercase;
  }
  .inyou-ann__clock-time {
    font-variant-numeric: tabular-nums;
  }
  .inyou-ann__clock-sep {
    opacity: 0.4;
    font-weight: 300;
  }

  .inyou-ann__track:hover {
    animation-play-state: var(--ann-pause, running);
  }

  .inyou-ann__list {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    white-space: nowrap;
  }

  .inyou-ann__item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: var(--ann-padding-v, 10px) 0;
    font-size: var(--ann-font-size, 12px);
    font-weight: var(--ann-font-weight, 500);
    letter-spacing: var(--ann-letter-spacing, 0.08em);
    text-transform: var(--ann-text-case, uppercase);
    padding-left: 1.5rem;
  }

  .inyou-ann__link {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.2s;
  }

  .inyou-ann__link:hover {
    opacity: 0.75;
    text-decoration: underline;
  }

  .inyou-ann__sep {
    opacity: 0.4;
    font-weight: 300;
  }

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

  @media (prefers-reduced-motion: reduce) {
    .inyou-ann__track {
      animation: none;
    }
    .inyou-ann__list + .inyou-ann__list {
      display: none;
    }
  }
/* END_SECTION:inyou-announcement-bar */
/* START_SECTION:inyou-comparison (INDEX:35) */
.icmp *, .icmp *::before, .icmp *::after { box-sizing: border-box; }

/* ── Section ── */
.icmp {
  position: relative;
  overflow: hidden;
}

/* ── Parallax layer ── */
.icmp__parallax {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.icmp__bg-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

/* ── Watermark text ── */
.icmp__watermark {
  position: absolute;
  bottom: -5%;
  left: -2%;
  font-size: clamp(5rem, 14vw, 16rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.06);
  white-space: nowrap;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

/* ── Overlay ── */
.icmp__overlay {
  position: absolute;
  inset: 0;
}

/* ── Content layout ── */
.icmp__wrap {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: center;
}

/* ── Left ── */
.icmp__left {
  container-type: inline-size;
}
.icmp__eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0 0 1rem;
}
.icmp__heading {
  /* Sized off the column's own container width (not the viewport), so it
     always fits on one line no matter how the two-column grid ratio or
     screen size changes. */
  font-size: clamp(1.1rem, 7.2cqw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  margin: 0;
  white-space: nowrap;
}

/* ── Card ── */
.icmp__card {
  border-radius: 20px;
  overflow: hidden;
  padding-bottom: 1.5rem;
}

/* ── Rows ── */
.icmp__row {
  display: grid;
  grid-template-columns: 1fr 100px 148px;
}

/* Divider sits under the feature/competitor text only — never crosses the
   product "lane" column, so that column reads as one unbroken shape. */
.icmp__row--data:not(.icmp__row--last) .icmp__cell--feature,
.icmp__row--data:not(.icmp__row--last) .icmp__cell--col2 {
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* ── Cells ── */
.icmp__cell {
  padding: 1.1rem 1rem;
  display: flex;
  align-items: center;
}
.icmp__cell--feature {
  font-size: 0.9rem;
  line-height: 1.45;
  padding-left: 1.5rem;
}
.icmp__cell--col1 {
  justify-content: center;
  text-align: center;
  padding-left: 0.4rem;
  padding-right: 0.4rem;
}

/* Only data rows (not the header) carry the lane background — it starts
   rounded at the first row and ends rounded at the last, staying square
   (and seamlessly joined) in between. */
.icmp__row--data .icmp__cell--col1 {
  background: var(--icmp-lane-color);
}
.icmp__cell--col1-top {
  border-radius: 999px 999px 0 0;
}
.icmp__cell--col1-bottom {
  border-radius: 0 0 999px 999px;
}
.icmp__cell--col1-top.icmp__cell--col1-bottom {
  border-radius: 999px;
}
.icmp__cell--col2 {
  font-size: 0.82rem;
  line-height: 1.4;
  text-align: right;
  justify-content: flex-end;
  padding-right: 1.5rem;
}

/* ── Col1 badge ── */
.icmp__col1-badge {
  display: inline-block;
  padding: 0.25rem 0.65rem;
  border: 1px solid;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

/* ── Header row ── */
.icmp__row--header .icmp__cell {
  padding-top: 1.5rem;
  padding-bottom: 1.25rem;
}
.icmp__row--header .icmp__cell--col2 {
  font-size: 0.88rem;
  font-weight: 500;
}

/* ── Dot ── */
.icmp__dot {
  display: block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
}

/* ── Responsive ── */
@media screen and (max-width: 900px) {
  .icmp__wrap {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}
@media screen and (max-width: 600px) {
  .icmp__row {
    grid-template-columns: 1fr 66px 100px;
  }
  .icmp__cell--feature { font-size: 0.8rem; padding-left: 1rem; }
  .icmp__cell--col2 { font-size: 0.75rem; padding-right: 1rem; }
}
/* END_SECTION:inyou-comparison */
/* START_SECTION:inyou-delivery-cards (INDEX:41) */
.idc *, .idc *::before, .idc *::after { box-sizing: border-box; }

/* ── Heading ── */
.idc__heading {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 2rem;
}

/* ── Cards row ── */
.idc__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

/* ── Single card ── */
.idc__card {
  border-radius: 20px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 38% 1fr;
  min-height: 320px;
}

/* ── Card image ── */
.idc__card-img-wrap {
  position: relative;
  overflow: hidden;
}
.idc__card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── Card content ── */
.idc__card-content {
  padding: 1.75rem 1.5rem 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  min-width: 0;
}

.idc__card-top { display: flex; flex-direction: column; gap: 0.25rem; }

.idc__card-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.3;
}

.idc__card-subtitle {
  font-size: 0.85rem;
  margin: 0;
  opacity: 0.7;
  line-height: 1.4;
}

/* ── Items list ── */
.idc__items {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.idc__item-divider {
  border: none;
  border-top: 1px solid;
  opacity: 0.18;
  margin: 0;
}

.idc__item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.7rem 0;
  text-decoration: none;
  color: inherit;
}
.idc__item--link {
  cursor: pointer;
  transition: opacity 0.15s ease;
}
.idc__item--link:hover {
  opacity: 0.7;
}

.idc__item-icon {
  width: 32px;
  height: 44px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.idc__item-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.idc__item-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0;
}

.idc__item-name {
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.3;
}

.idc__item-detail {
  font-size: 0.78rem;
  opacity: 0.65;
  line-height: 1.3;
}

/* ── Responsive ── */
@media screen and (max-width: 900px) {
  .idc__cards { grid-template-columns: 1fr; }
  .idc__card { min-height: 280px; }
}
@media screen and (max-width: 600px) {
  .idc__card {
    grid-template-columns: 1fr;
    grid-template-rows: 220px auto;
  }
  .idc__card-img-wrap { position: relative; height: 220px; }
  .idc__card-content { padding: 1.25rem; }
}
/* END_SECTION:inyou-delivery-cards */
/* START_SECTION:inyou-expert-category (INDEX:45) */
.iec {
    width: 100%;
    padding: 3.5rem 0 4rem;
  }

  .iec__inner {

    margin: 0 auto;
    padding: 0 0;
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  .iec__header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
  }

  .iec__label {
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #b8935a;
    margin: 0 0 0.4rem;
  }

  .iec__heading {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 400;
    color: #1a1a1a;
    margin: 0;
    font-family: var(--font-primary--family, serif);
  }

  .iec__count {
    font-size: 1rem;
    color: #aaa;
    margin: 0;
    white-space: nowrap;
    padding-bottom: 0.25rem;
  }

  /* Scroll */
  .iec__scroll-wrapper {
    overflow-x: auto;
    overflow-y: visible;
    scrollbar-width: none;
    cursor: grab;
    user-select: none;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.5rem;
  }

  .iec__scroll-wrapper::-webkit-scrollbar { display: none; }
  .iec__scroll-wrapper.is-dragging { cursor: grabbing; }

  .iec__track {
    display: flex;
    gap: 1.25rem;
    width: max-content;
  }

  /* Card */
  .iec__card {
    flex-shrink: 0;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
    transition: box-shadow 0.2s;
  }

  .iec__card:hover { box-shadow: 0 6px 20px rgba(0,0,0,0.1); }

  .iec__card-img {
    height: 240px;
    overflow: hidden;
  }

  .iec__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
    transition: transform 0.4s ease;
  }

  .iec__card:hover .iec__img { transform: scale(1.04); }
  .iec__img--ph { background: #ccc; width: 100%; height: 100%; }

  .iec__card-body {
    padding: 1.25rem 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    flex: 1;
  }

  .iec__name {
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #1a1a1a;
    margin: 0;
  }

  .iec__specialty {
    font-size: 0.82rem;
    color: #b8935a;
    margin: 0;
    font-weight: 500;
  }

  .iec__specialty em { font-style: italic; }

  .iec__bio {
    font-size: 0.8rem;
    line-height: 1.7;
    color: #666;
    margin: 0;
  }

  .iec__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
  }

  .iec__tag {
    border: 1px solid #ddd;
    border-radius: 999px;
    padding: 0.25rem 0.75rem;
    font-size: 0.65rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #888;
  }

  .iec__divider {
    border: none;
    border-top: 1px solid #eee;
    margin: 0.25rem 0;
  }

  .iec__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    margin-top: auto;
  }

  .iec__pricing {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
  }

  .iec__price {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a1a;
  }

  .iec__duration {
    font-size: 0.8rem;
    color: #aaa;
  }

  .iec__book-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: #6b4f38;
    color: #fff;
    border-radius: 999px;
    padding: 0.6rem 1.25rem;
    font-size: 0.8rem;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.2s, gap 0.2s;
    white-space: nowrap;
  }

  .iec__book-btn:hover { background: #4e3828; gap: 0.6rem; }
/* END_SECTION:inyou-expert-category */
/* START_SECTION:inyou-faq-grouped (INDEX:48) */
.ifaqg { width: 100%; }

  .ifaqg__wrap {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
  }

  .ifaqg__heading {
    font-size: clamp(1.8rem, 3.2vw, 2.5rem);
    font-weight: 800;
    color: #211f52;
    margin: 0 0 0.75rem;
    letter-spacing: -0.01em;
  }

  .ifaqg__group-label {
    font-size: 1.3rem;
    font-weight: 600;
    color: #211f52;
    margin: 1.75rem 0 0.15rem;
  }

  /* ── Accordion item ── */
  .ifaqg__item {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(33, 31, 82, 0.06);
    overflow: hidden;
  }

  .ifaqg__q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    background: none;
    border: none;
    padding: 1.1rem 1.4rem;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 500;
    color: #211f52;
    text-align: left;
    cursor: pointer;
  }

  .ifaqg__toggle {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #211f52;
    transition: transform 0.25s ease;
  }
  .ifaqg__item.is-open .ifaqg__toggle { transform: rotate(45deg); }

  .ifaqg__a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
  }
  .ifaqg__item.is-open .ifaqg__a { max-height: 600px; }

  .ifaqg__a-inner {
    padding: 0 1.4rem 1.1rem;
    font-size: 0.9rem;
    line-height: 1.6;
    color: #4a4a63;
  }
  .ifaqg__a-inner p { margin: 0 0 0.6rem; }
  .ifaqg__a-inner p:last-child { margin-bottom: 0; }
  .ifaqg__a-inner a { color: #5b4fe0; text-decoration: underline; }

  /* ── Mobile ── */
  @media screen and (max-width: 749px) {
    .ifaqg__wrap { padding: 0 1.25rem; }
    .ifaqg__q { padding: 1rem 1.1rem; font-size: 0.9rem; }
    .ifaqg__a-inner { padding: 0 1.1rem 1rem; }
  }
/* END_SECTION:inyou-faq-grouped */
/* START_SECTION:inyou-feature-icons (INDEX:51) */
.iyfi__wrap {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}
.iyfi__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.6rem;
  flex: 1;
  padding: 0 1.2rem;
  position: relative;
}
.iyfi__item + .iyfi__item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 55%;
  width: 1px;
  background: #ddd;
}
.iyfi__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
}
.iyfi__logo-img {
  width: 64px;
  height: auto;
  max-width: 100px;
  object-fit: contain;
  display: block;
}
.iyfi__label {
  font-size: 0.72rem;
  line-height: 1.45;
  max-width: 130px;
  margin: 0;
}
/* END_SECTION:inyou-feature-icons */
/* START_SECTION:inyou-footer-alt (INDEX:54) */
.iyfa {
    width: 100%;
    background: #fff;
    overflow: hidden;
  }

  /* Top row */
  .iyfa__inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2.5rem 4vw 2rem;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 2rem;
  }

  /* Left: legal */
  .iyfa__legal {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    padding-top: 0.25rem;
  }

  .iyfa__copyright {
    font-size: 0.82rem;
    color: #888;
    white-space: nowrap;
  }

  .iyfa__policy-link {
    font-size: 0.82rem;
    color: #888;
    text-decoration: underline;
    text-underline-offset: 3px;
    white-space: nowrap;
    transition: color 0.2s;
  }

  .iyfa__policy-link:hover { color: #1a1a1a; }

  /* Right: nav */
  .iyfa__right {
    flex-shrink: 0;
  }

  .iyfa__nav {
    display: grid;
    grid-template-columns: repeat(3, auto);
    gap: 0.5rem 3.5rem;
    align-items: start;
    flex-shrink: 0;
  }

  .iyfa__nav-col {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  .iyfa__nav-primary {
    font-size: clamp(1rem, 1.3vw, 1.2rem);
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
    display: block;
    line-height: 1.4;
    transition: opacity 0.2s;
  }

  .iyfa__nav-primary:hover { opacity: 0.55; }
  .iyfa__nav-heading { cursor: default; }

  .iyfa__nav-secondary {
    font-size: 0.78rem;
    color: #999;
    text-decoration: none;
    display: block;
    transition: color 0.2s;
  }

  .iyfa__nav-secondary:hover { color: #1a1a1a; }

  /* Bottom row: logo + social */
  .iyfa__bottom-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.5rem;
    padding-right: 4vw;
  }

  /* Social icons */
  .iyfa__social {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
    padding-bottom: 1.5rem;
  }

  .iyfa__social-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #1a1a1a;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
    flex-shrink: 0;
  }

  .iyfa__social-btn:hover {
    background: #444;
    transform: translateY(-2px);
  }

  /* Wordmark */
  .iyfa__wordmark-wrap {
    overflow: hidden;
    height: 300px;
    display: flex;
    align-items: flex-end;
    padding-left: 0;
    flex: 1;
    min-width: 0;
    position: relative;
    right: 26px;
  }

  .iyfa__logo-img,
  .iyfa__logo-media {
    max-width: none;
    width: auto;
    height: 100%;
    max-height: 300px;
    display: block;
    object-fit: contain;
    object-position: bottom left;
  }

  .iyfa__wordmark {
    font-size: clamp(8rem, 17vw, 20rem);
    font-weight: 700;
    line-height: 0.88;
    color: #1a1a1a;
    letter-spacing: -0.02em;
    white-space: nowrap;
    transform: translateY(12%);
    display: inline-block;
    font-family: var(--font-primary--family, serif);
    position: relative;
  }

  /* ® — fixed size, moved up relative to baseline */
  .iyfa__reg {
    display: inline-block;
    font-size: 1.8rem;
    font-weight: 400;
    vertical-align: baseline;
    transform: translateY(-8rem);
    letter-spacing: 0;
    line-height: 1;
    font-family: var(--font-body--family, sans-serif);
    margin-left: 0.3rem;
  }

  @media screen and (max-width: 749px) {
    .iyfa__inner {
      flex-direction: column;
      gap: 2rem;
    }

    .iyfa__nav {
      grid-template-columns: 1fr 1fr;
      gap: 1.5rem;
    }

    .iyfa__bottom-row {
      flex-direction: column;
      align-items: flex-start;
      gap: 1rem;
      padding-right: 0;
    }

    .iyfa__social {
      justify-content: flex-start;
      padding: 0 4vw 1.5rem;
    }

    .iyfa__wordmark-wrap { height: 200px; flex: none; width: 100%; }
    .iyfa__wordmark { font-size: clamp(5rem, 22vw, 9rem); }
    .iyfa__reg { font-size: 1.2rem; margin-top: 0.5rem; }
  }
/* END_SECTION:inyou-footer-alt */
/* START_SECTION:inyou-how-it-works (INDEX:60) */
.ihiw {
    width: 100%;
    padding: 5rem 0;
  }

  .ihiw__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 4vw;
    display: flex;
    flex-direction: column;
    gap: 4rem;
  }

  .ihiw__header {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }

  .ihiw__heading {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 400;
    color: #1a1a1a;
    margin: 0;
    font-family: var(--font-primary--family, serif);
  }

  .ihiw__subtext {
    font-size: 1rem;
    color: #aaa;
    margin: 0;
  }

  .ihiw__steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }

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

  .ihiw__icon-wrap {
    width: 88px;
    height: 88px;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    flex-shrink: 0;
  }

  .ihiw__step-body { display: flex; flex-direction: column; gap: 0.5rem; }

  .ihiw__step-title {
    font-size: 1.05rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
  }

  .ihiw__step-body p {
    font-size: 0.85rem;
    line-height: 1.75;
    color: #888;
    margin: 0;
  }

  @media screen and (max-width: 749px) {
    .ihiw__steps { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  }
/* END_SECTION:inyou-how-it-works */
/* START_SECTION:inyou-ingredient-catalog (INDEX:66) */
.icat { width: 100%; box-sizing: border-box; }

  .icat__wrap {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    box-sizing: border-box;
  }

  .icat__head { text-align: center; margin-bottom: 2rem; }
  .icat__heading {
    font-family: var(--icat-heading-font);
    color: var(--icat-heading-color);
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    margin: 0 0 0.6rem;
    letter-spacing: -0.01em;
  }
  .icat__subheading {
    color: var(--icat-text-color);
    font-size: 1rem;
    line-height: 1.5;
    max-width: 620px;
    margin: 0 auto;
  }

  /* ── Filter pills ── */
  .icat__filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    justify-content: center;
    margin-bottom: 2.25rem;
  }
  .icat__filter-pill {
    padding: 0.65rem 1.3rem;
    border-radius: 999px;
    border: 1px solid var(--icat-pill-border);
    background: var(--icat-pill-bg);
    color: var(--icat-pill-text);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
  }
  .icat__filter-pill.is-active {
    background: var(--icat-pill-active-bg);
    color: var(--icat-pill-active-text);
    border-color: var(--icat-pill-active-bg);
  }

  /* ── Grid ── */
  .icat__grid {
    display: grid;
    grid-template-columns: repeat(var(--icat-cols), 1fr);
    gap: 1.75rem 1.5rem;
  }

  .icat__card {
    appearance: none;
    border: none;
    background: none;
    padding: 0;
    margin: 0;
    font: inherit;
    text-align: left;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    box-sizing: border-box;
    width: 100%;
  }

  .icat__card-img-wrap {
    position: relative;
    aspect-ratio: 1 / 1;
    border-radius: 14px;
    overflow: hidden;
    background: var(--icat-tile-bg);
    margin-bottom: 0.9rem;
  }
  .icat__card-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
  }
  .icat__card:hover .icat__card-img { transform: scale(1.04); }

  .icat__card-plus {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--icat-plus-bg);
    color: var(--icat-plus-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    line-height: 1;
  }

  .icat__card-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--icat-name-color);
    margin-bottom: 0.2rem;
  }
  .icat__card-sub {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--icat-sub-color);
  }

  /* ── Overlay + drawer ── */
  .icat__overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    z-index: 998;
  }
  .icat__overlay.is-open { opacity: 1; visibility: visible; }

  .icat__drawer {
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    width: min(480px, 100%);
    max-width: 100%;
    background: var(--icat-drawer-bg);
    z-index: 999;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    display: flex;
    flex-direction: column;
    box-shadow: -8px 0 30px rgba(0, 0, 0, 0.15);
  }
  .icat__drawer.is-open { transform: translateX(0); }

  .icat__drawer-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: var(--icat-close-bg);
    color: var(--icat-close-color);
    font-size: 1.4rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
  }

  .icat__drawer-body { flex: 1; overflow-y: auto; }

  .icat__drawer-image-wrap { width: 100%; aspect-ratio: 16 / 9; overflow: hidden; }
  .icat__drawer-image { width: 100%; height: 100%; object-fit: cover; display: block; }

  .icat__drawer-content { padding: 1.75rem 2rem 0.5rem; }

  .icat__drawer-eyebrow {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: var(--icat-drawer-eyebrow-color);
    margin: 0 0 0.6rem;
  }
  .icat__drawer-heading {
    font-family: var(--icat-heading-font);
    font-size: clamp(1.6rem, 3vw, 2.1rem);
    color: var(--icat-drawer-heading-color);
    margin: 0 0 0.9rem;
    line-height: 1.15;
  }
  .icat__drawer-desc {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--icat-drawer-text-color);
    margin: 0 0 0.5rem;
  }
  .icat__drawer-desc p { margin: 0 0 0.9rem; }
  .icat__drawer-desc p:last-child { margin-bottom: 0; }

  .icat__drawer-row {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 1.25rem;
    padding: 1.4rem 0;
    border-top: 1px solid var(--icat-drawer-divider);
    align-items: start;
  }
  .icat__drawer-row--no-label { grid-template-columns: 1fr; }
  .icat__drawer-row-label span {
    display: inline-block;
    background: var(--icat-drawer-label-bg);
    color: var(--icat-drawer-label-color);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.5rem 0.9rem;
    border-radius: 8px;
  }
  .icat__drawer-row-text {
    font-size: 0.92rem;
    line-height: 1.6;
    color: var(--icat-drawer-text-color);
    margin: 0;
  }
  .icat__drawer-row-text p { margin: 0 0 0.7rem; }
  .icat__drawer-row-text p:last-child { margin-bottom: 0; }

  .icat__drawer-footnote {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    border-top: 1px solid var(--icat-drawer-divider);
    padding: 1.2rem 0 1.75rem;
    margin: 0;
  }
  .icat__drawer-footnote-link {
    font-size: 0.75rem;
    color: var(--icat-footnote-color);
    text-decoration: underline;
    text-underline-offset: 2px;
    word-break: break-word;
  }

  .icat__drawer-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding: 0.9rem;
    border-top: 1px solid var(--icat-drawer-divider);
    background: var(--icat-drawer-bg);
  }
  .icat__nav-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--icat-drawer-divider);
    background: none;
    color: var(--icat-nav-color);
    font-size: 1.2rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .icat__nav-count {
    font-size: 0.85rem;
    color: var(--icat-nav-color);
    min-width: 60px;
    text-align: center;
  }

  /* ── Mobile ── */
  @media screen and (max-width: 749px) {
    .icat__wrap { padding: 0 1.25rem; }
    .icat__grid { grid-template-columns: repeat(2, 1fr); gap: 1.25rem 1rem; }
    .icat__drawer { width: 100%; }
    .icat__drawer-content { padding: 1.5rem 1.25rem 0.5rem; }
    .icat__drawer-row { grid-template-columns: 1fr; gap: 0.6rem; }
  }
/* END_SECTION:inyou-ingredient-catalog */
/* START_SECTION:inyou-ingredient-wave-banner (INDEX:69) */
.iwb { width: 100%; box-sizing: border-box; }

  .iwb__banner {
    position: relative;
    width: 100%;
    height: var(--iwb-banner-height);
    border-radius: 20px;
    overflow: hidden;
  }

  .iwb__bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: blur(var(--iwb-live-blur, 0px));
  }
  .iwb__bg-img--ph { background: #1c2f2a; opacity: 0.6; }

  .iwb__gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, var(--iwb-gradient-color) 0%, var(--iwb-gradient-color) 38%, transparent 68%);
  }

  .iwb__text {
    position: relative;
    z-index: 2;
    height: 100%;
    max-width: 380px;
    padding: 2.75rem 0 2.75rem 2.75rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-sizing: border-box;
  }

  .iwb__heading {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 400;
    font-style: italic;
    font-size: clamp(1.4rem, 2.4vw, 1.9rem);
    line-height: 1.3;
    color: var(--iwb-text-color);
    margin: 0;
  }

  .iwb__subtext {
    font-size: 0.85rem;
    line-height: 1.6;
    color: var(--iwb-text-color);
    opacity: 0.85;
  }
  .iwb__subtext p { margin: 0; }
  .iwb__subtext strong { font-weight: 700; }

  /* ── Wave ── */
  .iwb__wave-wrap {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    pointer-events: none;
  }

  .iwb__wave {
    width: 100%;
    height: 55%;
    display: block;
  }

  .iwb__wave-path {
    fill: none;
    stroke: var(--iwb-wave-color);
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-dasharray: 1400;
    stroke-dashoffset: var(--iwb-wave-dashoffset, 1400);
    opacity: var(--iwb-wave-opacity, 0);
  }
  .iwb__wave-path--2 { stroke-width: 1; opacity: calc(var(--iwb-wave-opacity, 0) * 0.6); }
  .iwb__wave-path--3 { stroke-width: 1; opacity: calc(var(--iwb-wave-opacity, 0) * 0.35); }

  /* ── Peak callout ── */
  .iwb__peak {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    opacity: var(--iwb-peak-opacity, 0);
  }

  .iwb__peak-label {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--iwb-text-color);
    white-space: nowrap;
  }
  .iwb__peak-label--bottom {
    background: var(--iwb-label-bg);
    text-transform: none;
    letter-spacing: 0;
    font-weight: 500;
    font-size: 0.78rem;
    padding: 0.4rem 0.85rem;
    border-radius: 6px;
  }

  .iwb__peak-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--iwb-dot-color);
    flex-shrink: 0;
  }

  .iwb__peak-line {
    width: 1px;
    height: 34px;
    background: repeating-linear-gradient(to bottom, var(--iwb-dot-color) 0 3px, transparent 3px 6px);
  }

  /* ── Mobile ── */
  @media screen and (max-width: 749px) {
    .iwb__banner { height: auto; min-height: 480px; }
    .iwb__text { max-width: none; padding: 2rem 1.5rem; }
    .iwb__gradient { background: linear-gradient(180deg, var(--iwb-gradient-color) 0%, var(--iwb-gradient-color) 55%, transparent 85%); }
    .iwb__wave-wrap { align-items: flex-end; padding-bottom: 1.5rem; }
    .iwb__wave { height: 35%; }
  }
/* END_SECTION:inyou-ingredient-wave-banner */
/* START_SECTION:inyou-options-carousel (INDEX:76) */
.iopts { width: 100%; }

  .iopts__wrap {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 2rem;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  .iopts__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 2rem;
  }

  .iopts__head-text { display: flex; flex-direction: column; gap: 0.75rem; max-width: 640px; }

  .iopts__heading {
    font-size: clamp(1.7rem, 3vw, 2.3rem);
    font-weight: 800;
    color: #211f52;
    margin: 0;
    letter-spacing: -0.01em;
  }

  .iopts__subheading {
    font-size: 1rem;
    line-height: 1.55;
    color: #4a4a63;
    margin: 0;
  }

  .iopts__arrows { display: flex; gap: 0.75rem; flex-shrink: 0; }
  .iopts__arrow {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1.5px solid #211f52;
    background: transparent;
    color: #211f52;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s, color 0.15s;
  }
  .iopts__arrow:hover { background: #211f52; color: #fff; }
  .iopts__arrow:disabled { opacity: 0.3; cursor: default; }
  .iopts__arrow:disabled:hover { background: transparent; color: #211f52; }

  /* ── Track ── */
  .iopts__track {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .iopts__track::-webkit-scrollbar { display: none; }

  /* ── Card ── */
  .iopts__card {
    flex: 0 0 calc((100% - (var(--iopts-cards-desktop) - 1) * 1.5rem) / var(--iopts-cards-desktop));
    scroll-snap-align: start;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 16px rgba(33, 31, 82, 0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
  }

  .iopts__img-wrap {
    background: #eceaf6;
    aspect-ratio: 4 / 3;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    box-sizing: border-box;
  }
  .iopts__img { max-width: 100%; max-height: 100%; width: auto; height: auto; object-fit: contain; }

  .iopts__name {
    font-size: 1.3rem;
    font-weight: 800;
    color: #211f52;
    margin: 1.25rem 1.25rem 0.75rem;
  }

  .iopts__checklist {
    list-style: none;
    margin: 0;
    padding: 0 1.25rem;
    flex: 1;
  }
  .iopts__checklist li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    padding: 0.85rem 0;
    border-bottom: 1px solid #ececf4;
    font-size: 0.9rem;
    line-height: 1.4;
    color: #3a3a55;
  }
  .iopts__checklist li svg { flex-shrink: 0; margin-top: 0.25rem; }
  .iopts__checklist li:last-child { border-bottom: none; }

  .iopts__btn {
    display: block;
    margin: 1.25rem;
    padding: 0.9rem;
    text-align: center;
    background: #fff;
    border: 1.5px solid #d8d6ea;
    border-radius: 8px;
    color: #211f52;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: border-color 0.15s;
  }
  .iopts__btn:hover { border-color: #211f52; }

  /* ── Mobile ── */
  @media screen and (max-width: 900px) {
    .iopts__wrap { padding: 0 1.25rem; gap: 1.5rem; }
    .iopts__head { flex-direction: column; gap: 1rem; }
    .iopts__card { flex: 0 0 78%; }
  }
/* END_SECTION:inyou-options-carousel */
/* START_SECTION:inyou-pdp-alt-formula (INDEX:78) */
#vpalt-fm-{{ section.id }} { width: 100%; box-sizing: border-box; overflow-x: clip; }
  #vpalt-fm-{{ section.id }} a { font-family: 'General Sans', sans-serif !important; }
  #vpalt-fm-{{ section.id }} .vpalt-fm__body,
  #vpalt-fm-{{ section.id }} .vpalt-fm__row { font-family: 'General Sans', sans-serif !important; }

  #vpalt-fm-{{ section.id }} .vpalt-fm__inner {
    display: grid;
    grid-template-columns: auto 1.3fr 1fr auto;
    gap: 2.5rem;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
    box-sizing: border-box;
  }
  #vpalt-fm-{{ section.id }} .vpalt-fm__image img { width: 140px; display: block; }
  #vpalt-fm-{{ section.id }} .vpalt-fm__heading {
    font-size: 1.6rem;
    font-weight: 500;
    color: #282731;
    margin: 0 0 0.85rem;
    line-height: 1.2;
  }
  #vpalt-fm-{{ section.id }} .vpalt-fm__body { font-size: 0.92rem; line-height: 1.6; color: #66616C; margin-bottom: 0.75rem; }
  #vpalt-fm-{{ section.id }} .vpalt-fm__link { font-size: 0.85rem; font-weight: 600; color: #8C3D63; text-decoration: underline; }

  #vpalt-fm-{{ section.id }} .vpalt-fm__table { display: flex; flex-direction: column; }
  #vpalt-fm-{{ section.id }} .vpalt-fm__row {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.55rem 0;
    border-bottom: 1px solid rgba(94,38,69,0.12);
    font-size: 0.85rem;
    color: #282731;
  }
  #vpalt-fm-{{ section.id }} .vpalt-fm__row span:first-child { font-weight: 500; }
  #vpalt-fm-{{ section.id }} .vpalt-fm__row span:last-child { color: #66616C; }

  #vpalt-fm-{{ section.id }} .vpalt-fm__botanical img { width: 180px; display: block; }

  @media screen and (max-width: 1024px) {
    #vpalt-fm-{{ section.id }} .vpalt-fm__inner { grid-template-columns: 1fr 1fr; }
    #vpalt-fm-{{ section.id }} .vpalt-fm__botanical { display: none; }
  }
  @media screen and (max-width: 640px) {
    #vpalt-fm-{{ section.id }} .vpalt-fm__inner { grid-template-columns: 1fr; padding: 0 1.25rem; text-align: center; }
    #vpalt-fm-{{ section.id }} .vpalt-fm__image { order: -1; }
    #vpalt-fm-{{ section.id }} .vpalt-fm__image img { margin: 0 auto; }
  }
/* END_SECTION:inyou-pdp-alt-formula */
/* START_SECTION:inyou-pdp-alt-highlights (INDEX:80) */
#vpalt-hl-{{ section.id }} { width: 100%; box-sizing: border-box; }
  #vpalt-hl-{{ section.id }} a { font-family: 'General Sans', sans-serif !important; }
  #vpalt-hl-{{ section.id }} .vpalt-hl__table-head,
  #vpalt-hl-{{ section.id }} .vpalt-hl__ing-name,
  #vpalt-hl-{{ section.id }} .vpalt-hl__reviewer-name { font-family: 'General Sans', sans-serif !important; }
  #vpalt-hl-{{ section.id }} .vpalt-hl__table-criterion,
  #vpalt-hl-{{ section.id }} .vpalt-hl__table-other,
  #vpalt-hl-{{ section.id }} .vpalt-hl__ing-stat,
  #vpalt-hl-{{ section.id }} .vpalt-hl__quote-text,
  #vpalt-hl-{{ section.id }} .vpalt-hl__reviewer-title { font-family: 'Manrope', sans-serif !important; }

  #vpalt-hl-{{ section.id }} .vpalt-hl__inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
    box-sizing: border-box;
    align-items: start;
  }
  #vpalt-hl-{{ section.id }} .vpalt-hl__col-heading {
    font-size: 1.15rem;
    font-weight: 500;
    color: #282731;
    margin: 0 0 1.25rem;
  }

  /* Col 1: comparison table */
  #vpalt-hl-{{ section.id }} .vpalt-hl__table-head {
    display: grid; grid-template-columns: 1.4fr 1fr; gap: 0.5rem;
    font-size: 0.7rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase;
    color: #8C3D63; padding-bottom: 0.6rem; border-bottom: 1px solid rgba(94,38,69,0.15);
  }
  #vpalt-hl-{{ section.id }} .vpalt-hl__table-row {
    display: grid; grid-template-columns: 1.4fr 1fr; gap: 0.5rem;
    padding: 0.75rem 0; border-bottom: 1px solid rgba(94,38,69,0.08);
    font-size: 0.82rem;
  }
  #vpalt-hl-{{ section.id }} .vpalt-hl__table-criterion { display: flex; align-items: flex-start; gap: 0.5rem; color: #282731; font-weight: 500; }
  #vpalt-hl-{{ section.id }} .vpalt-hl__check { width: 16px; height: 16px; flex-shrink: 0; color: #8C3D63; margin-top: 0.1em; }
  #vpalt-hl-{{ section.id }} .vpalt-hl__check svg { width: 100%; height: 100%; }
  #vpalt-hl-{{ section.id }} .vpalt-hl__table-other { color: #66616C; }

  /* Col 2: ingredient highlights */
  #vpalt-hl-{{ section.id }} .vpalt-hl__ing-list { display: flex; flex-direction: column; gap: 1.1rem; margin-bottom: 1rem; }
  #vpalt-hl-{{ section.id }} .vpalt-hl__ing-card { display: flex; gap: 0.9rem; align-items: center; }
  #vpalt-hl-{{ section.id }} .vpalt-hl__ing-media { width: 52px; height: 52px; border-radius: 50%; overflow: hidden; background: #FDEEF2; flex-shrink: 0; }
  #vpalt-hl-{{ section.id }} .vpalt-hl__ing-media img { width: 100%; height: 100%; object-fit: cover; }
  #vpalt-hl-{{ section.id }} .vpalt-hl__ing-name { font-size: 0.9rem; font-weight: 600; color: #282731; margin: 0; }
  #vpalt-hl-{{ section.id }} .vpalt-hl__ing-stat { font-size: 0.8rem; color: #66616C; margin: 0.1rem 0; }
  #vpalt-hl-{{ section.id }} .vpalt-hl__ing-link { font-size: 0.78rem; color: #8C3D63; text-decoration: underline; }
  #vpalt-hl-{{ section.id }} .vpalt-hl__view-all { display: inline-block; font-size: 0.82rem; font-weight: 600; color: #8C3D63; text-decoration: underline; }

  /* Col 3: expert review */
  #vpalt-hl-{{ section.id }} .vpalt-hl__quote-card { background: #FCF7F9; border-radius: 16px; padding: 1.5rem; }
  #vpalt-hl-{{ section.id }} .vpalt-hl__quote-mark { font-size: 2.4rem; line-height: 1; color: #E8C6D4; display: block; }
  #vpalt-hl-{{ section.id }} .vpalt-hl__quote-text { font-size: 0.9rem; line-height: 1.6; color: #282731; margin: 0.5rem 0 1.25rem; }
  #vpalt-hl-{{ section.id }} .vpalt-hl__reviewer { display: flex; align-items: center; gap: 0.75rem; }
  #vpalt-hl-{{ section.id }} .vpalt-hl__reviewer-photo { width: 42px; height: 42px; border-radius: 50%; overflow: hidden; background: #E8C6D4; flex-shrink: 0; }
  #vpalt-hl-{{ section.id }} .vpalt-hl__reviewer-photo img { width: 100%; height: 100%; object-fit: cover; }
  #vpalt-hl-{{ section.id }} .vpalt-hl__reviewer-name { font-size: 0.85rem; font-weight: 600; color: #282731; margin: 0; }
  #vpalt-hl-{{ section.id }} .vpalt-hl__reviewer-title { font-size: 0.75rem; color: #66616C; margin: 0; }

  @media screen and (max-width: 900px) {
    #vpalt-hl-{{ section.id }} .vpalt-hl__inner { grid-template-columns: 1fr; padding: 0 1.25rem; }
  }
/* END_SECTION:inyou-pdp-alt-highlights */
/* START_SECTION:inyou-pdp-alt-ingredients (INDEX:81) */
#vpalt-ing-{{ section.id }} { width: 100%; box-sizing: border-box; background: #FCF7F9; }
  #vpalt-ing-{{ section.id }} a { font-family: 'General Sans', sans-serif !important; }
  #vpalt-ing-{{ section.id }} .vpalt-ing__subheading,
  #vpalt-ing-{{ section.id }} .vpalt-ing__name { font-family: 'Manrope', sans-serif !important; }

  #vpalt-ing-{{ section.id }} .vpalt-ing__inner { max-width: 1100px; margin: 0 auto; padding: 0 2rem; box-sizing: border-box; text-align: center; }
  #vpalt-ing-{{ section.id }} .vpalt-ing__heading {
    font-size: 1.7rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: #282731;
    margin: 0 0 0.5rem;
  }
  #vpalt-ing-{{ section.id }} .vpalt-ing__subheading {
    font-size: 0.9rem;
    color: #66616C;
    margin: 0 0 2rem;
  }
  /* ── Marquee carousel (same mechanism as INYOU Trust Badges) ── */
  #vpalt-ing-{{ section.id }} .vpalt-ing__row {
    width: 100%;
    overflow: hidden;
    margin-bottom: 1.75rem;
  }

  @keyframes vpaltIngFwd {
    from { transform: translateX(0); }
    to   { transform: translateX(-25%); }
  }

  @keyframes vpaltIngRev {
    from { transform: translateX(-25%); }
    to   { transform: translateX(0); }
  }

  #vpalt-ing-{{ section.id }} .vpalt-ing__track {
    display: flex;
    align-items: flex-start;
    width: max-content;
    gap: 1.25rem;
    will-change: transform;
  }

  #vpalt-ing-{{ section.id }} .vpalt-ing__track--fwd {
    animation: vpaltIngFwd var(--vpalt-ing-speed, 24s) linear infinite;
  }

  #vpalt-ing-{{ section.id }} .vpalt-ing__track--rev {
    animation: vpaltIngRev var(--vpalt-ing-speed, 24s) linear infinite;
  }

  #vpalt-ing-{{ section.id }} .pause-on-hover .vpalt-ing__track:hover {
    animation-play-state: paused;
  }

  #vpalt-ing-{{ section.id }} .vpalt-ing__item { flex-shrink: 0; display: flex; flex-direction: column; align-items: center; width: 96px; }
  #vpalt-ing-{{ section.id }} .vpalt-ing__circle {
    width: 84px;
    height: 84px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 4px 16px rgba(94,38,69,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 0.6rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: #8C3D63;
  }
  #vpalt-ing-{{ section.id }} .vpalt-ing__circle img { width: 100%; height: 100%; object-fit: cover; }
  #vpalt-ing-{{ section.id }} .vpalt-ing__circle-fallback { font-family: 'Fraunces', serif; text-transform: uppercase; }
  #vpalt-ing-{{ section.id }} .vpalt-ing__name { font-size: 0.75rem; font-weight: 500; color: #282731; margin: 0; }
  #vpalt-ing-{{ section.id }} .vpalt-ing__view-all {
    display: inline-block;
    font-size: 0.82rem;
    font-weight: 600;
    color: #8C3D63;
    text-decoration: underline;
  }
/* END_SECTION:inyou-pdp-alt-ingredients */
/* START_SECTION:inyou-pdp-alt-trust-faq (INDEX:84) */
#vpalt-tf-{{ section.id }} { width: 100%; box-sizing: border-box; }
  #vpalt-tf-{{ section.id }} a { font-family: 'General Sans', sans-serif !important; }
  #vpalt-tf-{{ section.id }} .vpalt-tf__faq-btn span:first-child { font-family: 'General Sans', sans-serif !important; }
  #vpalt-tf-{{ section.id }} .vpalt-tf__faq-body-inner,
  #vpalt-tf-{{ section.id }} .vpalt-tf__cert span:last-child { font-family: 'Manrope', sans-serif !important; }

  #vpalt-tf-{{ section.id }} .vpalt-tf__inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
    box-sizing: border-box;
    align-items: start;
  }
  #vpalt-tf-{{ section.id }} .vpalt-tf__col-heading { font-size: 1.15rem; font-weight: 500; color: #282731; margin: 0 0 1.25rem; }
  #vpalt-tf-{{ section.id }} .vpalt-tf__view-all { display: inline-block; margin-top: 1rem; font-size: 0.82rem; font-weight: 600; color: #8C3D63; text-decoration: underline; }

  /* Col 1: FAQ */
  #vpalt-tf-{{ section.id }} .vpalt-tf__faq-item { border-bottom: 1px solid rgba(94,38,69,0.12); }
  #vpalt-tf-{{ section.id }} .vpalt-tf__faq-btn {
    width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
    background: none; border: none; padding: 0.9rem 0; text-align: left; cursor: pointer;
    font-size: 0.9rem; font-weight: 500; color: #282731;
  }
  #vpalt-tf-{{ section.id }} .vpalt-tf__faq-chevron { flex-shrink: 0; color: #8C3D63; transition: transform 0.2s ease; }
  #vpalt-tf-{{ section.id }} .vpalt-tf__faq-item.is-open .vpalt-tf__faq-chevron { transform: rotate(180deg); }
  #vpalt-tf-{{ section.id }} .vpalt-tf__faq-body { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
  #vpalt-tf-{{ section.id }} .vpalt-tf__faq-item.is-open .vpalt-tf__faq-body { max-height: 400px; }
  #vpalt-tf-{{ section.id }} .vpalt-tf__faq-body-inner { font-size: 0.85rem; line-height: 1.6; color: #66616C; padding-bottom: 1rem; }

  /* Col 2: certs — circular icon badges matching the ingredients/benefit-icons visual language */
  #vpalt-tf-{{ section.id }} .vpalt-tf__certs { display: grid; grid-template-columns: 1fr 1fr; gap: 1.75rem 1rem; }
  #vpalt-tf-{{ section.id }} .vpalt-tf__cert { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 0.65rem; }
  #vpalt-tf-{{ section.id }} .vpalt-tf__cert-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 4px 16px rgba(94,38,69,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8C3D63;
    flex-shrink: 0;
  }
  #vpalt-tf-{{ section.id }} .vpalt-tf__cert-icon svg { width: 24px; height: 24px; }
  #vpalt-tf-{{ section.id }} .vpalt-tf__cert-icon img { width: 100%; height: 100%; object-fit: contain; border-radius: 50%; }
  #vpalt-tf-{{ section.id }} .vpalt-tf__cert-label { font-size: 0.8rem; font-weight: 500; color: #282731; line-height: 1.3; }

  /* Col 3: photos */
  #vpalt-tf-{{ section.id }} .vpalt-tf__photos { display: flex; flex-wrap: wrap; gap: 0.85rem; }
  #vpalt-tf-{{ section.id }} .vpalt-tf__photo {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    overflow: hidden;
    background: #FBEEF1;
    box-shadow: 0 4px 16px rgba(94,38,69,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #D88AA0;
  }
  #vpalt-tf-{{ section.id }} .vpalt-tf__photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
  #vpalt-tf-{{ section.id }} .vpalt-tf__photo-fallback { width: 26px; height: 26px; display: flex; }
  #vpalt-tf-{{ section.id }} .vpalt-tf__photo-fallback svg { width: 100%; height: 100%; }

  @media screen and (max-width: 900px) {
    #vpalt-tf-{{ section.id }} .vpalt-tf__inner { grid-template-columns: 1fr; padding: 0 1.25rem; }
  }
/* END_SECTION:inyou-pdp-alt-trust-faq */
/* START_SECTION:inyou-quote-banner (INDEX:100) */
.iqb {
    position: relative;
    width: 100%;
    height: 626px;
    overflow: hidden;
  }

  .iqb__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
  }

  .iqb__bg--dark { background: #1a1a1a; }

  .iqb__bg--video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
  }

  .iqb__bg--poster {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
  }

  .iqb__inner {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 4rem 8vw 0;
    max-width: 1400px;
    margin: 0 auto;
    box-sizing: border-box;
  }

  .iqb__content {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    text-align: center;
  }

  .iqb__heading {
    font-size: clamp(1.8rem, 4vw, 3.2rem);
    font-weight: 300;
    line-height: 1.3;
    color: #fff;
    margin: 0;
    font-family: var(--font-primary--family, serif);
  }

  .iqb__subtext {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    margin: 0;
    letter-spacing: 0.02em;
  }

  /* Decorative quote — image or fallback text */
  .iqb__quote-wrap {
    align-self: flex-start;
  }

  .iqb__quote-img {
    width: clamp(120px, 20vw, 280px);
    height: auto;
    display: block;
    opacity: 0.9;
  }

  .iqb__quote-marks {
    display: block;
    font-size: clamp(10rem, 20vw, 22rem);
    line-height: 0.7;
    color: #f0e8d8;
    font-family: Georgia, serif;
    user-select: none;
    opacity: 0.9;
    margin-left: -2vw;
  }

  @media screen and (max-width: 749px) {
    .iqb { height: auto; min-height: 400px; }
    .iqb__inner { padding: 3rem 5vw 0; }
    .iqb__heading { font-size: 1.6rem; }
    .iqb__quote-marks { font-size: clamp(7rem, 30vw, 12rem); }
  }
/* END_SECTION:inyou-quote-banner */
/* START_SECTION:inyou-science-slider (INDEX:113) */
.iss {
    width: 100%;
    background: {{ section.settings.background_color }};
    padding: 4rem 0 3.5rem;
  }

  .iss__inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5vw;
    position: relative;
  }

  /* Slide */
  .iss__slide {
    display: none;
    grid-template-columns: 52fr 48fr;
    align-items: center;
    gap: 4rem;
    min-height: 560px;
  }

  .iss__slide.is-active {
    display: grid;
  }

  /* ── Left: text ── */
  .iss__text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding-bottom: 4rem;
  }

  .iss__counter {
    margin: 0;
    line-height: 1;
    display: flex;
    align-items: baseline;
    gap: 0.05em;
  }

  .iss__counter em {
    font-size: 2.2rem;
    font-style: italic;
    font-weight: 400;
    color: #999;
  }

  .iss__counter span {
    font-size: 1.1rem;
    color: #bbb;
    font-weight: 400;
  }

  .iss__heading {
    font-size: clamp(1.9rem, 3.5vw, 3rem);
    font-weight: 500;
    line-height: 1.25;
    color: #1a1a1a;
    margin: 0;
  }

  .iss__heading em {
    font-style: italic;
    font-weight: 400;
    color: #888;
  }

  .iss__body {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .iss__body p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #555;
    margin: 0;
  }

  .iss__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    border: 1.5px solid #1a1a1a;
    border-radius: 999px;
    padding: 0.85rem 1.75rem;
    font-size: 0.9rem;
    color: #1a1a1a;
    text-decoration: none;
    width: fit-content;
    transition: background 0.2s, color 0.2s, gap 0.2s;
    margin-top: 0.5rem;
  }

  .iss__btn:hover {
    background: #1a1a1a;
    color: #fff;
    gap: 0.9rem;
  }

  /* ── Right: image ── */
  .iss__media {
    display: flex;
    align-items: center;
    justify-content: center;
  }

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

  .iss__img--ph {
    width: 100%;
    min-height: 400px;
    background: #e5e5e5;
  }

  /* ── Navigation arrows ── */
  .iss__nav {
    position: absolute;
    bottom: 0;
    right: 5vw;
    display: flex;
    gap: 0.5rem;
  }

  .iss__arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid #ccc;
    background: none;
    color: #333;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.2s, background 0.2s, color 0.2s;
  }

  .iss__arrow:hover {
    border-color: #1a1a1a;
    background: #1a1a1a;
    color: #fff;
  }

  /* Slide transition */
  .iss__slide {
    animation: none;
  }

  .iss__slide.is-active {
    animation: issFadeIn 0.4s ease;
  }

  @keyframes issFadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  /* Mobile */
  @media screen and (max-width: 749px) {
    .iss__slide.is-active {
      grid-template-columns: 1fr;
      gap: 2rem;
      min-height: unset;
    }

    .iss__text {
      padding-bottom: 1rem;
      order: 2;
    }

    .iss__media {
      order: 1;
    }

    .iss__nav {
      position: static;
      margin-top: 1.5rem;
      justify-content: flex-end;
    }

    .iss {
      padding: 2.5rem 0 2rem;
    }
  }
/* END_SECTION:inyou-science-slider */
/* START_SECTION:inyou-science-split (INDEX:114) */
.iss *, .iss *::before, .iss *::after { box-sizing: border-box; }

/* ── Hero ── */
.iss__hero {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 12px;
}

.iss__hero-media {
  display: block;
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.iss__hero-ph {
  height: 480px;
  background: #2a3a2a;
}

.iss__hero-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.iss__hero-heading {
    position: absolute;
    bottom: 200px;
    left: 2rem;
    right: 2rem;
    font-size: clamp(1.6rem, 3vw, 2.6rem);
    font-weight: 600;
    line-height: 1.25;
    margin-bottom: 130px;
    max-width: 100%;
}

/* ── Feature grid ── */
.iss__features {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 1rem;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 0 !important;
}

.iss__feature {
  padding: 0 1.5rem 0 0;
  border-right: 1px solid rgba(255,255,255,0.15);
}
.iss__feature:last-child { border-right: none; padding-right: 0; }
.iss__feature:not(:first-child) { padding-left: 1.5rem; }

.iss__feat-icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
  margin-bottom: 0.75rem;
  opacity: 0.9;
}

.iss__feat-icon-svg {
  width: 40px;
  height: 40px;
  margin-bottom: 0.75rem;
}
.iss__feat-icon-svg svg { width: 100%; height: 100%; }

.iss__feat-title {
  font-size: 0.9rem;
  font-weight: 600;
  margin: 0 0 0.4rem;
  line-height: 1.3;
}

.iss__feat-desc {
  font-size: 0.78rem;
  margin: 0;
  line-height: 1.6;
  opacity: 0.8;
}

/* ── Split cards ── */
.iss__cards {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 12px;
}

.iss__card {
  position: relative;
  overflow: hidden;
  min-height: 34.25rem;
}

.iss__card-media {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.iss__card-ph {
  position: absolute;
  inset: 0;
  background: #1a2a1a;
}

/* Card B: product sits in the CENTER of the card (left 38% = text, center 34% = product, right 28% = annotations) */
.iss__card-media--b {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 53%;
  width: 36%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  display: block;
  pointer-events: none;
}

/* Image-only mode: product image fills the whole card, no text overlay */
.iss__card--b-image-only .iss__card-media--b {
  left: 0;
  width: 100%;
  object-fit: cover;
  object-position: center center;
}

.iss__card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
}

.iss__card-heading {
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 0.3rem;
}

.iss__card-text {
  font-size: 0.82rem;
  margin: 0;
  line-height: 1.6;
  opacity: 0.85;
}

/* Card B content layout — left 36% only */
.iss__card-content--b {
  bottom: auto;
  top: 80px;
  right: auto;
  width: 42%;
  padding: 2rem 1.5rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.iss__card-heading--b {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 600;
  line-height: 1.3;
  margin: 0;
}

.iss__card-text--b {
  font-size: 0.85rem;
  line-height: 1.65;
  opacity: 0.85;
  margin: 0;
}

.iss__card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
  margin-top: 0.25rem;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: inherit;
  line-height: inherit;
  width: auto;
}

/* Annotations — plain text with connector line (no box) */
.iss__ann {
  position: absolute;
  right: 2rem;
  max-width: 200px;
}

/* connector line above annotation text */
.iss__ann::before {
  content: '';
  display: block;
  width: 48px;
  height: 1px;
  background: rgba(255,255,255,0.45);
  margin-bottom: 0.55rem;
  position: relative;
}

/* dot at the left end of the connector line */
.iss__ann::after {
  content: '';
  position: absolute;
  left: 46px;
  top: 4px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,0.7);
}

.iss__ann-title {
  font-size: 0.82rem;
  font-weight: 600;
  margin: 0 0 0.25rem;
  line-height: 1.3;
}

.iss__ann-desc {
  font-size: 0.75rem;
  margin: 0;
  line-height: 1.55;
  opacity: 0.75;
}

/* ── Responsive ── */
@media screen and (max-width: 900px) {
  .iss__features { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .iss__feature { border-right: none; padding: 0; }
  .iss__hero-heading { bottom: 280px; }
}

@media screen and (max-width: 749px) {
  .iss__cards { grid-template-columns: 1fr; }
  .iss__card { min-height: 300px; }
  .iss__features { grid-template-columns: 1fr 1fr; position: relative; margin-top: 0; }
  .iss__hero-heading { bottom: 0; position: relative; padding: 1rem; color: #1a1a1a !important; }
  .iss__hero { border-radius: 12px; }
  .iss__card-content--b { width: 100%; position: relative; padding: 1.5rem; top: 0; }
  .iss__card-media--b { display: none; }
  .iss__ann { display: none; }
}

/* ── Drawer ── */
.iss__drawer {
  position: fixed;
  inset: 0;
  z-index: 9999;
  visibility: hidden;
}
.iss__drawer.is-open { visibility: visible; }

.iss__drawer-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
  opacity: 0;
  transition: opacity 0.35s ease;
  cursor: pointer;
}
.iss__drawer.is-open .iss__drawer-overlay { opacity: 1; }

.iss__drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(480px, 92vw);
  background: #fff;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  display: flex;
  flex-direction: column;
}
.iss__drawer.is-open .iss__drawer-panel { transform: translateX(0); }

.iss__drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 1.75rem 1rem;
  flex-shrink: 0;
}

.iss__drawer-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
  color: #1a1a1a;
}

.iss__drawer-close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
  color: #444;
  display: flex;
  align-items: center;
}

.iss__drawer-divider {
  height: 1px;
  background: #e0e0e0;
  margin: 0 1.75rem;
  flex-shrink: 0;
}
.iss__drawer-divider--dashed {
  background: none;
  border-top: 1px dashed #d0d0d0;
  margin: 0.25rem 1.75rem;
}

.iss__drawer-body {
  padding: 0.5rem 0 2rem;
  overflow-y: auto;
  flex: 1;
}

.iss__drawer-section {
  padding: 1.5rem 1.75rem;
}

.iss__drawer-sec-title {
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 0.75rem;
  color: #1a1a1a;
}

.iss__drawer-sec-body {
  font-size: 0.875rem;
  line-height: 1.7;
  color: #444;
}
.iss__drawer-sec-body p { margin: 0 0 0.75rem; }
.iss__drawer-sec-body p:last-child { margin-bottom: 0; }
.iss__drawer-sec-body ul { padding-left: 1.25rem; margin: 0.5rem 0 0; }
.iss__drawer-sec-body li { margin-bottom: 0.4rem; }

/* Prevent body scroll when drawer open */
body.iss-drawer-open { overflow: hidden; }
/* END_SECTION:inyou-science-split */
/* START_SECTION:inyou-testimonials (INDEX:126) */
.iyt {
    width: 100%;
    padding: 4rem 0;
    background: var(--iyt-bg, #f5f4f0);
  }

  .iyt__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 4vw;
    display: grid;
    grid-template-columns: 1fr 1.8fr;
    gap: 4rem;
    align-items: center;
  }

  /* Left */
  .iyt__left {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .iyt__heading {
    font-size: clamp(1.6rem, 2.8vw, 2.4rem);
    font-weight: 400;
    line-height: 1.3;
    color: #1a1a1a;
    margin: 0;
    font-family: var(--font-primary--family, serif);
  }

  .iyt__heading em {
    font-style: italic;
    font-weight: 400;
  }

  .iyt__subtext {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--iyt-accent, #b8935a);
    margin: 0;
  }

  /* Right */
  .iyt__right {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
  }

  .iyt__slider {
    flex: 1;
    position: relative;
    min-height: 260px;
  }

  /* Slides */
  .iyt__slide {
    display: none;
    animation: iytFade 0.35s ease;
  }

  .iyt__slide.is-active { display: block; }

  @keyframes iytFade {
    from { opacity: 0; transform: translateX(12px); }
    to   { opacity: 1; transform: translateX(0); }
  }

  /* Card */
  .iyt__card {
    display: flex;
    gap: 0;
    background: var(--iyt-bg, #f5f4f0);
    border-radius: 4px;
    overflow: hidden;
  }

  .iyt__card-border {
    width: 3px;
    background: var(--iyt-accent, #b8935a);
    flex-shrink: 0;
    border-radius: 2px;
    align-self: stretch;
  }

  .iyt__card-content {
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
  }

  .iyt__card-label {
    font-size: 0.6rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--iyt-accent, #b8935a);
    margin: 0;
    font-weight: 600;
  }

  .iyt__quote {
    font-size: clamp(1.05rem, 2vw, 1.4rem);
    line-height: 1.65;
    color: #2a2a2a;
    margin: 0;
    font-family: var(--font-primary--family, serif);
    font-weight: 400;
    font-style: normal;
  }

  /* Author */
  .iyt__author {
    display: flex;
    align-items: center;
    gap: 0.85rem;
  }

  .iyt__avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
  }

  .iyt__avatar-placeholder {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--iyt-accent, #b8935a);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 600;
    flex-shrink: 0;
  }

  .iyt__author-info { display: flex; flex-direction: column; gap: 0.2rem; }

  .iyt__author-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
  }

  .iyt__author-role {
    font-size: 0.78rem;
    color: #999;
    margin: 0;
  }

  /* Arrow */
  .iyt__next {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--iyt-accent, #b8935a);
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.2s, transform 0.2s;
  }

  .iyt__next:hover {
    background: #9a7a47;
    transform: scale(1.08);
  }

  @media screen and (max-width: 749px) {
    .iyt {
      padding: 2.5rem 0;
      overflow: hidden;
    }

    .iyt__inner {
      grid-template-columns: 1fr;
      gap: 1.5rem;
      padding: 0 1.25rem;
    }

    /* Prevent grid items from expanding the column beyond viewport width */
    .iyt__left,
    .iyt__right {
      min-width: 0;
      width: 100%;
    }

    /* Stack card above arrow instead of side-by-side */
    .iyt__right {
      flex-direction: column;
      align-items: stretch;
      gap: 1rem;
    }

    .iyt__slider {
      min-height: 0;
      min-width: 0;
      width: 100%;
    }

    /* Arrow goes bottom-right below the card */
    .iyt__next {
      align-self: flex-end;
      width: 44px;
      height: 44px;
    }

    .iyt__quote { font-size: 1rem; }

    .iyt__card-content { padding: 0 1.25rem; }
  }
/* END_SECTION:inyou-testimonials */
/* START_SECTION:inyou-ticker (INDEX:127) */
.iytkr {
    width: 100%;
    overflow: hidden;
  }
  .iytkr__track-wrap {
    overflow: hidden;
    white-space: nowrap;
  }
  .iytkr__track {
    display: inline-flex;
    align-items: center;
    gap: 0;
    white-space: nowrap;
    animation: iytkrScroll var(--iytkr-speed, 30s) linear infinite;
  }
  .iytkr__text {
    display: inline-block;
    font-weight: 500;
    text-transform: uppercase;
    white-space: nowrap;
    padding: 0 1.5rem;
  }
  .iytkr__sep {
    display: inline-block;
    padding: 0 0.5rem;
    opacity: 0.5;
    flex-shrink: 0;
  }
  @keyframes iytkrScroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }
  @media (prefers-reduced-motion: reduce) {
    .iytkr__track { animation: none; }
  }
/* END_SECTION:inyou-ticker */
/* START_SECTION:inyou-why-us (INDEX:138) */
.iwhy { width: 100%; }

  .iwhy__wrap {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
    box-sizing: border-box;
    display: grid;
    grid-template-columns: minmax(260px, 1fr) 2fr;
    gap: 3rem;
  }

  .iwhy__left { display: flex; flex-direction: column; gap: 1.25rem; }

  .iwhy__heading {
    font-size: clamp(1.7rem, 3vw, 2.2rem);
    font-weight: 800;
    color: #211f52;
    margin: 0;
    letter-spacing: -0.01em;
  }

  /* ── Trustpilot ── */
  .iwhy__trustpilot {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-wrap: wrap;
  }
  .iwhy__tp-label { font-size: 0.95rem; font-weight: 700; color: #211f52; }
  .iwhy__tp-boxes { display: flex; gap: 3px; }
  .iwhy__tp-box {
    width: 22px;
    height: 22px;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .iwhy__tp-reviews {
    font-size: 0.88rem;
    font-weight: 600;
    color: #211f52;
    text-decoration: underline;
  }
  .iwhy__tp-name {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.88rem;
    font-weight: 700;
    color: #191919;
  }

  /* ── Checklist ── */
  .iwhy__checklist {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
  }
  .iwhy__checklist li {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    font-size: 1rem;
    line-height: 1.5;
    color: #211f52;
  }
  .iwhy__check {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #5b4fe0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.1rem;
  }

  /* ── Mobile ── */
  @media screen and (max-width: 900px) {
    .iwhy__wrap { grid-template-columns: 1fr; gap: 2rem; padding: 0 1.25rem; }
  }
/* END_SECTION:inyou-why-us */
/* START_BLOCK:_footer-social-icons (INDEX:196) */
.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:197) */
.header-logo {
    display: flex;
    height: 100%;
    font-size: var(--font-size--md);
    font-family: var(--font-family);
    font-weight: var(--font-weight);
    font-style: var(--font-style);
    color: var(--color-foreground);
    justify-content: center;
    align-items: center;
    text-decoration: none;

    &[data-hidden-on-home-page] {
      display: none;

      #header-component:is(
          [sticky='always']:not([data-scroll-direction='none']),
          [sticky='scroll-up'][data-scroll-direction='up']
        )
        & {
        display: flex;
      }
    }

    @media screen and (max-width: 749px) {
      padding: 0;
    }

    @media screen and (min-width: 750px) {
      flex-shrink: 0;
    }

    &:hover {
      text-decoration: none;
    }
  }

  .header-logo__image {
    object-fit: contain;
    height: var(--header-logo-image-height-mobile);
    width: var(--header-logo-image-width-mobile);

    @media screen and (min-width: 750px) {
      height: var(--header-logo-image-height);
      width: var(--header-logo-image-width);
    }
  }

  .header-logo:has(.header-logo__image-container--inverse) .header-logo__image-container--original {
    display: var(--header-logo-display, block);
  }

  .header-logo__image-container--inverse {
    display: var(--header-logo-inverse-display, none);
  }
/* END_BLOCK:_header-logo */
/* START_SNIPPET:card-gallery (INDEX:271) */
.card-gallery {
    overflow: hidden;
    position: relative;
    container-type: inline-size;
    container-name: card-gallery-container;
  }

  /* ── Tag-based product badges ── */
  .inyou-ribbon {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #e53e3e;
    color: #ffffff;
    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 999px;
    z-index: 10;
    pointer-events: none;
    line-height: 1.4;
    white-space: nowrap;
  }

  .inyou-ribbon--trending { background: #e57c3e; }
  .inyou-ribbon--new      { background: #3ea5e5; }

  /* ── Certified badge ── */
  .inyou-cert-badge {
    position: absolute;
    object-fit: contain;
    pointer-events: none;
    z-index: 9;
    opacity: 0.92;
  }

  .inyou-cert-badge--top-left     { top: 8px;    left: 8px;    }
  .inyou-cert-badge--top-right    { top: 8px;    right: 8px;   }
  .inyou-cert-badge--bottom-left  { bottom: 8px; left: 8px;    }
  .inyou-cert-badge--bottom-right { bottom: 8px; right: 8px;   }

  .card-gallery__placeholder svg {
    height: 100%;
    width: 100%;
  }

  .card-gallery svg {
    aspect-ratio: var(--gallery-aspect-ratio, var(--ratio));
  }

  .product-card-gallery__title-placeholder {
    padding: var(--padding-md);
    font-size: var(--font-size--2xl);
    line-height: var(--line-height--display-loose);
    word-break: break-word;
    color: var(--color-foreground);
    background-color: rgb(var(--color-foreground-rgb) / var(--opacity-5));
    aspect-ratio: var(--gallery-aspect-ratio);
    border-radius: var(--product-corner-radius);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .product-card-gallery__title-placeholder a {
    color: var(--color-foreground);
  }

  @media screen and (min-width: 750px) {
    .product-grid[data-product-card-size='extra-large'] .product-card-gallery__title-placeholder {
      padding: var(--padding-3xl);
      font-size: var(--font-size--3xl);
    }

    .product-grid[data-product-card-size='large'] .product-card-gallery__title-placeholder {
      padding: var(--padding-2xl);
      font-size: var(--font-size--2xl);
    }

    .product-grid[data-product-card-size='medium'] .product-card-gallery__title-placeholder {
      padding: var(--padding-xl);
      font-size: var(--font-size--xl);
    }

    .product-grid[data-product-card-size='small'] .product-card-gallery__title-placeholder {
      padding: var(--padding-sm);
      font-size: var(--font-size--lg);
    }

    .product-grid[data-product-card-size='extra-large']
      .card-gallery.card-gallery--badge-top-right
      .product-card-gallery__title-placeholder {
      padding-right: calc(var(--padding-3xl) + 50px);
    }

    .product-grid[data-product-card-size='large']
      .card-gallery.card-gallery--badge-top-right
      .product-card-gallery__title-placeholder {
      padding-right: calc(var(--padding-2xl) + 50px);
    }

    .product-grid[data-product-card-size='medium']
      .card-gallery.card-gallery--badge-top-right
      .product-card-gallery__title-placeholder {
      padding-right: calc(var(--padding-xl) + 50px);
    }

    .product-grid[data-product-card-size='small']
      .card-gallery.card-gallery--badge-top-right
      .product-card-gallery__title-placeholder {
      padding-right: calc(var(--padding-sm) + 50px);
    }

    .product-grid[data-product-card-size='extra-large']
      .card-gallery.card-gallery--badge-top-left
      .product-card-gallery__title-placeholder {
      padding-top: calc(var(--padding-3xl) + 40px);
    }

    .product-grid[data-product-card-size='large']
      .card-gallery.card-gallery--badge-top-left
      .product-card-gallery__title-placeholder {
      padding-top: calc(var(--padding-2xl) + 40px);
    }

    .product-grid[data-product-card-size='medium']
      .card-gallery.card-gallery--badge-top-left
      .product-card-gallery__title-placeholder {
      padding-top: calc(var(--padding-xl) + 40px);
    }

    .product-grid[data-product-card-size='small']
      .card-gallery.card-gallery--badge-top-left
      .product-card-gallery__title-placeholder {
      padding-top: calc(var(--padding-sm) + 40px);
    }

    .product-grid[data-product-card-size='extra-large']
      .card-gallery.card-gallery--badge-bottom-left
      .product-card-gallery__title-placeholder {
      padding-bottom: calc(var(--padding-3xl) + 40px);
    }

    .product-grid[data-product-card-size='large']
      .card-gallery.card-gallery--badge-bottom-left
      .product-card-gallery__title-placeholder {
      padding-bottom: calc(var(--padding-2xl) + 40px);
    }

    .product-grid[data-product-card-size='medium']
      .card-gallery.card-gallery--badge-bottom-left
      .product-card-gallery__title-placeholder {
      padding-bottom: calc(var(--padding-xl) + 40px);
    }

    .product-grid[data-product-card-size='small']
      .card-gallery.card-gallery--badge-bottom-left
      .product-card-gallery__title-placeholder {
      padding-bottom: calc(var(--padding-sm) + 40px);
    }
  }

  @media screen and (max-width: 749px) {
    .product-card-gallery__title-placeholder {
      font-size: var(--font-size--xl);
      padding: var(--padding-md);
    }

    .product-grid[data-product-card-size]
      .card-gallery.card-gallery--badge-top-right
      .product-card-gallery__title-placeholder {
      padding-right: calc(var(--padding-sm) + 50px);
    }

    .product-grid[data-product-card-size]
      .card-gallery.card-gallery--badge-top-left
      .product-card-gallery__title-placeholder {
      padding-top: calc(var(--padding-sm) + 40px);
    }

    .product-grid[data-product-card-size]
      .card-gallery.card-gallery--badge-bottom-left
      .product-card-gallery__title-placeholder {
      padding-bottom: calc(var(--padding-sm) + 40px);
    }
  }

  [product-grid-view='zoom-out'] .card-gallery .product-card-gallery__title-placeholder {
    /* stylelint-disable-next-line declaration-no-important */
    padding: var(--padding-xs) !important;
    font-size: var(--font-size--xs);
  }

  [product-grid-view='zoom-out'] .card-gallery .slideshow-control {
    min-width: auto;
  }

  ul[product-grid-view='zoom-out'] .product-grid__card .card-gallery {
    display: block;
  }

  [product-grid-view='zoom-out']
    .card-gallery
    > :is(quick-add-component, .product-badges, slideshow-component > slideshow-controls) {
    display: none;
  }

  ul[product-grid-view='zoom-out'] .card-gallery > img {
    display: block;
  }

  .card-gallery slideshow-arrows .slideshow-control {
    /* Align icons with quick-add button */
    padding-inline: var(--padding-xl);

    @container (max-width: 249px) {
      padding-inline: 0 var(--padding-sm);
    }
  }

  /*
   * Card galleries preview the next or previous images on 'pointerenter', so we
   * try to kick load them beforehand (they are lazy loaded otherwise).
   */
  .card-gallery
    :is(
      slideshow-slide:has(+ slideshow-slide[aria-hidden='false']),
      slideshow-slide[aria-hidden='false'] + slideshow-slide
    ) {
    content-visibility: auto;

    slideshow-component[actioned] & {
      content-visibility: visible;
    }
  }
/* END_SNIPPET:card-gallery */
/* START_SNIPPET:group (INDEX:290) */
.group-block__link {
    position: absolute;
    inset: 0;
  }

  .group-block__link ~ :is(.group-block-content, .group-block__media-wrapper) {
    pointer-events: none;

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

  /* Needs the .group-block__link ~ to be specific enough to take effect. */
  .group-block__link ~ .group-block-content--design-mode {
    pointer-events: auto;
  }
/* END_SNIPPET:group */
/* START_SNIPPET:header-actions (INDEX:291) */
.header {
    --account-offset-top: calc(
      var(--header-group-height) + (var(--header-height) * var(--transparent-header-offset-boolean))
    );

    &[data-sticky-state='active'] {
      --account-offset-top: calc(var(--header-height) - 1px);
    }
  }

  .account-button {
    /* Remove the background color from the color scheme, we want to inherit the color of the header */
    background: transparent;
  }

  .account-button__icon,
  .account-button__text {
    color: var(--color-account-icon);
    transition: color var(--header-content-transition-timing);
    -webkit-font-smoothing: antialiased;
  }

  shopify-account {
    --shopify-account-font-heading: var(--font-heading--family);
    --shopify-account-font-heading-weight: var(--font-heading--weight);
    --shopify-account-font-body: var(--font-body--family);
    --shopify-account-font-body-weight: var(--font-body--weight);
    --shopify-account-radius-base: var(--style-border-radius-popover);
    --shopify-account-radius-button: var(--style-border-radius-buttons-primary);
    --shopify-account-radius-button-small: var(--style-border-radius-buttons-primary);
    --shopify-account-radius-input: var(--style-border-radius-buttons-primary);
    --shopify-account-color-background: var(--color-background);
    --shopify-account-color-text: var(--color-foreground);
    --shopify-account-color-accent: var(--color-primary-button-background);
    --shopify-account-color-accent-text: var(--color-primary-button-text);
    --shopify-account-dialog-position-top: var(--account-offset-top);

    &:not(:defined) {
      min-width: 44px;
      height: 44px;
      display: flex;
      justify-content: center;
      align-items: center;
      /* Match the line height of the other buttons */
      line-height: normal;
    }
  }

  .account-button__fallback {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: var(--shopify-account-color-accent, #0a142f);
  }

  .account-button--text shopify-account {
    color: inherit;
  }

  .cart-drawer {
    --cart-drawer-padding: var(--padding-xl) var(--padding-xl);
    --cart-drawer-padding-desktop: var(--padding-xl) var(--padding-2xl);

    @media screen and (min-width: 750px) {
      margin-inline-end: calc(var(--gap-xs) * -1);
    }
  }

  @media screen and (min-width: 750px) {
    .cart-drawer--text {
      display: flex;
      align-items: center;
    }
  }

  .cart-drawer__dialog {
    position: fixed;
    overflow: hidden;
    border-radius: 0;
    width: 100%;
    height: 100%;
    margin: 0 0 0 auto;
    padding: 0;
    border-left: var(--style-border-drawer);
    box-shadow: var(--shadow-drawer);
    background-color: var(--color-background);

    @media screen and (min-width: 750px) {
      width: var(--sidebar-width);
      max-width: 95vw;
    }
  }

  /* Needed to ensure the drawer is full height */
  .cart-drawer__dialog:modal {
    max-height: 100dvh;
    overflow-y: hidden;
  }

  .cart-drawer__inner {
    height: 100%;
    overflow: hidden;
  }

  .cart-drawer__content {
    height: calc(100% - var(--header-height));
    display: flex;
    flex-direction: column;
    padding: 0;
    background-color: var(--color-background);
    flex-grow: 1;
    overflow-y: auto;
  }

  .cart-drawer__heading {
    display: flex;
    align-items: center;
    gap: var(--gap-xs);
    margin-bottom: 0;
  }

  .cart-drawer__close-button {
    margin-right: calc(var(--padding-sm) * -1);
    top: var(--margin-sm);

    @media screen and (max-width: 749px) {
      top: var(--margin-2xs);
    }
  }

  .cart-drawer--empty .cart-drawer__content {
    text-align: center;
    min-height: auto;
  }

  .cart-drawer--empty .cart-drawer__heading {
    margin-bottom: var(--margin-md);
  }

  .cart-drawer__items .cart-items__table-row {
    padding-bottom: var(--gap-xl);
    border-bottom: var(--style-border-width) solid var(--color-border);
    margin-bottom: var(--gap-xl);
  }

  .cart-drawer__items .cart-items__table-row:has(+ .cart-items__nested-line) {
    border-bottom: none;
    margin-bottom: 0;
  }

  .cart-drawer__items .cart-items__table-row:last-child {
    border-bottom: none;
  }

  .cart-drawer__summary {
    --cart-drawer-summary-padding: var(--padding-lg);

    position: sticky;
    bottom: 0;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--gap-xl);
    padding: var(--cart-drawer-summary-padding);
    margin-top: auto;
    background-color: var(--color-background);
    /* stylelint-disable-next-line color-named */
    mask-image: linear-gradient(to bottom, transparent, black var(--cart-drawer-summary-padding));

    @media screen and (min-width: 750px) {
      --cart-drawer-summary-padding: var(--padding-2xl);
    }
  }

  .cart-drawer__dialog[cart-summary-sticky='false'] .cart-drawer__summary {
    position: static;
    mask-image: none;
  }

  .cart-drawer__dialog[cart-summary-sticky='false'] .cart-drawer__items {
    overflow: unset;
  }

  .cart-actions summary {
    padding-inline: 0;
    padding-block: var(--padding-sm);
    line-height: 1.2;
    min-height: var(--minimum-touch-target);
  }

  .cart-drawer__summary .cart__summary-totals:not(:has(.cart__subtotal-container:empty)) {
    border-block-start: var(--style-border-width) solid var(--color-border);
    padding-block-start: var(--padding-2xl);
  }

  .cart-drawer__summary .cart-note {
    @media screen and (min-width: 750px) {
      margin-block-start: var(--margin-3xs);
    }
  }

  .cart-drawer__heading--empty {
    display: flex;
    justify-content: center;
  }

  .cart-drawer__items {
    display: flex;
    flex-direction: column;
    padding-inline: var(--cart-drawer-padding);
    overflow-y: auto;

    @media screen and (min-width: 750px) {
      padding-inline: var(--cart-drawer-padding-desktop);
    }
  }

  .cart-drawer__items .cart-items__table-row {
    padding-bottom: var(--gap-xl);
    border-bottom: var(--style-border-width) solid var(--color-border);
    margin-bottom: var(--gap-xl);
  }

  .cart-drawer__items .cart-items__table-row:last-child {
    border-bottom: none;
    padding-block-end: 0;
    margin-block-end: 0;
  }

  .cart-drawer--empty .cart-drawer__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100dvh;
    margin-top: 0;
  }

  .cart-drawer:not(:has(.cart-form)) .cart-drawer__content {
    justify-content: center;
  }

  .cart-drawer__header {
    background-color: var(--color-background);
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: var(--cart-drawer-padding);
    border-bottom: var(--style-border-width) solid none;
    position: sticky;
    top: 0;
    z-index: 1;

    @media screen and (min-width: 750px) {
      padding-inline: var(--cart-drawer-padding-desktop);
    }
  }

  .cart-drawer--empty .cart-drawer__header {
    justify-content: right;
    border-bottom: none;
    padding-bottom: 0;
  }

  .cart-drawer--empty .cart-drawer__heading {
    text-align: center;
  }

  header-actions {
    display: flex;

    @media screen and (max-width: 749px) {
      justify-self: flex-end;
    }
  }

  @media screen and (min-width: 750px) {
    .header-actions--text {
      gap: var(--gap-xl);
    }

    .header-actions__text-style {
      font-size: var(--header-actions-font-size);
      font-family: var(--header-actions-font-family);
      font-weight: var(--header-actions-font-weight);
      text-transform: var(--header-actions-text-case);
    }
  }

  #header-component[data-menu-style='drawer'] header-actions {
    justify-self: flex-end;
  }

  .header__column--right header-actions {
    margin-inline-start: calc(var(--gap-md) * -1);
  }

  .header-actions__cart-icon {
    --cart-bubble-size: 20px;
    --cart-bubble-top: 4.5px;
    --cart-bubble-right: 2.5px;

    position: relative;
  }

  .header-actions__cart-icon .cart-bubble {
    position: absolute;
    width: var(--cart-bubble-size, 20px);
    top: var(--cart-bubble-top);
    right: var(--cart-bubble-right);
  }

  @media screen and (min-width: 750px) {
    .header-actions__cart-icon--text.header-actions__cart-icon .cart-bubble {
      position: relative;
      top: 0;
    }
  }

  .cart-drawer__heading .cart-bubble {
    width: fit-content;
    border-radius: var(--style-border-radius-buttons-primary);
    aspect-ratio: auto;
    padding: var(--cart-padding);
  }

  .cart-drawer__heading .cart-bubble[data-maintain-ratio] {
    width: min(1lh, 22px);
    height: min(1lh, 22px);
  }

  .header-actions__cart-icon .cart-bubble__text,
  .cart-drawer__heading .cart-bubble__text {
    font-family: var(--font-paragraph--family);
    font-weight: var(--font-paragraph--weight);
  }

  .header-actions__cart-icon.header-actions__cart-icon--has-cart svg {
    /* Create donut mask where the cart bubble sits */
    mask: radial-gradient(
      calc(var(--cart-bubble-size) + 2px) at calc(100% - var(--cart-bubble-right)) var(--cart-bubble-top),
      transparent 45.45%,
      #fff 45.45%,
      #fff 100%
    );
  }

  .cart-drawer__heading .cart-bubble .cart-bubble__background {
    background-color: rgb(var(--color-foreground-rgb) / var(--opacity-10-25));
  }

  .cart-drawer__heading .cart-bubble__text {
    color: var(--color-foreground);
    font-size: clamp(var(--font-size--3xs), 0.75em, var(--font-size--xs));
  }

  .cart-bubble.cart-bubble--animating .cart-bubble__background {
    animation: grow var(--animation-speed) var(--animation-easing);
  }

  .cart-bubble--animating .cart-bubble__text {
    --start-y: -1em;
    --start-opacity: 1;
    /* Set initial transform state before animation starts */
    transform: translate(0, var(--start-y, -1em));
    opacity: var(--start-opacity, 1);
    animation: move-and-fade var(--animation-speed) var(--animation-easing);
  }

  cart-icon:has(.cart-bubble__text-count:empty) {
    --cart-bubble-size: 10px;
    --cart-bubble-top: 9px;
    --cart-bubble-right: 9px;

    .svg-wrapper {
      --cart-bubble-top: 4px;
      --cart-bubble-right: 4px;
    }
  }

  @media screen and (min-width: 750px) {
    cart-icon.header-actions__cart-icon--text:has(.cart-bubble__text-count:empty) {
      --cart-bubble-right: 2.5px;
    }
  }

  @media screen and (prefers-reduced-motion: no-preference) {
    html:active-view-transition-type(empty-cart-drawer) {
      .cart-drawer__close-button {
        view-transition-name: cart-drawer-close-button;
      }
    }
  }

  :active-view-transition {
    .cart-drawer__header,
    .cart-drawer__content {
      background: transparent;
    }
  }

  ::view-transition-old(cart-drawer-content) {
    transform-origin: 50% 33%;
    animation: cart-contents-old var(--spring-d280-b0-duration) var(--spring-d280-b0-easing) forwards;
  }

  ::view-transition-new(cart-drawer-content) {
    transform-origin: top center;
    animation: cart-contents-new var(--spring-d280-b0-duration) var(--spring-d280-b0-easing) forwards;
  }

  @keyframes cart-contents-old {
    to {
      scale: 0.92;
      opacity: 0;
    }
  }

  @keyframes cart-contents-new {
    from {
      scale: 1.05;
      translate: 0 128px;
      filter: blur(1px);
      opacity: 0;
    }
  }
  .header-actions__text {
    display: flex;
    align-items: center;
  }

  @media screen and (min-width: 750px) {
    .header-actions__cart-icon--text {
      display: flex;
      align-items: center;
      gap: var(--gap-xs);
    }

    .header__column--right .header-actions--text {
      margin-inline-start: 0;
    }
  }
/* END_SNIPPET:header-actions */
/* START_SNIPPET:product-information-content (INDEX:327) */
.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:quantity-selector (INDEX:331) */
.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:search-modal (INDEX:341) */
/* Search modal style */
  .search-modal {
    --search-border-radius: var(--style-border-radius-popover);
    --search-border-width: var(--style-border-width);
  }

  .search-modal__content {
    /* Approx set the top so when the content is at max height, the modal is centered */
    --modal-top-margin: calc(50dvh - var(--modal-max-height) / 2 - 2rem);
    --modal-width: 66dvw;

    padding: 0;
    border: var(--style-border-popover);

    @media screen and (min-width: 750px) {
      width: var(--modal-width);
      margin-block-start: var(--modal-top-margin);
      overflow: hidden;
    }
  }

  /* Hide the default dialog backdrop on small screens */
  @media screen and (max-width: 749px) {
    .search-modal__content::backdrop {
      display: none;
    }
  }

  .dialog-modal[open].search-modal__content {
    transform-origin: bottom center;
    animation: search-element-slide-in-bottom 300ms var(--ease-out-quad) forwards;
    border-radius: var(--search-border-radius);
    box-shadow: var(--shadow-popover);

    @media screen and (max-width: 749px) {
      border-radius: 0;
    }
  }

  .dialog-modal.search-modal__content.dialog-closing {
    animation: search-element-slide-out-bottom 200ms var(--ease-out-quad) forwards;
  }

  .search-modal__content[open] {
    display: flex;
  }

  .search-modal__content :is(.predictive-search-dropdown, .predictive-search-form__content-wrapper) {
    position: relative;
  }

  .dialog-modal
    .predictive-search-form__header:has(
      .predictive-search__reset-button:not(.predictive-search__reset-button[hidden])
    )::before {
    content: '';
    position: absolute;
    right: calc(var(--padding-sm) + var(--minimum-touch-target));
    top: 0;
    bottom: 0;
    width: var(--border-width-sm);
    background-color: var(--color-border);
  }

  .dialog-modal
    .predictive-search-form__header:has(.predictive-search__reset-button:not(.predictive-search__reset-button[hidden]))
    > .predictive-search__close-modal-button {
    &::before {
      content: none;
    }
  }

  @media screen and (min-width: 750px) {
    .dialog-modal
      .predictive-search-form__header:has(
        .predictive-search__reset-button:not(.predictive-search__reset-button[hidden])
      )::before {
      right: calc(var(--padding-2xl) * 2);
    }
  }

  predictive-search-component {
    --resource-card-corner-radius: var(--product-corner-radius);

    display: flex;
    width: 100%;
    position: relative;
    margin-inline: auto;
    align-items: center;
    background-color: var(--color-background);
    z-index: var(--layer-heightened);
  }

  .predictive-search-form__footer {
    display: none;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;

    @media screen and (min-width: 750px) {
      --to-top-gradient-background: linear-gradient(
        to top,
        rgb(var(--color-background-rgb) / var(--opacity-90)),
        rgb(var(--color-background-rgb) / var(--opacity-80)),
        rgb(var(--color-background-rgb) / var(--opacity-40)),
        transparent
      );

      padding-block: var(--padding-xs) var(--padding-lg);
      background-image: var(--to-top-gradient-background);
    }
  }

  predictive-search-component:has([data-search-results]):not(:has(.predictive-search-results__no-results))
    .predictive-search-form__footer {
    display: block;
  }

  .predictive-search-form {
    position: relative;
    width: 100%;
    align-self: flex-start;
  }

  .predictive-search-form__content {
    max-height: 50dvh;
    overflow-y: auto;
    background-color: var(--color-background);

    /* Firefox */
    scrollbar-width: none;

    /* Webkit browsers */
    &::-webkit-scrollbar {
      display: none;
    }
  }

  .predictive-search-form__content-wrapper {
    position: absolute;
    top: 100%;
    width: 100%;
    left: 0;
    z-index: var(--layer-raised);
    display: flex;
    flex-direction: column;
    border-radius: 0 0 var(--search-border-radius) var(--search-border-radius);
    transition: box-shadow var(--animation-speed) var(--animation-easing);
    transform: translateZ(0);
    will-change: transform, opacity;
    overflow: hidden;

    @media screen and (max-width: 749px) {
      border-radius: 0;
    }

    @media screen and (min-width: 750px) {
      max-height: var(--modal-max-height);
    }
  }

  /* Add new rule to apply bottom padding only when search button exists */
  .predictive-search-form__content-wrapper:has([data-search-results]):not(:has(.predictive-search-results__no-results))
    > .predictive-search-form__content {
    padding-block-end: var(--padding-6xl);
  }

  .predictive-search-form__header-inner {
    background: var(--color-background);
    border: var(--search-border-width) solid var(--color-border);
    color: var(--color-foreground);
    border-radius: var(--style-border-radius-popover);
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;

    @media screen and (max-width: 749px) {
      border-radius: var(--style-border-radius-inputs);
      border: none;
    }
  }

  .predictive-search-form__header-inner:focus-within {
    outline-offset: var(--focus-outline-offset);

    @media screen and (min-width: 750px) {
      outline: var(--focus-outline-width) solid var(--color-primary);
    }
  }

  .predictive-search-form__header {
    display: flex;
    position: sticky;
    top: 0;
    z-index: var(--layer-heightened);
    width: 100%;
    align-items: center;
    background-color: var(--color-input-background);
    border: var(--search-border-width) solid var(--color-border);
    border-radius: var(--style-border-radius-inputs);

    @media screen and (max-width: 749px) {
      padding: var(--padding-2xs) var(--padding-sm);
    }
  }

  .predictive-search-form__header:focus-within,
  .predictive-search-form__header-inner:focus-within,
  .predictive-search-form__header-inner:has(.search-input:is(:focus, :focus-visible)) {
    outline: none;
    box-shadow: none;
    /* stylelint-disable-next-line declaration-no-important */
    border-color: var(--color-border) !important;
  }

  input.search-input {
    border-radius: var(--style-border-radius-inputs);
    padding-block: var(--padding-sm);
    font-size: var(--font-size--md);
    width: 100%;
    color: var(--color-foreground);
    padding-inline: calc(var(--margin-lg) + var(--icon-size-lg)) 0;
    background: transparent;
    text-overflow: ellipsis;
    overflow: hidden;
    outline: none;
    border: 0;
  }

  .search-input::placeholder {
    color: rgb(var(--color-foreground-rgb) / var(--opacity-subdued-text));
  }

  .search-input,
  .search-input:is(:focus, :focus-visible, :focus-within),
  .predictive-search-form__header *:is(:focus, :focus-visible) {
    outline: none;
    box-shadow: none;
  }

  .search-input:hover {
    background-color: transparent;
  }

  .predictive-search__icon {
    position: absolute;
    left: var(--margin-xl);
    top: auto;
    width: var(--icon-size-lg);
    height: var(--icon-size-lg);
    color: rgb(var(--color-foreground-rgb) / var(--opacity-60));

    @media screen and (min-width: 750px) {
      left: var(--margin-md);
    }
  }

  .predictive-search__icon > svg {
    width: var(--icon-size-md);
    height: var(--icon-size-md);
  }

  .predictive-search__reset-button {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: var(--minimum-touch-target);
    height: var(--minimum-touch-target);
    padding: 0;
    margin-inline-end: var(--margin-md);
    background: transparent;
    color: var(--color-foreground);
    opacity: 0.68;
    transition: opacity var(--animation-speed-medium) var(--animation-timing-fade-out),
      visibility var(--animation-speed-medium) var(--animation-timing-fade-out);

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

    &:active {
      transform: scale(0.9);
      transition: transform 100ms var(--animation-timing-active);
    }

    @media screen and (min-width: 750px) {
      margin-inline-end: var(--margin-2xs);
    }
  }

  .predictive-search__reset-button[hidden] {
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
  }

  .predictive-search__reset-button-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: var(--icon-size-lg);
    height: var(--icon-size-lg);
    transition: background-color var(--animation-speed-medium) ease-in-out,
      transform var(--animation-speed-medium) var(--animation-timing-bounce);
    border-radius: 50%;

    &:hover {
      background-color: rgb(var(--color-primary-hover-rgb) / var(--opacity-8));
    }
  }

  .predictive-search__reset-button:active .predictive-search__reset-button-icon {
    transform: scale(0.85);
    transition-timing-function: var(--animation-timing-active);
    transition-duration: 100ms;
  }

  .predictive-search__reset-button svg {
    width: var(--icon-size-md);
    height: var(--icon-size-md);
  }

  .predictive-search__reset-button-text {
    display: none;
  }

  .predictive-search__search-button {
    margin: auto;
    z-index: var(--layer-raised);
    transition: transform var(--animation-speed-medium) var(--animation-timing-bounce),
      box-shadow var(--animation-speed-medium) var(--animation-timing-hover);
    transform-origin: center;

    &:hover {
      transform: translateY(-2px);
      box-shadow: 0 4px 8px rgb(0 0 0 / var(--opacity-5));
    }

    &:active {
      transform: scale(0.97);
      transition: transform 100ms var(--animation-timing-active);
      box-shadow: none;
    }
  }

  .predictive-search__close-modal-button {
    --button-color: var(--color-foreground);
    --button-background-color: transparent;

    display: flex;
    justify-content: center;
    align-items: center;
    width: var(--minimum-touch-target);
    height: var(--minimum-touch-target);
    margin-inline-start: var(--margin-sm);
    padding: 0;
    box-shadow: none;

    &:active {
      transform: scale(0.8);
      transition: transform 100ms var(--animation-timing-active);
    }

    .svg-wrapper,
    svg {
      width: var(--icon-size-xs);
      height: var(--icon-size-xs);
    }
  }

  .predictive-search__close-modal-button:hover {
    --button-color: var(--color-foreground);
    --button-background-color: transparent;
  }
/* END_SNIPPET:search-modal */
/* START_SNIPPET:search (INDEX:342) */
.search-action {
    --search-border-radius: var(--style-border-radius-inputs);
    --search-border-width: var(--style-border-width-inputs);

    display: flex;
  }

  @media screen and (max-width: 749px) {
    .search-action--hidden-on-drawer {
      display: none;
    }
  }

  @media screen and (min-width: 750px) {
    [data-menu-style='drawer'] .search-action--hidden-on-drawer {
      display: none;
    }

    [data-menu-style='menu'] .search-action--hidden-on-menu {
      display: none;
    }
  }

  [data-menu-style='menu'] .header__column--left .search-action {
    @media screen and (min-width: 750px) {
      margin-inline: calc(var(--padding-lg) * -1);
    }
  }

  .header__column--right .search-action {
    @media screen and (min-width: 750px) {
      margin-inline: calc(var(--gap-md) * -1) calc(var(--gap-xs) * -1);
    }
  }

  @media screen and (min-width: 750px) {
    .header__column--right .search-action--text {
      margin-inline: 0;
    }

    [data-menu-style='menu'] .header__column--left .search-action--text {
      margin-inline: 0;
    }
  }
/* END_SNIPPET:search */
